From 3a4357a4e7a61a1c8a6f8c216a181321f54a0bbc Mon Sep 17 00:00:00 2001 From: "Lerond, Jeremy" Date: Thu, 9 Nov 2023 16:50:10 -0800 Subject: [PATCH] Add new equipment class to debloat the chiller class. --- copper/__init__.py | 1 + copper/chiller.py | 205 +- copper/data/equipment_references.json | 40 + copper/equipment.py | 63 + copper/generator.py | 2 +- copper/lib/chiller_curves.json | 35426 ------------------------ copper/library.py | 2 +- copper/units.py | 39 +- tests/test_chiller.py | 2 +- tests/test_curves.py | 2 +- tests/test_library.py | 2 +- tests/test_units.py | 27 +- 12 files changed, 217 insertions(+), 35594 deletions(-) create mode 100644 copper/data/equipment_references.json create mode 100644 copper/equipment.py delete mode 100644 copper/lib/chiller_curves.json diff --git a/copper/__init__.py b/copper/__init__.py index 502be3a..93e74ba 100644 --- a/copper/__init__.py +++ b/copper/__init__.py @@ -1,3 +1,4 @@ +from copper.equipment import * from copper.chiller import * from copper.schema import * from copper.constants import LOGGING_FORMAT diff --git a/copper/chiller.py b/copper/chiller.py index cc764c4..f0a9cf6 100644 --- a/copper/chiller.py +++ b/copper/chiller.py @@ -10,13 +10,17 @@ from copper.units import * from copper.curves import * from copper.library import * -import logging +from copper.equipment import * +import logging, json location = os.path.dirname(os.path.realpath(__file__)) -chiller_lib = os.path.join(location, "lib", "chiller_curves.json") +chiller_lib = os.path.join(location, "data", "chiller_curves.json") +equipment_references = json.load( + open(os.path.join(location, "data", "equipment_references.json"), "r") +) -class Chiller: +class Chiller(Equipment): def __init__( self, ref_cap, @@ -61,86 +65,20 @@ def __init__( self.model = model self.sim_engine = sim_engine self.set_of_curves = set_of_curves - if self.condenser_type == "water": - if self.part_eff_ref_std == "ahri_550/590": - lwt = (44.0 - 32.0) * 5 / 9 - ect = (85.0 - 32.0) * 5 / 9 - lct = (94.3 - 32.0) * 5 / 9 - elif self.part_eff_ref_std == "ahri_551/591": - lwt = 7.0 - ect = 30.0 - lct = 35.0 - - if self.model == "ect_lwt": - self.plotting_range = { - "eir-f-t": { - "x1_min": lwt, - "x1_max": lwt, - "x1_norm": lwt, - "nbval": 50, - "x2_min": 10, - "x2_max": 40, - "x2_norm": ect, - }, - "cap-f-t": { - "x1_min": lwt, - "x1_max": lwt, - "x1_norm": lwt, - "nbval": 50, - "x2_min": 10, - "x2_max": 40, - "x2_norm": ect, - }, - "eir-f-plr": {"x1_min": 0, "x1_max": 1, "x1_norm": 1, "nbval": 50}, - } - elif self.model == "lct_lwt": - self.plotting_range = { - "eir-f-t": { - "x1_min": lwt, - "x1_max": lwt, - "x1_norm": lwt, - "nbval": 50, - "x2_min": 10, - "x2_max": 60, - "x2_norm": lct, - }, - "cap-f-t": { - "x1_min": lwt, - "x1_max": lwt, - "x1_norm": lwt, - "nbval": 50, - "x2_min": 10, - "x2_max": 60, - "x2_norm": lct, - }, - "eir-f-plr": { - "x1_min": lct, - "x1_max": lct, - "x1_norm": lct, - "nbval": 50, - "x2_min": 0.0, - "x2_max": 1.0, - "x2_norm": 1.0, - }, - } - else: - raise ValueError("Algorithm not supported.") - elif self.condenser_type == "air": - if self.part_eff_ref_std == "ahri_550/590": - lwt = (44.0 - 32.0) * 5 / 9 - ect = (95.0 - 32.0) * 5 / 9 - lct = -999 # does not apply - elif self.part_eff_ref_std == "ahri_551/591": - lwt = 7.0 - ect = 35.0 - lct = -999 # does not apply + # Define rated temperatures + ect, lwt, lct = self.get_rated_temperatures() + ect = ect[0] + + # Defined plotting ranges and (rated) temperature for normalization + nb_val = 50 + if self.model == "ect_lwt": self.plotting_range = { "eir-f-t": { "x1_min": lwt, "x1_max": lwt, "x1_norm": lwt, - "nbval": 50, + "nbval": nb_val, "x2_min": 10, "x2_max": 40, "x2_norm": ect, @@ -154,27 +92,41 @@ def __init__( "x2_max": 40, "x2_norm": ect, }, - "eir-f-plr": {"x1_min": 0, "x1_max": 1, "x1_norm": 1, "nbval": 50}, + "eir-f-plr": {"x1_min": 0, "x1_max": 1, "x1_norm": 1, "nbval": nb_val}, + } + elif self.model == "lct_lwt": + self.plotting_range = { + "eir-f-t": { + "x1_min": lwt, + "x1_max": lwt, + "x1_norm": lwt, + "nbval": nb_val, + "x2_min": 10, + "x2_max": 60, + "x2_norm": lct, + }, + "cap-f-t": { + "x1_min": lwt, + "x1_max": lwt, + "x1_norm": lwt, + "nbval": nb_val, + "x2_min": 10, + "x2_max": 60, + "x2_norm": lct, + }, + "eir-f-plr": { + "x1_min": lct, + "x1_max": lct, + "x1_norm": lct, + "nbval": nb_val, + "x2_min": 0.0, + "x2_max": 1.0, + "x2_norm": 1.0, + }, } self.ref_lwt, self.ref_ect, self.ref_lct = lwt, ect, lct - def get_ref_values(self, out_var): - """Get chiller reference/rated independent variables values (temperature and part load ratio) for an output variable (e.g., eir-f-t, eir-f-plr, cap-f-t). - - :param str out_var: Output variable - :return: List of reference values - :rtype: list - - """ - if "x2_norm" in list(self.plotting_range[out_var].keys()): - return [ - self.plotting_range[out_var]["x1_norm"], - self.plotting_range[out_var]["x2_norm"], - ] - else: - return [self.plotting_range[out_var]["x1_norm"], 0.0] - def get_ref_cond_flow_rate(self): """Function to compute the reference condenser flow rate given ref_cap, full_eff, ref_lct and ref_lwt @@ -319,30 +271,6 @@ def generate_set_of_curves( else: return set_of_curves - def get_eir_ref(self, alt): - # Retrieve equipment efficiency and unit - if alt: - kwpton_ref = self.full_eff_alt - kwpton_ref_unit = self.full_eff_unit_alt - else: - kwpton_ref = self.full_eff - kwpton_ref_unit = self.full_eff_unit - - # Convert to kWpton if necessary - if self.full_eff_unit != "kW/ton": - kwpton_ref_unit = Units(kwpton_ref, kwpton_ref_unit) - kwpton_ref = kwpton_ref_unit.conversion("kW/ton") - - # Conversion factors - # TODO: remove these and use the unit class - ton_to_kbtu = 12 - kbtu_to_kw = 3.412141633 - - # Full load conditions - eir_ref = 1 / (ton_to_kbtu / kwpton_ref / kbtu_to_kw) - - return eir_ref - def calc_eff_ect(self, cap_f_t, eir_f_t, eir_f_plr, eir_ref, ect, lwt, load): """Calculate chiller efficiency using the ECT-based model for a specific ECT and load value (percentage load). @@ -382,12 +310,6 @@ def calc_rated_eff(self, eff_type, unit="kW/ton", output_report=False, alt=False :rtype: float """ - - # Conversion factors - # TODO: remove these and use the unit class - ton_to_kbtu = 12 - kbtu_to_kw = 3.412141633 - # Get reference eir eir_ref = self.get_eir_ref(alt) load_ref = 1 @@ -399,7 +321,7 @@ def calc_rated_eff(self, eff_type, unit="kW/ton", output_report=False, alt=False kwpton_lst = [] # Temperatures at rated conditions - ect, lwt = self.get_rated_temperatures(alt) + ect, lwt, lct = self.get_rated_temperatures(alt) # Retrieve curves curves = self.get_chiller_curves() @@ -482,7 +404,8 @@ def calc_rated_eff(self, eff_type, unit="kW/ton", output_report=False, alt=False return -999 # Convert efficiency to kW/ton - kwpton = eir / kbtu_to_kw * ton_to_kbtu + eir = Units(eir, "eir") + kwpton = eir.conversion("kW/ton") if output_report: cap_ton = self.ref_cap @@ -501,7 +424,7 @@ def calc_rated_eff(self, eff_type, unit="kW/ton", output_report=False, alt=False logging.info(part_report) # Store efficiency for IPLV calculation - kwpton_lst.append(eir / kbtu_to_kw * ton_to_kbtu) + kwpton_lst.append(kwpton) # Stop here for full load calculations if eff_type == "full" and idx == 0: @@ -529,7 +452,7 @@ def calc_rated_eff(self, eff_type, unit="kW/ton", output_report=False, alt=False return iplv - def get_rated_temperatures(self, alt): + def get_rated_temperatures(self, alt=False): """Get chiller rated temperatures. :param bool alt: Indicate the chiller alternate standard rating should be used @@ -541,24 +464,14 @@ def get_rated_temperatures(self, alt): std = self.part_eff_ref_std_alt else: std = self.part_eff_ref_std - if std == "ahri_551/591": # IPLV.SI - lwt = 7.0 - if self.condenser_type == "air": - ect = [35.0, 27.0, 19.0, 13.0] - elif self.condenser_type == "water": - ect = [30.0, 24.5, 19.0, 19.0] - elif std == "ahri_550/590": # IPLV.IP - lwt = 44.0 - if self.condenser_type == "air": - ect = [95.0, 80.0, 65.0, 55.0] - elif self.condenser_type == "water": - ect = [85.0, 75.0, 65.0, 65.0] - # Convert to SI - lwt = (lwt - 32.0) * 5 / 9 - ect = [(t - 32.0) * 5 / 9 for t in ect] - else: - raise ValueError("Reference standard provided isn't implemented.") - return [ect, lwt] + chiller_data = equipment_references[self.type][std][self.condenser_type] + lwt = Equipment.convert_to_deg_c(chiller_data["lwt"], chiller_data["lwt_unit"]) + ect = [ + Equipment.convert_to_deg_c(t, chiller_data["ect_unit"]) + for t in chiller_data["ect"] + ] + lct = Equipment.convert_to_deg_c(chiller_data["lct"], chiller_data["lct_unit"]) + return [ect, lwt, lct] def get_chiller_curves(self): """Retrieve chiller curves from the chiller set_of_curves attribute. diff --git a/copper/data/equipment_references.json b/copper/data/equipment_references.json new file mode 100644 index 0000000..990d5b5 --- /dev/null +++ b/copper/data/equipment_references.json @@ -0,0 +1,40 @@ +{ + "chiller": { + "ahri_550/590": { + "water": { + "lwt": 44.0, + "lwt_unit": "degF", + "ect": [85.0, 75.0, 65.0, 65.0], + "ect_unit": "degF", + "lct": 94.3, + "lct_unit": "degF" + }, + "air": { + "lwt": 44.0, + "lwt_unit": "degF", + "ect": [95.0, 80.0, 65.0, 55.0], + "ect_unit": "degF", + "lct": null, + "lct_unit": null + } + }, + "ahri_551/591": { + "water": { + "lwt": 7.0, + "lwt_unit": "degC", + "ect": [30.0, 24.5, 19.0, 19.0], + "ect_unit": "degC", + "lct": 35.0, + "lct_unit": "degC" + }, + "air": { + "lwt": 7.0, + "lwt_unit": "degC", + "ect": [35.0, 27.0, 19.0, 13.0], + "ect_unit": "degC", + "lct": null, + "lct_unit": null + } + } + } +} \ No newline at end of file diff --git a/copper/equipment.py b/copper/equipment.py new file mode 100644 index 0000000..a000778 --- /dev/null +++ b/copper/equipment.py @@ -0,0 +1,63 @@ +""" +equipment.py +==================================== +This is the equipment module of Copper. The module includes function that can be used by all types of equipment included in Copper. +""" + +from copper.units import * + + +class Equipment: + def __init__(self): + self.plotting_range = {} + self.full_eff_alt = None + self.full_eff_unit_alt = None + self.full_eff = None + self.full_eff_unit = None + + def convert_to_deg_c(value, unit="degF"): + """Helper function to convert equipment data to degree F. + + :param float value: Value to convert to degree C + :return: Vlue converted to degree C + :rtype: float + """ + if unit == "degF": + curr_value = Units(value, unit) + return curr_value.conversion("degC") + else: + return value + + def get_ref_values(self, out_var): + """Get equipment reference/rated independent variables values (temperature and part load ratio) for an output variable (e.g., eir-f-t, eir-f-plr, cap-f-t). + + :param str out_var: Output variable + :return: List of reference values + :rtype: list + + """ + if "x2_norm" in list(self.plotting_range[out_var].keys()): + return [ + self.plotting_range[out_var]["x1_norm"], + self.plotting_range[out_var]["x2_norm"], + ] + else: + return [self.plotting_range[out_var]["x1_norm"], 0.0] + + def get_eir_ref(self, alt): + """Get the reference EIR (energy input ratio) of an equipment. + + :param bool alt: Specify if the alternative equipment efficiency should be used to calculate the EIR + :return: Reference EIR + :rtype: float + + """ + # Retrieve equipment efficiency and unit + if alt: + ref_eff = self.full_eff_alt + ref_eff_unit = self.full_eff_unit_alt + else: + ref_eff = self.full_eff + ref_eff_unit = self.full_eff_unit + eff = Units(ref_eff, ref_eff_unit) + return eff.conversion("eir") diff --git a/copper/generator.py b/copper/generator.py index c333a90..394056d 100644 --- a/copper/generator.py +++ b/copper/generator.py @@ -20,7 +20,7 @@ from copper.curves import * location = os.path.dirname(os.path.realpath(__file__)) -chiller_lib = os.path.join(location, "lib", "chiller_curves.json") +chiller_lib = os.path.join(location, "data", "chiller_curves.json") class Generator: diff --git a/copper/lib/chiller_curves.json b/copper/lib/chiller_curves.json deleted file mode 100644 index 62640b4..0000000 --- a/copper/lib/chiller_curves.json +++ /dev/null @@ -1,35426 +0,0 @@ -{ - "0": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": null, - "ref_cap_unit": "ton", - "full_eff": 5.5, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 29.4, - "ref_lct": null, - "units": "si", - "x_min": 5.0, - "y_min": 24.0, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.933884, - "coeff2": -0.058212, - "coeff3": 0.00450036, - "coeff4": 0.00243, - "coeff5": 0.000486, - "coeff6": -0.001215, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 29.4, - "ref_lct": null, - "units": "si", - "x_min": 5.0, - "y_min": 24.0, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.257896, - "coeff2": 0.0389016, - "coeff3": -0.00021708, - "coeff4": 0.0468684, - "coeff5": -0.00094284, - "coeff6": -0.00034344, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 29.4, - "ref_lct": null, - "units": "si", - "x_min": 0.0, - "y_min": 0.0, - "x_max": 1.0, - "y_max": 1.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.222903, - "coeff2": 0.313387, - "coeff3": 0.46371, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "1": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": null, - "ref_cap_unit": "ton", - "full_eff": 3.67, - "full_eff_unit": "cop", - "compressor_type": "reciprocating", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 29.4, - "ref_lct": null, - "units": "si", - "x_min": 5.0, - "y_min": 24.0, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.03076, - "coeff2": -0.103536, - "coeff3": 0.00710208, - "coeff4": 0.0093186, - "coeff5": 0.00031752, - "coeff6": -0.00104328, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 29.4, - "ref_lct": null, - "units": "si", - "x_min": 5.0, - "y_min": 24.0, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.507883, - "coeff2": 0.145228, - "coeff3": -0.00625644, - "coeff4": -0.0011178, - "coeff5": -0.0001296, - "coeff6": -0.00028188, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 29.4, - "ref_lct": null, - "units": "si", - "x_min": 0.0, - "y_min": 0.0, - "x_max": 1.0, - "y_max": 1.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.088065, - "coeff2": 1.137742, - "coeff3": -0.225806, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "2": { - "eqp_type": "chiller", - "source": "3", - "model": "ect_lwt", - "ref_cap": null, - "ref_cap_unit": "ton", - "full_eff": null, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.15, - "min_unloading": 0.15, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.0, - "y_min": 12.7, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5961907, - "coeff2": -0.0099493, - "coeff3": 0.0007888, - "coeff4": 0.0004506, - "coeff5": 0.0004875, - "coeff6": -0.0007623, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.0, - "y_min": 12.7, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.0433825, - "coeff2": 0.0407073, - "coeff3": 0.0004506, - "coeff4": -0.0041514, - "coeff5": -8.86e-5, - "coeff6": -0.0003467, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.0, - "y_min": 0.0, - "x_max": 1.0, - "y_max": 1.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.141, - "coeff2": 0.655, - "coeff3": 0.203, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "3": { - "eqp_type": "chiller", - "source": "4", - "model": "ect_lwt", - "ref_cap": null, - "ref_cap_unit": "ton", - "full_eff": null, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": null, - "min_unloading": null, - "max_plr": null, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": 34.61, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 12.22, - "y_max": 29.44, - "out_min": 0.68, - "out_max": 1.05, - "coeff1": 0.658643, - "coeff2": -0.0253393, - "coeff3": 0.000991116, - "coeff4": 0.0128014, - "coeff5": 0.000171072, - "coeff6": -0.00030132, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": 35.61, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 12.22, - "y_max": 29.44, - "out_min": 0.91, - "out_max": 0.87, - "coeff1": 0.364691, - "coeff2": -0.0305206, - "coeff3": -0.00192974, - "coeff4": 0.0663743, - "coeff5": -0.00189184, - "coeff6": 0.00311072, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": null, - "ref_ect": null, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": null, - "x_max": null, - "y_max": null, - "out_min": 0.28, - "out_max": null, - "coeff1": 0.22214906, - "coeff2": 0.50315595, - "coeff3": 0.25690463, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "4": { - "eqp_type": "chiller", - "source": "4", - "model": "ect_lwt", - "ref_cap": null, - "ref_cap_unit": "ton", - "full_eff": null, - "full_eff_unit": "cop", - "compressor_type": "reciprocating", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": null, - "min_unloading": null, - "max_plr": null, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": 34.61, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 12.22, - "y_max": 29.44, - "out_min": 0.74, - "out_max": 1.27, - "coeff1": 0.665307, - "coeff2": -0.009339, - "coeff3": 0.000483, - "coeff4": 0.009492, - "coeff5": 0.000544, - "coeff6": -0.000864, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": 34.61, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 12.22, - "y_max": 29.44, - "out_min": 0.89, - "out_max": 1.33, - "coeff1": 0.96744, - "coeff2": 0.037082, - "coeff3": 0.000434, - "coeff4": -0.005837, - "coeff5": -4.9e-5, - "coeff6": -0.000274, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": 34.61, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.0, - "y_max": 1.0, - "out_min": 0.35, - "out_max": null, - "coeff1": 0.310965, - "coeff2": 0.322519, - "coeff3": 0.372745, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "5": { - "eqp_type": "chiller", - "source": "4", - "model": "ect_lwt", - "ref_cap": null, - "ref_cap_unit": "ton", - "full_eff": null, - "full_eff_unit": "cop", - "compressor_type": "reciprocating", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": null, - "min_unloading": null, - "max_plr": null, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": 34.61, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 12.22, - "y_max": 29.44, - "out_min": 0.5, - "out_max": 1.07, - "coeff1": 0.428, - "coeff2": -0.024071, - "coeff3": 0.000849, - "coeff4": 0.016416, - "coeff5": 0.000381, - "coeff6": -0.00059, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": 34.61, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 12.22, - "y_max": 29.44, - "out_min": 0.93, - "out_max": 1.21, - "coeff1": 0.9, - "coeff2": 0.030102, - "coeff3": -0.000332, - "coeff4": -0.001743, - "coeff5": -9.2e-5, - "coeff6": 0.000229, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": 34.61, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.0, - "y_max": 1.0, - "out_min": 0.07, - "out_max": null, - "coeff1": 0.0, - "coeff2": 0.6206, - "coeff3": 0.3893, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "6": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 134.0, - "ref_cap_unit": "ton", - "full_eff": 5.89, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01035, - "ref_cond_fluid_flow": 0.01924, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4475238, - "coeff2": -0.0258821, - "coeff3": -0.001459053, - "coeff4": 0.04342595, - "coeff5": -0.001000651, - "coeff6": 0.001920106, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.01035, - "ref_cond_fluid_flow": 0.01924, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.15, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2778889, - "coeff2": 0.2338363, - "coeff3": 0.4883748, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01035, - "ref_cond_fluid_flow": 0.01924, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.252113, - "coeff2": 0.01324053, - "coeff3": -0.008637329, - "coeff4": 0.08581056, - "coeff5": -0.004261176, - "coeff6": 0.008661899, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "7": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 160.0, - "ref_cap_unit": "ton", - "full_eff": 10.61, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01514, - "ref_cond_fluid_flow": 0.0241, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.5781003, - "coeff2": -0.116913, - "coeff3": -0.004760535, - "coeff4": 0.2230082, - "coeff5": -0.005313649, - "coeff6": 0.006846644, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.01514, - "ref_cond_fluid_flow": 0.0241, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5203969, - "coeff2": -0.77759, - "coeff3": 1.255394, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01514, - "ref_cond_fluid_flow": 0.0241, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.1288612, - "coeff2": -0.0891954, - "coeff3": -0.002190195, - "coeff4": 0.1538357, - "coeff5": -0.005129402, - "coeff6": 0.007813636, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "8": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 200.0, - "ref_cap_unit": "ton", - "full_eff": 7.03, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02019, - "ref_cond_fluid_flow": 0.02902, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8234029, - "coeff2": -0.1171542, - "coeff3": 0.000586935, - "coeff4": 0.02964642, - "coeff5": -0.000919038, - "coeff6": 0.005035796, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02019, - "ref_cond_fluid_flow": 0.02902, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3864389, - "coeff2": -0.2522595, - "coeff3": 0.8672354, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02019, - "ref_cond_fluid_flow": 0.02902, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4779439, - "coeff2": 0.1073486, - "coeff3": -0.01055896, - "coeff4": 0.04208433, - "coeff5": -0.00234687, - "coeff6": 0.004019632, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "9": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 206.0, - "ref_cap_unit": "ton", - "full_eff": 6.04, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.19, - "min_unloading": 0.19, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01779, - "ref_cond_fluid_flow": 0.01956, - "ref_lwt": 5.56, - "ref_ect": 21.11, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 13.75, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5059102, - "coeff2": -0.01621557, - "coeff3": 0.000334639, - "coeff4": 0.02350906, - "coeff5": 0.00035142, - "coeff6": -0.000634298, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.01779, - "ref_cond_fluid_flow": 0.01956, - "ref_lwt": 5.56, - "ref_ect": 21.11, - "ref_lct": null, - "units": "si", - "x_min": 0.19, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1879418, - "coeff2": 0.3562862, - "coeff3": 0.4540392, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01779, - "ref_cond_fluid_flow": 0.01956, - "ref_lwt": 5.56, - "ref_ect": 21.11, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 13.75, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4418712, - "coeff2": -0.08384251, - "coeff3": -0.002190707, - "coeff4": 0.08594633, - "coeff5": -0.003322575, - "coeff6": 0.006652189, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "10": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 211.0, - "ref_cap_unit": "ton", - "full_eff": 5.42, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.19, - "min_unloading": 0.19, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01779, - "ref_cond_fluid_flow": 0.01956, - "ref_lwt": 5.56, - "ref_ect": 21.11, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 11.25, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9946139, - "coeff2": -0.04829399, - "coeff3": 0.000467428, - "coeff4": -0.001158726, - "coeff5": 0.000576258, - "coeff6": 0.000214819, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.01779, - "ref_cond_fluid_flow": 0.01956, - "ref_lwt": 5.56, - "ref_ect": 21.11, - "ref_lct": null, - "units": "si", - "x_min": 0.19, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1202277, - "coeff2": 0.1396384, - "coeff3": 0.7394038, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01779, - "ref_cond_fluid_flow": 0.01956, - "ref_lwt": 5.56, - "ref_ect": 21.11, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 11.25, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9797101, - "coeff2": -0.002895701, - "coeff3": -0.000897072, - "coeff4": 0.0103144, - "coeff5": -0.000743165, - "coeff6": 0.001453508, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "11": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 232.0, - "ref_cap_unit": "ton", - "full_eff": 6.74, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01748, - "ref_cond_fluid_flow": 0.04164, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7335321, - "coeff2": 0.000446511, - "coeff3": -0.003448575, - "coeff4": 0.003770822, - "coeff5": -0.000218968, - "coeff6": 0.002400267, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.01748, - "ref_cond_fluid_flow": 0.04164, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3070136, - "coeff2": 0.08654874, - "coeff3": 0.6081551, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01748, - "ref_cond_fluid_flow": 0.04164, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.986259, - "coeff2": 0.05799373, - "coeff3": -0.005355626, - "coeff4": -0.000894171, - "coeff5": -0.001670098, - "coeff6": 0.004733054, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "12": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 233.0, - "ref_cap_unit": "ton", - "full_eff": 8.11, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.05, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02524, - "ref_cond_fluid_flow": 0.03785, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5925176, - "coeff2": -0.01908391, - "coeff3": -0.001852692, - "coeff4": 0.04051551, - "coeff5": -0.000290872, - "coeff6": 0.001059047, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02524, - "ref_cond_fluid_flow": 0.03785, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.05, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2830681, - "coeff2": 0.2254147, - "coeff3": 0.4916649, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02524, - "ref_cond_fluid_flow": 0.03785, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7392673, - "coeff2": 0.04328784, - "coeff3": -0.004529446, - "coeff4": 0.0152541, - "coeff5": -0.001141458, - "coeff6": 0.002651124, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "13": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 234.0, - "ref_cap_unit": "ton", - "full_eff": 6.28, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.04744, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8029134, - "coeff2": 0.02171359, - "coeff3": 0.000238812, - "coeff4": -0.01096173, - "coeff5": 0.001065277, - "coeff6": -0.002057538, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.04744, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2965419, - "coeff2": 0.4689744, - "coeff3": 0.2332341, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.04744, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.557315, - "coeff2": 0.08714616, - "coeff3": -0.002917582, - "coeff4": 0.025, - "coeff5": -0.000886154, - "coeff6": -0.000318462, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "14": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 247.0, - "ref_cap_unit": "ton", - "full_eff": 5.57, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.18, - "min_unloading": 0.18, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01754, - "ref_cond_fluid_flow": 0.02593, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3943721, - "coeff2": 0.1079147, - "coeff3": -0.008912223, - "coeff4": -0.000322949, - "coeff5": 1.3e-5, - "coeff6": 0.001561862, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.01754, - "ref_cond_fluid_flow": 0.02593, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.18, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1501042, - "coeff2": -0.06804336, - "coeff3": 0.917146, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01754, - "ref_cond_fluid_flow": 0.02593, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5406799, - "coeff2": 0.1253709, - "coeff3": -0.00802536, - "coeff4": -0.007357554, - "coeff5": -0.000447779, - "coeff6": 0.002140733, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "15": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 255.0, - "ref_cap_unit": "ton", - "full_eff": 7.23, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.0436, - "ref_lwt": 9.82, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6511011, - "coeff2": 0.04948557, - "coeff3": -0.000815273, - "coeff4": 0.02322946, - "coeff5": 0.00019908, - "coeff6": -0.002669401, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.0436, - "ref_lwt": 9.82, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.203638, - "coeff2": -0.39132, - "coeff3": 1.187172, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.0436, - "ref_lwt": 9.82, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5559679, - "coeff2": 0.0763086, - "coeff3": -0.001431181, - "coeff4": 0.02167593, - "coeff5": -0.000623345, - "coeff6": -0.00098765, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "16": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 255.0, - "ref_cap_unit": "ton", - "full_eff": 6.5, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.04423, - "ref_lwt": 9.82, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8527749, - "coeff2": -0.004336881, - "coeff3": 0.000897218, - "coeff4": -0.001888039, - "coeff5": 0.000864808, - "coeff6": -0.001438797, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.04423, - "ref_lwt": 9.82, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3323416, - "coeff2": 0.2561103, - "coeff3": 0.4106954, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.04423, - "ref_lwt": 9.82, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7009156, - "coeff2": 0.02151274, - "coeff3": -0.000602965, - "coeff4": 0.01864266, - "coeff5": -0.001084545, - "coeff6": 0.001418575, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "17": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 255.0, - "ref_cap_unit": "ton", - "full_eff": 7.6, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 9.83, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5526128, - "coeff2": 0.003299472, - "coeff3": -0.000798193, - "coeff4": 0.0424571, - "coeff5": -0.000353366, - "coeff6": -0.000941514, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 9.83, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.04708628, - "coeff2": 0.07070062, - "coeff3": 0.8802198, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 9.83, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5648, - "coeff2": 0.0296147, - "coeff3": -0.00106493, - "coeff4": 0.03062313, - "coeff5": -0.001753205, - "coeff6": 0.002142105, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "18": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 255.0, - "ref_cap_unit": "ton", - "full_eff": 6.27, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 6.67, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5530767, - "coeff2": -0.05683068, - "coeff3": 0.004423475, - "coeff4": 0.06472411, - "coeff5": -0.000737893, - "coeff6": -0.002491202, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 6.67, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.0983632, - "coeff2": -0.0163832, - "coeff3": 0.9127289, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 6.67, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1197991, - "coeff2": 0.1568955, - "coeff3": -0.004426242, - "coeff4": 0.0344964, - "coeff5": -0.00081636, - "coeff6": -0.00223623, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "19": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 255.0, - "ref_cap_unit": "ton", - "full_eff": 6.23, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.04442, - "ref_lwt": 6.67, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8606461, - "coeff2": -0.001202294, - "coeff3": 0.000939863, - "coeff4": 0.002983262, - "coeff5": 0.000411923, - "coeff6": -0.001123884, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.04442, - "ref_lwt": 6.67, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2075556, - "coeff2": -0.2126466, - "coeff3": 1.004182, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.04442, - "ref_lwt": 6.67, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8862185, - "coeff2": 0.03144947, - "coeff3": 0.0002329, - "coeff4": 0.001339712, - "coeff5": -0.000292343, - "coeff6": 0.000232071, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "20": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 265.0, - "ref_cap_unit": "ton", - "full_eff": 5.09, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03785, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 4.44, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 3.33, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6053491, - "coeff2": -0.01089778, - "coeff3": -0.001511327, - "coeff4": 0.01902687, - "coeff5": -0.000191075, - "coeff6": 0.000900818, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03785, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 4.44, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.06823245, - "coeff2": 0.6672421, - "coeff3": 0.2654211, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03785, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 4.44, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 3.33, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.182278, - "coeff2": 0.0325949, - "coeff3": -0.003904288, - "coeff4": 0.004579721, - "coeff5": -0.001028178, - "coeff6": 0.002855063, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "21": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 273.0, - "ref_cap_unit": "ton", - "full_eff": 4.64, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.09, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03785, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 4.44, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 3.33, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5735924, - "coeff2": 0.02270414, - "coeff3": -0.003331832, - "coeff4": 0.006025574, - "coeff5": 0.000324503, - "coeff6": 3.23e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03785, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 4.44, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.09, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2737941, - "coeff2": 0.3141127, - "coeff3": 0.4113671, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03785, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 4.44, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 3.33, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.2278537, - "coeff2": 0.4055945, - "coeff3": -0.03246694, - "coeff4": 0.00378823, - "coeff5": -0.000223658, - "coeff6": 0.000671552, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "22": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 291.0, - "ref_cap_unit": "ton", - "full_eff": 5.81, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.06, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02366, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5254964, - "coeff2": -0.01972389, - "coeff3": 0.000344107, - "coeff4": 0.01651466, - "coeff5": 0.00020052, - "coeff6": -0.000319325, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02366, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.06, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2368399, - "coeff2": 0.3286421, - "coeff3": 0.4344939, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02366, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2571195, - "coeff2": -0.01571421, - "coeff3": -0.003041761, - "coeff4": 0.08106512, - "coeff5": -0.002568598, - "coeff6": 0.004247073, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "23": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 293.0, - "ref_cap_unit": "ton", - "full_eff": 8.58, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.08, - "min_unloading": 0.08, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02378, - "ref_cond_fluid_flow": 0.03407, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7125878, - "coeff2": 0.0138894, - "coeff3": -0.002473407, - "coeff4": 0.02096719, - "coeff5": -0.00015661, - "coeff6": 0.000603546, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02378, - "ref_cond_fluid_flow": 0.03407, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.08, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.321532, - "coeff2": -0.009188416, - "coeff3": 0.6881582, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02378, - "ref_cond_fluid_flow": 0.03407, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7736028, - "coeff2": 0.05571395, - "coeff3": -0.003058312, - "coeff4": -0.000178901, - "coeff5": -0.000980888, - "coeff6": 0.002123462, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "24": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 298.0, - "ref_cap_unit": "ton", - "full_eff": 6.06, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.06, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04542, - "ref_cond_fluid_flow": 0.05678, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7255594, - "coeff2": -0.03502968, - "coeff3": 0.002213476, - "coeff4": 0.00392541, - "coeff5": 0.000553818, - "coeff6": -0.000863801, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04542, - "ref_cond_fluid_flow": 0.05678, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.06, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1543796, - "coeff2": 0.7276121, - "coeff3": 0.1162393, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04542, - "ref_cond_fluid_flow": 0.05678, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7238221, - "coeff2": 0.01747548, - "coeff3": -0.004524718, - "coeff4": 0.02138468, - "coeff5": -0.00093428, - "coeff6": 0.002515069, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "25": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 300.0, - "ref_cap_unit": "ton", - "full_eff": 5.96, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.05, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02839, - "ref_cond_fluid_flow": 0.05678, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.524511, - "coeff2": -0.02850126, - "coeff3": 0.000803472, - "coeff4": 0.01893133, - "coeff5": 0.000115163, - "coeff6": -9.34e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02839, - "ref_cond_fluid_flow": 0.05678, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.05, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2619878, - "coeff2": 0.2393605, - "coeff3": 0.4988306, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02839, - "ref_cond_fluid_flow": 0.05678, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1785912, - "coeff2": -0.05900023, - "coeff3": -0.000594696, - "coeff4": 0.09297889, - "coeff5": -0.002841024, - "coeff6": 0.004974221, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "26": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 306.0, - "ref_cap_unit": "ton", - "full_eff": 5.52, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.04744, - "ref_lwt": 5.56, - "ref_ect": 24.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 24.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7511044, - "coeff2": 0.02415573, - "coeff3": -0.005310959, - "coeff4": -0.001073812, - "coeff5": 0.000118954, - "coeff6": 0.001604476, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.04744, - "ref_lwt": 5.56, - "ref_ect": 24.89, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.131576, - "coeff2": -0.03004087, - "coeff3": 0.896718, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.04744, - "ref_lwt": 5.56, - "ref_ect": 24.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 24.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9187704, - "coeff2": 0.04509452, - "coeff3": -0.005119187, - "coeff4": -0.000209563, - "coeff5": -0.000643251, - "coeff6": 0.002791545, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "27": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 307.0, - "ref_cap_unit": "ton", - "full_eff": 7.39, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.05, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.06416, - "ref_lwt": 5.56, - "ref_ect": 23.61, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 16.24, - "x_max": 10.0, - "y_max": 23.61, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3608716, - "coeff2": -0.05637178, - "coeff3": -0.000342842, - "coeff4": 0.04230087, - "coeff5": -0.000439163, - "coeff6": 0.001517182, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.06416, - "ref_lwt": 5.56, - "ref_ect": 23.61, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.05, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1789841, - "coeff2": 0.2976513, - "coeff3": 0.5243235, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.06416, - "ref_lwt": 5.56, - "ref_ect": 23.61, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 16.24, - "x_max": 10.0, - "y_max": 23.61, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4365583, - "coeff2": -0.03677215, - "coeff3": -0.002779781, - "coeff4": 0.0606306, - "coeff5": -0.002290704, - "coeff6": 0.005115883, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "28": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 310.0, - "ref_cap_unit": "ton", - "full_eff": 7.57, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.14, - "min_unloading": 0.14, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 6.67, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9241019, - "coeff2": -0.04961574, - "coeff3": 0.000129168, - "coeff4": 0.03299013, - "coeff5": -0.000676948, - "coeff6": 0.001692815, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 6.67, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 0.14, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1431969, - "coeff2": -0.4920686, - "coeff3": 1.341333, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 6.67, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6769028, - "coeff2": 0.05711844, - "coeff3": -0.000607231, - "coeff4": 0.01656541, - "coeff5": -0.000808783, - "coeff6": 0.00023039, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "29": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 314.0, - "ref_cap_unit": "ton", - "full_eff": 8.0, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.08, - "min_unloading": 0.08, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02423, - "ref_cond_fluid_flow": 0.03028, - "ref_lwt": 6.67, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8655242, - "coeff2": -0.000380834, - "coeff3": -0.00132005, - "coeff4": 0.01137834, - "coeff5": -4.1e-5, - "coeff6": 0.00065311, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02423, - "ref_cond_fluid_flow": 0.03028, - "ref_lwt": 6.67, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.08, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.309115, - "coeff2": -0.01089639, - "coeff3": 0.7022967, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02423, - "ref_cond_fluid_flow": 0.03028, - "ref_lwt": 6.67, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8210185, - "coeff2": 0.04386152, - "coeff3": -0.001521829, - "coeff4": -0.004314921, - "coeff5": -0.000725167, - "coeff6": 0.001497681, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "30": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 320.0, - "ref_cap_unit": "ton", - "full_eff": 7.92, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03243, - "ref_cond_fluid_flow": 0.05173, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6542286, - "coeff2": -0.02451604, - "coeff3": 0.001253508, - "coeff4": 0.04216477, - "coeff5": 0.000140487, - "coeff6": -0.00150878, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03243, - "ref_cond_fluid_flow": 0.05173, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1147453, - "coeff2": 0.04231235, - "coeff3": 0.8419681, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03243, - "ref_cond_fluid_flow": 0.05173, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1034212, - "coeff2": 0.002327078, - "coeff3": -0.000911704, - "coeff4": 0.09104793, - "coeff5": -0.002678967, - "coeff6": 0.002274649, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "31": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 320.0, - "ref_cap_unit": "ton", - "full_eff": 4.89, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02776, - "ref_cond_fluid_flow": 0.02618, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.581058, - "coeff2": -0.04344257, - "coeff3": -0.000536911, - "coeff4": 0.02844405, - "coeff5": -0.000160939, - "coeff6": 0.000700435, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02776, - "ref_cond_fluid_flow": 0.02618, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1807198, - "coeff2": -0.1469686, - "coeff3": 0.9658417, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02776, - "ref_cond_fluid_flow": 0.02618, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6151549, - "coeff2": -0.0118125, - "coeff3": -0.00149163, - "coeff4": 0.03326625, - "coeff5": -0.0009315, - "coeff6": 0.001771875, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "32": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 321.0, - "ref_cap_unit": "ton", - "full_eff": 7.19, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.15, - "min_unloading": 0.15, - "max_plr": 1.06, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02776, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3742142, - "coeff2": -0.05536709, - "coeff3": -0.000819966, - "coeff4": 0.04655032, - "coeff5": -0.000731259, - "coeff6": 0.001887184, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02776, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": 0.0, - "x_max": 1.06, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1693841, - "coeff2": 0.2475201, - "coeff3": 0.5836059, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02776, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3922479, - "coeff2": -0.04388411, - "coeff3": -0.002748665, - "coeff4": 0.06894954, - "coeff5": -0.002563738, - "coeff6": 0.005420187, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "33": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 325.0, - "ref_cap_unit": "ton", - "full_eff": 6.57, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02593, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 10.0, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.947558, - "coeff2": -0.01187942, - "coeff3": 8.8e-5, - "coeff4": 0.000225078, - "coeff5": 0.000181578, - "coeff6": 0.000217841, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02593, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 10.0, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1408822, - "coeff2": -0.1578153, - "coeff3": 1.014316, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02593, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 10.0, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7939538, - "coeff2": 0.04096493, - "coeff3": -0.001419397, - "coeff4": -0.001639813, - "coeff5": -0.00052205, - "coeff6": 0.001348786, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "34": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 329.0, - "ref_cap_unit": "ton", - "full_eff": 5.62, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.19, - "min_unloading": 0.19, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02801, - "ref_cond_fluid_flow": 0.03186, - "ref_lwt": 5.56, - "ref_ect": 21.11, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 11.25, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.075567, - "coeff2": -0.03893571, - "coeff3": 0.001082499, - "coeff4": -0.005782829, - "coeff5": 0.000657449, - "coeff6": -0.000530289, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02801, - "ref_cond_fluid_flow": 0.03186, - "ref_lwt": 5.56, - "ref_ect": 21.11, - "ref_lct": null, - "units": "si", - "x_min": 0.19, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1608589, - "coeff2": -0.2058215, - "coeff3": 1.043133, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02801, - "ref_cond_fluid_flow": 0.03186, - "ref_lwt": 5.56, - "ref_ect": 21.11, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 11.25, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.076248, - "coeff2": 0.005436724, - "coeff3": -0.00038933, - "coeff4": -0.00435331, - "coeff5": -0.000240203, - "coeff6": 0.000840908, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "35": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 340.0, - "ref_cap_unit": "ton", - "full_eff": 6.5, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03426, - "ref_cond_fluid_flow": 0.04252, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9514432, - "coeff2": -0.02252147, - "coeff3": -1.06e-5, - "coeff4": -0.000138319, - "coeff5": 0.000391464, - "coeff6": 8.13e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03426, - "ref_cond_fluid_flow": 0.04252, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2724491, - "coeff2": 0.2710369, - "coeff3": 0.4552356, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03426, - "ref_cond_fluid_flow": 0.04252, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.126801, - "coeff2": -0.004220591, - "coeff3": -0.002002964, - "coeff4": 0.00736088, - "coeff5": -0.00115689, - "coeff6": 0.003064875, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "36": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 345.0, - "ref_cap_unit": "ton", - "full_eff": 7.78, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.17, - "min_unloading": 0.17, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03243, - "ref_cond_fluid_flow": 0.04782, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.002142, - "coeff2": -0.02505239, - "coeff3": 0.000516971, - "coeff4": 0.006321862, - "coeff5": 0.000511681, - "coeff6": -0.000479424, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03243, - "ref_cond_fluid_flow": 0.04782, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.17, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2847744, - "coeff2": 0.4027863, - "coeff3": 0.3114896, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03243, - "ref_cond_fluid_flow": 0.04782, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9070437, - "coeff2": -0.007437456, - "coeff3": -0.000969533, - "coeff4": 0.01529092, - "coeff5": -0.001069664, - "coeff6": 0.001994583, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "37": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 350.0, - "ref_cap_unit": "ton", - "full_eff": 6.18, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03533, - "ref_cond_fluid_flow": 0.0511, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8067591, - "coeff2": 0.01868314, - "coeff3": -0.005569088, - "coeff4": -0.004309148, - "coeff5": 0.000137303, - "coeff6": 0.002394081, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03533, - "ref_cond_fluid_flow": 0.0511, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2117054, - "coeff2": 0.4263662, - "coeff3": 0.3614654, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03533, - "ref_cond_fluid_flow": 0.0511, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.152795, - "coeff2": 0.09770474, - "coeff3": -0.006719705, - "coeff4": -0.02123401, - "coeff5": -0.0003642, - "coeff6": 0.001473439, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "38": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 351.0, - "ref_cap_unit": "ton", - "full_eff": 5.39, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.19, - "min_unloading": 0.19, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02593, - "ref_cond_fluid_flow": 0.03861, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3771659, - "coeff2": 0.1144965, - "coeff3": -0.008186893, - "coeff4": -0.003372584, - "coeff5": 0.000168944, - "coeff6": 0.001008523, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02593, - "ref_cond_fluid_flow": 0.03861, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.19, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1495681, - "coeff2": -0.1449639, - "coeff3": 0.994107, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02593, - "ref_cond_fluid_flow": 0.03861, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5905815, - "coeff2": 0.1190927, - "coeff3": -0.006727309, - "coeff4": -0.009580836, - "coeff5": -0.00030347, - "coeff6": 0.001540686, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "39": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 358.0, - "ref_cap_unit": "ton", - "full_eff": 6.26, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.18, - "min_unloading": 0.18, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02593, - "ref_cond_fluid_flow": 0.03823, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7582035, - "coeff2": 0.006896017, - "coeff3": -0.001491911, - "coeff4": 0.002249459, - "coeff5": 0.00039087, - "coeff6": -0.000173527, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02593, - "ref_cond_fluid_flow": 0.03823, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.18, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2226232, - "coeff2": 0.5199282, - "coeff3": 0.257847, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02593, - "ref_cond_fluid_flow": 0.03823, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.082071, - "coeff2": 0.03200888, - "coeff3": -0.00399478, - "coeff4": -0.005789604, - "coeff5": -0.000823894, - "coeff6": 0.002933539, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "40": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 358.0, - "ref_cap_unit": "ton", - "full_eff": 6.45, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.18, - "min_unloading": 0.18, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02631, - "ref_cond_fluid_flow": 0.06246, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8991536, - "coeff2": 0.006305932, - "coeff3": -0.000375637, - "coeff4": -0.01952076, - "coeff5": 0.001381302, - "coeff6": -0.001615004, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02631, - "ref_cond_fluid_flow": 0.06246, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.18, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1014593, - "coeff2": 0.6216537, - "coeff3": 0.2780213, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02631, - "ref_cond_fluid_flow": 0.06246, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.96092, - "coeff2": 0.07223733, - "coeff3": -0.001693471, - "coeff4": 0.002543722, - "coeff5": -0.000641557, - "coeff6": -0.000302854, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "41": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 360.0, - "ref_cap_unit": "ton", - "full_eff": 4.39, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.11, - "min_unloading": 0.11, - "max_plr": 1.05, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03533, - "ref_cond_fluid_flow": 0.05773, - "ref_lwt": 5.56, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.08284925, - "coeff2": 0.04206167, - "coeff3": -0.005254555, - "coeff4": 0.01964407, - "coeff5": 0.000107065, - "coeff6": 0.000229824, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03533, - "ref_cond_fluid_flow": 0.05773, - "ref_lwt": 5.56, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.11, - "y_min": 0.0, - "x_max": 1.05, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7326942, - "coeff2": -0.7962527, - "coeff3": 1.059148, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03533, - "ref_cond_fluid_flow": 0.05773, - "ref_lwt": 5.56, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1285663, - "coeff2": -0.02860032, - "coeff3": -0.001369319, - "coeff4": 0.06676366, - "coeff5": -0.001510647, - "coeff6": 0.002947167, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "42": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 365.0, - "ref_cap_unit": "ton", - "full_eff": 6.2, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03684, - "ref_cond_fluid_flow": 0.05337, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7815645, - "coeff2": -0.02448971, - "coeff3": 0.00164437, - "coeff4": 0.00556458, - "coeff5": 0.000580043, - "coeff6": -0.001086993, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03684, - "ref_cond_fluid_flow": 0.05337, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2324812, - "coeff2": 0.7690691, - "coeff3": -0.000653222, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03684, - "ref_cond_fluid_flow": 0.05337, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.119245, - "coeff2": -0.01524417, - "coeff3": -0.001074186, - "coeff4": -0.001260169, - "coeff5": -0.000438024, - "coeff6": 0.002027779, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "43": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 368.0, - "ref_cap_unit": "ton", - "full_eff": 7.61, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.16, - "min_unloading": 0.16, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03243, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.085249, - "coeff2": -0.000944125, - "coeff3": -0.0025051, - "coeff4": -0.008724367, - "coeff5": 0.000416478, - "coeff6": 0.000847375, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03243, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.16, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.09344563, - "coeff2": 0.3993002, - "coeff3": 0.5087169, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03243, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9274222, - "coeff2": 0.01278683, - "coeff3": -0.00162188, - "coeff4": 0.002816339, - "coeff5": -0.000765811, - "coeff6": 0.001881968, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "44": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 378.0, - "ref_cap_unit": "ton", - "full_eff": 5.38, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.29, - "min_unloading": 0.29, - "max_plr": 1.05, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04732, - "ref_cond_fluid_flow": 0.07098, - "ref_lwt": 6.11, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 21.11, - "x_max": 10.0, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8074052, - "coeff2": 0.03355495, - "coeff3": -0.001549617, - "coeff4": -0.007142554, - "coeff5": 0.000505636, - "coeff6": -0.000754779, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04732, - "ref_cond_fluid_flow": 0.07098, - "ref_lwt": 6.11, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.29, - "y_min": 0.0, - "x_max": 1.05, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.04079777, - "coeff2": 1.174456, - "coeff3": -0.2212711, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04732, - "ref_cond_fluid_flow": 0.07098, - "ref_lwt": 6.11, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 21.11, - "x_max": 10.0, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5339754, - "coeff2": 0.1016009, - "coeff3": -0.003979592, - "coeff4": 0.01261254, - "coeff5": -0.000466667, - "coeff6": -8.35e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "45": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 384.0, - "ref_cap_unit": "ton", - "full_eff": 7.9, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.19, - "min_unloading": 0.19, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03684, - "ref_cond_fluid_flow": 0.05337, - "ref_lwt": 5.56, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9953536, - "coeff2": -0.03118863, - "coeff3": 0.002094171, - "coeff4": 0.007086716, - "coeff5": 0.000738708, - "coeff6": -0.00138433, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03684, - "ref_cond_fluid_flow": 0.05337, - "ref_lwt": 5.56, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.19, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3336374, - "coeff2": -0.4098166, - "coeff3": 1.077791, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03684, - "ref_cond_fluid_flow": 0.05337, - "ref_lwt": 5.56, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.063866, - "coeff2": -0.0144899, - "coeff3": -0.001021036, - "coeff4": -0.001197817, - "coeff5": -0.000416351, - "coeff6": 0.001927446, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "46": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 389.0, - "ref_cap_unit": "ton", - "full_eff": 7.35, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.07571, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3227543, - "coeff2": -0.01415418, - "coeff3": -0.00509065, - "coeff4": 0.04606511, - "coeff5": -0.000876958, - "coeff6": 0.002600343, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.07571, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.09483562, - "coeff2": 0.1521114, - "coeff3": 0.7543027, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.07571, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3832184, - "coeff2": -0.03265439, - "coeff3": -0.003392654, - "coeff4": 0.0858018, - "coeff5": -0.003513013, - "coeff6": 0.00652844, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "47": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 390.0, - "ref_cap_unit": "ton", - "full_eff": 7.49, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.41, - "min_unloading": 0.41, - "max_plr": 1.07, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.07571, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9123765, - "coeff2": 0.01616509, - "coeff3": 0.001906349, - "coeff4": -0.01143164, - "coeff5": 0.001080775, - "coeff6": -0.002873661, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.07571, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.41, - "y_min": 0.0, - "x_max": 1.07, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.05154478, - "coeff2": 0.9635713, - "coeff3": -0.01896824, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.07571, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5993784, - "coeff2": 0.0652338, - "coeff3": -0.007714286, - "coeff4": 0.03114955, - "coeff5": -0.001843989, - "coeff6": 0.004096552, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "48": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 397.0, - "ref_cap_unit": "ton", - "full_eff": 7.35, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.07571, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.52075, - "coeff2": -0.009073869, - "coeff3": -0.000181217, - "coeff4": 0.0256874, - "coeff5": 4.26e-5, - "coeff6": -0.000589924, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.07571, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3043032, - "coeff2": 0.03720107, - "coeff3": 0.6590338, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.07571, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5167863, - "coeff2": -0.02788454, - "coeff3": -0.000949781, - "coeff4": 0.06693411, - "coeff5": -0.00272843, - "coeff6": 0.004723123, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "49": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 399.0, - "ref_cap_unit": "ton", - "full_eff": 7.09, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.17, - "min_unloading": 0.17, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03426, - "ref_cond_fluid_flow": 0.04252, - "ref_lwt": 6.67, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.098641, - "coeff2": -0.0248588, - "coeff3": -6.24e-5, - "coeff4": -0.001719488, - "coeff5": 0.000488732, - "coeff6": 9.62e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03426, - "ref_cond_fluid_flow": 0.04252, - "ref_lwt": 6.67, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.17, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.08788698, - "coeff2": 0.2678891, - "coeff3": 0.644518, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03426, - "ref_cond_fluid_flow": 0.04252, - "ref_lwt": 6.67, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9601814, - "coeff2": -0.003596494, - "coeff3": -0.001706786, - "coeff4": 0.006272429, - "coeff5": -0.000985821, - "coeff6": 0.002611673, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "50": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 399.0, - "ref_cap_unit": "ton", - "full_eff": 6.94, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.1, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.05047, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3983846, - "coeff2": 0.02396665, - "coeff3": -0.006601871, - "coeff4": 0.02944077, - "coeff5": -0.000457089, - "coeff6": 0.001873209, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.05047, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.1, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.03272242, - "coeff2": 0.387354, - "coeff3": 0.5789579, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.05047, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.03447077, - "coeff2": 0.1273138, - "coeff3": -0.009716868, - "coeff4": 0.08863546, - "coeff5": -0.003165958, - "coeff6": 0.002521351, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "51": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 400.0, - "ref_cap_unit": "ton", - "full_eff": 7.14, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.06, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.07571, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5674858, - "coeff2": 0.04461513, - "coeff3": -0.006341978, - "coeff4": 0.004674972, - "coeff5": 0.00043873, - "coeff6": 0.00027781, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.07571, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.3, - "y_min": 0.0, - "x_max": 1.06, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.05963988, - "coeff2": 0.3503067, - "coeff3": 0.587, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.07571, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4521342, - "coeff2": 0.005248142, - "coeff3": -0.006687636, - "coeff4": 0.05869437, - "coeff5": -0.002390647, - "coeff6": 0.005040171, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "52": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 400.0, - "ref_cap_unit": "ton", - "full_eff": 6.6, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04038, - "ref_cond_fluid_flow": 0.05804, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7929709, - "coeff2": 0.03424884, - "coeff3": -0.005567434, - "coeff4": -0.006974667, - "coeff5": 0.000253114, - "coeff6": 0.001862577, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04038, - "ref_cond_fluid_flow": 0.05804, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.07700603, - "coeff2": 0.5414789, - "coeff3": 0.3826334, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04038, - "ref_cond_fluid_flow": 0.05804, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.191784, - "coeff2": 0.02070584, - "coeff3": -0.004952378, - "coeff4": 0.01757508, - "coeff5": -0.002487599, - "coeff6": 0.005934709, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "53": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 400.0, - "ref_cap_unit": "ton", - "full_eff": 6.04, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06057, - "ref_cond_fluid_flow": 0.07571, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 32.22, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.02634, - "coeff2": -0.01612819, - "coeff3": -0.001092591, - "coeff4": -0.01784393, - "coeff5": 0.000796184, - "coeff6": -9.59e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06057, - "ref_cond_fluid_flow": 0.07571, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.118888, - "coeff2": 0.6723542, - "coeff3": 0.2068754, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06057, - "ref_cond_fluid_flow": 0.07571, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 32.22, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.042261, - "coeff2": 0.002644821, - "coeff3": -0.001468026, - "coeff4": 0.01366256, - "coeff5": -0.000830233, - "coeff6": 0.001573579, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "54": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 401.0, - "ref_cap_unit": "ton", - "full_eff": 8.54, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.18, - "min_unloading": 0.18, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04, - "ref_cond_fluid_flow": 0.05861, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.131014, - "coeff2": -0.06735406, - "coeff3": 3.03e-6, - "coeff4": 0.01307361, - "coeff5": 0.000338463, - "coeff6": 0.000787211, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04, - "ref_cond_fluid_flow": 0.05861, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.18, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.09662908, - "coeff2": 0.7475978, - "coeff3": 0.1566368, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04, - "ref_cond_fluid_flow": 0.05861, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9597856, - "coeff2": -0.006247187, - "coeff3": -0.001117998, - "coeff4": 0.00699104, - "coeff5": -0.000632125, - "coeff6": 0.001765068, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "55": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 410.0, - "ref_cap_unit": "ton", - "full_eff": 6.61, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.07, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.05047, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6287646, - "coeff2": -0.03024605, - "coeff3": 0.000613702, - "coeff4": 0.01805826, - "coeff5": 0.000164065, - "coeff6": -0.00011138, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.05047, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.07, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.09299787, - "coeff2": 0.3244475, - "coeff3": 0.5818753, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.05047, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4007341, - "coeff2": 0.001148568, - "coeff3": 0.00010495, - "coeff4": 0.05574667, - "coeff5": -0.001646131, - "coeff6": 0.0013232, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "56": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 415.0, - "ref_cap_unit": "ton", - "full_eff": 6.4, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.13, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.05047, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1438935, - "coeff2": 0.09821191, - "coeff3": -0.0117427, - "coeff4": 0.03748666, - "coeff5": -0.000570052, - "coeff6": 0.001053698, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.05047, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.13, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.03642, - "coeff2": 0.250943, - "coeff3": 0.7067059, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05047, - "ref_cond_fluid_flow": 0.05047, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.1665585, - "coeff2": 0.221158, - "coeff3": -0.01408361, - "coeff4": 0.06476151, - "coeff5": -0.002009341, - "coeff6": -7.9e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "57": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 422.0, - "ref_cap_unit": "ton", - "full_eff": 9.96, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.24, - "min_unloading": 0.24, - "max_plr": 1.06, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09085, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.369394, - "coeff2": -0.06387787, - "coeff3": -0.000276049, - "coeff4": 0.1661135, - "coeff5": -0.003105485, - "coeff6": 0.001705909, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09085, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.24, - "y_min": 0.0, - "x_max": 1.06, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1353827, - "coeff2": 0.01385983, - "coeff3": 0.8522688, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09085, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.454448, - "coeff2": -0.03615933, - "coeff3": -0.002734006, - "coeff4": 0.1683863, - "coeff5": -0.004557649, - "coeff6": 0.00536284, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "58": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 425.0, - "ref_cap_unit": "ton", - "full_eff": 7.51, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.11, - "min_unloading": 0.11, - "max_plr": 1.05, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0429, - "ref_cond_fluid_flow": 0.06719, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7106985, - "coeff2": -0.2087623, - "coeff3": 0.009421379, - "coeff4": 0.08491925, - "coeff5": -0.00126082, - "coeff6": 0.001125512, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0429, - "ref_cond_fluid_flow": 0.06719, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.11, - "y_min": 0.0, - "x_max": 1.05, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.151747, - "coeff2": -0.1577252, - "coeff3": 1.005197, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0429, - "ref_cond_fluid_flow": 0.06719, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.051921, - "coeff2": -0.1632255, - "coeff3": 0.01149042, - "coeff4": 0.05463515, - "coeff5": -0.001579985, - "coeff6": 0.001628246, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "59": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 432.0, - "ref_cap_unit": "ton", - "full_eff": 7.1, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.08139, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9981236, - "coeff2": -0.01060763, - "coeff3": -0.003921458, - "coeff4": -0.01206761, - "coeff5": -0.00013986, - "coeff6": 0.003467199, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.08139, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1563837, - "coeff2": 0.4894381, - "coeff3": 0.3541551, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.08139, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.265889, - "coeff2": 0.03401563, - "coeff3": -0.006532621, - "coeff4": -0.00660096, - "coeff5": -0.002172017, - "coeff6": 0.007121766, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "60": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 443.0, - "ref_cap_unit": "ton", - "full_eff": 5.81, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.19, - "min_unloading": 0.19, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03785, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 5.56, - "ref_ect": 21.11, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 11.94, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.099343, - "coeff2": -0.03132676, - "coeff3": 0.000410852, - "coeff4": -0.007377845, - "coeff5": 0.000577505, - "coeff6": -0.000352847, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03785, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 5.56, - "ref_ect": 21.11, - "ref_lct": null, - "units": "si", - "x_min": 0.19, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1620909, - "coeff2": -0.255389, - "coeff3": 1.092232, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03785, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 5.56, - "ref_ect": 21.11, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 11.94, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.034307, - "coeff2": 0.02390635, - "coeff3": -0.001222578, - "coeff4": -0.00534622, - "coeff5": -0.000218326, - "coeff6": 0.000628233, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "61": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 451.0, - "ref_cap_unit": "ton", - "full_eff": 5.53, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.19, - "min_unloading": 0.19, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03388, - "ref_cond_fluid_flow": 0.04669, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.110611, - "coeff2": -0.03795765, - "coeff3": 0.000285144, - "coeff4": -0.004560404, - "coeff5": 0.000404423, - "coeff6": 0.000140733, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03388, - "ref_cond_fluid_flow": 0.04669, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.19, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1996379, - "coeff2": -0.1612021, - "coeff3": 0.9608483, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03388, - "ref_cond_fluid_flow": 0.04669, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.119233, - "coeff2": 0.01130501, - "coeff3": -0.00064238, - "coeff4": -0.005144512, - "coeff5": -0.0003086, - "coeff6": 0.000781358, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "62": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 465.0, - "ref_cap_unit": "ton", - "full_eff": 7.47, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.08, - "min_unloading": 0.08, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04416, - "ref_cond_fluid_flow": 0.06624, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.040733, - "coeff2": -0.07118888, - "coeff3": 0.002262395, - "coeff4": 0.01221901, - "coeff5": 0.000215269, - "coeff6": 0.000740994, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04416, - "ref_cond_fluid_flow": 0.06624, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.08, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1836695, - "coeff2": 0.5781685, - "coeff3": 0.2385719, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04416, - "ref_cond_fluid_flow": 0.06624, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9894188, - "coeff2": 0.002983148, - "coeff3": -0.002484601, - "coeff4": 0.005974984, - "coeff5": -0.001063988, - "coeff6": 0.002601503, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "63": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 465.0, - "ref_cap_unit": "ton", - "full_eff": 6.36, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.18, - "min_unloading": 0.18, - "max_plr": 1.05, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03432, - "ref_cond_fluid_flow": 0.05035, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7355981, - "coeff2": -0.01083354, - "coeff3": -0.000924466, - "coeff4": 0.01458943, - "coeff5": 8.49e-6, - "coeff6": 0.000127957, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03432, - "ref_cond_fluid_flow": 0.05035, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.18, - "y_min": 0.0, - "x_max": 1.05, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2581595, - "coeff2": 0.2707154, - "coeff3": 0.4707425, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03432, - "ref_cond_fluid_flow": 0.05035, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7639212, - "coeff2": 0.01160405, - "coeff3": -0.005344185, - "coeff4": 0.03306796, - "coeff5": -0.002100827, - "coeff6": 0.004920586, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "64": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 471.0, - "ref_cap_unit": "ton", - "full_eff": 8.24, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.17, - "min_unloading": 0.17, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04322, - "ref_cond_fluid_flow": 0.06296, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7730916, - "coeff2": -0.08073559, - "coeff3": -0.002161313, - "coeff4": 0.06144398, - "coeff5": -0.001953734, - "coeff6": 0.004056527, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04322, - "ref_cond_fluid_flow": 0.06296, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.17, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1982584, - "coeff2": 0.04414042, - "coeff3": 0.7642946, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04322, - "ref_cond_fluid_flow": 0.06296, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7611706, - "coeff2": -0.02867067, - "coeff3": -0.002363358, - "coeff4": 0.04097113, - "coeff5": -0.002343044, - "coeff6": 0.004547017, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "65": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 473.0, - "ref_cap_unit": "ton", - "full_eff": 9.34, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.17, - "min_unloading": 0.17, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04139, - "ref_cond_fluid_flow": 0.0776, - "ref_lwt": 5.56, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.028094, - "coeff2": -0.06127553, - "coeff3": 0.003236371, - "coeff4": 0.01656482, - "coeff5": 0.000297685, - "coeff6": -0.000441836, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04139, - "ref_cond_fluid_flow": 0.0776, - "ref_lwt": 5.56, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.17, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2127966, - "coeff2": 0.3131004, - "coeff3": 0.4726018, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04139, - "ref_cond_fluid_flow": 0.0776, - "ref_lwt": 5.56, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9112226, - "coeff2": -0.04546497, - "coeff3": 0.004431126, - "coeff4": 0.0243916, - "coeff5": -0.001415836, - "coeff6": 0.001877877, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "66": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 476.0, - "ref_cap_unit": "ton", - "full_eff": 7.89, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.32, - "min_unloading": 0.32, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09085, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.986851, - "coeff2": -0.06325526, - "coeff3": 0.003498632, - "coeff4": 0.01699731, - "coeff5": 0.000257349, - "coeff6": -0.000423355, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09085, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.32, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.338641, - "coeff2": 0.2621224, - "coeff3": 0.3987109, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09085, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2925408, - "coeff2": -0.04406182, - "coeff3": -0.001292074, - "coeff4": 0.09008701, - "coeff5": -0.002646719, - "coeff6": 0.003388396, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "67": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 478.0, - "ref_cap_unit": "ton", - "full_eff": 6.59, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04366, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 18.33, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.434463, - "coeff2": -0.005781149, - "coeff3": 0.000285231, - "coeff4": 0.02723246, - "coeff5": 0.00012808, - "coeff6": -0.000896433, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04366, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1619116, - "coeff2": 0.236242, - "coeff3": 0.6032459, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04366, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 18.33, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6792987, - "coeff2": -0.05291217, - "coeff3": -0.005280108, - "coeff4": 0.05252682, - "coeff5": -0.002523689, - "coeff6": 0.00734494, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "68": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 490.0, - "ref_cap_unit": "ton", - "full_eff": 8.32, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.18, - "min_unloading": 0.18, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04757, - "ref_cond_fluid_flow": 0.06934, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2950574, - "coeff2": -0.1036684, - "coeff3": -0.004169567, - "coeff4": 0.125679, - "coeff5": -0.004004203, - "coeff6": 0.006718687, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04757, - "ref_cond_fluid_flow": 0.06934, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.18, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.237401, - "coeff2": -0.1796745, - "coeff3": 0.9441507, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04757, - "ref_cond_fluid_flow": 0.06934, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4742518, - "coeff2": -0.05109937, - "coeff3": -0.002845323, - "coeff4": 0.08257997, - "coeff5": -0.003404799, - "coeff6": 0.005625321, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "69": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 491.0, - "ref_cap_unit": "ton", - "full_eff": 9.04, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.17, - "min_unloading": 0.17, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03912, - "ref_cond_fluid_flow": 0.07192, - "ref_lwt": 7.78, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.072553, - "coeff2": -0.008058631, - "coeff3": -0.002109608, - "coeff4": -0.00126291, - "coeff5": 0.000615544, - "coeff6": 0.000479675, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03912, - "ref_cond_fluid_flow": 0.07192, - "ref_lwt": 7.78, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.17, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2465824, - "coeff2": 0.4494453, - "coeff3": 0.303768, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03912, - "ref_cond_fluid_flow": 0.07192, - "ref_lwt": 7.78, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6509915, - "coeff2": 0.02567642, - "coeff3": -0.005417815, - "coeff4": 0.03406103, - "coeff5": -0.00170364, - "coeff6": 0.003336164, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "70": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 498.0, - "ref_cap_unit": "ton", - "full_eff": 6.73, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.06, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04145, - "ref_cond_fluid_flow": 0.09337, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8089395, - "coeff2": 0.02628482, - "coeff3": -0.001773497, - "coeff4": -0.00811843, - "coeff5": 0.000714681, - "coeff6": -0.000648171, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04145, - "ref_cond_fluid_flow": 0.09337, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.06, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2250725, - "coeff2": 0.2648297, - "coeff3": 0.5095786, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04145, - "ref_cond_fluid_flow": 0.09337, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7923045, - "coeff2": 0.1003672, - "coeff3": -0.0043489, - "coeff4": 0.003755572, - "coeff5": -0.000767549, - "coeff6": 0.00067886, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "71": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 500.0, - "ref_cap_unit": "ton", - "full_eff": 5.96, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 24.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4910329, - "coeff2": -0.09895115, - "coeff3": 0.004257871, - "coeff4": 0.05433817, - "coeff5": -0.000818491, - "coeff6": 0.000617881, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3694797, - "coeff2": 0.09551656, - "coeff3": 0.5347291, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 24.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.074211, - "coeff2": 0.007710761, - "coeff3": -0.00316677, - "coeff4": -0.01868765, - "coeff5": 0.000127387, - "coeff6": 0.002744586, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "72": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 500.0, - "ref_cap_unit": "ton", - "full_eff": 5.76, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.51, - "y_max": 24.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6794525, - "coeff2": 0.06694756, - "coeff3": -0.003625396, - "coeff4": -0.01018762, - "coeff5": 0.001066394, - "coeff6": -0.002113402, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.07859908, - "coeff2": 0.1950291, - "coeff3": 0.7241581, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.51, - "y_max": 24.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4575085, - "coeff2": 0.1313508, - "coeff3": -0.004408831, - "coeff4": 0.01930354, - "coeff5": -0.000547964, - "coeff6": -0.00137658, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "73": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 500.0, - "ref_cap_unit": "ton", - "full_eff": 6.26, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.14, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 24.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2311197, - "coeff2": 0.09581517, - "coeff3": -0.005672726, - "coeff4": 0.02766035, - "coeff5": -0.000141121, - "coeff6": -0.001011216, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.14, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1720545, - "coeff2": 0.5598164, - "coeff3": 0.2626117, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 24.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8975936, - "coeff2": -0.0145974, - "coeff3": 0.003647187, - "coeff4": 0.03202545, - "coeff5": -0.001190379, - "coeff6": 0.000329781, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "74": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 500.0, - "ref_cap_unit": "ton", - "full_eff": 5.96, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 24.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.494932, - "coeff2": 0.009099785, - "coeff3": -0.000693584, - "coeff4": 0.03277452, - "coeff5": -0.000389548, - "coeff6": -0.000552401, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2236154, - "coeff2": 0.2590053, - "coeff3": 0.5169137, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 24.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8492365, - "coeff2": 0.05551947, - "coeff3": -0.000297314, - "coeff4": 0.001164389, - "coeff5": -0.000295572, - "coeff6": 8.46e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "75": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 500.0, - "ref_cap_unit": "ton", - "full_eff": 5.96, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.243313, - "coeff2": -0.03031784, - "coeff3": 0.003452464, - "coeff4": -0.02739941, - "coeff5": 0.00091417, - "coeff6": -0.00100008, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1871377, - "coeff2": 0.5849639, - "coeff3": 0.2291447, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.09566057, - "coeff2": -0.02457943, - "coeff3": -0.006827143, - "coeff4": 0.0711936, - "coeff5": -0.00204768, - "coeff6": 0.0052488, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "76": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 500.0, - "ref_cap_unit": "ton", - "full_eff": 6.28, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.06, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5605391, - "coeff2": -0.01377994, - "coeff3": 6.57e-5, - "coeff4": 0.01321951, - "coeff5": 0.000268607, - "coeff6": -0.000501145, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.06, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1861223, - "coeff2": 0.5482049, - "coeff3": 0.2647377, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7079149, - "coeff2": -0.002006276, - "coeff3": -0.002596043, - "coeff4": 0.03005922, - "coeff5": -0.001056423, - "coeff6": 0.002045705, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "77": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 500.0, - "ref_cap_unit": "ton", - "full_eff": 5.86, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06303, - "ref_cond_fluid_flow": 0.07337, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 24.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1743365, - "coeff2": -0.05054806, - "coeff3": -0.005424748, - "coeff4": 0.08244673, - "coeff5": -0.002400392, - "coeff6": 0.00507872, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06303, - "ref_cond_fluid_flow": 0.07337, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.278458, - "coeff2": -0.5498632, - "coeff3": 1.269693, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06303, - "ref_cond_fluid_flow": 0.07337, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 24.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3677279, - "coeff2": -0.03175504, - "coeff3": -0.004096383, - "coeff4": 0.07527566, - "coeff5": -0.00275754, - "coeff6": 0.00535902, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "78": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 500.0, - "ref_cap_unit": "ton", - "full_eff": 6.46, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 24.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.07989434, - "coeff2": 0.02062907, - "coeff3": -0.000405083, - "coeff4": 0.04570552, - "coeff5": -0.000146916, - "coeff6": -0.001563259, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3268954, - "coeff2": 0.3297771, - "coeff3": 0.3423342, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 24.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.066671, - "coeff2": 0.00588924, - "coeff3": -0.003155053, - "coeff4": -0.01591039, - "coeff5": 0.00010429, - "coeff6": 0.002576256, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "79": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 500.0, - "ref_cap_unit": "ton", - "full_eff": 6.87, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 24.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6329473, - "coeff2": 0.005521802, - "coeff3": 0.000148717, - "coeff4": 0.002433576, - "coeff5": 0.000710013, - "coeff6": -0.001108627, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.24019, - "coeff2": 0.5090345, - "coeff3": 0.2500532, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06309, - "ref_cond_fluid_flow": 0.06309, - "ref_lwt": 5.56, - "ref_ect": 24.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 24.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8085529, - "coeff2": 0.03412026, - "coeff3": -0.000418459, - "coeff4": 0.004111323, - "coeff5": -0.000176463, - "coeff6": 0.000418475, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "80": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 505.0, - "ref_cap_unit": "ton", - "full_eff": 8.0, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.17, - "min_unloading": 0.17, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04757, - "ref_cond_fluid_flow": 0.07003, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8006719, - "coeff2": -0.03137026, - "coeff3": 0.000409889, - "coeff4": 0.03176921, - "coeff5": -0.000210457, - "coeff6": -7.66e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04757, - "ref_cond_fluid_flow": 0.07003, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.17, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3276235, - "coeff2": 0.2787167, - "coeff3": 0.3952405, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04757, - "ref_cond_fluid_flow": 0.07003, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4841535, - "coeff2": -0.0358426, - "coeff3": -0.001467417, - "coeff4": 0.07773868, - "coeff5": -0.003125809, - "coeff6": 0.003729631, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "81": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 506.0, - "ref_cap_unit": "ton", - "full_eff": 6.18, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06303, - "ref_cond_fluid_flow": 0.08858, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 26.11, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5872331, - "coeff2": -0.03907248, - "coeff3": 0.000347491, - "coeff4": 0.02950392, - "coeff5": -0.000251002, - "coeff6": 0.000248161, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06303, - "ref_cond_fluid_flow": 0.08858, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3090532, - "coeff2": 0.2641442, - "coeff3": 0.4269265, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06303, - "ref_cond_fluid_flow": 0.08858, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 26.11, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2703515, - "coeff2": -0.04051337, - "coeff3": -0.005968813, - "coeff4": 0.08261488, - "coeff5": -0.003019425, - "coeff6": 0.00671804, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "82": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 506.0, - "ref_cap_unit": "ton", - "full_eff": 6.18, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04454, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 18.33, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3137523, - "coeff2": -0.01879556, - "coeff3": -0.001860907, - "coeff4": 0.03469711, - "coeff5": -0.000150348, - "coeff6": 0.000764124, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04454, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1699409, - "coeff2": 0.1874304, - "coeff3": 0.6410385, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04454, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 18.33, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3331346, - "coeff2": -0.05678656, - "coeff3": -0.001257764, - "coeff4": 0.08198893, - "coeff5": -0.00261249, - "coeff6": 0.004226087, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "83": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 510.0, - "ref_cap_unit": "ton", - "full_eff": 8.11, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.08, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05148, - "ref_cond_fluid_flow": 0.09653, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8546274, - "coeff2": 0.2456473, - "coeff3": -0.009770595, - "coeff4": -0.07386557, - "coeff5": 0.002843499, - "coeff6": -0.005292981, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.05148, - "ref_cond_fluid_flow": 0.09653, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.08, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.03187543, - "coeff2": 0.8272483, - "coeff3": 0.1279099, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05148, - "ref_cond_fluid_flow": 0.09653, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.53614, - "coeff2": -0.163076, - "coeff3": 0.01225832, - "coeff4": 0.02148166, - "coeff5": -0.0016547, - "coeff6": 0.002660568, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "84": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 510.0, - "ref_cap_unit": "ton", - "full_eff": 7.9, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.05, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05148, - "ref_cond_fluid_flow": 0.09653, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5984829, - "coeff2": -0.15527, - "coeff3": 0.006909012, - "coeff4": 0.06801572, - "coeff5": -0.000745075, - "coeff6": 0.00057646, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.05148, - "ref_cond_fluid_flow": 0.09653, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.05, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.144588, - "coeff2": 0.1059293, - "coeff3": 0.7489704, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05148, - "ref_cond_fluid_flow": 0.09653, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9552268, - "coeff2": -0.1553435, - "coeff3": 0.007958834, - "coeff4": 0.06132388, - "coeff5": -0.001899594, - "coeff6": 0.003323245, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "85": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 511.0, - "ref_cap_unit": "ton", - "full_eff": 5.69, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.39, - "min_unloading": 0.39, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07737, - "ref_cond_fluid_flow": 0.09672, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 21.11, - "x_max": 10.0, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.08429, - "coeff2": -0.04318103, - "coeff3": 0.001586113, - "coeff4": 0.001664015, - "coeff5": 8.04e-5, - "coeff6": 5.68e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07737, - "ref_cond_fluid_flow": 0.09672, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.39, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5926251, - "coeff2": -0.2657314, - "coeff3": 0.6731751, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07737, - "ref_cond_fluid_flow": 0.09672, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 21.11, - "x_max": 10.0, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9084596, - "coeff2": 0.04671596, - "coeff3": -0.001188845, - "coeff4": -0.002284596, - "coeff5": -3.17e-5, - "coeff6": -0.000357786, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "86": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 512.0, - "ref_cap_unit": "ton", - "full_eff": 6.34, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05161, - "ref_cond_fluid_flow": 0.06385, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6931082, - "coeff2": -0.01885558, - "coeff3": 0.000834546, - "coeff4": 0.01263879, - "coeff5": 0.000458803, - "coeff6": -0.000822147, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.05161, - "ref_cond_fluid_flow": 0.06385, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1040764, - "coeff2": 0.2818752, - "coeff3": 0.6144036, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05161, - "ref_cond_fluid_flow": 0.06385, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6174861, - "coeff2": -0.07299051, - "coeff3": -0.001897105, - "coeff4": 0.07003662, - "coeff5": -0.002852439, - "coeff6": 0.005751931, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "87": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 531.0, - "ref_cap_unit": "ton", - "full_eff": 10.09, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09085, - "ref_lwt": 7.78, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6668391, - "coeff2": 0.01506485, - "coeff3": -0.004249134, - "coeff4": 0.03588996, - "coeff5": -0.000168159, - "coeff6": 0.000702846, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09085, - "ref_lwt": 7.78, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2157002, - "coeff2": 0.2251016, - "coeff3": 0.5584287, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09085, - "ref_lwt": 7.78, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4451516, - "coeff2": -0.01252382, - "coeff3": -0.002878042, - "coeff4": 0.06132233, - "coeff5": -0.002365055, - "coeff6": 0.004514258, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "88": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 532.0, - "ref_cap_unit": "ton", - "full_eff": 6.49, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.19, - "min_unloading": 0.19, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06303, - "ref_cond_fluid_flow": 0.0877, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.029608, - "coeff2": -0.07149045, - "coeff3": 0.002043279, - "coeff4": -0.000611647, - "coeff5": 0.000390833, - "coeff6": 0.000687023, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06303, - "ref_cond_fluid_flow": 0.0877, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.19, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2984908, - "coeff2": 0.2906868, - "coeff3": 0.4089411, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06303, - "ref_cond_fluid_flow": 0.0877, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.00565863, - "coeff2": -0.03836575, - "coeff3": -0.005122195, - "coeff4": 0.1068063, - "coeff5": -0.003377824, - "coeff6": 0.005650118, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "89": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 535.0, - "ref_cap_unit": "ton", - "full_eff": 6.77, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 6.67, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6175311, - "coeff2": -0.03913241, - "coeff3": 0.000617796, - "coeff4": 0.0277564, - "coeff5": -0.000215147, - "coeff6": 0.00055149, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 6.67, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.06087656, - "coeff2": 0.4842164, - "coeff3": 0.4571519, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 6.67, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5065247, - "coeff2": -0.004158206, - "coeff3": -0.002681976, - "coeff4": 0.04763436, - "coeff5": -0.00195127, - "coeff6": 0.003994399, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "90": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 535.0, - "ref_cap_unit": "ton", - "full_eff": 6.53, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.19, - "min_unloading": 0.19, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04397, - "ref_cond_fluid_flow": 0.1041, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 9.44, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4434989, - "coeff2": 0.04361264, - "coeff3": -0.001733337, - "coeff4": 0.009915503, - "coeff5": 0.000431272, - "coeff6": -0.001122346, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04397, - "ref_cond_fluid_flow": 0.1041, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.19, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.05272116, - "coeff2": 0.4176382, - "coeff3": 0.531087, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04397, - "ref_cond_fluid_flow": 0.1041, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 9.44, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8561286, - "coeff2": 0.04130164, - "coeff3": -0.000710934, - "coeff4": 0.004306273, - "coeff5": -0.000633661, - "coeff6": 0.000721164, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "91": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 539.0, - "ref_cap_unit": "ton", - "full_eff": 6.42, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.09, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09085, - "ref_lwt": 6.67, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3915073, - "coeff2": -0.04399727, - "coeff3": -3.87e-6, - "coeff4": 0.04623771, - "coeff5": -0.000709232, - "coeff6": 0.001372133, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09085, - "ref_lwt": 6.67, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.09, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2592598, - "coeff2": 0.1425462, - "coeff3": 0.5966041, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09085, - "ref_lwt": 6.67, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8573195, - "coeff2": -0.1131937, - "coeff3": 0.003444205, - "coeff4": 0.04865045, - "coeff5": -0.002103805, - "coeff6": 0.004986639, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "92": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 550.0, - "ref_cap_unit": "ton", - "full_eff": 7.55, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.06, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05552, - "ref_cond_fluid_flow": 0.08675, - "ref_lwt": 5.56, - "ref_ect": 13.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.173674, - "coeff2": -0.1301647, - "coeff3": 0.005588446, - "coeff4": 0.008605153, - "coeff5": 7.23e-5, - "coeff6": 0.001314581, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.05552, - "ref_cond_fluid_flow": 0.08675, - "ref_lwt": 5.56, - "ref_ect": 13.89, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.06, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1706237, - "coeff2": 0.6063362, - "coeff3": 0.2170672, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05552, - "ref_cond_fluid_flow": 0.08675, - "ref_lwt": 5.56, - "ref_ect": 13.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.04420318, - "coeff2": 0.1103599, - "coeff3": -0.002597752, - "coeff4": 0.07043754, - "coeff5": -0.002138316, - "coeff6": -0.000469692, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "93": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 550.0, - "ref_cap_unit": "ton", - "full_eff": 6.01, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.08, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05552, - "ref_cond_fluid_flow": 0.07981, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2885371, - "coeff2": -0.005877829, - "coeff3": -0.001807763, - "coeff4": 0.05193076, - "coeff5": -0.000793637, - "coeff6": 0.00110859, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.05552, - "ref_cond_fluid_flow": 0.07981, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.08, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3849256, - "coeff2": -0.2369152, - "coeff3": 0.8496351, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05552, - "ref_cond_fluid_flow": 0.07981, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2893111, - "coeff2": -0.03834949, - "coeff3": 0.001757934, - "coeff4": 0.08665805, - "coeff5": -0.002597243, - "coeff6": 0.002413315, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "94": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 561.0, - "ref_cap_unit": "ton", - "full_eff": 6.28, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.06, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04145, - "ref_cond_fluid_flow": 0.09337, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.097378, - "coeff2": -0.03018324, - "coeff3": -0.0027922, - "coeff4": -0.01252428, - "coeff5": 0.000209523, - "coeff6": 0.002409252, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04145, - "ref_cond_fluid_flow": 0.09337, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.06, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1282891, - "coeff2": 0.2722981, - "coeff3": 0.6012232, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04145, - "ref_cond_fluid_flow": 0.09337, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.110884, - "coeff2": 0.07376077, - "coeff3": -0.005957719, - "coeff4": -0.02861037, - "coeff5": -0.00021291, - "coeff6": 0.002547028, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "95": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 568.0, - "ref_cap_unit": "ton", - "full_eff": 7.24, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.18, - "min_unloading": 0.18, - "max_plr": 1.06, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04397, - "ref_cond_fluid_flow": 0.1041, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1188194, - "coeff2": 0.08769791, - "coeff3": -0.001692086, - "coeff4": 0.002209962, - "coeff5": 0.001327958, - "coeff6": -0.003249833, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04397, - "ref_cond_fluid_flow": 0.1041, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.18, - "y_min": 0.0, - "x_max": 1.06, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.09359332, - "coeff2": 0.5873752, - "coeff3": 0.320899, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04397, - "ref_cond_fluid_flow": 0.1041, - "ref_lwt": 8.89, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 7.22, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9058272, - "coeff2": 0.1309175, - "coeff3": -0.00344662, - "coeff4": -0.03166792, - "coeff5": 0.00023252, - "coeff6": -0.000489226, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "96": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 581.0, - "ref_cap_unit": "ton", - "full_eff": 8.44, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.08, - "min_unloading": 0.08, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04757, - "ref_cond_fluid_flow": 0.06814, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7891693, - "coeff2": 0.01168677, - "coeff3": -0.00182547, - "coeff4": 0.01278749, - "coeff5": 0.000152132, - "coeff6": 0.000215675, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04757, - "ref_cond_fluid_flow": 0.06814, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.08, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.12256, - "coeff2": 0.3070007, - "coeff3": 0.5712759, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04757, - "ref_cond_fluid_flow": 0.06814, - "ref_lwt": 6.11, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 12.78, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8383569, - "coeff2": 0.04716323, - "coeff3": -0.002515385, - "coeff4": -0.003773603, - "coeff5": -0.000918632, - "coeff6": 0.002177057, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "97": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 581.0, - "ref_cap_unit": "ton", - "full_eff": 9.08, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.28, - "min_unloading": 0.28, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.09085, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 4.44, - "ref_ect": 18.33, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 18.33, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6065177, - "coeff2": 0.01178669, - "coeff3": 0.002098586, - "coeff4": 0.01532536, - "coeff5": 0.000675689, - "coeff6": -0.002629852, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.09085, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 4.44, - "ref_ect": 18.33, - "ref_lct": null, - "units": "si", - "x_min": 0.28, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2173752, - "coeff2": 0.439472, - "coeff3": 0.3431813, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.09085, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 4.44, - "ref_ect": 18.33, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 18.33, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": -1.340241, - "coeff2": 0.007634284, - "coeff3": -0.003044184, - "coeff4": 0.1991327, - "coeff5": -0.00453024, - "coeff6": 0.002700765, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "98": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 585.0, - "ref_cap_unit": "ton", - "full_eff": 6.05, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.28, - "min_unloading": 0.28, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.08322, - "ref_cond_fluid_flow": 0.09722, - "ref_lwt": 7.78, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8623086, - "coeff2": -0.0584449, - "coeff3": -0.002284745, - "coeff4": 0.02469188, - "coeff5": -0.001022604, - "coeff6": 0.003996523, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.08322, - "ref_cond_fluid_flow": 0.09722, - "ref_lwt": 7.78, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.28, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4041274, - "coeff2": -0.3861525, - "coeff3": 0.9804493, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.08322, - "ref_cond_fluid_flow": 0.09722, - "ref_lwt": 7.78, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7737452, - "coeff2": -0.01249478, - "coeff3": -0.003193419, - "coeff4": 0.02110302, - "coeff5": -0.001188413, - "coeff6": 0.003820335, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "99": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 600.0, - "ref_cap_unit": "ton", - "full_eff": 7.15, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06057, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6270855, - "coeff2": -0.04119654, - "coeff3": 0.001327107, - "coeff4": 0.02661446, - "coeff5": -0.000185683, - "coeff6": 0.000509494, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06057, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2469187, - "coeff2": 0.186269, - "coeff3": 0.5660904, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06057, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5359238, - "coeff2": 0.01785857, - "coeff3": 0.001579272, - "coeff4": 0.04522868, - "coeff5": -0.001632172, - "coeff6": 0.000600806, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "100": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 604.0, - "ref_cap_unit": "ton", - "full_eff": 6.03, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05552, - "ref_cond_fluid_flow": 0.07981, - "ref_lwt": 8.89, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.157799, - "coeff2": -0.03621524, - "coeff3": -0.003684818, - "coeff4": -0.01202959, - "coeff5": -7.38e-5, - "coeff6": 0.003787365, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.05552, - "ref_cond_fluid_flow": 0.07981, - "ref_lwt": 8.89, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1051419, - "coeff2": 0.2033679, - "coeff3": 0.6902026, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05552, - "ref_cond_fluid_flow": 0.07981, - "ref_lwt": 8.89, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.040134, - "coeff2": -0.0174565, - "coeff3": 0.001084856, - "coeff4": 0.006629328, - "coeff5": -0.000800899, - "coeff6": 0.001567769, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "101": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 614.0, - "ref_cap_unit": "ton", - "full_eff": 6.85, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.14, - "min_unloading": 0.14, - "max_plr": 1.05, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.910673, - "coeff2": -0.00378641, - "coeff3": -0.001084261, - "coeff4": -0.007148246, - "coeff5": 0.00051788, - "coeff6": 1.82e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.14, - "y_min": 0.0, - "x_max": 1.05, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2595694, - "coeff2": 0.1889684, - "coeff3": 0.551845, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6322235, - "coeff2": 0.01553954, - "coeff3": -0.00914977, - "coeff4": 0.05284289, - "coeff5": -0.002818835, - "coeff6": 0.007074096, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "102": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 621.0, - "ref_cap_unit": "ton", - "full_eff": 6.78, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04883, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 7.78, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 18.33, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8877947, - "coeff2": -0.01334886, - "coeff3": 0.001689581, - "coeff4": -0.00159971, - "coeff5": 0.000788495, - "coeff6": -0.0015849, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04883, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 7.78, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.08942647, - "coeff2": 0.524954, - "coeff3": 0.3850801, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04883, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 7.78, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 18.33, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.23568, - "coeff2": 0.02213527, - "coeff3": -0.001770186, - "coeff4": -0.01131594, - "coeff5": -0.00050087, - "coeff6": 0.001356522, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "103": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 626.0, - "ref_cap_unit": "ton", - "full_eff": 6.69, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.14, - "min_unloading": 0.14, - "max_plr": 1.05, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8234137, - "coeff2": 0.01308264, - "coeff3": -0.001147806, - "coeff4": -0.004071161, - "coeff5": 0.000522087, - "coeff6": -0.00063125, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.14, - "y_min": 0.0, - "x_max": 1.05, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2653493, - "coeff2": 0.144462, - "coeff3": 0.5911158, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5474968, - "coeff2": -0.004800356, - "coeff3": -0.006845886, - "coeff4": 0.06302552, - "coeff5": -0.002911528, - "coeff6": 0.00659869, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "104": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 635.0, - "ref_cap_unit": "ton", - "full_eff": 9.54, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06214, - "ref_cond_fluid_flow": 0.1164, - "ref_lwt": 5.56, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7145541, - "coeff2": -0.01074745, - "coeff3": -0.001010204, - "coeff4": 0.03081188, - "coeff5": 0.00010612, - "coeff6": -0.000432536, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06214, - "ref_cond_fluid_flow": 0.1164, - "ref_lwt": 5.56, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.07308728, - "coeff2": 0.1513521, - "coeff3": 0.7709311, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06214, - "ref_cond_fluid_flow": 0.1164, - "ref_lwt": 5.56, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7139071, - "coeff2": -0.04174477, - "coeff3": 0.005188589, - "coeff4": 0.0435054, - "coeff5": -0.001632005, - "coeff6": 0.000936459, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "105": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 635.0, - "ref_cap_unit": "ton", - "full_eff": 9.54, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06107, - "ref_cond_fluid_flow": 0.11451, - "ref_lwt": 5.56, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7563409, - "coeff2": -0.01966623, - "coeff3": -0.000392749, - "coeff4": 0.02973607, - "coeff5": 0.000129923, - "coeff6": -0.000432536, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06107, - "ref_cond_fluid_flow": 0.11451, - "ref_lwt": 5.56, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.06917141, - "coeff2": 0.1743339, - "coeff3": 0.7524059, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06107, - "ref_cond_fluid_flow": 0.11451, - "ref_lwt": 5.56, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7585741, - "coeff2": -0.05127829, - "coeff3": 0.005848602, - "coeff4": 0.04235544, - "coeff5": -0.001606561, - "coeff6": 0.000936459, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "106": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 636.0, - "ref_cap_unit": "ton", - "full_eff": 6.41, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.13, - "min_unloading": 0.13, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.856795, - "coeff2": 0.003354557, - "coeff3": 0.001047901, - "coeff4": -0.00521725, - "coeff5": 0.000656531, - "coeff6": -0.00136174, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.13, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2605354, - "coeff2": 0.2125571, - "coeff3": 0.5269144, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.689971, - "coeff2": -0.001413334, - "coeff3": -0.001109323, - "coeff4": 0.0407812, - "coeff5": -0.001785625, - "coeff6": 0.002977821, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "107": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 647.0, - "ref_cap_unit": "ton", - "full_eff": 6.32, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.13, - "min_unloading": 0.13, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8326094, - "coeff2": -0.006056615, - "coeff3": -0.000301663, - "coeff4": -0.002498578, - "coeff5": 0.000493336, - "coeff6": -0.000312563, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.13, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2735485, - "coeff2": 0.2163041, - "coeff3": 0.5099054, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.034673, - "coeff2": -0.01091064, - "coeff3": 0.000901948, - "coeff4": 0.009686229, - "coeff5": -0.000916078, - "coeff6": 0.002045641, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "108": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 654.0, - "ref_cap_unit": "ton", - "full_eff": 8.1, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.23, - "min_unloading": 0.23, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09085, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7178121, - "coeff2": 0.006561784, - "coeff3": 8.19e-6, - "coeff4": 0.02319141, - "coeff5": -1.76e-6, - "coeff6": -0.000883441, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09085, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.23, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1161399, - "coeff2": 0.4347344, - "coeff3": 0.448638, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09085, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6268137, - "coeff2": 0.03920902, - "coeff3": -0.000547588, - "coeff4": 0.03072669, - "coeff5": -0.001474615, - "coeff6": 0.000857778, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "109": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 659.0, - "ref_cap_unit": "ton", - "full_eff": 6.33, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.09085, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 5.56, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.350233, - "coeff2": -0.0230151, - "coeff3": 0.00057496, - "coeff4": 0.01902421, - "coeff5": 0.000310997, - "coeff6": -0.000471452, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.09085, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 5.56, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.09861441, - "coeff2": 0.5297727, - "coeff3": 0.3707229, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.09085, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 5.56, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7277716, - "coeff2": 0.01018101, - "coeff3": -0.000628244, - "coeff4": 0.01337701, - "coeff5": -0.000505035, - "coeff6": 0.001527259, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "110": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 680.0, - "ref_cap_unit": "ton", - "full_eff": 6.77, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06858, - "ref_cond_fluid_flow": 0.0846, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6266646, - "coeff2": -0.02367443, - "coeff3": 0.00040313, - "coeff4": 0.02827714, - "coeff5": -0.000198524, - "coeff6": -0.000147026, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06858, - "ref_cond_fluid_flow": 0.0846, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3036386, - "coeff2": 0.252485, - "coeff3": 0.4429285, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06858, - "ref_cond_fluid_flow": 0.0846, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3676388, - "coeff2": -0.0508768, - "coeff3": -0.001772675, - "coeff4": 0.09518123, - "coeff5": -0.003403878, - "coeff6": 0.004526983, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "111": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 680.0, - "ref_cap_unit": "ton", - "full_eff": 6.44, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06858, - "ref_cond_fluid_flow": 0.0846, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6230142, - "coeff2": -0.02371649, - "coeff3": 0.000399627, - "coeff4": 0.02874515, - "coeff5": -0.00021151, - "coeff6": -0.000152619, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06858, - "ref_cond_fluid_flow": 0.0846, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.09774812, - "coeff2": 0.2490111, - "coeff3": 0.6539378, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06858, - "ref_cond_fluid_flow": 0.0846, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3676388, - "coeff2": -0.0508768, - "coeff3": -0.001772675, - "coeff4": 0.09518123, - "coeff5": -0.003403878, - "coeff6": 0.004526983, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "112": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 686.0, - "ref_cap_unit": "ton", - "full_eff": 5.58, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.12, - "min_unloading": 0.12, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.09085, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4626807, - "coeff2": -0.02305674, - "coeff3": 0.001169126, - "coeff4": 0.03431185, - "coeff5": -0.000339694, - "coeff6": -7.38e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.09085, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.12, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2472427, - "coeff2": 0.7531481, - "coeff3": 0.000864362, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.09085, - "ref_cond_fluid_flow": 0.11356, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7473817, - "coeff2": 0.008069214, - "coeff3": 8.43e-5, - "coeff4": 0.01925706, - "coeff5": -0.000750578, - "coeff6": 0.001174526, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "113": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 700.0, - "ref_cap_unit": "ton", - "full_eff": 6.67, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07066, - "ref_cond_fluid_flow": 0.10157, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5462893, - "coeff2": 0.02854651, - "coeff3": -0.005770782, - "coeff4": 0.01634571, - "coeff5": -0.000264531, - "coeff6": 0.002138325, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07066, - "ref_cond_fluid_flow": 0.10157, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.09222135, - "coeff2": 0.583098, - "coeff3": 0.3250019, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07066, - "ref_cond_fluid_flow": 0.10157, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9561527, - "coeff2": 0.05742, - "coeff3": -0.004868087, - "coeff4": 0.01799507, - "coeff5": -0.001793848, - "coeff6": 0.003194186, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "114": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 730.0, - "ref_cap_unit": "ton", - "full_eff": 11.77, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.11, - "min_unloading": 0.11, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.12113, - "ref_cond_fluid_flow": 0.15142, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.456199, - "coeff2": -0.03333063, - "coeff3": -0.001763576, - "coeff4": 0.0562452, - "coeff5": -8.54e-5, - "coeff6": 0.00035676, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.12113, - "ref_cond_fluid_flow": 0.15142, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.11, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1039419, - "coeff2": 0.4184975, - "coeff3": 0.477421, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.12113, - "ref_cond_fluid_flow": 0.15142, - "ref_lwt": 4.44, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4549428, - "coeff2": 0.02748161, - "coeff3": -0.004298342, - "coeff4": 0.04363928, - "coeff5": -0.001352509, - "coeff6": 0.002964225, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "115": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 788.0, - "ref_cap_unit": "ton", - "full_eff": 6.84, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.10094, - "ref_cond_fluid_flow": 0.15142, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7203736, - "coeff2": 0.0103046, - "coeff3": -0.000785424, - "coeff4": -0.001206349, - "coeff5": 0.000821006, - "coeff6": -0.001455414, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.10094, - "ref_cond_fluid_flow": 0.15142, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.08653354, - "coeff2": 0.1737382, - "coeff3": 0.7403679, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.10094, - "ref_cond_fluid_flow": 0.15142, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7734286, - "coeff2": 0.04848829, - "coeff3": -0.001859209, - "coeff4": 0.02611971, - "coeff5": -0.001243562, - "coeff6": 0.000721018, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "116": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 796.0, - "ref_cap_unit": "ton", - "full_eff": 6.4, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.09893, - "ref_cond_fluid_flow": 0.13761, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2267558, - "coeff2": -0.07615857, - "coeff3": 0.002140583, - "coeff4": 0.07088812, - "coeff5": -0.001124968, - "coeff6": 0.000608984, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.09893, - "ref_cond_fluid_flow": 0.13761, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3023576, - "coeff2": -0.02893592, - "coeff3": 0.7262269, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.09893, - "ref_cond_fluid_flow": 0.13761, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2210324, - "coeff2": -0.0275232, - "coeff3": 0.000490376, - "coeff4": 0.07337449, - "coeff5": -0.001919426, - "coeff6": 0.001935659, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "117": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 891.0, - "ref_cap_unit": "ton", - "full_eff": 9.16, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.07, - "min_unloading": 0.07, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.08076, - "ref_cond_fluid_flow": 0.12618, - "ref_lwt": 5.56, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9150153, - "coeff2": -0.03956395, - "coeff3": 0.001865473, - "coeff4": 0.01810633, - "coeff5": 0.000290061, - "coeff6": -0.000419911, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.08076, - "ref_cond_fluid_flow": 0.12618, - "ref_lwt": 5.56, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.07, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1387579, - "coeff2": 0.6435208, - "coeff3": 0.215599, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.08076, - "ref_cond_fluid_flow": 0.12618, - "ref_lwt": 5.56, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7607419, - "coeff2": 0.01323998, - "coeff3": 0.000690229, - "coeff4": 0.01510969, - "coeff5": -0.000944334, - "coeff6": 0.001484396, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "118": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 900.0, - "ref_cap_unit": "ton", - "full_eff": 6.48, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.09085, - "ref_cond_fluid_flow": 0.13627, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9347904, - "coeff2": 0.06551597, - "coeff3": -0.01242676, - "coeff4": -0.02774, - "coeff5": 0.000332329, - "coeff6": 0.004803491, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.09085, - "ref_cond_fluid_flow": 0.13627, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.105411, - "coeff2": 0.4090646, - "coeff3": 0.4838839, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.09085, - "ref_cond_fluid_flow": 0.13627, - "ref_lwt": 5.56, - "ref_ect": 22.78, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.342558, - "coeff2": 0.07520735, - "coeff3": -0.008988936, - "coeff4": -0.03340001, - "coeff5": -0.000606593, - "coeff6": 0.004684791, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "119": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1143.0, - "ref_cap_unit": "ton", - "full_eff": 7.35, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.14, - "min_unloading": 0.14, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07874, - "ref_cond_fluid_flow": 0.09842, - "ref_lwt": 6.67, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9322623, - "coeff2": -0.02157964, - "coeff3": -0.001435883, - "coeff4": 0.01379036, - "coeff5": -0.000149105, - "coeff6": 0.001302075, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07874, - "ref_cond_fluid_flow": 0.09842, - "ref_lwt": 6.67, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 0.14, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.05763566, - "coeff2": 0.5964012, - "coeff3": 0.3473613, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07874, - "ref_cond_fluid_flow": 0.09842, - "ref_lwt": 6.67, - "ref_ect": 12.78, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8958422, - "coeff2": 0.03762768, - "coeff3": -0.00355008, - "coeff4": -0.004322645, - "coeff5": -0.001194933, - "coeff6": 0.003006034, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "120": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1250.0, - "ref_cap_unit": "ton", - "full_eff": 6.63, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.41, - "min_unloading": 0.41, - "max_plr": 1.06, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5913358, - "coeff2": -0.05974145, - "coeff3": 0.000817656, - "coeff4": 0.03987353, - "coeff5": -0.000817669, - "coeff6": 0.001457994, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.41, - "y_min": 0.0, - "x_max": 1.06, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.302107, - "coeff2": 0.03103971, - "coeff3": 0.6669726, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3693621, - "coeff2": -0.07284715, - "coeff3": -0.00487193, - "coeff4": 0.1223355, - "coeff5": -0.005368259, - "coeff6": 0.01035036, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "121": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1273.0, - "ref_cap_unit": "ton", - "full_eff": 6.64, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.41, - "min_unloading": 0.41, - "max_plr": 1.06, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.426457, - "coeff2": -0.03391606, - "coeff3": -0.001991396, - "coeff4": 0.0503209, - "coeff5": -0.001140771, - "coeff6": 0.001814692, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.41, - "y_min": 0.0, - "x_max": 1.06, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2767206, - "coeff2": 0.1074393, - "coeff3": 0.6145706, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.484423, - "coeff2": -0.09879643, - "coeff3": -0.002516527, - "coeff4": 0.1144722, - "coeff5": -0.005101526, - "coeff6": 0.01022861, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "122": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1284.0, - "ref_cap_unit": "ton", - "full_eff": 6.22, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.4, - "min_unloading": 0.4, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.590829, - "coeff2": 0.01028668, - "coeff3": -0.000471884, - "coeff4": 0.01220347, - "coeff5": 0.000416697, - "coeff6": -0.001484327, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.4, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2870815, - "coeff2": 0.3951784, - "coeff3": 0.3177735, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3732405, - "coeff2": -0.007176618, - "coeff3": -0.002588788, - "coeff4": 0.05381225, - "coeff5": -0.001773937, - "coeff6": 0.003509721, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "123": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1290.0, - "ref_cap_unit": "ton", - "full_eff": 6.28, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.4, - "min_unloading": 0.4, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7709829, - "coeff2": -0.0225768, - "coeff3": 0.000249271, - "coeff4": 0.007635418, - "coeff5": 0.000337652, - "coeff6": -0.00036142, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.4, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2528426, - "coeff2": 0.292028, - "coeff3": 0.4533447, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9418253, - "coeff2": 0.08142292, - "coeff3": -0.009532713, - "coeff4": 0.03185018, - "coeff5": -0.002583116, - "coeff6": 0.005294716, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "124": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1311.0, - "ref_cap_unit": "ton", - "full_eff": 6.34, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.19129, - "ref_cond_fluid_flow": 0.24757, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 18.33, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7415078, - "coeff2": -0.04779029, - "coeff3": -0.001028085, - "coeff4": 0.0142365, - "coeff5": 0.000130432, - "coeff6": 0.000917018, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.19129, - "ref_cond_fluid_flow": 0.24757, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2026691, - "coeff2": 0.2922585, - "coeff3": 0.5044422, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.19129, - "ref_cond_fluid_flow": 0.24757, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 18.33, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8614836, - "coeff2": -0.00398813, - "coeff3": -0.001643579, - "coeff4": 0.008882312, - "coeff5": -0.000393047, - "coeff6": 0.001593969, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "125": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1327.0, - "ref_cap_unit": "ton", - "full_eff": 6.16, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.4, - "min_unloading": 0.4, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5214788, - "coeff2": -0.008218594, - "coeff3": -3.07e-5, - "coeff4": 0.02152332, - "coeff5": 0.000120391, - "coeff6": -0.000716776, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.4, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3771252, - "coeff2": 0.02854188, - "coeff3": 0.592867, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4084496, - "coeff2": -0.04396326, - "coeff3": -0.00211212, - "coeff4": 0.0822531, - "coeff5": -0.003066058, - "coeff6": 0.00525755, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "126": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1330.0, - "ref_cap_unit": "ton", - "full_eff": 6.27, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.41, - "min_unloading": 0.41, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.20138, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8283132, - "coeff2": -0.03030491, - "coeff3": 0.004164965, - "coeff4": -0.003278448, - "coeff5": 0.000676251, - "coeff6": -0.001107762, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.20138, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.41, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3531562, - "coeff2": -0.2126229, - "coeff3": 0.85974, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.20138, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8449416, - "coeff2": -0.02116553, - "coeff3": 0.006121458, - "coeff4": 0.007120879, - "coeff5": -0.000179896, - "coeff6": -0.000134922, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "127": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1412.0, - "ref_cap_unit": "ton", - "full_eff": 6.05, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.12, - "min_unloading": 0.12, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.21198, - "ref_cond_fluid_flow": 0.26498, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8229769, - "coeff2": -0.008128614, - "coeff3": 0.001110212, - "coeff4": -0.003521351, - "coeff5": 0.00061298, - "coeff6": -0.000917006, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.21198, - "ref_cond_fluid_flow": 0.26498, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.12, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3416463, - "coeff2": 0.1947185, - "coeff3": 0.4640804, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.21198, - "ref_cond_fluid_flow": 0.26498, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5746486, - "coeff2": -0.03051134, - "coeff3": -0.000196498, - "coeff4": 0.03309783, - "coeff5": -0.000917471, - "coeff6": 0.002287276, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "128": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1413.0, - "ref_cap_unit": "ton", - "full_eff": 7.14, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.16, - "min_unloading": 0.16, - "max_plr": 1.07, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.17665, - "ref_cond_fluid_flow": 0.26498, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7382162, - "coeff2": -0.05847442, - "coeff3": 0.001117191, - "coeff4": 0.02168089, - "coeff5": -0.000218972, - "coeff6": 0.001036877, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.17665, - "ref_cond_fluid_flow": 0.26498, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.16, - "y_min": 0.0, - "x_max": 1.07, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2259512, - "coeff2": 0.2320151, - "coeff3": 0.5423771, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.17665, - "ref_cond_fluid_flow": 0.26498, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7817577, - "coeff2": -0.1012013, - "coeff3": -0.001584389, - "coeff4": 0.07928475, - "coeff5": -0.003674093, - "coeff6": 0.007392, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "129": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1413.0, - "ref_cap_unit": "ton", - "full_eff": 7.07, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.16, - "min_unloading": 0.16, - "max_plr": 1.06, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.17665, - "ref_cond_fluid_flow": 0.26498, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7220087, - "coeff2": -0.04480691, - "coeff3": 9.62e-6, - "coeff4": 0.02084835, - "coeff5": -0.000261597, - "coeff6": 0.001188407, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.17665, - "ref_cond_fluid_flow": 0.26498, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.16, - "y_min": 0.0, - "x_max": 1.06, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2308102, - "coeff2": 0.1802734, - "coeff3": 0.5894894, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.17665, - "ref_cond_fluid_flow": 0.26498, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1803605, - "coeff2": -0.09685535, - "coeff3": -0.005831135, - "coeff4": 0.1341596, - "coeff5": -0.005279908, - "coeff6": 0.01045372, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "130": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1421.0, - "ref_cap_unit": "ton", - "full_eff": 6.4, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.4, - "min_unloading": 0.4, - "max_plr": 1.05, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6685097, - "coeff2": -0.02541433, - "coeff3": 0.003334144, - "coeff4": 0.01002578, - "coeff5": 0.000575378, - "coeff6": -0.00180134, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 0.4, - "y_min": 0.0, - "x_max": 1.05, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3364887, - "coeff2": 0.2122607, - "coeff3": 0.4486522, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.19558, - "ref_cond_fluid_flow": 0.24605, - "ref_lwt": 6.67, - "ref_ect": 26.67, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 26.67, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.07122762, - "coeff2": 0.002550937, - "coeff3": -0.009679482, - "coeff4": 0.09391204, - "coeff5": -0.003505261, - "coeff6": 0.007309943, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "131": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1464.0, - "ref_cap_unit": "ton", - "full_eff": 6.34, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.18283, - "ref_cond_fluid_flow": 0.25526, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5426449, - "coeff2": 0.003961314, - "coeff3": -0.000119582, - "coeff4": 0.01609421, - "coeff5": 0.000308926, - "coeff6": -0.001129525, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.18283, - "ref_cond_fluid_flow": 0.25526, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1883602, - "coeff2": 0.5018646, - "coeff3": 0.3089569, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.18283, - "ref_cond_fluid_flow": 0.25526, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3564454, - "coeff2": 0.02020689, - "coeff3": -0.006286899, - "coeff4": 0.05760425, - "coeff5": -0.002102376, - "coeff6": 0.00412665, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "132": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1470.0, - "ref_cap_unit": "ton", - "full_eff": 7.15, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.15, - "min_unloading": 0.15, - "max_plr": 1.08, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.17665, - "ref_cond_fluid_flow": 0.26498, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5894383, - "coeff2": -0.0292653, - "coeff3": -0.001900238, - "coeff4": 0.02849479, - "coeff5": -0.000510502, - "coeff6": 0.001702334, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.17665, - "ref_cond_fluid_flow": 0.26498, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": 0.0, - "x_max": 1.08, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2497273, - "coeff2": 0.1011288, - "coeff3": 0.6499847, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.17665, - "ref_cond_fluid_flow": 0.26498, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1675697, - "coeff2": -0.1191228, - "coeff3": -0.004328384, - "coeff4": 0.1355905, - "coeff5": -0.005171251, - "coeff6": 0.0103984, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "133": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1481.0, - "ref_cap_unit": "ton", - "full_eff": 6.88, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.18283, - "ref_cond_fluid_flow": 0.25293, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5198204, - "coeff2": -0.0152334, - "coeff3": -0.000639152, - "coeff4": 0.02170049, - "coeff5": 2.42e-5, - "coeff6": 0.00014326, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.18283, - "ref_cond_fluid_flow": 0.25293, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2334262, - "coeff2": 0.3926783, - "coeff3": 0.373132, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.18283, - "ref_cond_fluid_flow": 0.25293, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5563516, - "coeff2": -0.04106264, - "coeff3": -0.003164992, - "coeff4": 0.05722234, - "coeff5": -0.002313857, - "coeff6": 0.005377616, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "134": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1554.0, - "ref_cap_unit": "ton", - "full_eff": 6.94, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.14, - "min_unloading": 0.14, - "max_plr": 1.07, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.18296, - "ref_cond_fluid_flow": 0.27444, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6396022, - "coeff2": -0.0595406, - "coeff3": 0.000588452, - "coeff4": 0.03170651, - "coeff5": -0.000508822, - "coeff6": 0.001460759, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.18296, - "ref_cond_fluid_flow": 0.27444, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.14, - "y_min": 0.0, - "x_max": 1.07, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2795792, - "coeff2": 0.07872758, - "coeff3": 0.6424321, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.18296, - "ref_cond_fluid_flow": 0.27444, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1092441, - "coeff2": -0.1225892, - "coeff3": -0.002802873, - "coeff4": 0.1324138, - "coeff5": -0.004714937, - "coeff6": 0.009205744, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "135": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1578.0, - "ref_cap_unit": "ton", - "full_eff": 6.5, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.14, - "min_unloading": 0.14, - "max_plr": 1.05, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.18296, - "ref_cond_fluid_flow": 0.27444, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 26.11, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.498998, - "coeff2": -0.08246157, - "coeff3": 0.006047523, - "coeff4": 0.05168793, - "coeff5": -0.000855245, - "coeff6": 6.28e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.18296, - "ref_cond_fluid_flow": 0.27444, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.14, - "y_min": 0.0, - "x_max": 1.05, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2336623, - "coeff2": 0.190132, - "coeff3": 0.5749473, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.18296, - "ref_cond_fluid_flow": 0.27444, - "ref_lwt": 6.67, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 26.11, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.1402079, - "coeff2": 0.01836029, - "coeff3": -0.002390588, - "coeff4": 0.1207956, - "coeff5": -0.003563147, - "coeff6": 0.002024532, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "136": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1607.0, - "ref_cap_unit": "ton", - "full_eff": 5.5, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.19, - "min_unloading": 0.19, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.18927, - "ref_cond_fluid_flow": 0.18927, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7853207, - "coeff2": -0.01652255, - "coeff3": -0.000329453, - "coeff4": 0.004569179, - "coeff5": 0.000196401, - "coeff6": 0.00017615, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.18927, - "ref_cond_fluid_flow": 0.18927, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.19, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1629327, - "coeff2": 0.5709336, - "coeff3": 0.2659304, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.18927, - "ref_cond_fluid_flow": 0.18927, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.299676, - "coeff2": 0.01790645, - "coeff3": -0.0025223, - "coeff4": 0.002536423, - "coeff5": -0.001128041, - "coeff6": 0.003003265, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "137": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 49.0, - "ref_cap_unit": "ton", - "full_eff": 3.67, - "full_eff_unit": "cop", - "compressor_type": "reciprocating", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.4, - "min_unloading": 0.4, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.00738, - "ref_cond_fluid_flow": 0.00959, - "ref_lwt": 4.44, - "ref_ect": 18.33, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 18.33, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9396181, - "coeff2": -0.05754225, - "coeff3": 0.002561677, - "coeff4": 0.0108145, - "coeff5": 0.000183994, - "coeff6": 5.27e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.00738, - "ref_cond_fluid_flow": 0.00959, - "ref_lwt": 4.44, - "ref_ect": 18.33, - "ref_lct": null, - "units": "si", - "x_min": 0.4, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.004747786, - "coeff2": 1.072374, - "coeff3": -0.07758317, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.00738, - "ref_cond_fluid_flow": 0.00959, - "ref_lwt": 4.44, - "ref_ect": 18.33, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 18.33, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9839419, - "coeff2": 0.1094957, - "coeff3": -0.004547595, - "coeff4": -0.02311886, - "coeff5": 0.000259594, - "coeff6": -0.000509331, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "138": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 109.0, - "ref_cap_unit": "ton", - "full_eff": 4.17, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.25, - "min_unloading": 0.25, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0165, - "ref_cond_fluid_flow": 0.02063, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6228513, - "coeff2": -0.008700783, - "coeff3": 0.00097198, - "coeff4": 0.005184584, - "coeff5": 0.00049517, - "coeff6": -0.000963237, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0165, - "ref_cond_fluid_flow": 0.02063, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.25, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.03295553, - "coeff2": 0.9114398, - "coeff3": 0.05565265, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0165, - "ref_cond_fluid_flow": 0.02063, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9830684, - "coeff2": 0.03676199, - "coeff3": 5.31e-5, - "coeff4": -0.004828624, - "coeff5": -4.76e-5, - "coeff6": -0.000237798, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "139": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 151.0, - "ref_cap_unit": "ton", - "full_eff": 4.83, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0135, - "ref_cond_fluid_flow": 0.01577, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4524778, - "coeff2": 0.000104516, - "coeff3": 6.93e-5, - "coeff4": 0.0204498, - "coeff5": 0.000367295, - "coeff6": -0.001099051, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0135, - "ref_cond_fluid_flow": 0.01577, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.3, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.198002, - "coeff2": 0.2733157, - "coeff3": 0.5277318, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0135, - "ref_cond_fluid_flow": 0.01577, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9434012, - "coeff2": 0.01630729, - "coeff3": 0.00086211, - "coeff4": 0.003242384, - "coeff5": -0.000300397, - "coeff6": 0.000193113, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "140": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 153.0, - "ref_cap_unit": "ton", - "full_eff": 5.12, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01375, - "ref_cond_fluid_flow": 0.01956, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5455087, - "coeff2": -0.009301201, - "coeff3": 0.000501236, - "coeff4": 0.0143287, - "coeff5": 0.000471938, - "coeff6": -0.000893767, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.01375, - "ref_cond_fluid_flow": 0.01956, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.3, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.181695, - "coeff2": 0.3731838, - "coeff3": 0.4448009, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01375, - "ref_cond_fluid_flow": 0.01956, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.934478, - "coeff2": 0.0276, - "coeff3": 0.000378151, - "coeff4": -0.000917647, - "coeff5": -0.000127059, - "coeff6": -4.24e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "141": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 154.0, - "ref_cap_unit": "ton", - "full_eff": 5.26, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01363, - "ref_cond_fluid_flow": 0.01577, - "ref_lwt": 5.56, - "ref_ect": 21.11, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4953775, - "coeff2": -0.0135934, - "coeff3": 0.000578464, - "coeff4": 0.02778142, - "coeff5": 0.000174726, - "coeff6": -0.000859077, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.01363, - "ref_cond_fluid_flow": 0.01577, - "ref_lwt": 5.56, - "ref_ect": 21.11, - "ref_lct": null, - "units": "si", - "x_min": 0.3, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3057645, - "coeff2": -0.1548084, - "coeff3": 0.8484536, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01363, - "ref_cond_fluid_flow": 0.01577, - "ref_lwt": 5.56, - "ref_ect": 21.11, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9226438, - "coeff2": 0.02878831, - "coeff3": 0.000375696, - "coeff4": -0.001963636, - "coeff5": -8.42e-5, - "coeff6": -0.000126234, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "142": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 191.0, - "ref_cap_unit": "ton", - "full_eff": 7.9, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01514, - "ref_cond_fluid_flow": 0.0241, - "ref_lwt": 6.11, - "ref_ect": 15.56, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 15.56, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4069331, - "coeff2": -0.006420922, - "coeff3": 0.000268926, - "coeff4": 0.04500373, - "coeff5": 0.000158398, - "coeff6": -0.001284532, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.01514, - "ref_cond_fluid_flow": 0.0241, - "ref_lwt": 6.11, - "ref_ect": 15.56, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1936152, - "coeff2": 0.3375574, - "coeff3": 0.4704892, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01514, - "ref_cond_fluid_flow": 0.0241, - "ref_lwt": 6.11, - "ref_ect": 15.56, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 15.56, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9274375, - "coeff2": 0.02846559, - "coeff3": 0.000402443, - "coeff4": -0.00593273, - "coeff5": -1.07e-5, - "coeff6": -0.000219902, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "143": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 195.0, - "ref_cap_unit": "ton", - "full_eff": 5.91, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0571, - "ref_cond_fluid_flow": 0.03255, - "ref_lwt": 6.11, - "ref_ect": 23.74, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.501406, - "coeff2": 0.001561, - "coeff3": -0.000134798, - "coeff4": 0.01525028, - "coeff5": 0.000570137, - "coeff6": -0.001221374, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0571, - "ref_cond_fluid_flow": 0.03255, - "ref_lwt": 6.11, - "ref_ect": 23.74, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2113934, - "coeff2": 0.4190226, - "coeff3": 0.3686143, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0571, - "ref_cond_fluid_flow": 0.03255, - "ref_lwt": 6.11, - "ref_ect": 23.74, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2903523, - "coeff2": -0.02676742, - "coeff3": -0.004771695, - "coeff4": 0.08162394, - "coeff5": -0.003028217, - "coeff6": 0.005712524, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "144": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 201.0, - "ref_cap_unit": "ton", - "full_eff": 7.77, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.28, - "min_unloading": 0.28, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04921, - "ref_cond_fluid_flow": 0.03268, - "ref_lwt": 5.56, - "ref_ect": 15.56, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 11.11, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6497944, - "coeff2": 0.006883157, - "coeff3": -0.000527768, - "coeff4": 0.01725788, - "coeff5": 0.000677932, - "coeff6": -0.001244055, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04921, - "ref_cond_fluid_flow": 0.03268, - "ref_lwt": 5.56, - "ref_ect": 15.56, - "ref_lct": null, - "units": "si", - "x_min": 0.28, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1997099, - "coeff2": 0.6754676, - "coeff3": 0.1243767, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04921, - "ref_cond_fluid_flow": 0.03268, - "ref_lwt": 5.56, - "ref_ect": 15.56, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 11.11, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9362925, - "coeff2": 0.02940722, - "coeff3": 0.0005727, - "coeff4": -0.005696483, - "coeff5": -5.57e-5, - "coeff6": -0.000170813, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "145": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 215.0, - "ref_cap_unit": "ton", - "full_eff": 7.41, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.11, - "min_unloading": 0.11, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 5.56, - "ref_ect": 16.06, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 16.06, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6917947, - "coeff2": -0.01929936, - "coeff3": 0.001450011, - "coeff4": 0.01795987, - "coeff5": 0.000930169, - "coeff6": -0.001755165, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 5.56, - "ref_ect": 16.06, - "ref_lct": null, - "units": "si", - "x_min": 0.11, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2929778, - "coeff2": 0.01673799, - "coeff3": 0.6881229, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 5.56, - "ref_ect": 16.06, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 16.06, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9432455, - "coeff2": 0.02794778, - "coeff3": 0.000293775, - "coeff4": -0.005818549, - "coeff5": -3.76e-5, - "coeff6": -5.78e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "146": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 222.0, - "ref_cap_unit": "ton", - "full_eff": 5.42, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01893, - "ref_cond_fluid_flow": 0.03785, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4475957, - "coeff2": -0.01054652, - "coeff3": 0.000712687, - "coeff4": 0.01158632, - "coeff5": 0.000515151, - "coeff6": -0.000983136, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.01893, - "ref_cond_fluid_flow": 0.03785, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2519108, - "coeff2": 0.2756914, - "coeff3": 0.4725826, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01893, - "ref_cond_fluid_flow": 0.03785, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.002148, - "coeff2": 0.03300191, - "coeff3": 0.000374167, - "coeff4": -0.005925358, - "coeff5": -2.6e-5, - "coeff6": -0.000217213, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "147": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 236.0, - "ref_cap_unit": "ton", - "full_eff": 6.97, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.04744, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 14.17, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4610959, - "coeff2": -0.01560459, - "coeff3": -0.000273745, - "coeff4": 0.02650593, - "coeff5": -7.79e-5, - "coeff6": 0.000185584, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.04744, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2307464, - "coeff2": 0.7784162, - "coeff3": -0.007516503, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.04744, - "ref_lwt": 5.56, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 14.17, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8198506, - "coeff2": 0.004299516, - "coeff3": -0.000245157, - "coeff4": 0.01431034, - "coeff5": -0.00035863, - "coeff6": 0.000251041, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "148": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 245.0, - "ref_cap_unit": "ton", - "full_eff": 6.11, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.04296, - "ref_lwt": 6.67, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5420642, - "coeff2": -0.02110032, - "coeff3": 0.001513908, - "coeff4": 0.02067897, - "coeff5": 0.000528752, - "coeff6": -0.00163033, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.04296, - "ref_lwt": 6.67, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2292819, - "coeff2": 0.3662723, - "coeff3": 0.4032019, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.04296, - "ref_lwt": 6.67, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.03646458, - "coeff2": -0.06061334, - "coeff3": -0.003708583, - "coeff4": 0.1197997, - "coeff5": -0.003723397, - "coeff6": 0.005368766, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "149": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 245.0, - "ref_cap_unit": "ton", - "full_eff": 6.84, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.04296, - "ref_lwt": 9.69, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5930611, - "coeff2": -0.02082914, - "coeff3": 0.001600282, - "coeff4": 0.02352564, - "coeff5": 0.000599225, - "coeff6": -0.001907335, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.04296, - "ref_lwt": 9.69, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.3, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1145826, - "coeff2": 0.7340475, - "coeff3": 0.1507744, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.06782, - "ref_cond_fluid_flow": 0.04296, - "ref_lwt": 9.69, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.04535842, - "coeff2": -0.06253871, - "coeff3": -0.003623064, - "coeff4": 0.1218299, - "coeff5": -0.00379344, - "coeff6": 0.005404739, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "150": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 246.0, - "ref_cap_unit": "ton", - "full_eff": 6.05, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03716, - "ref_cond_fluid_flow": 0.04366, - "ref_lwt": 4.44, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 3.33, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5437328, - "coeff2": 0.007625344, - "coeff3": -9.2e-5, - "coeff4": 0.001339616, - "coeff5": 0.000828676, - "coeff6": -0.00154353, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03716, - "ref_cond_fluid_flow": 0.04366, - "ref_lwt": 4.44, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2545235, - "coeff2": 0.3104981, - "coeff3": 0.4347781, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03716, - "ref_cond_fluid_flow": 0.04366, - "ref_lwt": 4.44, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 3.33, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5079758, - "coeff2": -0.02344768, - "coeff3": -0.00329663, - "coeff4": 0.03508384, - "coeff5": -0.000835963, - "coeff6": 0.002585294, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "151": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 250.0, - "ref_cap_unit": "ton", - "full_eff": 5.82, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03785, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 4.44, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 3.33, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5595308, - "coeff2": -0.01087985, - "coeff3": 0.000872102, - "coeff4": 0.01010347, - "coeff5": 0.000508745, - "coeff6": -0.001211319, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03785, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 4.44, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3029493, - "coeff2": 0.3223124, - "coeff3": 0.3751948, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03785, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 4.44, - "ref_ect": 26.11, - "ref_lct": null, - "units": "si", - "x_min": 3.33, - "y_min": 12.78, - "x_max": 7.78, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.031429, - "coeff2": 0.03364723, - "coeff3": -0.000273509, - "coeff4": -0.003789167, - "coeff5": -0.000155391, - "coeff6": 0.000278212, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "152": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 287.0, - "ref_cap_unit": "ton", - "full_eff": 5.37, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.04618, - "ref_lwt": 5.56, - "ref_ect": 24.86, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 19.97, - "x_max": 10.0, - "y_max": 24.86, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4383883, - "coeff2": 0.007754235, - "coeff3": 0.000635381, - "coeff4": -0.00295188, - "coeff5": 0.001270756, - "coeff6": -0.001541831, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.04618, - "ref_lwt": 5.56, - "ref_ect": 24.86, - "ref_lct": null, - "units": "si", - "x_min": 0.3, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1316727, - "coeff2": 1.013111, - "coeff3": -0.1413213, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03186, - "ref_cond_fluid_flow": 0.04618, - "ref_lwt": 5.56, - "ref_ect": 24.86, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 19.97, - "x_max": 10.0, - "y_max": 24.86, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.134633, - "coeff2": 0.0326721, - "coeff3": 0.000526634, - "coeff4": -0.01076173, - "coeff5": -4.85e-5, - "coeff6": -0.000256933, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "153": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 299.0, - "ref_cap_unit": "ton", - "full_eff": 5.05, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04527, - "ref_cond_fluid_flow": 0.05659, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4904181, - "coeff2": -0.005530317, - "coeff3": 0.001209907, - "coeff4": 0.009122333, - "coeff5": 0.000592359, - "coeff6": -0.001469958, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04527, - "ref_cond_fluid_flow": 0.05659, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2590465, - "coeff2": 0.2148987, - "coeff3": 0.5265039, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04527, - "ref_cond_fluid_flow": 0.05659, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9482157, - "coeff2": 0.03306737, - "coeff3": -6.45e-5, - "coeff4": -0.003756522, - "coeff5": -6.5e-5, - "coeff6": 2.52e-15, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "154": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 302.0, - "ref_cap_unit": "ton", - "full_eff": 5.5, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04573, - "ref_cond_fluid_flow": 0.05716, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 21.11, - "x_max": 10.0, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.263407, - "coeff2": -0.00702522, - "coeff3": -0.000494261, - "coeff4": 0.02516931, - "coeff5": 0.000171277, - "coeff6": -0.000430974, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04573, - "ref_cond_fluid_flow": 0.05716, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2576261, - "coeff2": 0.341691, - "coeff3": 0.4007672, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04573, - "ref_cond_fluid_flow": 0.05716, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 21.11, - "x_max": 10.0, - "y_max": 29.44, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.025695, - "coeff2": 0.02327484, - "coeff3": -0.004693708, - "coeff4": -0.007092715, - "coeff5": -0.000375497, - "coeff6": 0.002843046, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "155": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 303.0, - "ref_cap_unit": "ton", - "full_eff": 5.73, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05142, - "ref_cond_fluid_flow": 0.04416, - "ref_lwt": 5.56, - "ref_ect": 25.28, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 20.07, - "x_max": 10.0, - "y_max": 25.28, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.900308, - "coeff2": 0.003783201, - "coeff3": 0.000981578, - "coeff4": -0.04051727, - "coeff5": 0.002037095, - "coeff6": -0.001619326, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.05142, - "ref_cond_fluid_flow": 0.04416, - "ref_lwt": 5.56, - "ref_ect": 25.28, - "ref_lct": null, - "units": "si", - "x_min": 0.3, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1007344, - "coeff2": 1.119205, - "coeff3": -0.217323, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.05142, - "ref_cond_fluid_flow": 0.04416, - "ref_lwt": 5.56, - "ref_ect": 25.28, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 20.07, - "x_max": 10.0, - "y_max": 25.28, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.062396, - "coeff2": 0.04575299, - "coeff3": 0.00028028, - "coeff4": -0.008802343, - "coeff5": -3.13e-5, - "coeff6": -0.000593723, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "156": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 311.0, - "ref_cap_unit": "ton", - "full_eff": 6.55, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.25, - "min_unloading": 0.25, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04921, - "ref_cond_fluid_flow": 0.04524, - "ref_lwt": 5.56, - "ref_ect": 23.33, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6579136, - "coeff2": -0.01133448, - "coeff3": 0.000649706, - "coeff4": 0.00731816, - "coeff5": 0.000616774, - "coeff6": -0.000955337, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.04921, - "ref_cond_fluid_flow": 0.04524, - "ref_lwt": 5.56, - "ref_ect": 23.33, - "ref_lct": null, - "units": "si", - "x_min": 0.25, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1626466, - "coeff2": 0.790355, - "coeff3": 0.04770888, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04921, - "ref_cond_fluid_flow": 0.04524, - "ref_lwt": 5.56, - "ref_ect": 23.33, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9643756, - "coeff2": 0.03820069, - "coeff3": 0.000461189, - "coeff4": -0.00517484, - "coeff5": -5.78e-5, - "coeff6": -0.000294419, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "157": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 315.0, - "ref_cap_unit": "ton", - "full_eff": 6.92, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0571, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 8.97, - "ref_ect": 23.74, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5668296, - "coeff2": -0.02800906, - "coeff3": 0.000936241, - "coeff4": 0.02210818, - "coeff5": 0.000466037, - "coeff6": -0.00079896, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0571, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 8.97, - "ref_ect": 23.74, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1370745, - "coeff2": 0.8374817, - "coeff3": 0.0253428, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0571, - "ref_cond_fluid_flow": 0.05142, - "ref_lwt": 8.97, - "ref_ect": 23.74, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6631328, - "coeff2": -0.01027433, - "coeff3": -0.000538804, - "coeff4": 0.03320295, - "coeff5": -0.001304714, - "coeff6": 0.002169498, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "158": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 333.0, - "ref_cap_unit": "ton", - "full_eff": 9.15, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03249, - "ref_cond_fluid_flow": 0.05173, - "ref_lwt": 6.11, - "ref_ect": 15.56, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 15.56, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5325834, - "coeff2": -0.02611733, - "coeff3": 0.001365012, - "coeff4": 0.04099324, - "coeff5": 0.0003402, - "coeff6": -0.001514251, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03249, - "ref_cond_fluid_flow": 0.05173, - "ref_lwt": 6.11, - "ref_ect": 15.56, - "ref_lct": null, - "units": "si", - "x_min": 0.09, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1889392, - "coeff2": 0.4684305, - "coeff3": 0.3451545, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03249, - "ref_cond_fluid_flow": 0.05173, - "ref_lwt": 6.11, - "ref_ect": 15.56, - "ref_lct": null, - "units": "si", - "x_min": 6.11, - "y_min": 15.56, - "x_max": 12.78, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9299045, - "coeff2": 0.02350383, - "coeff3": -0.000464941, - "coeff4": -0.004367237, - "coeff5": -0.000204011, - "coeff6": 0.000643004, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "159": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 340.0, - "ref_cap_unit": "ton", - "full_eff": 6.39, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03653, - "ref_cond_fluid_flow": 0.04271, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5077824, - "coeff2": -0.01608447, - "coeff3": 0.000174212, - "coeff4": 0.02093857, - "coeff5": 0.000416094, - "coeff6": -0.000716967, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.03653, - "ref_cond_fluid_flow": 0.04271, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.03, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1061065, - "coeff2": 0.7305514, - "coeff3": 0.1632883, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03653, - "ref_cond_fluid_flow": 0.04271, - "ref_lwt": 7.22, - "ref_ect": 23.89, - "ref_lct": null, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 12.22, - "y_max": 23.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5775948, - "coeff2": 0.02206074, - "coeff3": -0.003342365, - "coeff4": 0.03970188, - "coeff5": -0.001669877, - "coeff6": 0.002762827, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "160": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 442.0, - "ref_cap_unit": "ton", - "full_eff": 9.31, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0424, - "ref_cond_fluid_flow": 0.07949, - "ref_lwt": 5.56, - "ref_ect": 15.56, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5099117, - "coeff2": 0.01379553, - "coeff3": -0.000206953, - "coeff4": 0.02846021, - "coeff5": 0.000718998, - "coeff6": -0.002027317, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0424, - "ref_cond_fluid_flow": 0.07949, - "ref_lwt": 5.56, - "ref_ect": 15.56, - "ref_lct": null, - "units": "si", - "x_min": 0.1, - "y_min": 0.0, - "x_max": 1.02, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1720219, - "coeff2": 0.5084848, - "coeff3": 0.3212462, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0424, - "ref_cond_fluid_flow": 0.07949, - "ref_lwt": 5.56, - "ref_ect": 15.56, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 15.56, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.083027, - "coeff2": 0.009278069, - "coeff3": 0.001175024, - "coeff4": -0.01395851, - "coeff5": 9.3e-5, - "coeff6": 6.97e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "161": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 500.0, - "ref_cap_unit": "ton", - "full_eff": 5.84, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6381264, - "coeff2": 0.006304193, - "coeff3": 0.000923351, - "coeff4": -0.004552881, - "coeff5": 0.00082569, - "coeff6": -0.001561533, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": 0.0, - "x_max": 1.04, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3149879, - "coeff2": 0.3171267, - "coeff3": 0.3709077, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 8.89, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8130185, - "coeff2": -0.01425368, - "coeff3": -0.001618007, - "coeff4": 0.02638417, - "coeff5": -0.000915438, - "coeff6": 0.001696015, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "162": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 59.0, - "ref_cap_unit": "ton", - "full_eff": 3.99, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.25, - "min_unloading": 0.25, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.00898, - "ref_cond_fluid_flow": 0.01122, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.727387, - "coeff2": -0.01189276, - "coeff3": 0.000541168, - "coeff4": 0.001879294, - "coeff5": 0.000473466, - "coeff6": -0.000711485, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.00898, - "ref_cond_fluid_flow": 0.01122, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 0.25, - "y_min": 0.0, - "x_max": 1.01, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.04146742, - "coeff2": 0.6543795, - "coeff3": 0.3044125, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.00898, - "ref_cond_fluid_flow": 0.01122, - "ref_lwt": 6.67, - "ref_ect": 29.44, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9441897, - "coeff2": 0.03371079, - "coeff3": 9.76e-5, - "coeff4": -0.003220573, - "coeff5": -4.92e-5, - "coeff6": -0.000177572, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "163": { - "eqp_type": "chiller", - "source": "5", - "model": "ect_lwt", - "ref_cap": 172.9, - "ref_cap_unit": "ton", - "full_eff": 9.6, - "full_eff_unit": "eer", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.25, - "min_unloading": 0.25, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.0, - "y_min": 0.0, - "x_max": null, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.814058418, - "coeff2": 0.002335553, - "coeff3": 0.000817786, - "coeff4": -0.017129784, - "coeff5": 0.000773288, - "coeff6": -0.000922024, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.0, - "y_min": 0.0, - "x_max": null, - "y_max": null, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.98898813, - "coeff2": 0.036832851, - "coeff3": 0.000174, - "coeff4": -0.000275634, - "coeff5": -0.000144, - "coeff6": -0.000246, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "cubic", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.0, - "y_min": 0.0, - "x_max": 1.0, - "y_max": 1.0, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.0875749495063914, - "coeff2": 1.45924001408333, - "coeff3": -0.794640137922161, - "coeff4": 0.424024066808501, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "164": { - "eqp_type": "chiller", - "source": "4", - "model": "ect_lwt", - "ref_cap": null, - "ref_cap_unit": null, - "full_eff": null, - "full_eff_unit": null, - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": null, - "min_unloading": null, - "max_plr": null, - "set_of_curves": { - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 12.22, - "y_max": 46.11, - "out_min": 0.82, - "out_max": 1.3, - "coeff1": 1.02138, - "coeff2": 0.0370206, - "coeff3": 0.00023328, - "coeff4": -0.0038934, - "coeff5": -6.48e-5, - "coeff6": -0.00026892, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 12.22, - "y_max": 46.11, - "out_min": 0.69, - "out_max": 1.45, - "coeff1": 0.702194, - "coeff2": -0.0044658, - "coeff3": 0.0005346, - "coeff4": -0.0055062, - "coeff5": 0.00054432, - "coeff6": -0.000729, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": null, - "y_min": null, - "x_max": null, - "y_max": null, - "out_min": 0.06, - "out_max": null, - "coeff1": 0.06369119, - "coeff2": 0.58488832, - "coeff3": 0.35280274, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "165": { - "eqp_type": "chiller", - "source": "4", - "model": "ect_lwt", - "ref_cap": null, - "ref_cap_unit": null, - "full_eff": null, - "full_eff_unit": null, - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": null, - "min_unloading": null, - "max_plr": null, - "set_of_curves": { - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 12.22, - "y_max": 1.28, - "out_min": 0.83, - "out_max": null, - "coeff1": 0.985959, - "coeff2": 0.0494874, - "coeff3": -0.00029808, - "coeff4": -0.0037368, - "coeff5": -4.536e-5, - "coeff6": -0.0005022, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 12.22, - "y_max": 1.38, - "out_min": 0.7, - "out_max": null, - "coeff1": 0.570624, - "coeff2": 0.0119538, - "coeff3": -0.00052164, - "coeff4": -3.24e-5, - "coeff5": 0.0004212, - "coeff6": -0.00060588, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": null, - "y_min": null, - "x_max": null, - "y_max": null, - "out_min": 0.04, - "out_max": null, - "coeff1": 0.03648722, - "coeff2": 0.73474298, - "coeff3": 0.21994748, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "166": { - "eqp_type": "chiller", - "source": "4", - "model": "ect_lwt", - "ref_cap": null, - "ref_cap_unit": null, - "full_eff": null, - "full_eff_unit": null, - "compressor_type": "reciprocating", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": null, - "min_unloading": null, - "max_plr": null, - "set_of_curves": { - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 12.22, - "y_max": 1.35, - "out_min": 0.8, - "out_max": null, - "coeff1": 1.12603, - "coeff2": 0.041571, - "coeff3": 0.00025272, - "coeff4": -0.0105264, - "coeff5": 9.72e-6, - "coeff6": -0.00025596, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 12.22, - "y_max": 1.3, - "out_min": 0.72, - "out_max": null, - "coeff1": 0.542784, - "coeff2": -0.0139068, - "coeff3": 0.00047628, - "coeff4": 0.0121968, - "coeff5": 0.00014904, - "coeff6": -0.00033372, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": null, - "y_min": null, - "x_max": null, - "y_max": null, - "out_min": 0.11, - "out_max": null, - "coeff1": 0.11443742, - "coeff2": 0.5459334, - "coeff3": 0.34229861, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "167": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 176.3, - "ref_cap_unit": "ton", - "full_eff": 3.422, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.026607028, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.392274315, - "out_max": 1.721329937, - "coeff1": 0.48602636381796394, - "coeff2": -0.007726623490808382, - "coeff3": 0.00013907198099369703, - "coeff4": 0.008957902855698509, - "coeff5": 0.00033762389238701737, - "coeff6": -0.0005686710648496053, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.026607028, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.739648327, - "out_max": 1.499716393, - "coeff1": 1.0415742542360285, - "coeff2": 0.0402638791584603, - "coeff3": 0.0005037729457374081, - "coeff4": -0.004970055334555563, - "coeff5": -5.2789209994357866e-5, - "coeff6": -0.0004098040391411991, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.026607028, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.19999999999999996, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.144218316, - "out_max": 1.0, - "coeff1": 0.07775682917046162, - "coeff2": 0.4021238180251685, - "coeff3": 0.5131813856933848, - "coeff4": 0.61532884, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "168": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 245.0, - "ref_cap_unit": "ton", - "full_eff": 3.355, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.036983473, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.411316659, - "out_max": 1.758624685, - "coeff1": 0.45594229237431017, - "coeff2": -0.009957829304461097, - "coeff3": 0.0012159219627115615, - "coeff4": 0.010691033160836128, - "coeff5": 0.0003675803625690159, - "coeff6": -0.0010691916128908064, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.036983473, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.721632653, - "out_max": 1.422857143, - "coeff1": 1.053683141761327, - "coeff2": 0.040151139411442466, - "coeff3": 0.0008791673595244485, - "coeff4": -0.0028774143787394096, - "coeff5": -8.225446119663678e-5, - "coeff6": -0.000731937631195652, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.036983473, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.19999999999999998, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.137858509, - "out_max": 1.0, - "coeff1": 0.0716272313489334, - "coeff2": 0.42532062079945165, - "coeff3": 0.49335304083660536, - "coeff4": 0.599364468, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "169": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 163.5, - "ref_cap_unit": "ton", - "full_eff": 3.487, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.024673314, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.383243516, - "out_max": 1.730025304, - "coeff1": 0.47960588167529894, - "coeff2": -0.008796095952744054, - "coeff3": 0.0001970920930991285, - "coeff4": 0.008910438852928877, - "coeff5": 0.00034462019136331063, - "coeff6": -0.0005545031146608587, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.024673314, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.740672783, - "out_max": 1.497859327, - "coeff1": 1.061472646902043, - "coeff2": 0.03552890993121127, - "coeff3": 0.0007394519011796989, - "coeff4": -0.005888703470508029, - "coeff5": -4.390401274762261e-5, - "coeff6": -0.0003137338250359164, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.024673314, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.19999999999999998, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.153642384, - "out_max": 1.0, - "coeff1": 0.07521900677100343, - "coeff2": 0.45423278198774414, - "coeff3": 0.46197927842644965, - "coeff4": 0.710259396, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "170": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 227.6, - "ref_cap_unit": "ton", - "full_eff": 3.476, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.034350719, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.383249952, - "out_max": 1.77736488, - "coeff1": 0.4324878250440648, - "coeff2": 0.00012092450746892247, - "coeff3": -0.0001336556021230527, - "coeff4": 0.009362599698330684, - "coeff5": 0.0003732541593353654, - "coeff6": -0.0007420552379094928, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.034350719, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.736818981, - "out_max": 1.519332162, - "coeff1": 1.0441561812231694, - "coeff2": 0.0443319051708328, - "coeff3": 0.0002996461492771295, - "coeff4": -0.004500120991291129, - "coeff5": -5.9998968731731785e-5, - "coeff6": -0.0005259031497877767, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.034350719, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.19999999999999998, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.146200814, - "out_max": 1.0, - "coeff1": 0.06858413227659244, - "coeff2": 0.4779975052017655, - "coeff3": 0.44402146664905406, - "coeff4": 0.639884395, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "171": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 241.2, - "ref_cap_unit": "ton", - "full_eff": 2.859, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.036413138, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.573938725, - "out_max": 1.419240577, - "coeff1": 0.5927135476466097, - "coeff2": -0.0012262925150819393, - "coeff3": 7.199241731482148e-5, - "coeff4": -0.00010736091129638463, - "coeff5": 0.000429818113374262, - "coeff6": -0.00042633240548, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.036413138, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.791044776, - "out_max": 1.429933665, - "coeff1": 1.056574469962027, - "coeff2": 0.03522635519123257, - "coeff3": 0.0003065266084394322, - "coeff4": -0.00028727790493036573, - "coeff5": -0.00017777752187999864, - "coeff6": -0.00028029918831211907, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.036413138, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.20005798782255726, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.218024691, - "out_max": 1.0, - "coeff1": 0.12773297811724849, - "coeff2": 0.5117191582825364, - "coeff3": 0.3389507205751872, - "coeff4": 0.700814373, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "172": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 199.9, - "ref_cap_unit": "ton", - "full_eff": 2.861, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.030176041, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.533886629, - "out_max": 1.425981801, - "coeff1": 0.5545512595579731, - "coeff2": -0.0026627092663921714, - "coeff3": 0.0001237734113752123, - "coeff4": 0.002735394089249499, - "coeff5": 0.00038610520782815424, - "coeff6": -0.0004019239052468601, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.030176041, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.788894447, - "out_max": 1.482741371, - "coeff1": 1.1303584855442304, - "coeff2": 0.03073262754968037, - "coeff3": 0.0006405541374098662, - "coeff4": -0.004699139843069521, - "coeff5": -0.00011095531561086772, - "coeff6": -0.00024247250747385708, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.030176041, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.19999999999999998, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.216951018, - "out_max": 1.0, - "coeff1": 0.08985881438201149, - "coeff2": 0.6738877131030729, - "coeff3": 0.2220843586900228, - "coeff4": 0.273522396, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "173": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 207.1, - "ref_cap_unit": "ton", - "full_eff": 3.089, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.031268763, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.565700996, - "out_max": 1.417162213, - "coeff1": 0.5961076944658842, - "coeff2": -0.005265739986258233, - "coeff3": 0.0002835897165792342, - "coeff4": 0.002077066215786308, - "coeff5": 0.0003852571514965756, - "coeff6": -0.0004437148512780123, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.031268763, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.79092226, - "out_max": 1.44760985, - "coeff1": 1.085123364944868, - "coeff2": 0.03417602104405809, - "coeff3": 0.0003885225265346341, - "coeff4": -0.0032353140466733427, - "coeff5": -0.0001308805529803502, - "coeff6": -0.00019778226549028457, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.031268763, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.20006816632583507, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.208502024, - "out_max": 1.0, - "coeff1": 0.08650167366755174, - "coeff2": 0.7139875629062618, - "coeff3": 0.18738349253887226, - "coeff4": 0.19188139, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "174": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 167.9, - "ref_cap_unit": "ton", - "full_eff": 2.926, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02534901, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.548111952, - "out_max": 1.44060153, - "coeff1": 0.5196567195383645, - "coeff2": 0.008561732272662659, - "coeff3": -0.0002461659167947265, - "coeff4": 0.001793112407370772, - "coeff5": 0.000432968641870262, - "coeff6": -0.0006214246289493741, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02534901, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.787373437, - "out_max": 1.452054795, - "coeff1": 1.1446240502779443, - "coeff2": 0.022005382290231357, - "coeff3": 0.0007854076334263375, - "coeff4": -0.003343975535512034, - "coeff5": -0.0001543924285763432, - "coeff6": -3.6359550915073674e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02534901, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.19987187700192185, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.201350558, - "out_max": 1.164077067, - "coeff1": 0.08886917850201455, - "coeff2": 0.7248661682113986, - "coeff3": 0.17924400761512993, - "coeff4": -0.08804627, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "175": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 172.3, - "ref_cap_unit": "ton", - "full_eff": 3.159, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.026007041, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.504556586, - "out_max": 1.437727167, - "coeff1": 0.5539487636322071, - "coeff2": -0.006137145194881066, - "coeff3": 0.00024605377630156425, - "coeff4": 0.004427631979920632, - "coeff5": 0.00036527888304981217, - "coeff6": -0.000463660637690602, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.026007041, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.788740569, - "out_max": 1.510737086, - "coeff1": 1.1107186934556745, - "coeff2": 0.03603006769641948, - "coeff3": 0.0005151268272959066, - "coeff4": -0.005437875902702523, - "coeff5": -8.890741532660183e-5, - "coeff6": -0.00029670698935809945, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.026007041, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.19999999999999998, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.223176243, - "out_max": 1.015731874, - "coeff1": 0.11142730366500914, - "coeff2": 0.65361192483866, - "coeff3": 0.23490507282239148, - "coeff4": -0.169318434, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "176": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 140.0, - "ref_cap_unit": "ton", - "full_eff": 2.873, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.021140263, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.489629367, - "out_max": 1.451677938, - "coeff1": 0.5408669989868302, - "coeff2": -0.004910076223630655, - "coeff3": 0.00022804387446472701, - "coeff4": 0.0033910418749747255, - "coeff5": 0.00039553848326412416, - "coeff6": -0.0004406406451826577, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.021140263, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.779285714, - "out_max": 1.547857143, - "coeff1": 1.1194164005597929, - "coeff2": 0.03903921968446178, - "coeff3": 0.0003245492861161936, - "coeff4": -0.0049748018093643525, - "coeff5": -0.00010639091026194979, - "coeff6": -0.0003610408326966757, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.021140263, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.1998621640248105, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.217958861, - "out_max": 1.247882987, - "coeff1": 0.08522847192389374, - "coeff2": 0.7495227366662802, - "coeff3": 0.1681756827477084, - "coeff4": -0.231966078, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "177": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 89.69, - "ref_cap_unit": "ton", - "full_eff": 2.97, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.013536002, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.444444444, - "y_min": -1.111111111, - "x_max": 10.0, - "y_max": 51.66666667, - "out_min": 0.466594466, - "out_max": 1.642123713, - "coeff1": 0.584595397, - "coeff2": -0.013781006, - "coeff3": 0.000604281, - "coeff4": -0.000436523, - "coeff5": 0.000514771, - "coeff6": -0.000528267, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.013536002, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.444444444, - "y_min": -1.111111111, - "x_max": 10.0, - "y_max": 51.66666667, - "out_min": 0.754041699, - "out_max": 1.436057531, - "coeff1": 1.01293982, - "coeff2": 0.044410671, - "coeff3": -0.000241862, - "coeff4": -0.00070317, - "coeff5": -0.000157336, - "coeff6": -0.000272726, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "cubic", - "ref_evap_fluid_flow": 0.013536002, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.3, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.258427762, - "out_max": 1.181141091, - "coeff1": 0.146085465, - "coeff2": -0.241891701, - "coeff3": 2.875358525, - "coeff4": -1.791769016, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "178": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 143.5, - "ref_cap_unit": "ton", - "full_eff": 3.112, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02166265, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.531988049, - "out_max": 1.440701466, - "coeff1": 0.580675063785507, - "coeff2": -0.0037252044442654952, - "coeff3": 0.0001749472729148764, - "coeff4": 0.0023816909522686586, - "coeff5": 0.0003989046418263544, - "coeff6": -0.0005085355731576687, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02166265, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.783972125, - "out_max": 1.485714286, - "coeff1": 1.0774513952266045, - "coeff2": 0.03623471365675335, - "coeff3": 0.00038221448803036837, - "coeff4": -0.0027639047331632716, - "coeff5": -0.0001376123726624861, - "coeff6": -0.0002683514044679366, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02166265, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.19999999999999998, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.217614091, - "out_max": 1.003120125, - "coeff1": 0.08360606902933974, - "coeff2": 0.793455066938583, - "coeff3": 0.120615811178687, - "coeff4": -0.346038463, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "179": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 335.8, - "ref_cap_unit": "ton", - "full_eff": 3.095, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.050675307, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.522832023, - "out_max": 1.727380285, - "coeff1": 0.5544821637856727, - "coeff2": -0.0011006826815798676, - "coeff3": 0.00011854289286019823, - "coeff4": 0.0037432929130395733, - "coeff5": 0.0004049666632074259, - "coeff6": -0.0006090336255993763, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.050675307, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.691780822, - "out_max": 1.545265039, - "coeff1": 1.0832700434173674, - "coeff2": 0.04118675695256663, - "coeff3": 0.00034409752359092563, - "coeff4": -0.004759013025054198, - "coeff5": -8.339333196598543e-5, - "coeff6": -0.000504601998930058, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.050675307, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.20007665772326566, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.137046632, - "out_max": 1.0, - "coeff1": 0.06052643354448524, - "coeff2": 0.5983722254664917, - "coeff3": 0.3260835184702724, - "coeff4": 0.842525911, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "180": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 107.8, - "ref_cap_unit": "ton", - "full_eff": 3.115, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.016275378, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.543281293, - "out_max": 1.764062783, - "coeff1": 0.605217241873972, - "coeff2": -0.006990591235271404, - "coeff3": 0.00034984099338677965, - "coeff4": 0.0007378531879181291, - "coeff5": 0.00046176594461396414, - "coeff6": -0.0005457658822080223, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.016275378, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.678664193, - "out_max": 1.414656772, - "coeff1": 1.0135061451771668, - "coeff2": 0.037601312867586, - "coeff3": 0.00038248064482286626, - "coeff4": -0.00036564408750863015, - "coeff5": -0.00016331935052440018, - "coeff6": -0.00027161534408695794, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.016275378, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.1994535519125683, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.171846435, - "out_max": 1.0, - "coeff1": 0.042687111839839684, - "coeff2": 0.8533834988100774, - "coeff3": 0.10031384677862348, - "coeff4": -0.089764158, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "181": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 158.8, - "ref_cap_unit": "ton", - "full_eff": 3.161, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02396418, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.499443639, - "out_max": 1.746184127, - "coeff1": 0.5672546478804492, - "coeff2": -0.005768586781868201, - "coeff3": 0.00024690820252791165, - "coeff4": 0.0031521731782560986, - "coeff5": 0.0004192190472499732, - "coeff6": -0.0005199087872527384, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02396418, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.685138539, - "out_max": 1.508186398, - "coeff1": 1.0845185144933596, - "coeff2": 0.037716845268850496, - "coeff3": 0.00044706119819156245, - "coeff4": -0.005162614477985488, - "coeff5": -8.98231439599207e-5, - "coeff6": -0.0003050471508319213, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02396418, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.19983065198983915, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.146545226, - "out_max": 1.0, - "coeff1": 0.04734162244321535, - "coeff2": 0.6826884434216662, - "coeff3": 0.2620464176907156, - "coeff4": 0.215250585, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "182": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 207.3, - "ref_cap_unit": "ton", - "full_eff": 3.045, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.031292737, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.521358001, - "out_max": 1.700904046, - "coeff1": 0.5731533389490184, - "coeff2": -0.004513841097577298, - "coeff3": 0.0001995930572546746, - "coeff4": 0.003530260856055678, - "coeff5": 0.0003936026386423931, - "coeff6": -0.0005298390729738484, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.031292737, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.688856729, - "out_max": 1.523878437, - "coeff1": 1.0890622436113269, - "coeff2": 0.03798651071434994, - "coeff3": 0.0004183653234927989, - "coeff4": -0.006210828295916149, - "coeff5": -6.930997061376393e-5, - "coeff6": -0.0003017149969076127, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.031292737, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.19987146529562982, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.147341888, - "out_max": 1.0, - "coeff1": 0.059890753289932465, - "coeff2": 0.5534335631850442, - "coeff3": 0.3782864105189203, - "coeff4": 0.226443234, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "183": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 271.5, - "ref_cap_unit": "ton", - "full_eff": 3.149, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.041145533, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.513713894, - "out_max": 1.728977783, - "coeff1": 0.5611356847908322, - "coeff2": -0.0025540807652384423, - "coeff3": 0.0001087084758088254, - "coeff4": 0.003240806575435129, - "coeff5": 0.00041336137322024724, - "coeff6": -0.000558787731603672, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.041145533, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.692449355, - "out_max": 1.509392265, - "coeff1": 1.0718776798365075, - "coeff2": 0.04009825106835424, - "coeff3": 0.00036828946267297366, - "coeff4": -0.004283329434485063, - "coeff5": -9.274245454650752e-5, - "coeff6": -0.0004227651883991156, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.041145533, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.2008603573792191, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.139520523, - "out_max": 1.0, - "coeff1": 0.04681759746898706, - "coeff2": 0.704576932839914, - "coeff3": 0.2400890865844415, - "coeff4": 0.401627761, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "184": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 212.52, - "ref_cap_unit": "ton", - "full_eff": 2.847, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.031434059, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.356587464, - "out_max": 1.728920168, - "coeff1": 0.4651965295846824, - "coeff2": -0.015799526034266764, - "coeff3": 0.0006970535724198142, - "coeff4": 0.010253185123691175, - "coeff5": 0.00033814864620674206, - "coeff6": -0.0005883684424076718, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.031434059, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.727649162, - "out_max": 1.488754, - "coeff1": 1.1020099111524266, - "coeff2": 0.029968394393981662, - "coeff3": 0.0012584935886507838, - "coeff4": -0.004693197475445679, - "coeff5": -6.988328889825392e-5, - "coeff6": -0.00044940468522387204, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.031434059, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.2098431584640346, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.167967947, - "out_max": 1.0, - "coeff1": 0.05229670737591759, - "coeff2": 0.6417469944559488, - "coeff3": 0.3011280945851265, - "coeff4": 0.312232921, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "185": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 134.1, - "ref_cap_unit": "ton", - "full_eff": 3.042, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.019836189, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.401067924, - "out_max": 1.73223169, - "coeff1": 0.45624527451064245, - "coeff2": -0.009095327296664762, - "coeff3": 0.00032284214375902925, - "coeff4": 0.009618016292894247, - "coeff5": 0.00035072253766232496, - "coeff6": -0.0006395767684840075, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.019836189, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.725279642, - "out_max": 1.468903803, - "coeff1": 1.0529321530726303, - "coeff2": 0.03174939996990872, - "coeff3": 0.0013208485517104147, - "coeff4": -0.001763801644513275, - "coeff5": -0.00010654875086115698, - "coeff6": -0.0005164995868300391, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.019836189, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.20980392156862746, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.18927898, - "out_max": 1.0, - "coeff1": 0.024417074819340176, - "coeff2": 0.8155748493348488, - "coeff3": 0.16037163938927768, - "coeff4": -0.175499316, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "186": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 172.53, - "ref_cap_unit": "ton", - "full_eff": 2.959, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.025525662, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": 2.2, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.432119585, - "out_max": 1.719098907, - "coeff1": 0.4863359822948834, - "coeff2": -0.008268221158863498, - "coeff3": 0.0003252636136839501, - "coeff4": 0.007863533069199439, - "coeff5": 0.0003648998723120195, - "coeff6": -0.0006148834106619793, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.025525662, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": 2.2, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.727699531, - "out_max": 1.463977279, - "coeff1": 1.0984792214162322, - "coeff2": 0.03570709931179439, - "coeff3": 0.0007023224542533051, - "coeff4": -0.005720119797355091, - "coeff5": -6.0592648895475105e-5, - "coeff6": -0.0003801935561536739, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.025525662, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.2098214285714286, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.170834646, - "out_max": 1.0, - "coeff1": 0.06279213197630334, - "coeff2": 0.5854204009233304, - "coeff3": 0.347058619872712, - "coeff4": 0.300937714, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "187": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 183.9, - "ref_cap_unit": "ton", - "full_eff": 2.879, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0272026, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": 1.7, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.404496773, - "out_max": 1.72217613, - "coeff1": 0.4646102678965699, - "coeff2": -0.009249888176235566, - "coeff3": 0.00034385735485614223, - "coeff4": 0.00891424553088578, - "coeff5": 0.00035394448685171435, - "coeff6": -0.0005934520527966494, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0272026, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": 1.7, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.727460576, - "out_max": 1.4742795, - "coeff1": 1.115479721501198, - "coeff2": 0.03365743130070817, - "coeff3": 0.0007980762229226092, - "coeff4": -0.006230951741903825, - "coeff5": -5.5283005260082455e-5, - "coeff6": -0.00037280736153124956, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0272026, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.2097683155917345, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.167752921, - "out_max": 1.0, - "coeff1": 0.059245108544062036, - "coeff2": 0.5996130430428858, - "coeff3": 0.33592982912673736, - "coeff4": 0.335254962, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "188": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 19.61, - "ref_cap_unit": "ton", - "full_eff": 3.02, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.002958299, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.490617963, - "out_max": 1.768007533, - "coeff1": 0.5725469327059242, - "coeff2": -0.005019669380337599, - "coeff3": 7.641462265328691e-5, - "coeff4": -0.0021217560994472306, - "coeff5": 0.0005646172761754007, - "coeff6": -0.0005666554038893548, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.002958299, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.746557879, - "out_max": 1.402855686, - "coeff1": 1.0424125706025342, - "coeff2": 0.0337328859777386, - "coeff3": 0.0002172520059260316, - "coeff4": -0.00043051965412146563, - "coeff5": -0.00016677331839561857, - "coeff6": -0.0001828106378541914, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.002958299, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.29818181818181816, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.252992446, - "out_max": 1.0, - "coeff1": 0.055670876228057053, - "coeff2": 0.6660197368874149, - "coeff3": 0.28378318578660355, - "coeff4": -0.458579224, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "189": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 68.39, - "ref_cap_unit": "ton", - "full_eff": 3.041, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01033102, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.480066216, - "out_max": 1.676253332, - "coeff1": 0.6873550219756634, - "coeff2": -0.0041326121349519185, - "coeff3": 0.0001642289184308962, - "coeff4": -0.011533742905125164, - "coeff5": 0.0007244041946321686, - "coeff6": -0.0007210521870969499, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01033102, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.749086124, - "out_max": 1.414826729, - "coeff1": 1.0003393493248858, - "coeff2": 0.02591324875102685, - "coeff3": 0.0005998582044995197, - "coeff4": 0.005280889363288582, - "coeff5": -0.00027727632439475066, - "coeff6": -4.327652653772756e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.01033102, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.29958677685950413, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.16639698, - "out_max": 1.026900803, - "coeff1": -0.23473751856277467, - "coeff2": 1.7264542507110665, - "coeff3": -0.4856557025720434, - "coeff4": -1.62787868, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "190": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 44.76, - "ref_cap_unit": "ton", - "full_eff": 3.095, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.006754436, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.544913774, - "out_max": 1.778020123, - "coeff1": 0.6760689074597575, - "coeff2": -0.005416694147264811, - "coeff3": 0.0002524684724482945, - "coeff4": -0.005296283866924392, - "coeff5": 0.0005747371369955703, - "coeff6": -0.0006902766690879874, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.006754436, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.72207328, - "out_max": 1.361483467, - "coeff1": 0.9944446449522935, - "coeff2": 0.02737862109351913, - "coeff3": 0.00048009307581466446, - "coeff4": 0.002723994501135661, - "coeff5": -0.00020294260987260864, - "coeff6": -9.868739042375374e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.006754436, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.2987551867219917, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.217203813, - "out_max": 1.0, - "coeff1": -0.06286654664052213, - "coeff2": 1.1142732289355828, - "coeff3": -0.03939028995189697, - "coeff4": -1.592424348, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "191": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 90.42, - "ref_cap_unit": "ton", - "full_eff": 3.106, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.013659027, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.444444444, - "y_min": -1.111111111, - "x_max": 10.0, - "y_max": 51.66666667, - "out_min": 0.472306504, - "out_max": 1.695115365, - "coeff1": 0.554841045, - "coeff2": -0.006185139, - "coeff3": 0.000183772, - "coeff4": -0.000170923, - "coeff5": 0.000512531, - "coeff6": -0.000561931, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.013659027, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.444444444, - "y_min": -1.111111111, - "x_max": 10.0, - "y_max": 51.66666667, - "out_min": 0.764764433, - "out_max": 1.426675514, - "coeff1": 1.042075739, - "coeff2": 0.037620791, - "coeff3": 5.51e-5, - "coeff4": -0.001692303, - "coeff5": -0.000138539, - "coeff6": -0.000208149, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "cubic", - "ref_evap_fluid_flow": 0.013659027, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.3, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.258815029, - "out_max": 1.19, - "coeff1": 0.145279876, - "coeff2": -0.239506635, - "coeff3": 2.896194081, - "coeff4": -1.814345219, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "192": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 83.8, - "ref_cap_unit": "ton", - "full_eff": 3.055, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01266031, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.444444444, - "y_min": -1.111111111, - "x_max": 10.0, - "y_max": 51.66666667, - "out_min": 0.465412549, - "out_max": 1.717520558, - "coeff1": 0.559393287, - "coeff2": -0.007373222, - "coeff3": 0.000153341, - "coeff4": 0.00023468, - "coeff5": 0.000513533, - "coeff6": -0.00057271, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01266031, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.444444444, - "y_min": -1.111111111, - "x_max": 10.0, - "y_max": 51.66666667, - "out_min": 0.749045346, - "out_max": 1.430787589, - "coeff1": 1.040113652, - "coeff2": 0.038290572, - "coeff3": 0.000104507, - "coeff4": -0.001574932, - "coeff5": -0.000144067, - "coeff6": -0.000238007, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "cubic", - "ref_evap_fluid_flow": 0.01266031, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.3, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.261664075, - "out_max": 1.146433419, - "coeff1": -0.111034477, - "coeff2": 1.017510605, - "coeff3": 1.333401413, - "coeff4": -1.255748997, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "193": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 84.19, - "ref_cap_unit": "ton", - "full_eff": 3.129, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.012717722, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.444444444, - "y_min": -1.111111111, - "x_max": 10.0, - "y_max": 51.66666667, - "out_min": 0.469184921, - "out_max": 1.707680034, - "coeff1": 0.558397746, - "coeff2": -0.007222823, - "coeff3": 0.000167896, - "coeff4": 0.000372365, - "coeff5": 0.000507686, - "coeff6": -0.00057214, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.012717722, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.444444444, - "y_min": -1.111111111, - "x_max": 10.0, - "y_max": 51.66666667, - "out_min": 0.756621927, - "out_max": 1.426535218, - "coeff1": 1.038861965, - "coeff2": 0.038113387, - "coeff3": 9.82e-5, - "coeff4": -0.00182818, - "coeff5": -0.000136204, - "coeff6": -0.00022716, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "cubic", - "ref_evap_fluid_flow": 0.012717722, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.3, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.268474843, - "out_max": 1.153257877, - "coeff1": -0.131273304, - "coeff2": 1.169254866, - "coeff3": 1.098988648, - "coeff4": -1.15263752, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "194": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 298.7, - "ref_cap_unit": "ton", - "full_eff": 3.406, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.045093718, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.402398906, - "out_max": 1.754341632, - "coeff1": 0.4514318379390143, - "coeff2": 0.0001716461721532614, - "coeff3": -0.0001290510548106992, - "coeff4": 0.009363933514461763, - "coeff5": 0.0003580859119548603, - "coeff6": -0.0007535475752410996, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.045093718, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": -1.1, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.739872782, - "out_max": 1.510880482, - "coeff1": 1.031183324025426, - "coeff2": 0.044411897408478895, - "coeff3": 0.00032658065745171105, - "coeff4": -0.004212087279817395, - "coeff5": -5.89476495288406e-5, - "coeff6": -0.0005390723617319055, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.045093718, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.2, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.134569733, - "out_max": 1.0, - "coeff1": 0.09005997992264345, - "coeff2": 0.28698550644874454, - "coeff3": 0.6173040886600751, - "coeff4": 0.536152064, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "195": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 145.6, - "ref_cap_unit": "ton", - "full_eff": 3.425, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.021976839, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": 10.0, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.516805758, - "out_max": 1.75559442, - "coeff1": 0.4869974858582158, - "coeff2": -0.0006986435837481597, - "coeff3": 0.00040001886899303923, - "coeff4": 0.005292127968541494, - "coeff5": 0.0004414523133487463, - "coeff6": -0.0008780890425992804, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.021976839, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.4, - "y_min": 10.0, - "x_max": 10.0, - "y_max": 51.7, - "out_min": 0.734203297, - "out_max": 1.338598901, - "coeff1": 0.9855324852410074, - "coeff2": 0.04364081082655047, - "coeff3": 0.0005139551417362477, - "coeff4": -0.0017743355722528737, - "coeff5": -8.959377128691168e-5, - "coeff6": -0.0005343604304776401, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.021976839, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.20118782479584263, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.165849057, - "out_max": 1.0, - "coeff1": 0.0605745659928492, - "coeff2": 0.5776129139662443, - "coeff3": 0.3525436555551304, - "coeff4": 0.784376593, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "196": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 34.5, - "ref_cap_unit": "ton", - "full_eff": 2.67, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0015, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0015, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.72, - "out_max": 1.3426, - "coeff1": 0.769016964, - "coeff2": -0.023780081, - "coeff3": 0.000982881, - "coeff4": 0.001539695, - "coeff5": 0.000353063, - "coeff6": -0.000595949, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0015, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8673, - "out_max": 1.2245, - "coeff1": 0.92974344, - "coeff2": 0.050326531, - "coeff3": -0.000118076, - "coeff4": -0.004555102, - "coeff5": -1.89e-5, - "coeff6": -0.000330612, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "197": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 47.1, - "ref_cap_unit": "ton", - "full_eff": 2.67, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.002, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.002, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7193, - "out_max": 1.3343, - "coeff1": 0.709612796, - "coeff2": -0.019508867, - "coeff3": 0.000609584, - "coeff4": 0.002669734, - "coeff5": 0.000331108, - "coeff6": -0.000455142, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.002, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8731, - "out_max": 1.2164, - "coeff1": 0.942595949, - "coeff2": 0.047142537, - "coeff3": 8.64e-5, - "coeff4": -0.004043284, - "coeff5": -2.07e-5, - "coeff6": -0.000398955, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "198": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 54.2, - "ref_cap_unit": "ton", - "full_eff": 2.9, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0023, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0023, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.6711, - "out_max": 1.5625, - "coeff1": -0.503119785, - "coeff2": 0.041975964, - "coeff3": -0.000811013, - "coeff4": 0.055601462, - "coeff5": -0.000212132, - "coeff6": -0.001658716, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0023, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.4091, - "out_max": 1.2338, - "coeff1": -0.444426248, - "coeff2": 0.104727058, - "coeff3": -0.002169794, - "coeff4": 0.07692782, - "coeff5": -0.001199284, - "coeff6": -0.001430649, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "199": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 54.5, - "ref_cap_unit": "ton", - "full_eff": 2.67, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0023, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0023, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7085, - "out_max": 1.3454, - "coeff1": 0.538082653, - "coeff2": 0.031224807, - "coeff3": -0.002286519, - "coeff4": 0.002149881, - "coeff5": 0.000371411, - "coeff6": -0.000731568, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0023, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.871, - "out_max": 1.2, - "coeff1": 0.987247005, - "coeff2": 0.036778065, - "coeff3": 0.000149309, - "coeff4": -0.004250323, - "coeff5": -3.88e-5, - "coeff6": -0.000188129, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "200": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 65.8, - "ref_cap_unit": "ton", - "full_eff": 2.9, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0028, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0028, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.6623, - "out_max": 1.5873, - "coeff1": -0.432926423, - "coeff2": -0.004049845, - "coeff3": 0.002447433, - "coeff4": 0.060831239, - "coeff5": -0.000302641, - "coeff6": -0.001647128, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0028, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.4011, - "out_max": 1.246, - "coeff1": -0.049303263, - "coeff2": 0.045655848, - "coeff3": 0.001751394, - "coeff4": 0.068050247, - "coeff5": -0.001135012, - "coeff6": -0.001319409, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "201": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 68.9, - "ref_cap_unit": "ton", - "full_eff": 2.96, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.15, - "min_unloading": 0.25, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.00295, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.25, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0546, - "coeff2": 0.7604, - "coeff3": 0.1871, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.00295, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.5449, - "out_max": 1.4201, - "coeff1": 0.609429307, - "coeff2": -0.001074537, - "coeff3": -5.8e-5, - "coeff4": -0.000376805, - "coeff5": 0.000457683, - "coeff6": -0.000594249, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.00295, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8316, - "out_max": 1.3367, - "coeff1": 1.002065287, - "coeff2": 0.029082938, - "coeff3": 0.000498132, - "coeff4": 0.000908824, - "coeff5": -0.000168061, - "coeff6": -0.000175273, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "202": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 71.0, - "ref_cap_unit": "ton", - "full_eff": 2.67, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0031, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0031, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7306, - "out_max": 1.3366, - "coeff1": 0.738136935, - "coeff2": -0.022575076, - "coeff3": 0.001045099, - "coeff4": 0.001149609, - "coeff5": 0.000359704, - "coeff6": -0.000492416, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0031, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8762, - "out_max": 1.2079, - "coeff1": 0.996439887, - "coeff2": 0.035830693, - "coeff3": 0.00040099, - "coeff4": -0.004437624, - "coeff5": -2.75e-5, - "coeff6": -0.000272673, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "203": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 78.1, - "ref_cap_unit": "ton", - "full_eff": 2.67, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0034, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0034, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7261, - "out_max": 1.3346, - "coeff1": 0.65942721, - "coeff2": -0.002729329, - "coeff3": -0.000284761, - "coeff4": 0.001155608, - "coeff5": 0.000355422, - "coeff6": -0.000447629, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0034, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8784, - "out_max": 1.2162, - "coeff1": 1.011609395, - "coeff2": 0.030052703, - "coeff3": 0.001042471, - "coeff4": -0.004143243, - "coeff5": -2.08e-5, - "coeff6": -0.000372162, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "204": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 78.1, - "ref_cap_unit": "ton", - "full_eff": 2.96, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0108, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0108, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6966, - "out_max": 1.5075, - "coeff1": 0.702841865, - "coeff2": 0.003798794, - "coeff3": 0.000203313, - "coeff4": -0.010241205, - "coeff5": 0.000663347, - "coeff6": -0.000795799, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0108, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7918, - "out_max": 1.225, - "coeff1": 1.006155084, - "coeff2": 0.036195644, - "coeff3": 0.000221253, - "coeff4": -0.000283237, - "coeff5": -0.000140936, - "coeff6": -0.000330271, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "205": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 78.1, - "ref_cap_unit": "ton", - "full_eff": 2.99, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0109, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0109, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6939, - "out_max": 1.5, - "coeff1": 0.710650784, - "coeff2": 0.000394617, - "coeff3": 0.000391484, - "coeff4": -0.010043417, - "coeff5": 0.000658614, - "coeff6": -0.000776655, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0109, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7911, - "out_max": 1.2256, - "coeff1": 1.001333613, - "coeff2": 0.036782939, - "coeff3": 0.00019522, - "coeff4": -9.826e-5, - "coeff5": -0.000143274, - "coeff6": -0.000335647, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "206": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 87.7, - "ref_cap_unit": "ton", - "full_eff": 2.84, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0115, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0115, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6879, - "out_max": 1.4265, - "coeff1": 0.323418192, - "coeff2": -0.001156511, - "coeff3": 0.000663827, - "coeff4": 0.014239855, - "coeff5": 0.00029818, - "coeff6": -0.000846287, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0115, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6754, - "out_max": 1.2313, - "coeff1": 0.546008133, - "coeff2": 0.03799355, - "coeff3": 0.000237856, - "coeff4": 0.029540925, - "coeff5": -0.000607222, - "coeff6": -0.00038764, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "207": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 87.7, - "ref_cap_unit": "ton", - "full_eff": 2.9, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0118, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0118, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6875, - "out_max": 1.4559, - "coeff1": 0.634863991, - "coeff2": -0.001253722, - "coeff3": 0.000449332, - "coeff4": -0.004346889, - "coeff5": 0.000547287, - "coeff6": -0.000744398, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0118, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.731, - "out_max": 1.2291, - "coeff1": 1.033917366, - "coeff2": 0.040906498, - "coeff3": 0.00016028, - "coeff4": 4.36e-5, - "coeff5": -0.000193357, - "coeff6": -0.000460077, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "208": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 88.2, - "ref_cap_unit": "ton", - "full_eff": 3.17, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0134, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0134, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6968, - "out_max": 1.5, - "coeff1": 0.706342278, - "coeff2": -0.000682896, - "coeff3": 0.000398059, - "coeff4": -0.008666555, - "coeff5": 0.000633723, - "coeff6": -0.00080527, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0134, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7914, - "out_max": 1.229, - "coeff1": 1.008237049, - "coeff2": 0.037131204, - "coeff3": 0.000211513, - "coeff4": -0.000968743, - "coeff5": -0.000130923, - "coeff6": -0.00031242, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "209": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 88.8, - "ref_cap_unit": "ton", - "full_eff": 3.11, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0132, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0132, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6974, - "out_max": 1.5143, - "coeff1": 0.743070459, - "coeff2": -0.00169891, - "coeff3": 0.000635102, - "coeff4": -0.010930835, - "coeff5": 0.000678985, - "coeff6": -0.000884155, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0132, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.791, - "out_max": 1.2296, - "coeff1": 1.00655456, - "coeff2": 0.037289633, - "coeff3": 0.000215342, - "coeff4": -0.000897079, - "coeff5": -0.000131725, - "coeff6": -0.000315657, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "210": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 90.0, - "ref_cap_unit": "ton", - "full_eff": 3.0, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0039, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0039, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.7014, - "out_max": 1.6557, - "coeff1": 0.431503152, - "coeff2": -0.006418218, - "coeff3": 0.000974786, - "coeff4": 0.010717895, - "coeff5": 0.000344696, - "coeff6": -0.00091769, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0039, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.4297, - "out_max": 1.2227, - "coeff1": 0.120256831, - "coeff2": 0.041450327, - "coeff3": 0.000298116, - "coeff4": 0.050799566, - "coeff5": -0.000852179, - "coeff6": -0.000458255, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "211": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 95.7, - "ref_cap_unit": "ton", - "full_eff": 2.67, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0041, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0041, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7316, - "out_max": 1.3421, - "coeff1": 0.711885926, - "coeff2": -0.017473054, - "coeff3": 0.00075914, - "coeff4": 0.001044253, - "coeff5": 0.000363823, - "coeff6": -0.00047178, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0041, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.875, - "out_max": 1.2022, - "coeff1": 0.983419118, - "coeff2": 0.041975735, - "coeff3": -8.5084e-5, - "coeff4": -0.005042647, - "coeff5": -2.04e-5, - "coeff6": -0.000250147, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "212": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 96.0, - "ref_cap_unit": "ton", - "full_eff": 2.81, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0041, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0041, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7082, - "out_max": 1.4559, - "coeff1": 0.749088558, - "coeff2": -0.008144683, - "coeff3": 0.000542828, - "coeff4": -0.008493611, - "coeff5": 0.000583475, - "coeff6": -0.000586407, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0041, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8132, - "out_max": 1.2234, - "coeff1": 1.062039334, - "coeff2": 0.036929199, - "coeff3": 0.000137755, - "coeff4": -0.004362009, - "coeff5": -6.92e-5, - "coeff6": -0.000327221, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "213": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 97.3, - "ref_cap_unit": "ton", - "full_eff": 2.9, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.013, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.013, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6875, - "out_max": 1.375, - "coeff1": -0.095947945, - "coeff2": 0.011077171, - "coeff3": 0.000159314, - "coeff4": 0.038330921, - "coeff5": -6.13e-5, - "coeff6": -0.000995365, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.013, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.5688, - "out_max": 1.2366, - "coeff1": 0.014316671, - "coeff2": 0.063008061, - "coeff3": -0.000802727, - "coeff4": 0.059256489, - "coeff5": -0.001046647, - "coeff6": -0.000723596, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "214": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 98.2, - "ref_cap_unit": "ton", - "full_eff": 2.84, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0128, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0128, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6879, - "out_max": 1.3857, - "coeff1": -0.084093012, - "coeff2": 0.009631364, - "coeff3": 0.000116917, - "coeff4": 0.038020399, - "coeff5": -6.08e-5, - "coeff6": -0.000941933, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0128, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.5686, - "out_max": 1.2376, - "coeff1": 0.014304261, - "coeff2": 0.063242853, - "coeff3": -0.000809345, - "coeff4": 0.059248669, - "coeff5": -0.001047093, - "coeff6": -0.000725106, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "215": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 99.2, - "ref_cap_unit": "ton", - "full_eff": 2.96, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.15, - "min_unloading": 0.25, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0042, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.25, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0604, - "coeff2": 0.6778, - "coeff3": 0.266, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0042, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.4518, - "out_max": 1.4426, - "coeff1": 0.530920127, - "coeff2": -0.011600717, - "coeff3": 0.000488325, - "coeff4": 0.005343366, - "coeff5": 0.000393787, - "coeff6": -0.000579876, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0042, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8298, - "out_max": 1.4007, - "coeff1": 1.047204892, - "coeff2": 0.03763592, - "coeff3": 0.000141052, - "coeff4": -0.003384418, - "coeff5": -0.000100572, - "coeff6": -0.00025868, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "216": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 100.6, - "ref_cap_unit": "ton", - "full_eff": 3.1, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0043, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0043, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.7047, - "out_max": 1.6406, - "coeff1": 0.180701779, - "coeff2": 0.027153031, - "coeff3": -0.000455357, - "coeff4": 0.018817508, - "coeff5": 0.000262328, - "coeff6": -0.001288119, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0043, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.4056, - "out_max": 1.2168, - "coeff1": -0.26606457, - "coeff2": 0.099871404, - "coeff3": -0.002381415, - "coeff4": 0.062831648, - "coeff5": -0.000964465, - "coeff6": -0.001124922, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "217": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 106.1, - "ref_cap_unit": "ton", - "full_eff": 2.99, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0149, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0149, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6892, - "out_max": 1.4366, - "coeff1": 0.27841425, - "coeff2": 0.017259554, - "coeff3": -0.000108789, - "coeff4": 0.014027281, - "coeff5": 0.000323092, - "coeff6": -0.001123132, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0149, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.5919, - "out_max": 1.2294, - "coeff1": 0.251872742, - "coeff2": 0.0858723, - "coeff3": -0.001553044, - "coeff4": 0.037309605, - "coeff5": -0.000644361, - "coeff6": -0.001092531, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "218": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 106.6, - "ref_cap_unit": "ton", - "full_eff": 2.93, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0147, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0147, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6897, - "out_max": 1.4286, - "coeff1": 0.169660887, - "coeff2": 0.020701039, - "coeff3": -6.33e-5, - "coeff4": 0.020078866, - "coeff5": 0.000242411, - "coeff6": -0.001250638, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0147, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.5704, - "out_max": 1.2292, - "coeff1": 0.033482713, - "coeff2": 0.097263888, - "coeff3": -0.001428658, - "coeff4": 0.04875775, - "coeff5": -0.000774754, - "coeff6": -0.001524305, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "219": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 110.7, - "ref_cap_unit": "ton", - "full_eff": 2.81, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0145, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0145, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6857, - "out_max": 1.5, - "coeff1": 0.031456346, - "coeff2": 0.032950476, - "coeff3": 0.000683665, - "coeff4": 0.02547071, - "coeff5": 0.000245899, - "coeff6": -0.001997224, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0145, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.5564, - "out_max": 1.2307, - "coeff1": -0.009957995, - "coeff2": 0.089495484, - "coeff3": 0.000330521, - "coeff4": 0.053574471, - "coeff5": -0.000787534, - "coeff6": -0.002119093, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "220": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 111.1, - "ref_cap_unit": "ton", - "full_eff": 2.81, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0048, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0048, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7079, - "out_max": 1.4613, - "coeff1": 0.74229029, - "coeff2": -0.007752048, - "coeff3": 0.000597898, - "coeff4": -0.008609485, - "coeff5": 0.000593382, - "coeff6": -0.000615375, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0048, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8133, - "out_max": 1.2215, - "coeff1": 1.062308168, - "coeff2": 0.037220208, - "coeff3": 8.24e-5, - "coeff4": -0.004381736, - "coeff5": -7.08e-5, - "coeff6": -0.000313454, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "221": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 116.4, - "ref_cap_unit": "ton", - "full_eff": 2.93, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.15, - "min_unloading": 0.25, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.005, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.25, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0354, - "coeff2": 0.7233, - "coeff3": 0.2472, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.005, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.4737, - "out_max": 1.4417, - "coeff1": 0.536327986, - "coeff2": -0.009969306, - "coeff3": 0.000411127, - "coeff4": 0.004157165, - "coeff5": 0.000408805, - "coeff6": -0.000539926, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.005, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8278, - "out_max": 1.4109, - "coeff1": 1.052729271, - "coeff2": 0.037507944, - "coeff3": 0.000229418, - "coeff4": -0.003213844, - "coeff5": -0.000101642, - "coeff6": -0.000313377, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "222": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 117.1, - "ref_cap_unit": "ton", - "full_eff": 2.61, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.005, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.005, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7286, - "out_max": 1.3419, - "coeff1": 0.644832174, - "coeff2": -0.000867516, - "coeff3": -0.000257048, - "coeff4": 0.00056739, - "coeff5": 0.00037719, - "coeff6": -0.000467844, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.005, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8769, - "out_max": 1.2042, - "coeff1": 1.042121836, - "coeff2": 0.027232432, - "coeff3": 0.000833977, - "coeff4": -0.004886487, - "coeff5": -2.5e-5, - "coeff6": -0.000252973, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "223": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 120.6, - "ref_cap_unit": "ton", - "full_eff": 3.08, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0177, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0177, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7, - "out_max": 1.5, - "coeff1": 0.732506993, - "coeff2": -0.002358515, - "coeff3": 0.000501147, - "coeff4": -0.009626382, - "coeff5": 0.000640208, - "coeff6": -0.000782983, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0177, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.794, - "out_max": 1.2239, - "coeff1": 1.000886528, - "coeff2": 0.036929441, - "coeff3": 0.000196078, - "coeff4": -0.000662557, - "coeff5": -0.000132296, - "coeff6": -0.000312396, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "224": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 122.7, - "ref_cap_unit": "ton", - "full_eff": 2.93, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0053, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0053, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7055, - "out_max": 1.4617, - "coeff1": 0.737554647, - "coeff2": -0.007181314, - "coeff3": 0.000516497, - "coeff4": -0.008590505, - "coeff5": 0.000593044, - "coeff6": -0.000595033, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0053, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8138, - "out_max": 1.2235, - "coeff1": 1.06598772, - "coeff2": 0.037364183, - "coeff3": 0.000107757, - "coeff4": -0.004604503, - "coeff5": -6.63e-5, - "coeff6": -0.000328907, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "225": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 130.8, - "ref_cap_unit": "ton", - "full_eff": 3.0, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0056, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0056, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.6918, - "out_max": 1.8364, - "coeff1": 0.592393829, - "coeff2": 0.004887277, - "coeff3": 0.001132691, - "coeff4": -0.002825467, - "coeff5": 0.00063494, - "coeff6": -0.001463696, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0056, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.3844, - "out_max": 1.2258, - "coeff1": 0.031359224, - "coeff2": 0.041237517, - "coeff3": 0.00025284, - "coeff4": 0.056595108, - "coeff5": -0.000951771, - "coeff6": -0.000385488, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "226": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 133.2, - "ref_cap_unit": "ton", - "full_eff": 2.93, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0181, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0181, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6944, - "out_max": 1.4925, - "coeff1": -0.165511353, - "coeff2": -0.003767292, - "coeff3": 0.002347134, - "coeff4": 0.04655903, - "coeff5": -0.000140136, - "coeff6": -0.001530898, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0181, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.4578, - "out_max": 1.2339, - "coeff1": -0.351429632, - "coeff2": 0.038888021, - "coeff3": 0.002722352, - "coeff4": 0.087468769, - "coeff5": -0.001383046, - "coeff6": -0.001598926, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "227": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 133.3, - "ref_cap_unit": "ton", - "full_eff": 2.96, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0057, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0057, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7038, - "out_max": 1.4617, - "coeff1": 0.735561794, - "coeff2": -0.007444515, - "coeff3": 0.000523947, - "coeff4": -0.008548607, - "coeff5": 0.000593022, - "coeff6": -0.000584822, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0057, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8153, - "out_max": 1.2243, - "coeff1": 1.06906879, - "coeff2": 0.036536676, - "coeff3": 0.000183189, - "coeff4": -0.004664983, - "coeff5": -6.41e-5, - "coeff6": -0.000338289, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "228": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 114.0, - "ref_cap_unit": "ton", - "full_eff": 2.93, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.15, - "min_unloading": 0.25, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0058, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.25, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0255, - "coeff2": 0.856, - "coeff3": 0.1226, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0058, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.5393, - "out_max": 1.4233, - "coeff1": 0.653831993, - "coeff2": -0.01392559, - "coeff3": 0.000550711, - "coeff4": -0.000142635, - "coeff5": 0.000449115, - "coeff6": -0.000535004, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0058, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.832, - "out_max": 1.3622, - "coeff1": 0.952161208, - "coeff2": 0.039696086, - "coeff3": 0.000227784, - "coeff4": 0.001312691, - "coeff5": -0.000161825, - "coeff6": -0.000293636, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "229": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 134.9, - "ref_cap_unit": "ton", - "full_eff": 2.87, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0179, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0179, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.695, - "out_max": 1.5077, - "coeff1": -0.148876496, - "coeff2": 0.009561535, - "coeff3": 0.001948993, - "coeff4": 0.042525244, - "coeff5": -4.77e-5, - "coeff6": -0.001779616, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0179, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.4742, - "out_max": 1.2358, - "coeff1": -0.329498745, - "coeff2": 0.050009516, - "coeff3": 0.002651854, - "coeff4": 0.083603856, - "coeff5": -0.00128605, - "coeff6": -0.00192968, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "230": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 138.6, - "ref_cap_unit": "ton", - "full_eff": 3.0, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.006, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.006, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.6892, - "out_max": 1.7895, - "coeff1": 0.53892636, - "coeff2": 0.004070898, - "coeff3": 0.001006984, - "coeff4": 0.000758717, - "coeff5": 0.000564522, - "coeff6": -0.001355753, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.006, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.3858, - "out_max": 1.231, - "coeff1": 0.035932316, - "coeff2": 0.042729108, - "coeff3": 0.000228252, - "coeff4": 0.056112257, - "coeff5": -0.000942605, - "coeff6": -0.000417362, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "231": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 139.0, - "ref_cap_unit": "ton", - "full_eff": 3.02, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0199, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0199, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6959, - "out_max": 1.4928, - "coeff1": 0.446634469, - "coeff2": 0.026783927, - "coeff3": -0.000366885, - "coeff4": 0.001260166, - "coeff5": 0.000536029, - "coeff6": -0.001298631, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0199, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7452, - "out_max": 1.2296, - "coeff1": 0.617839352, - "coeff2": 0.075668516, - "coeff3": -0.000871488, - "coeff4": 0.015972683, - "coeff5": -0.000313303, - "coeff6": -0.001080118, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "232": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 141.1, - "ref_cap_unit": "ton", - "full_eff": 2.9, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0193, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0193, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6972, - "out_max": 1.375, - "coeff1": 0.111726968, - "coeff2": -0.00323256, - "coeff3": 0.000539707, - "coeff4": 0.02956801, - "coeff5": 3.21e-5, - "coeff6": -0.000734346, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0193, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6622, - "out_max": 1.2286, - "coeff1": 0.473341707, - "coeff2": 0.039317633, - "coeff3": 0.000178233, - "coeff4": 0.033573342, - "coeff5": -0.000666812, - "coeff6": -0.000391108, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "233": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 142.1, - "ref_cap_unit": "ton", - "full_eff": 2.84, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0191, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0191, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6929, - "out_max": 1.3662, - "coeff1": 0.11500357, - "coeff2": -0.000208835, - "coeff3": 0.000446958, - "coeff4": 0.028710227, - "coeff5": 5.01e-5, - "coeff6": -0.000794996, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0191, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6622, - "out_max": 1.2289, - "coeff1": 0.471888739, - "coeff2": 0.039502036, - "coeff3": 0.000174346, - "coeff4": 0.033623804, - "coeff5": -0.000667373, - "coeff6": -0.000394054, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "234": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 149.8, - "ref_cap_unit": "ton", - "full_eff": 3.02, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0065, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0065, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7038, - "out_max": 1.4652, - "coeff1": 0.723828821, - "coeff2": -0.005766703, - "coeff3": 0.000475205, - "coeff4": -0.008300366, - "coeff5": 0.000595506, - "coeff6": -0.000621599, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0065, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8146, - "out_max": 1.223, - "coeff1": 1.074493796, - "coeff2": 0.036203119, - "coeff3": 0.000169769, - "coeff4": -0.004940241, - "coeff5": -6.25e-5, - "coeff6": -0.00031835, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "235": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 150.3, - "ref_cap_unit": "ton", - "full_eff": 3.05, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.022, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.022, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6933, - "out_max": 1.4857, - "coeff1": 0.698647734, - "coeff2": -0.003510561, - "coeff3": 0.000592876, - "coeff4": -0.007530937, - "coeff5": 0.00060623, - "coeff6": -0.000786198, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.022, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7945, - "out_max": 1.2234, - "coeff1": 0.997983362, - "coeff2": 0.036865471, - "coeff3": 0.000191285, - "coeff4": -0.00048858, - "coeff5": -0.000134531, - "coeff6": -0.000309632, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "236": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 160.7, - "ref_cap_unit": "ton", - "full_eff": 2.81, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.021, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.021, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6957, - "out_max": 1.3714, - "coeff1": 0.195796219, - "coeff2": -0.001667224, - "coeff3": 0.000430369, - "coeff4": 0.023764947, - "coeff5": 0.00012339, - "coeff6": -0.000724801, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.021, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6734, - "out_max": 1.2278, - "coeff1": 0.521740175, - "coeff2": 0.039176592, - "coeff3": 0.000158131, - "coeff4": 0.030609107, - "coeff5": -0.000621511, - "coeff6": -0.000388217, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "237": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 161.3, - "ref_cap_unit": "ton", - "full_eff": 2.81, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0213, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0213, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6906, - "out_max": 1.3521, - "coeff1": 0.238407076, - "coeff2": -0.004500193, - "coeff3": 0.000503152, - "coeff4": 0.021392579, - "coeff5": 0.0001503, - "coeff6": -0.00066785, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0213, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6738, - "out_max": 1.2279, - "coeff1": 0.524972501, - "coeff2": 0.038957086, - "coeff3": 0.000161962, - "coeff4": 0.030466445, - "coeff5": -0.000619638, - "coeff6": -0.000385495, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "238": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 162.5, - "ref_cap_unit": "ton", - "full_eff": 3.0, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.007, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.007, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.6986, - "out_max": 1.7, - "coeff1": 0.522343591, - "coeff2": -0.000401708, - "coeff3": 0.000564284, - "coeff4": 0.004427216, - "coeff5": 0.000438255, - "coeff6": -0.000961152, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.007, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.4004, - "out_max": 1.2251, - "coeff1": -0.002523091, - "coeff2": 0.044650394, - "coeff3": 0.000260732, - "coeff4": 0.057248048, - "coeff5": -0.000938054, - "coeff6": -0.000505846, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "239": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 162.5, - "ref_cap_unit": "ton", - "full_eff": 2.87, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0217, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0217, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.695, - "out_max": 1.3803, - "coeff1": 0.111613881, - "coeff2": 0.018683653, - "coeff3": -0.000265554, - "coeff4": 0.024754527, - "coeff5": 0.000145944, - "coeff6": -0.001077673, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0217, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6678, - "out_max": 1.2303, - "coeff1": 0.386774416, - "coeff2": 0.064354487, - "coeff3": -0.00093557, - "coeff4": 0.034341587, - "coeff5": -0.000650654, - "coeff6": -0.000714366, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "240": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 163.5, - "ref_cap_unit": "ton", - "full_eff": 2.81, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0214, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0214, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6957, - "out_max": 1.3714, - "coeff1": 0.0897134, - "coeff2": 0.016744335, - "coeff3": -0.00018096, - "coeff4": 0.026297349, - "coeff5": 0.000115973, - "coeff6": -0.001031574, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0214, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6674, - "out_max": 1.2309, - "coeff1": 0.384327649, - "coeff2": 0.06443196, - "coeff3": -0.000930067, - "coeff4": 0.034482655, - "coeff5": -0.000652564, - "coeff6": -0.000718693, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "241": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 169.2, - "ref_cap_unit": "ton", - "full_eff": 2.96, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0073, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0073, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7021, - "out_max": 1.4674, - "coeff1": 0.733250946, - "coeff2": -0.006133947, - "coeff3": 0.000482986, - "coeff4": -0.009050162, - "coeff5": 0.000607127, - "coeff6": -0.00060624, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0073, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.815, - "out_max": 1.2225, - "coeff1": 1.070622513, - "coeff2": 0.035603326, - "coeff3": 0.000192456, - "coeff4": -0.004582596, - "coeff5": -6.74e-5, - "coeff6": -0.000313704, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "242": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 172.3, - "ref_cap_unit": "ton", - "full_eff": 2.93, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.15, - "min_unloading": 0.25, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0074, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.25, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.055, - "coeff2": 0.5811, - "coeff3": 0.3711, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0074, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.4639, - "out_max": 1.4469, - "coeff1": 0.550747621, - "coeff2": -0.010711044, - "coeff3": 0.000393586, - "coeff4": 0.00327246, - "coeff5": 0.000415948, - "coeff6": -0.000467093, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0074, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8204, - "out_max": 1.4408, - "coeff1": 1.059877127, - "coeff2": 0.04007512, - "coeff3": 0.000169734, - "coeff4": -0.003709016, - "coeff5": -9.46e-5, - "coeff6": -0.000378746, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "243": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 181.5, - "ref_cap_unit": "ton", - "full_eff": 2.93, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0078, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0078, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7016, - "out_max": 1.4703, - "coeff1": 0.727602721, - "coeff2": -0.005901495, - "coeff3": 0.000486728, - "coeff4": -0.008968705, - "coeff5": 0.000609422, - "coeff6": -0.000612884, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0078, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.814, - "out_max": 1.2229, - "coeff1": 1.068998154, - "coeff2": 0.035712957, - "coeff3": 0.000201827, - "coeff4": -0.004471429, - "coeff5": -6.88e-5, - "coeff6": -0.00032113, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "244": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 187.7, - "ref_cap_unit": "ton", - "full_eff": 2.87, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0254, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0254, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6901, - "out_max": 1.4848, - "coeff1": 0.716003148, - "coeff2": -0.003156602, - "coeff3": 0.000620647, - "coeff4": -0.009654869, - "coeff5": 0.00064578, - "coeff6": -0.000773496, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0254, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7932, - "out_max": 1.2241, - "coeff1": 1.009201068, - "coeff2": 0.036330506, - "coeff3": 0.000182691, - "coeff4": -0.000665881, - "coeff5": -0.000135662, - "coeff6": -0.000307008, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "245": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 190.0, - "ref_cap_unit": "ton", - "full_eff": 2.96, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0264, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0264, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.6918, - "out_max": 1.5075, - "coeff1": 0.711845385, - "coeff2": -0.0022391, - "coeff3": 0.000592471, - "coeff4": -0.009647342, - "coeff5": 0.000650514, - "coeff6": -0.000784939, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0264, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7887, - "out_max": 1.2308, - "coeff1": 1.019902894, - "coeff2": 0.037232757, - "coeff3": 0.00018061, - "coeff4": -0.00110491, - "coeff5": -0.000133439, - "coeff6": -0.000324159, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "246": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 197.3, - "ref_cap_unit": "ton", - "full_eff": 2.87, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0085, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0085, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7002, - "out_max": 1.4718, - "coeff1": 0.731294192, - "coeff2": -0.006906581, - "coeff3": 0.000536233, - "coeff4": -0.009121445, - "coeff5": 0.000612412, - "coeff6": -0.000602814, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0085, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8146, - "out_max": 1.2228, - "coeff1": 1.067463501, - "coeff2": 0.036657754, - "coeff3": 0.000144385, - "coeff4": -0.004576776, - "coeff5": -6.67e-5, - "coeff6": -0.000325898, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "247": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 197.6, - "ref_cap_unit": "ton", - "full_eff": 3.0, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0085, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0085, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.7063, - "out_max": 1.629, - "coeff1": 0.198579726, - "coeff2": -0.000889088, - "coeff3": 0.001748464, - "coeff4": 0.024461937, - "coeff5": 0.000187762, - "coeff6": -0.001442554, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0085, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.4039, - "out_max": 1.2206, - "coeff1": -0.331323695, - "coeff2": 0.047754372, - "coeff3": 0.002224865, - "coeff4": 0.078673167, - "coeff5": -0.001171839, - "coeff6": -0.001559728, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "248": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 199.0, - "ref_cap_unit": "ton", - "full_eff": 3.02, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.15, - "min_unloading": 0.25, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0085, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.25, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0396, - "coeff2": 0.7354, - "coeff3": 0.2308, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0085, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.4558, - "out_max": 1.4432, - "coeff1": 0.524962043, - "coeff2": -0.01158595, - "coeff3": 0.000493072, - "coeff4": 0.005651093, - "coeff5": 0.000392383, - "coeff6": -0.000591177, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0085, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8269, - "out_max": 1.4205, - "coeff1": 1.058030871, - "coeff2": 0.038684099, - "coeff3": 0.000223609, - "coeff4": -0.004072542, - "coeff5": -9.15e-5, - "coeff6": -0.000296237, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "249": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 204.3, - "ref_cap_unit": "ton", - "full_eff": 3.02, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0088, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0088, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7028, - "out_max": 1.4658, - "coeff1": 0.738546525, - "coeff2": -0.006782627, - "coeff3": 0.000500592, - "coeff4": -0.00913804, - "coeff5": 0.000606154, - "coeff6": -0.000595726, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0088, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8141, - "out_max": 1.2238, - "coeff1": 1.063298172, - "coeff2": 0.036456307, - "coeff3": 0.000169289, - "coeff4": -0.004300762, - "coeff5": -7.04e-5, - "coeff6": -0.000328222, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "250": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 225.4, - "ref_cap_unit": "ton", - "full_eff": 2.84, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0097, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0097, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7015, - "out_max": 1.469, - "coeff1": 0.729529243, - "coeff2": -0.00599866, - "coeff3": 0.000472361, - "coeff4": -0.009028692, - "coeff5": 0.000609264, - "coeff6": -0.000605368, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0097, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8144, - "out_max": 1.2231, - "coeff1": 1.066926009, - "coeff2": 0.036132784, - "coeff3": 0.000189548, - "coeff4": -0.004447783, - "coeff5": -6.86e-5, - "coeff6": -0.000326383, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "251": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 232.5, - "ref_cap_unit": "ton", - "full_eff": 3.0, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.01, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.7063, - "out_max": 1.629, - "coeff1": 0.192716473, - "coeff2": -0.003052398, - "coeff3": 0.001665854, - "coeff4": 0.025411102, - "coeff5": 0.000158305, - "coeff6": -0.001329014, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 51.67, - "out_min": 0.4024, - "out_max": 1.2269, - "coeff1": -0.315044508, - "coeff2": 0.040528063, - "coeff3": 0.002419003, - "coeff4": 0.079294201, - "coeff5": -0.001201144, - "coeff6": -0.001392964, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "252": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 233.2, - "ref_cap_unit": "ton", - "full_eff": 3.0, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.15, - "min_unloading": 0.25, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.01, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.23, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0105, - "coeff2": 0.793, - "coeff3": 0.2036, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.4466, - "out_max": 1.4438, - "coeff1": 0.521218008, - "coeff2": -0.011013841, - "coeff3": 0.000480265, - "coeff4": 0.005350945, - "coeff5": 0.000392025, - "coeff6": -0.000534764, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8235, - "out_max": 1.4585, - "coeff1": 1.077166546, - "coeff2": 0.040464586, - "coeff3": 0.00018544, - "coeff4": -0.005088635, - "coeff5": -7.4e-5, - "coeff6": -0.000367666, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "253": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 257.1, - "ref_cap_unit": "ton", - "full_eff": 2.93, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0111, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0111, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7149, - "out_max": 1.4378, - "coeff1": 0.756656633, - "coeff2": -0.008009405, - "coeff3": 0.00039956, - "coeff4": -0.00760701, - "coeff5": 0.000547823, - "coeff6": -0.000538393, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0111, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8126, - "out_max": 1.2244, - "coeff1": 1.058536284, - "coeff2": 0.036315888, - "coeff3": 0.000229529, - "coeff4": -0.004026695, - "coeff5": -7.33e-5, - "coeff6": -0.000342552, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "254": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 265.5, - "ref_cap_unit": "ton", - "full_eff": 2.9, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0114, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0114, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8064, - "out_max": 1.4941, - "coeff1": 0.795293834, - "coeff2": 0.000638911, - "coeff3": 0.001042688, - "coeff4": -0.012764888, - "coeff5": 0.000697405, - "coeff6": -0.001129766, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0114, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7898, - "out_max": 1.1891, - "coeff1": 1.02670359, - "coeff2": 0.040057374, - "coeff3": 0.000424303, - "coeff4": -0.003461296, - "coeff5": -9.22e-5, - "coeff6": -0.000334781, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "255": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 266.6, - "ref_cap_unit": "ton", - "full_eff": 3.08, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.15, - "min_unloading": 0.25, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0114, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.25, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0412, - "coeff2": 0.6871, - "coeff3": 0.2785, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0114, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.4851, - "out_max": 1.4515, - "coeff1": 0.568700154, - "coeff2": -0.010952738, - "coeff3": 0.00045902, - "coeff4": 0.00169169, - "coeff5": 0.000456892, - "coeff6": -0.000542717, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0114, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8285, - "out_max": 1.3879, - "coeff1": 1.015985028, - "coeff2": 0.038949166, - "coeff3": 0.000143116, - "coeff4": -0.001562743, - "coeff5": -0.000125125, - "coeff6": -0.000303734, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "256": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 285.2, - "ref_cap_unit": "ton", - "full_eff": 2.87, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0123, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0123, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7137, - "out_max": 1.4406, - "coeff1": 0.750705247, - "coeff2": -0.008206735, - "coeff3": 0.000448722, - "coeff4": -0.007424643, - "coeff5": 0.000548817, - "coeff6": -0.00054974, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0123, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8126, - "out_max": 1.2244, - "coeff1": 1.059725824, - "coeff2": 0.03699417, - "coeff3": 0.000181918, - "coeff4": -0.004247772, - "coeff5": -6.99e-5, - "coeff6": -0.000343005, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "257": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 297.8, - "ref_cap_unit": "ton", - "full_eff": 3.1, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0128, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0128, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8425, - "out_max": 1.3727, - "coeff1": 0.023239063, - "coeff2": 0.049309801, - "coeff3": -0.000638971, - "coeff4": 0.026396964, - "coeff5": 0.000126837, - "coeff6": -0.001668331, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0128, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8526, - "out_max": 1.1533, - "coeff1": 0.956006668, - "coeff2": 0.034385238, - "coeff3": 0.000652428, - "coeff4": -0.002258693, - "coeff5": -4.3e-5, - "coeff6": -0.000360788, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "258": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 300.0, - "ref_cap_unit": "ton", - "full_eff": 3.05, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.15, - "min_unloading": 0.25, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.013, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.24, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0184, - "coeff2": 0.707, - "coeff3": 0.2834, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.013, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.4717, - "out_max": 1.4406, - "coeff1": 0.556829634, - "coeff2": -0.010505391, - "coeff3": 0.000417479, - "coeff4": 0.002572966, - "coeff5": 0.000434731, - "coeff6": -0.000514453, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.013, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8244, - "out_max": 1.4133, - "coeff1": 1.036518639, - "coeff2": 0.039411079, - "coeff3": 0.000156668, - "coeff4": -0.002148643, - "coeff5": -0.000121166, - "coeff6": -0.000339388, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "259": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 303.8, - "ref_cap_unit": "ton", - "full_eff": 2.9, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.013, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.013, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7578, - "out_max": 1.6363, - "coeff1": 0.958772905, - "coeff2": -0.022162867, - "coeff3": 0.001591351, - "coeff4": -0.016624658, - "coeff5": 0.000715472, - "coeff6": -0.000769416, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.013, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7549, - "out_max": 1.3295, - "coeff1": 0.914768075, - "coeff2": 0.065010325, - "coeff3": -0.000995022, - "coeff4": -0.002208592, - "coeff5": -9.72e-5, - "coeff6": -0.000437171, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "260": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 313.7, - "ref_cap_unit": "ton", - "full_eff": 2.87, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0135, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0135, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7121, - "out_max": 1.4414, - "coeff1": 0.749772253, - "coeff2": -0.008303879, - "coeff3": 0.000427846, - "coeff4": -0.007481557, - "coeff5": 0.000550409, - "coeff6": -0.000538311, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0135, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8128, - "out_max": 1.2253, - "coeff1": 1.060310351, - "coeff2": 0.036725304, - "coeff3": 0.000214046, - "coeff4": -0.004246989, - "coeff5": -6.96e-5, - "coeff6": -0.000346105, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "261": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 330.1, - "ref_cap_unit": "ton", - "full_eff": 3.1, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0142, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0142, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8469, - "out_max": 1.3704, - "coeff1": 0.04852632, - "coeff2": 0.049481124, - "coeff3": -0.000772327, - "coeff4": 0.022239466, - "coeff5": 0.000184177, - "coeff6": -0.001454015, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0142, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8435, - "out_max": 1.1502, - "coeff1": 0.957480704, - "coeff2": 0.041801152, - "coeff3": -0.000211804, - "coeff4": -0.002831949, - "coeff5": -5.46e-5, - "coeff6": -0.000248435, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "262": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 336.5, - "ref_cap_unit": "ton", - "full_eff": 2.8, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0144, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0144, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7554, - "out_max": 1.6307, - "coeff1": 0.927891646, - "coeff2": -0.018479234, - "coeff3": 0.001366683, - "coeff4": -0.015973166, - "coeff5": 0.000705527, - "coeff6": -0.000740793, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0144, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7589, - "out_max": 1.3382, - "coeff1": 0.943053812, - "coeff2": 0.059989192, - "coeff3": -0.000731959, - "coeff4": -0.002705633, - "coeff5": -8.88e-5, - "coeff6": -0.000439843, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "263": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 337.6, - "ref_cap_unit": "ton", - "full_eff": 3.11, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.15, - "min_unloading": 0.25, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0145, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.25, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0424, - "coeff2": 0.6928, - "coeff3": 0.2713, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0145, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.4817, - "out_max": 1.4332, - "coeff1": 0.571075552, - "coeff2": -0.012747272, - "coeff3": 0.000463709, - "coeff4": 0.003910632, - "coeff5": 0.000397949, - "coeff6": -0.000514051, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0145, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.825, - "out_max": 1.4062, - "coeff1": 1.028810946, - "coeff2": 0.039869531, - "coeff3": 0.000188337, - "coeff4": -0.002551893, - "coeff5": -0.000107456, - "coeff6": -0.000345938, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "264": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 351.0, - "ref_cap_unit": "ton", - "full_eff": 2.81, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0151, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0151, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7108, - "out_max": 1.4446, - "coeff1": 0.748721311, - "coeff2": -0.007572296, - "coeff3": 0.000389028, - "coeff4": -0.007791491, - "coeff5": 0.000558148, - "coeff6": -0.000541795, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0151, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8126, - "out_max": 1.2255, - "coeff1": 1.058222827, - "coeff2": 0.036877713, - "coeff3": 0.000217399, - "coeff4": -0.004128371, - "coeff5": -7.11e-5, - "coeff6": -0.000351549, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "265": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 359.9, - "ref_cap_unit": "ton", - "full_eff": 3.0, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0155, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0155, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8523, - "out_max": 1.3687, - "coeff1": 0.163401494, - "coeff2": 0.044515974, - "coeff3": -0.000862167, - "coeff4": 0.015789591, - "coeff5": 0.00025546, - "coeff6": -0.001195793, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0155, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8477, - "out_max": 1.1436, - "coeff1": 0.994857329, - "coeff2": 0.034888372, - "coeff3": 0.00013419, - "coeff4": -0.003303348, - "coeff5": -4.75e-5, - "coeff6": -0.000254933, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "266": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 367.2, - "ref_cap_unit": "ton", - "full_eff": 3.02, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.15, - "min_unloading": 0.25, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0157, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.25, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0267, - "coeff2": 0.7053, - "coeff3": 0.2761, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0157, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.4877, - "out_max": 1.4311, - "coeff1": 0.56142154, - "coeff2": -0.011027504, - "coeff3": 0.000408891, - "coeff4": 0.003704406, - "coeff5": 0.000401924, - "coeff6": -0.000505523, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0157, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8238, - "out_max": 1.4138, - "coeff1": 1.045383287, - "coeff2": 0.039526623, - "coeff3": 0.000187038, - "coeff4": -0.002932573, - "coeff5": -0.000106765, - "coeff6": -0.000349594, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "267": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 371.0, - "ref_cap_unit": "ton", - "full_eff": 2.8, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0159, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0159, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.77, - "out_max": 1.6421, - "coeff1": 0.940402433, - "coeff2": -0.019523581, - "coeff3": 0.001533256, - "coeff4": -0.017235972, - "coeff5": 0.000732945, - "coeff6": -0.000755582, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0159, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7555, - "out_max": 1.3223, - "coeff1": 0.934724705, - "coeff2": 0.063994851, - "coeff3": -0.001001744, - "coeff4": -0.00282993, - "coeff5": -9.15e-5, - "coeff6": -0.00043088, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "268": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 373.1, - "ref_cap_unit": "ton", - "full_eff": 2.87, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0161, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0161, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7133, - "out_max": 1.4389, - "coeff1": 0.753630699, - "coeff2": -0.007958581, - "coeff3": 0.000395037, - "coeff4": -0.007608689, - "coeff5": 0.000549565, - "coeff6": -0.000535785, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0161, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8134, - "out_max": 1.2253, - "coeff1": 1.057344643, - "coeff2": 0.036777003, - "coeff3": 0.000229029, - "coeff4": -0.004075024, - "coeff5": -7.13e-5, - "coeff6": -0.000354232, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "269": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 389.0, - "ref_cap_unit": "ton", - "full_eff": 3.0, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0168, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0168, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8548, - "out_max": 1.3679, - "coeff1": 0.25584399, - "coeff2": 0.038502835, - "coeff3": -0.000791828, - "coeff4": 0.010916927, - "coeff5": 0.000309516, - "coeff6": -0.000993322, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0168, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8473, - "out_max": 1.1436, - "coeff1": 1.028620876, - "coeff2": 0.033333943, - "coeff3": 0.000166594, - "coeff4": -0.004550832, - "coeff5": -3.41e-5, - "coeff6": -0.000244181, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "270": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 411.8, - "ref_cap_unit": "ton", - "full_eff": 2.87, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0177, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0177, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7126, - "out_max": 1.4412, - "coeff1": 0.749211549, - "coeff2": -0.00703655, - "coeff3": 0.000363661, - "coeff4": -0.007703443, - "coeff5": 0.000554352, - "coeff6": -0.000547813, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0177, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.813, - "out_max": 1.2246, - "coeff1": 1.059299093, - "coeff2": 0.036175454, - "coeff3": 0.000242101, - "coeff4": -0.004065243, - "coeff5": -7.25e-5, - "coeff6": -0.000343091, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "271": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 416.4, - "ref_cap_unit": "ton", - "full_eff": 2.8, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0179, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0179, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7579, - "out_max": 1.6305, - "coeff1": 0.920766224, - "coeff2": -0.013614766, - "coeff3": 0.001211762, - "coeff4": -0.016862099, - "coeff5": 0.000724743, - "coeff6": -0.000795937, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0179, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.757, - "out_max": 1.3426, - "coeff1": 0.941623521, - "coeff2": 0.056268058, - "coeff3": -0.000570082, - "coeff4": -0.001826874, - "coeff5": -0.000103269, - "coeff6": -0.00041657, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "272": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 433.6, - "ref_cap_unit": "ton", - "full_eff": 3.08, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.15, - "min_unloading": 0.25, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0186, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.17, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0493, - "coeff2": 0.622, - "coeff3": 0.3275, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0186, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.4668, - "out_max": 1.4382, - "coeff1": 0.543616117, - "coeff2": -0.010832296, - "coeff3": 0.000410547, - "coeff4": 0.004221421, - "coeff5": 0.000402762, - "coeff6": -0.000515618, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0186, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 5.56, - "y_min": 4.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8281, - "out_max": 1.4128, - "coeff1": 1.042857525, - "coeff2": 0.039076964, - "coeff3": 0.000187696, - "coeff4": -0.003151725, - "coeff5": -9.85e-5, - "coeff6": -0.000338514, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "273": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 447.7, - "ref_cap_unit": "ton", - "full_eff": 2.8, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0192, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0192, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.743, - "out_max": 1.6368, - "coeff1": 0.943362786, - "coeff2": -0.015864839, - "coeff3": 0.001281516, - "coeff4": -0.017361047, - "coeff5": 0.000735463, - "coeff6": -0.000827365, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0192, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7533, - "out_max": 1.3527, - "coeff1": 0.931329802, - "coeff2": 0.058664458, - "coeff3": -0.0006154, - "coeff4": -0.001805646, - "coeff5": -0.000104703, - "coeff6": -0.000425716, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "274": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 455.8, - "ref_cap_unit": "ton", - "full_eff": 2.81, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0196, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0196, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7112, - "out_max": 1.4428, - "coeff1": 0.748194456, - "coeff2": -0.00768818, - "coeff3": 0.000390126, - "coeff4": -0.007685773, - "coeff5": 0.000555349, - "coeff6": -0.000537451, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0196, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8133, - "out_max": 1.2253, - "coeff1": 1.05890535, - "coeff2": 0.036795734, - "coeff3": 0.000220982, - "coeff4": -0.004165079, - "coeff5": -7.02e-5, - "coeff6": -0.000352143, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "275": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 466.7, - "ref_cap_unit": "ton", - "full_eff": 3.1, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0201, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0201, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8291, - "out_max": 1.3758, - "coeff1": 0.08013053, - "coeff2": 0.045947785, - "coeff3": -0.000927551, - "coeff4": 0.022684703, - "coeff5": 0.00017097, - "coeff6": -0.001458668, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0201, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8554, - "out_max": 1.1453, - "coeff1": 0.969048883, - "coeff2": 0.033970062, - "coeff3": 0.000272295, - "coeff4": -0.002766868, - "coeff5": -4.37e-5, - "coeff6": -0.000241536, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "276": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 479.0, - "ref_cap_unit": "ton", - "full_eff": 2.99, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0206, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0206, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.714, - "out_max": 1.4393, - "coeff1": 0.753535266, - "coeff2": -0.008261587, - "coeff3": 0.000426133, - "coeff4": -0.00750599, - "coeff5": 0.00054822, - "coeff6": -0.000540727, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0206, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8128, - "out_max": 1.2247, - "coeff1": 1.057988218, - "coeff2": 0.036825802, - "coeff3": 0.000212398, - "coeff4": -0.004133291, - "coeff5": -7.08e-5, - "coeff6": -0.000349352, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "277": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 507.8, - "ref_cap_unit": "ton", - "full_eff": 2.8, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0218, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0218, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7761, - "out_max": 1.6386, - "coeff1": 0.972581268, - "coeff2": -0.019501209, - "coeff3": 0.001686641, - "coeff4": -0.018550112, - "coeff5": 0.000757339, - "coeff6": -0.000871336, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0218, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7495, - "out_max": 1.3087, - "coeff1": 0.885414387, - "coeff2": 0.067779736, - "coeff3": -0.001301284, - "coeff4": -0.000988357, - "coeff5": -0.000123842, - "coeff6": -0.000364571, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "278": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 535.1, - "ref_cap_unit": "ton", - "full_eff": 3.1, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0231, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0231, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.861, - "out_max": 1.3832, - "coeff1": 0.224892553, - "coeff2": 0.022111374, - "coeff3": 0.001124118, - "coeff4": 0.017420992, - "coeff5": 0.00024887, - "coeff6": -0.001423756, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0231, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8529, - "out_max": 1.1346, - "coeff1": 0.992560665, - "coeff2": 0.037261697, - "coeff3": -0.000337152, - "coeff4": -0.003994072, - "coeff5": -3.99e-5, - "coeff6": -0.000149828, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "279": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 538.0, - "ref_cap_unit": "ton", - "full_eff": 2.9, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0231, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0231, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7346, - "out_max": 1.6361, - "coeff1": 0.990111733, - "coeff2": -0.023292797, - "coeff3": 0.001443588, - "coeff4": -0.017964445, - "coeff5": 0.000730826, - "coeff6": -0.000731028, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0231, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7518, - "out_max": 1.3462, - "coeff1": 0.880903862, - "coeff2": 0.06644874, - "coeff3": -0.000911249, - "coeff4": -0.00092172, - "coeff5": -0.000109973, - "coeff6": -0.000478615, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "280": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 539.1, - "ref_cap_unit": "ton", - "full_eff": 2.93, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0232, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0232, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7121, - "out_max": 1.4415, - "coeff1": 0.749330863, - "coeff2": -0.007893448, - "coeff3": 0.000409722, - "coeff4": -0.007576943, - "coeff5": 0.000552413, - "coeff6": -0.000542328, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0232, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8128, - "out_max": 1.225, - "coeff1": 1.059587876, - "coeff2": 0.036795499, - "coeff3": 0.000213237, - "coeff4": -0.004197652, - "coeff5": -7.02e-5, - "coeff6": -0.000348728, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "281": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 585.5, - "ref_cap_unit": "ton", - "full_eff": 2.8, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0251, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0251, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7502, - "out_max": 1.6352, - "coeff1": 0.966586101, - "coeff2": -0.018917749, - "coeff3": 0.001421624, - "coeff4": -0.01795526, - "coeff5": 0.000739328, - "coeff6": -0.000799438, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0251, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.752, - "out_max": 1.3393, - "coeff1": 0.893665933, - "coeff2": 0.064265971, - "coeff3": -0.000910788, - "coeff4": -0.000976291, - "coeff5": -0.000114795, - "coeff6": -0.000432975, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "282": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 601.9, - "ref_cap_unit": "ton", - "full_eff": 3.1, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0259, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0259, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8347, - "out_max": 1.367, - "coeff1": 0.111289623, - "coeff2": 0.041372976, - "coeff3": -0.000715648, - "coeff4": 0.022373516, - "coeff5": 0.000160476, - "coeff6": -0.001399684, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0259, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8576, - "out_max": 1.1407, - "coeff1": 0.966750473, - "coeff2": 0.034595941, - "coeff3": 0.000124547, - "coeff4": -0.003133951, - "coeff5": -3.7e-5, - "coeff6": -0.000204543, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "283": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 605.6, - "ref_cap_unit": "ton", - "full_eff": 2.81, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0261, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0261, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7112, - "out_max": 1.4444, - "coeff1": 0.747842918, - "coeff2": -0.007723331, - "coeff3": 0.000403572, - "coeff4": -0.007744418, - "coeff5": 0.000557609, - "coeff6": -0.00054095, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0261, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.813, - "out_max": 1.2247, - "coeff1": 1.057945689, - "coeff2": 0.036626356, - "coeff3": 0.000226792, - "coeff4": -0.004071379, - "coeff5": -7.17e-5, - "coeff6": -0.000350503, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "284": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 633.4, - "ref_cap_unit": "ton", - "full_eff": 2.96, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0273, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0273, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7125, - "out_max": 1.441, - "coeff1": 0.751595427, - "coeff2": -0.008303547, - "coeff3": 0.000425187, - "coeff4": -0.007570571, - "coeff5": 0.000551225, - "coeff6": -0.000537218, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0273, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 23.89, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8129, - "out_max": 1.2249, - "coeff1": 1.057843817, - "coeff2": 0.03698067, - "coeff3": 0.000203994, - "coeff4": -0.004144935, - "coeff5": -7.0675e-5, - "coeff6": -0.000350034, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "285": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 662.9, - "ref_cap_unit": "ton", - "full_eff": 2.8, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0284, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0284, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7332, - "out_max": 1.6277, - "coeff1": 0.958018889, - "coeff2": -0.018649294, - "coeff3": 0.00121803, - "coeff4": -0.017160818, - "coeff5": 0.000718262, - "coeff6": -0.00073453, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0284, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7545, - "out_max": 1.3621, - "coeff1": 0.904420261, - "coeff2": 0.062056482, - "coeff3": -0.000628698, - "coeff4": -0.001289042, - "coeff5": -0.000103692, - "coeff6": -0.000488831, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "286": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 681.7, - "ref_cap_unit": "ton", - "full_eff": 3.1, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0294, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0294, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8657, - "out_max": 1.3705, - "coeff1": 0.223769649, - "coeff2": 0.017912788, - "coeff3": 0.001511241, - "coeff4": 0.019132824, - "coeff5": 0.000213749, - "coeff6": -0.001442698, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0294, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8546, - "out_max": 1.1289, - "coeff1": 0.968466556, - "coeff2": 0.039027559, - "coeff3": -0.000495812, - "coeff4": -0.003459057, - "coeff5": -4.31e-5, - "coeff6": -0.000135994, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "287": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 710.0, - "ref_cap_unit": "ton", - "full_eff": 2.9, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0305, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0305, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7643, - "out_max": 1.6338, - "coeff1": 0.981069058, - "coeff2": -0.021489983, - "coeff3": 0.001647548, - "coeff4": -0.018163177, - "coeff5": 0.000743363, - "coeff6": -0.000826312, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0305, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7533, - "out_max": 1.32, - "coeff1": 0.872855672, - "coeff2": 0.067552862, - "coeff3": -0.00119095, - "coeff4": -0.000582771, - "coeff5": -0.000121602, - "coeff6": -0.000400584, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "288": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 743.7, - "ref_cap_unit": "ton", - "full_eff": 3.1, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.032, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.032, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8785, - "out_max": 1.3942, - "coeff1": 0.156014827, - "coeff2": 0.014707968, - "coeff3": 0.002643106, - "coeff4": 0.023080337, - "coeff5": 0.000193525, - "coeff6": -0.001736868, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.032, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.846, - "out_max": 1.1228, - "coeff1": 0.947640428, - "coeff2": 0.042535826, - "coeff3": -0.000874553, - "coeff4": -0.003016236, - "coeff5": -5.48e-5, - "coeff6": -9.1e-5, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "289": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 753.3, - "ref_cap_unit": "ton", - "full_eff": 2.8, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0323, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0323, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7726, - "out_max": 1.6331, - "coeff1": 0.960517103, - "coeff2": -0.017737456, - "coeff3": 0.001592523, - "coeff4": -0.01801459, - "coeff5": 0.000747532, - "coeff6": -0.000879986, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0323, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7533, - "out_max": 1.3218, - "coeff1": 0.882412409, - "coeff2": 0.065178388, - "coeff3": -0.001113358, - "coeff4": -0.000593318, - "coeff5": -0.000124175, - "coeff6": -0.000374126, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "290": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 801.6, - "ref_cap_unit": "ton", - "full_eff": 3.0, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0345, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0345, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8738, - "out_max": 1.361, - "coeff1": -0.307865725, - "coeff2": 0.060725432, - "coeff3": 0.000999675, - "coeff4": 0.039193944, - "coeff5": -1.08e-6, - "coeff6": -0.002129077, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0345, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8505, - "out_max": 1.1188, - "coeff1": 0.784460831, - "coeff2": 0.049696521, - "coeff3": -0.000770456, - "coeff4": 0.006265147, - "coeff5": -0.000158023, - "coeff6": -0.000450276, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "291": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 836.2, - "ref_cap_unit": "ton", - "full_eff": 2.8, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0359, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0359, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7552, - "out_max": 1.6284, - "coeff1": 0.950151681, - "coeff2": -0.016755328, - "coeff3": 0.001378055, - "coeff4": -0.017425075, - "coeff5": 0.000731676, - "coeff6": -0.000823552, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0359, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.755, - "out_max": 1.3429, - "coeff1": 0.893133329, - "coeff2": 0.062349705, - "coeff3": -0.000823975, - "coeff4": -0.000696186, - "coeff5": -0.000117045, - "coeff6": -0.000422964, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "292": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 881.7, - "ref_cap_unit": "ton", - "full_eff": 3.1, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.038, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.038, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8624, - "out_max": 1.371, - "coeff1": 0.133153232, - "coeff2": 0.035930274, - "coeff3": 0.000348605, - "coeff4": 0.020837989, - "coeff5": 0.000199166, - "coeff6": -0.001513179, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.038, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8565, - "out_max": 1.1327, - "coeff1": 0.995524834, - "coeff2": 0.034320462, - "coeff3": -0.000154213, - "coeff4": -0.004440335, - "coeff5": -2.91e-5, - "coeff6": -0.000113639, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "293": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 915.0, - "ref_cap_unit": "ton", - "full_eff": 2.8, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0393, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0393, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7436, - "out_max": 1.6236, - "coeff1": 0.946665578, - "coeff2": -0.016095771, - "coeff3": 0.001220622, - "coeff4": -0.017166789, - "coeff5": 0.000721574, - "coeff6": -0.000781179, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0393, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7572, - "out_max": 1.3577, - "coeff1": 0.900268869, - "coeff2": 0.060564418, - "coeff3": -0.000615447, - "coeff4": -0.000769599, - "coeff5": -0.000111292, - "coeff6": -0.000464596, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "294": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 943.4, - "ref_cap_unit": "ton", - "full_eff": 3.1, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0406, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0406, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8721, - "out_max": 1.3794, - "coeff1": 0.121092694, - "coeff2": 0.03212553, - "coeff3": 0.001001941, - "coeff4": 0.021586421, - "coeff5": 0.000199795, - "coeff6": -0.001584813, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0406, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8525, - "out_max": 1.1289, - "coeff1": 0.979952514, - "coeff2": 0.035971568, - "coeff3": -0.000324571, - "coeff4": -0.003526257, - "coeff5": -4.42e-5, - "coeff6": -0.00012067, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "295": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 993.8, - "ref_cap_unit": "ton", - "full_eff": 2.8, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0426, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0426, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7305, - "out_max": 1.6202, - "coeff1": 0.946263895, - "coeff2": -0.016190037, - "coeff3": 0.00108202, - "coeff4": -0.016971948, - "coeff5": 0.000712704, - "coeff6": -0.000730855, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0426, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7588, - "out_max": 1.3725, - "coeff1": 0.906055846, - "coeff2": 0.05927937, - "coeff3": -0.000434255, - "coeff4": -0.000873255, - "coeff5": -0.000105732, - "coeff6": -0.000504074, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "296": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1010.2, - "ref_cap_unit": "ton", - "full_eff": 3.1, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0435, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0435, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8764, - "out_max": 1.3529, - "coeff1": -0.22321032, - "coeff2": 0.061201471, - "coeff3": 0.000417976, - "coeff4": 0.035334665, - "coeff5": 3.58e-5, - "coeff6": -0.002023333, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0435, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8567, - "out_max": 1.1224, - "coeff1": 0.834318621, - "coeff2": 0.040889784, - "coeff3": -0.000216335, - "coeff4": 0.005037138, - "coeff5": -0.000145096, - "coeff6": -0.000407475, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "297": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1076.1, - "ref_cap_unit": "ton", - "full_eff": 2.9, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0462, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0462, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7341, - "out_max": 1.635, - "coeff1": 0.99149944, - "coeff2": -0.023570533, - "coeff3": 0.001449883, - "coeff4": -0.017986197, - "coeff5": 0.000730346, - "coeff6": -0.000726761, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0462, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7523, - "out_max": 1.3471, - "coeff1": 0.88047741, - "coeff2": 0.066753271, - "coeff3": -0.000917941, - "coeff4": -0.000935279, - "coeff5": -0.000109493, - "coeff6": -0.000482341, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "298": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1077.4, - "ref_cap_unit": "ton", - "full_eff": 3.1, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0464, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0464, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8547, - "out_max": 1.3653, - "coeff1": 0.12722504, - "coeff2": 0.043826004, - "coeff3": -0.000494549, - "coeff4": 0.019424772, - "coeff5": 0.000211236, - "coeff6": -0.001407533, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0464, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8578, - "out_max": 1.138, - "coeff1": 1.007981891, - "coeff2": 0.03171807, - "coeff3": 0.000149785, - "coeff4": -0.0045721, - "coeff5": -2.55e-5, - "coeff6": -0.000147039, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "299": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1123.6, - "ref_cap_unit": "ton", - "full_eff": 2.8, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0482, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0482, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7428, - "out_max": 1.6356, - "coeff1": 0.918488477, - "coeff2": -0.025969487, - "coeff3": 0.001729402, - "coeff4": -0.013552159, - "coeff5": 0.000685914, - "coeff6": -0.000812067, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0482, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7519, - "out_max": 1.3426, - "coeff1": 0.891067266, - "coeff2": 0.065909352, - "coeff3": -0.000974196, - "coeff4": -0.001255569, - "coeff5": -0.000111672, - "coeff6": -0.000434245, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "300": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1138.7, - "ref_cap_unit": "ton", - "full_eff": 3.0, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0491, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0491, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8744, - "out_max": 1.345, - "coeff1": 0.01170028, - "coeff2": 0.051309634, - "coeff3": -0.000375147, - "coeff4": 0.023109214, - "coeff5": 0.000160372, - "coeff6": -0.001428341, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0491, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8612, - "out_max": 1.1284, - "coeff1": 0.643789299, - "coeff2": 0.044127283, - "coeff3": 0.000371537, - "coeff4": 0.015046097, - "coeff5": -0.000253255, - "coeff6": -0.000715779, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "301": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1170.7, - "ref_cap_unit": "ton", - "full_eff": 2.8, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0502, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0502, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7501, - "out_max": 1.6348, - "coeff1": 0.967724203, - "coeff2": -0.018774245, - "coeff3": 0.001418941, - "coeff4": -0.018065855, - "coeff5": 0.00074094, - "coeff6": -0.000801335, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0502, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.752, - "out_max": 1.3396, - "coeff1": 0.892949207, - "coeff2": 0.064222005, - "coeff3": -0.0009103, - "coeff4": -0.000914912, - "coeff5": -0.000115701, - "coeff6": -0.000432577, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "302": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1248.4, - "ref_cap_unit": "ton", - "full_eff": 2.8, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0536, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0536, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7411, - "out_max": 1.6309, - "coeff1": 0.961752234, - "coeff2": -0.018761025, - "coeff3": 0.001313821, - "coeff4": -0.017526968, - "coeff5": 0.000728048, - "coeff6": -0.000765506, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0536, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7533, - "out_max": 1.3515, - "coeff1": 0.899551002, - "coeff2": 0.063163553, - "coeff3": -0.000763272, - "coeff4": -0.001166463, - "coeff5": -0.000108542, - "coeff6": -0.000463321, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "303": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1325.8, - "ref_cap_unit": "ton", - "full_eff": 2.8, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0569, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0569, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7332, - "out_max": 1.6274, - "coeff1": 0.956167823, - "coeff2": -0.019026851, - "coeff3": 0.001252807, - "coeff4": -0.016983516, - "coeff5": 0.000717471, - "coeff6": -0.00074488, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0569, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 15.56, - "y_max": 48.89, - "out_min": 0.7545, - "out_max": 1.3619, - "coeff1": 0.906156554, - "coeff2": 0.062333077, - "coeff3": -0.000650381, - "coeff4": -0.001441633, - "coeff5": -0.000102575, - "coeff6": -0.000483589, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "304": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1348.0, - "ref_cap_unit": "ton", - "full_eff": 3.0, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0581, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0581, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8756, - "out_max": 1.3399, - "coeff1": -0.049949249, - "coeff2": 0.039884428, - "coeff3": 0.0003767, - "coeff4": 0.028900073, - "coeff5": 7.61e-5, - "coeff6": -0.001397013, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0581, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8266, - "out_max": 1.1233, - "coeff1": 0.032220362, - "coeff2": 0.070850348, - "coeff3": -0.000284686, - "coeff4": 0.045801236, - "coeff5": -0.00064403, - "coeff6": -0.001261153, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "305": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1499.5, - "ref_cap_unit": "ton", - "full_eff": 2.9, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0646, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0646, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.877, - "out_max": 1.3938, - "coeff1": 0.18478123, - "coeff2": 0.04185572, - "coeff3": 0.000565604, - "coeff4": 0.015686389, - "coeff5": 0.000285695, - "coeff6": -0.001626507, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0646, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7455, - "out_max": 1.1237, - "coeff1": -0.297329434, - "coeff2": 0.058213403, - "coeff3": -0.000556645, - "coeff4": 0.068741933, - "coeff5": -0.001038754, - "coeff6": -0.000788419, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "306": { - "eqp_type": "chiller", - "source": "2", - "model": "ect_lwt", - "ref_cap": 1609.4, - "ref_cap_unit": "ton", - "full_eff": 2.9, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "air", - "compressor_speed": null, - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.15, - "set_of_curves": { - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.0693, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 0.15, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": null, - "out_max": null, - "coeff1": 0.0, - "coeff2": 1.0, - "coeff3": 0.0, - "coeff4": null, - "coeff5": null, - "coeff6": null, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0693, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.8809, - "out_max": 1.3909, - "coeff1": 0.089134815, - "coeff2": 0.028073448, - "coeff3": 0.001690992, - "coeff4": 0.023056153, - "coeff5": 0.00016638, - "coeff6": -0.001502323, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.0693, - "ref_cond_fluid_flow": 0.0011, - "ref_lwt": 6.67, - "ref_ect": 35.0, - "ref_lct": null, - "units": "si", - "x_min": 4.44, - "y_min": 29.44, - "x_max": 10.0, - "y_max": 46.11, - "out_min": 0.7513, - "out_max": 1.1148, - "coeff1": -0.347942648, - "coeff2": 0.06373881, - "coeff3": -0.000795505, - "coeff4": 0.071274146, - "coeff5": -0.001066003, - "coeff6": -0.000923459, - "coeff7": null, - "coeff8": null, - "coeff9": null, - "coeff10": null - } - } - }, - "307": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 163.5, - "ref_cap_unit": "ton", - "full_eff": 4.828, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.031107883, - "ref_cond_fluid_flow": 0.031107883, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 34.85, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 37.78, - "out_min": 0.59, - "out_max": 1.29, - "coeff1": -0.078267439, - "coeff2": 0.175067828, - "coeff3": -0.008410169, - "coeff4": 0.007604715, - "coeff5": 0.000540445, - "coeff6": -0.00203537, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.031107883, - "ref_cond_fluid_flow": 0.031107883, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 34.85, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 37.78, - "out_min": 0.84, - "out_max": 1.25, - "coeff1": 1.257574759, - "coeff2": -0.031281323, - "coeff3": 0.003567829, - "coeff4": -0.00463994, - "coeff5": -0.000158981, - "coeff6": 0.000350154, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.031107883, - "ref_cond_fluid_flow": 0.031107883, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 34.85, - "units": "si", - "x_min": 0.2, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.21, - "out_max": 1.0, - "coeff1": 0.085698212, - "coeff2": 0.70765855, - "coeff3": 0.201230854, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "308": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 199.8, - "ref_cap_unit": "ton", - "full_eff": 5.372, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.035637759, - "ref_cond_fluid_flow": 0.035637759, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97777778, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.61, - "out_max": 1.44, - "coeff1": -0.06707102632262996, - "coeff2": 0.17142229663321593, - "coeff3": -0.00818751684087847, - "coeff4": 0.007848872101088838, - "coeff5": 0.0005353492696762163, - "coeff6": -0.002033535751984718, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.035637759, - "ref_cond_fluid_flow": 0.035637759, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97777778, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.81, - "out_max": 1.25, - "coeff1": 1.2660953609854386, - "coeff2": -0.03340979004504352, - "coeff3": 0.0037097653764337664, - "coeff4": -0.0047644415544545946, - "coeff5": -0.0001566713669772298, - "coeff6": 0.00035057966714975477, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.035637759, - "ref_cond_fluid_flow": 0.035637759, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97777778, - "units": "si", - "x_min": 0.2005856515373353, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.22, - "out_max": 1.0, - "coeff1": 0.08888029829255083, - "coeff2": 0.6883328209729573, - "coeff3": 0.21529250640632822, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "309": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 206.3, - "ref_cap_unit": "ton", - "full_eff": 5.624, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.036558876, - "ref_cond_fluid_flow": 0.036558876, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.64, - "out_max": 1.45, - "coeff1": 0.740541490804273, - "coeff2": -0.06468641342895878, - "coeff3": 0.008363617664114413, - "coeff4": 0.004062617539937079, - "coeff5": 0.0007280714202708538, - "coeff6": -0.002170528180588706, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.036558876, - "ref_cond_fluid_flow": 0.036558876, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.81, - "out_max": 1.22, - "coeff1": 0.989372744040018, - "coeff2": 0.039658471424886654, - "coeff3": -0.0009075432629670407, - "coeff4": -0.003840943649232084, - "coeff5": -0.00015332250740889009, - "coeff6": 0.00016006099315170677, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.036558876, - "ref_cond_fluid_flow": 0.036558876, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 0.2007168458781362, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.21, - "out_max": 1.0, - "coeff1": 0.0851177869012146, - "coeff2": 0.7262147700665895, - "coeff3": 0.1847773067030609, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "310": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 240.1, - "ref_cap_unit": "ton", - "full_eff": 5.146, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.043045179, - "ref_cond_fluid_flow": 0.043045179, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.57, - "out_max": 1.44, - "coeff1": 0.8157317133160935, - "coeff2": -0.04795699997805486, - "coeff3": 0.0025171172409934363, - "coeff4": -0.005660717000850711, - "coeff5": 0.0007649428419349279, - "coeff6": -0.0004449484947622157, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.043045179, - "ref_cond_fluid_flow": 0.043045179, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.8, - "out_max": 1.25, - "coeff1": 0.9364852211333021, - "coeff2": 0.03801090169476529, - "coeff3": -0.0002799690300486525, - "coeff4": 0.0012804478150001616, - "coeff5": -0.00025104316856032754, - "coeff6": 8.009079175203188e-7, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.043045179, - "ref_cond_fluid_flow": 0.043045179, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 0.20086393088552915, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.23, - "out_max": 1.0, - "coeff1": 0.10216548406681204, - "coeff2": 0.6957127352345039, - "coeff3": 0.19748611130871313, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "311": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 181.9, - "ref_cap_unit": "ton", - "full_eff": 5.463, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.032669365, - "ref_cond_fluid_flow": 0.032669365, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.57, - "out_max": 1.44, - "coeff1": 0.5078414912478285, - "coeff2": -0.002454755207449033, - "coeff3": 0.0006757637095185683, - "coeff4": 0.006215026592433129, - "coeff5": 0.0006230357927932946, - "coeff6": -0.001232788522085253, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.032669365, - "ref_cond_fluid_flow": 0.032669365, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.82, - "out_max": 1.24, - "coeff1": 0.9027139630663337, - "coeff2": -0.037448516069065685, - "coeff3": 0.0011877234363107114, - "coeff4": 0.01957393936203297, - "coeff5": -0.0007235966179987374, - "coeff6": 0.0018329843374552918, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.032669365, - "ref_cond_fluid_flow": 0.032669365, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 0.20072426280393166, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.33, - "out_max": 1.0, - "coeff1": 0.22696619948168706, - "coeff2": 0.49590642868794826, - "coeff3": 0.28280360600227616, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "312": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 310.0, - "ref_cap_unit": "ton", - "full_eff": 5.735, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.055710536, - "ref_cond_fluid_flow": 0.055710536, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.63, - "out_max": 1.43, - "coeff1": 0.502723391358481, - "coeff2": -0.024148502468897715, - "coeff3": 0.002531955839823647, - "coeff4": 0.017587497388931825, - "coeff5": 0.00043988941877144455, - "coeff6": -0.0017065478840910912, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.055710536, - "ref_cond_fluid_flow": 0.055710536, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.83, - "out_max": 1.08, - "coeff1": 0.8657827546791448, - "coeff2": -0.04775077648604953, - "coeff3": 0.005642728790663944, - "coeff4": 0.029017083744589334, - "coeff5": -0.0006471674202775082, - "coeff6": -0.0004552165948760933, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.055710536, - "ref_cond_fluid_flow": 0.055710536, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 0.17356173238526182, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.32, - "out_max": 1.0, - "coeff1": 0.20640712998119856, - "coeff2": 0.6052942511874793, - "coeff3": 0.19203069323013208, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "313": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 258.7, - "ref_cap_unit": "ton", - "full_eff": 5.205, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.046740372, - "ref_cond_fluid_flow": 0.046740372, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.64, - "out_max": 1.2, - "coeff1": 0.564829065, - "coeff2": 0.0, - "coeff3": 0.000602798, - "coeff4": 0.005846292, - "coeff5": 0.000594179, - "coeff6": -0.001433027, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.046740372, - "ref_cond_fluid_flow": 0.046740372, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.94, - "out_max": 1.16, - "coeff1": 0.526919804, - "coeff2": 0.0, - "coeff3": 0.004112416, - "coeff4": 0.036323526, - "coeff5": -0.000704403, - "coeff6": -0.000778527, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.046740372, - "ref_cond_fluid_flow": 0.046740372, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 0.2, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.38, - "out_max": 1.0, - "coeff1": 0.263414281, - "coeff2": 0.429883867, - "coeff3": 0.327588603, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "314": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 202.9, - "ref_cap_unit": "ton", - "full_eff": 5.741, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.036060463, - "ref_cond_fluid_flow": 0.036060463, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 37.78, - "out_min": 0.58, - "out_max": 1.35, - "coeff1": 0.461921607, - "coeff2": 0.0, - "coeff3": 0.000827565, - "coeff4": 0.008298848, - "coeff5": 0.00065248, - "coeff6": -0.001559703, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.036060463, - "ref_cond_fluid_flow": 0.036060463, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 6.67, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 37.78, - "out_min": 0.89, - "out_max": 1.17, - "coeff1": 0.612681591, - "coeff2": 0.0, - "coeff3": 0.00202603, - "coeff4": 0.031115207, - "coeff5": -0.000713414, - "coeff6": 0.000101014, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.036060463, - "ref_cond_fluid_flow": 0.036060463, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 0.2, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.31, - "out_max": 1.0, - "coeff1": 0.116551366, - "coeff2": 0.934719939, - "coeff3": -0.049921311, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "315": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 69.63, - "ref_cap_unit": "ton", - "full_eff": 4.675, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.012841378, - "ref_cond_fluid_flow": 0.012841378, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.01111111, - "units": "si", - "x_min": 5.6, - "y_min": 18.9, - "x_max": 10.0, - "y_max": 48.9, - "out_min": 0.69, - "out_max": 2.1, - "coeff1": 0.7269706420608419, - "coeff2": 0.0011905698160603606, - "coeff3": 0.0007843949153288343, - "coeff4": -0.009306150977092989, - "coeff5": 0.0009157430241363547, - "coeff6": -0.001510219145096893, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.012841378, - "ref_cond_fluid_flow": 0.012841378, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.01111111, - "units": "si", - "x_min": 5.6, - "y_min": 18.9, - "x_max": 10.0, - "y_max": 48.9, - "out_min": 0.71, - "out_max": 1.23, - "coeff1": 1.0752262981651928, - "coeff2": 0.03857324394262018, - "coeff3": 0.00039070891840483485, - "coeff4": -0.008444844073288174, - "coeff5": -3.127336053668525e-5, - "coeff6": -0.0003827345731710584, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.012841378, - "ref_cond_fluid_flow": 0.012841378, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.01111111, - "units": "si", - "x_min": 0.29898989898989903, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.26, - "out_max": 1.0, - "coeff1": -0.011134528361704643, - "coeff2": 0.95395779997673, - "coeff3": 0.04892741417952662, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "316": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 62.12, - "ref_cap_unit": "ton", - "full_eff": 4.65, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01146412, - "ref_cond_fluid_flow": 0.01146412, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.01111111, - "units": "si", - "x_min": 5.6, - "y_min": 18.9, - "x_max": 10.0, - "y_max": 48.9, - "out_min": 0.66, - "out_max": 2.02, - "coeff1": 0.6423837772140497, - "coeff2": -0.009105168674685915, - "coeff3": 0.0006782940979637581, - "coeff4": -0.0004789600057536203, - "coeff5": 0.000724205175173106, - "coeff6": -0.0011805503537177368, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01146412, - "ref_cond_fluid_flow": 0.01146412, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.01111111, - "units": "si", - "x_min": 5.6, - "y_min": 18.9, - "x_max": 10.0, - "y_max": 48.9, - "out_min": 0.72, - "out_max": 1.23, - "coeff1": 1.0672580978031758, - "coeff2": 0.03839970900550582, - "coeff3": 0.000414539035425876, - "coeff4": -0.00830581678023391, - "coeff5": -2.8845879364097163e-5, - "coeff6": -0.0003724158647274026, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.01146412, - "ref_cond_fluid_flow": 0.01146412, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.01111111, - "units": "si", - "x_min": 0.29878048780487804, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.25, - "out_max": 1.0, - "coeff1": -0.013452912462482758, - "coeff2": 0.9408320144656479, - "coeff3": 0.06796365868988707, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "317": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 49.54, - "ref_cap_unit": "ton", - "full_eff": 4.681, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.009136722, - "ref_cond_fluid_flow": 0.009136722, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.00555556, - "units": "si", - "x_min": 5.6, - "y_min": 18.9, - "x_max": 10.0, - "y_max": 48.9, - "out_min": 0.67, - "out_max": 2.02, - "coeff1": 0.6388051982674294, - "coeff2": -0.006469335962471623, - "coeff3": 0.0007882769237286397, - "coeff4": -0.0012268783117369356, - "coeff5": 0.000748457785339344, - "coeff6": -0.0012813091396911454, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.009136722, - "ref_cond_fluid_flow": 0.009136722, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.00555556, - "units": "si", - "x_min": 5.6, - "y_min": 18.9, - "x_max": 10.0, - "y_max": 48.9, - "out_min": 0.72, - "out_max": 1.22, - "coeff1": 1.0569947238389115, - "coeff2": 0.03574718780210989, - "coeff3": 0.0004689256344640458, - "coeff4": -0.00728656155540669, - "coeff5": -4.382329402675706e-5, - "coeff6": -0.0003259229599259601, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.009136722, - "ref_cond_fluid_flow": 0.009136722, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.00555556, - "units": "si", - "x_min": 0.2987012987012987, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.25, - "out_max": 1.0, - "coeff1": 0.00392444062550612, - "coeff2": 0.9038184858766899, - "coeff3": 0.08712630687706024, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "318": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 43.46, - "ref_cap_unit": "ton", - "full_eff": 4.684, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.007999206, - "ref_cond_fluid_flow": 0.007999206, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.01666667, - "units": "si", - "x_min": 5.6, - "y_min": 20.0, - "x_max": 10.0, - "y_max": 48.9, - "out_min": 0.66, - "out_max": 2.03, - "coeff1": 0.6151583013538899, - "coeff2": -0.00695129591519672, - "coeff3": 0.0008213559049466274, - "coeff4": 0.0006538064188184728, - "coeff5": 0.0007363804900909947, - "coeff6": -0.001361254413629701, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.007999206, - "ref_cond_fluid_flow": 0.007999206, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.01666667, - "units": "si", - "x_min": 5.6, - "y_min": 20.0, - "x_max": 10.0, - "y_max": 48.9, - "out_min": 0.72, - "out_max": 1.22, - "coeff1": 1.0531967808211702, - "coeff2": 0.0354283108205703, - "coeff3": 0.00042117230087896154, - "coeff4": -0.007234306847319821, - "coeff5": -4.6269593606009006e-5, - "coeff6": -0.0002911126077734024, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.007999206, - "ref_cond_fluid_flow": 0.007999206, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.01666667, - "units": "si", - "x_min": 0.2988505747126437, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.26, - "out_max": 1.0, - "coeff1": 0.013835485360703281, - "coeff2": 0.8805558745735831, - "coeff3": 0.0983267846715632, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "319": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 31.48, - "ref_cap_unit": "ton", - "full_eff": 4.737, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.6, - "min_unloading": 0.6, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.005795465, - "ref_cond_fluid_flow": 0.005795465, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 18.3, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.65, - "out_max": 1.83, - "coeff1": 0.6060940975547182, - "coeff2": -0.011686150291071895, - "coeff3": 0.0006749360973583168, - "coeff4": 0.0030624665752354424, - "coeff5": 0.0006594764105654501, - "coeff6": -0.0011278618191021671, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.005795465, - "ref_cond_fluid_flow": 0.005795465, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 18.3, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.76, - "out_max": 1.23, - "coeff1": 1.023637096896828, - "coeff2": 0.039499135700600485, - "coeff3": 0.00039535071124417037, - "coeff4": -0.006621253190159557, - "coeff5": -4.1964819185743945e-5, - "coeff6": -0.0003846266721714148, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.005795465, - "ref_cond_fluid_flow": 0.005795465, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.0, - "units": "si", - "x_min": 0.5982905982905983, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.55, - "out_max": 1.0, - "coeff1": -0.10065029307671057, - "coeff2": 1.0994847641613146, - "coeff3": 0.0010191864162436837, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "320": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 21.7, - "ref_cap_unit": "ton", - "full_eff": 4.642, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.6, - "min_unloading": 0.6, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.004006227, - "ref_cond_fluid_flow": 0.004006227, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 18.3, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.64, - "out_max": 1.82, - "coeff1": 0.6180096146128409, - "coeff2": -0.02643218102673406, - "coeff3": 0.0013992347933339394, - "coeff4": 0.005883837081409188, - "coeff5": 0.000621976417478689, - "coeff6": -0.001111171245982861, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.004006227, - "ref_cond_fluid_flow": 0.004006227, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 18.3, - "x_max": 10.0, - "y_max": 46.1, - "out_min": 0.77, - "out_max": 1.23, - "coeff1": 1.0210907885571154, - "coeff2": 0.04049682605195154, - "coeff3": 0.0003098861538099948, - "coeff4": -0.006836334681243759, - "coeff5": -3.97983478499052e-5, - "coeff6": -0.0003546006512723818, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.004006227, - "ref_cond_fluid_flow": 0.004006227, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.0, - "units": "si", - "x_min": 0.5966850828729282, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.55, - "out_max": 1.0, - "coeff1": -0.07724489894628755, - "coeff2": 1.0653975978689214, - "coeff3": 0.0119111278239028, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "321": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 209.3, - "ref_cap_unit": "ton", - "full_eff": 4.575, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.038129822, - "ref_cond_fluid_flow": 0.038129822, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 37.78, - "out_min": 0.72, - "out_max": 1.28, - "coeff1": 0.746551961, - "coeff2": -0.009440362, - "coeff3": 0.00056567, - "coeff4": 0.002022931, - "coeff5": 0.000408593, - "coeff6": -0.000613945, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.038129822, - "ref_cond_fluid_flow": 0.038129822, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.44, - "y_min": 12.78, - "x_max": 10.0, - "y_max": 37.78, - "out_min": 0.84, - "out_max": 1.23, - "coeff1": 0.992170037, - "coeff2": 0.028522584, - "coeff3": 7.92437e-5, - "coeff4": -0.003162486, - "coeff5": -0.000136066, - "coeff6": 0.000149047, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.038129822, - "ref_cond_fluid_flow": 0.038129822, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 0.2, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.22, - "out_max": 1.0, - "coeff1": 0.142718995, - "coeff2": 0.480370783, - "coeff3": 0.363192619, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "322": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 145.0, - "ref_cap_unit": "ton", - "full_eff": 4.615, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.026921848, - "ref_cond_fluid_flow": 0.026921848, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.69, - "out_max": 1.3, - "coeff1": 0.7135627760433791, - "coeff2": -0.0045156065363832765, - "coeff3": 0.0001492963314520708, - "coeff4": 0.00245936101989179, - "coeff5": 0.00042349837894674314, - "coeff6": -0.000634362754596337, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.026921848, - "ref_cond_fluid_flow": 0.026921848, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.84, - "out_max": 1.24, - "coeff1": 1.0059836456494478, - "coeff2": 0.02877371949853022, - "coeff3": 0.00019177942743918777, - "coeff4": -0.0036113669405811386, - "coeff5": -0.00013426819731423905, - "coeff6": 0.00010545197599685506, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.026921848, - "ref_cond_fluid_flow": 0.026921848, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 35.0, - "units": "si", - "x_min": 0.19971570717839376, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.21, - "out_max": 1.0, - "coeff1": 0.12814762364705307, - "coeff2": 0.5158969878154525, - "coeff3": 0.3471078019408265, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "323": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 49.47, - "ref_cap_unit": "ton", - "full_eff": 4.676, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "hr_scroll", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.56, - "y_min": 21.11, - "x_max": 12.78, - "y_max": 46.11, - "out_min": 0.68, - "out_max": 1.83, - "coeff1": 0.65039723, - "coeff2": -0.010669957, - "coeff3": 0.000701066, - "coeff4": -0.000945068, - "coeff5": 0.000720993, - "coeff6": -0.001078146, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.56, - "y_min": 21.11, - "x_max": 12.78, - "y_max": 46.11, - "out_min": 0.76, - "out_max": 1.13, - "coeff1": 1.031554022, - "coeff2": 0.038322506, - "coeff3": 0.000286596, - "coeff4": -0.006479126, - "coeff5": -5.01587e-5, - "coeff6": -0.000338728, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 0.3, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.26, - "out_max": 1.0, - "coeff1": 0.006361491, - "coeff2": 0.889378801, - "coeff3": 0.097956916, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "324": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 69.63, - "ref_cap_unit": "ton", - "full_eff": 4.675, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "hr_scroll", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.01111111, - "units": "si", - "x_min": 5.56, - "y_min": 21.11, - "x_max": 12.78, - "y_max": 46.11, - "out_min": 0.71, - "out_max": 1.88, - "coeff1": 0.729755012, - "coeff2": -0.000830771, - "coeff3": 0.000821282, - "coeff4": -0.008616344, - "coeff5": 0.000884277, - "coeff6": -0.001416029, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.01111111, - "units": "si", - "x_min": 5.56, - "y_min": 21.11, - "x_max": 12.78, - "y_max": 46.11, - "out_min": 0.75, - "out_max": 1.29, - "coeff1": 1.080847123, - "coeff2": 0.038374469, - "coeff3": 0.000353457, - "coeff4": -0.008598654, - "coeff5": -2.97162e-5, - "coeff6": -0.000377058, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.01111111, - "units": "si", - "x_min": 0.3, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.26, - "out_max": 1.0, - "coeff1": -0.010165704, - "coeff2": 0.954039127, - "coeff3": 0.047046316, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "325": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 62.12, - "ref_cap_unit": "ton", - "full_eff": 4.65, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "hr_scroll", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.01111111, - "units": "si", - "x_min": 5.56, - "y_min": 21.11, - "x_max": 12.78, - "y_max": 46.11, - "out_min": 0.68, - "out_max": 1.82, - "coeff1": 0.642834957, - "coeff2": -0.010803664, - "coeff3": 0.000710714, - "coeff4": 0.000239867, - "coeff5": 0.000693386, - "coeff6": -0.001094171, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.01111111, - "units": "si", - "x_min": 5.56, - "y_min": 21.11, - "x_max": 12.78, - "y_max": 46.11, - "out_min": 0.76, - "out_max": 1.29, - "coeff1": 1.069720332, - "coeff2": 0.039075187, - "coeff3": 0.000326105, - "coeff4": -0.008464407, - "coeff5": -2.61004e-5, - "coeff6": -0.000372066, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.01111111, - "units": "si", - "x_min": 0.3, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.26, - "out_max": 1.0, - "coeff1": -0.011899582, - "coeff2": 0.939895918, - "coeff3": 0.06705521, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "326": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 43.46, - "ref_cap_unit": "ton", - "full_eff": 4.684, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "hr_scroll", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.01666667, - "units": "si", - "x_min": 5.56, - "y_min": 21.11, - "x_max": 15.56, - "y_max": 46.11, - "out_min": 0.67, - "out_max": 1.84, - "coeff1": 0.620933255, - "coeff2": -0.011538418, - "coeff3": 0.000705305, - "coeff4": 0.001065527, - "coeff5": 0.000695573, - "coeff6": -0.001091877, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.01666667, - "units": "si", - "x_min": 5.56, - "y_min": 21.11, - "x_max": 15.56, - "y_max": 46.11, - "out_min": 0.76, - "out_max": 1.34, - "coeff1": 1.04180365, - "coeff2": 0.037764021, - "coeff3": 0.000242532, - "coeff4": -0.006671623, - "coeff5": -5.37788e-5, - "coeff6": -0.000311532, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.01666667, - "units": "si", - "x_min": 0.3, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.26, - "out_max": 1.0, - "coeff1": 0.01580873, - "coeff2": 0.873252206, - "coeff3": 0.103979156, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "327": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 80.63, - "ref_cap_unit": "ton", - "full_eff": 5.064, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.014785187, - "ref_cond_fluid_flow": 0.014785187, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98333333, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.57, - "out_max": 1.45, - "coeff1": 0.6496224915354254, - "coeff2": -0.00582799845607046, - "coeff3": -0.00025407069151910447, - "coeff4": -0.003636114126887781, - "coeff5": 0.0007339102089485321, - "coeff6": -0.0005281570758635571, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.014785187, - "ref_cond_fluid_flow": 0.014785187, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98333333, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.81, - "out_max": 1.26, - "coeff1": 1.0181796304823862, - "coeff2": 0.025893736726382732, - "coeff3": 0.0005842184263392496, - "coeff4": -0.0019461674592310477, - "coeff5": -0.0001902688590515197, - "coeff6": 2.4072827227224772e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.014785187, - "ref_cond_fluid_flow": 0.014785187, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98333333, - "units": "si", - "x_min": 0.2004264392324094, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.22, - "out_max": 1.0, - "coeff1": 0.1023097191444642, - "coeff2": 0.6589497643138902, - "coeff3": 0.22765687345732427, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "328": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 31.48, - "ref_cap_unit": "ton", - "full_eff": 4.737, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "hr_scroll", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.6, - "min_unloading": 0.6, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.56, - "y_min": 21.11, - "x_max": 12.78, - "y_max": 46.11, - "out_min": 0.67, - "out_max": 1.83, - "coeff1": 0.639359874, - "coeff2": -0.009526136, - "coeff3": 0.000673511, - "coeff4": 0.00042059, - "coeff5": 0.000700937, - "coeff6": -0.001169061, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.56, - "y_min": 21.11, - "x_max": 12.78, - "y_max": 46.11, - "out_min": 0.76, - "out_max": 1.29, - "coeff1": 1.0316535, - "coeff2": 0.038559514, - "coeff3": 0.000428493, - "coeff4": -0.006640017, - "coeff5": -4.2652e-5, - "coeff6": -0.000383902, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 0.6, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.55, - "out_max": 1.0, - "coeff1": -0.100937919, - "coeff2": 1.100857107, - "coeff3": 8.98809e-5, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "329": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 21.7, - "ref_cap_unit": "ton", - "full_eff": 4.642, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "hr_scroll", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.6, - "min_unloading": 0.6, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.56, - "y_min": 21.11, - "x_max": 12.78, - "y_max": 46.11, - "out_min": 0.65, - "out_max": 1.82, - "coeff1": 0.612758902, - "coeff2": -0.014561925, - "coeff3": 0.000696774, - "coeff4": 0.003328753, - "coeff5": 0.000652623, - "coeff6": -0.001096026, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.56, - "y_min": 21.11, - "x_max": 12.78, - "y_max": 46.11, - "out_min": 0.77, - "out_max": 1.3, - "coeff1": 1.026555836, - "coeff2": 0.039505583, - "coeff3": 0.000415652, - "coeff4": -0.006811248, - "coeff5": -3.77232e-5, - "coeff6": -0.000381363, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": null, - "ref_cond_fluid_flow": null, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 0.6, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.55, - "out_max": 1.0, - "coeff1": -0.086865366, - "coeff2": 1.086950708, - "coeff3": -8.75904e-5, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "330": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 77.78, - "ref_cap_unit": "ton", - "full_eff": 4.781, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.014443869, - "ref_cond_fluid_flow": 0.014443869, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.55, - "out_max": 1.29, - "coeff1": 0.5523045322250624, - "coeff2": -0.00801817947929423, - "coeff3": 0.0002727726733522673, - "coeff4": 0.007382265205258531, - "coeff5": 0.0005194818428441843, - "coeff6": -0.0008775035909388639, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.014443869, - "ref_cond_fluid_flow": 0.014443869, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.86, - "out_max": 1.26, - "coeff1": 1.039253257206431, - "coeff2": 0.0234760392849791, - "coeff3": 0.0004937860204442708, - "coeff4": -0.0029988326751967873, - "coeff5": -0.00018577537535009454, - "coeff6": 0.00017557614991634915, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.014443869, - "ref_cond_fluid_flow": 0.014443869, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.97222222, - "units": "si", - "x_min": 0.20051413881748073, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.24, - "out_max": 1.0, - "coeff1": 0.10564217684013073, - "coeff2": 0.6705560536752837, - "coeff3": 0.2164692782063323, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "331": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 102.5, - "ref_cap_unit": "ton", - "full_eff": 4.789, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.018937784, - "ref_cond_fluid_flow": 0.018937784, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98333333, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.56, - "out_max": 1.29, - "coeff1": 0.42908450827669475, - "coeff2": 0.009149796429554324, - "coeff3": -0.0003321477548227092, - "coeff4": 0.011806542508717485, - "coeff5": 0.0004729770193100212, - "coeff6": -0.001139761355300404, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.018937784, - "ref_cond_fluid_flow": 0.018937784, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98333333, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.86, - "out_max": 1.25, - "coeff1": 0.631914518329662, - "coeff2": 0.08420011178768017, - "coeff3": -0.001992351939346739, - "coeff4": 0.009309141583283276, - "coeff5": -0.0002748733092278428, - "coeff6": -0.0006396002693273435, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.018937784, - "ref_cond_fluid_flow": 0.018937784, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98333333, - "units": "si", - "x_min": 0.20056764427625354, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.21, - "out_max": 1.0, - "coeff1": 0.01258855124540959, - "coeff2": 0.9510941400133914, - "coeff3": 0.025031636335242358, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "332": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 108.5, - "ref_cap_unit": "ton", - "full_eff": 5.149, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.019811583, - "ref_cond_fluid_flow": 0.019811583, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98333333, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.59, - "out_max": 1.46, - "coeff1": 0.6855771959737731, - "coeff2": -0.013966697794123406, - "coeff3": 0.0005756371228652427, - "coeff4": -0.004728506596756235, - "coeff5": 0.0008000595806573215, - "coeff6": -0.0007116864513087771, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.019811583, - "ref_cond_fluid_flow": 0.019811583, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98333333, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.82, - "out_max": 1.26, - "coeff1": 1.0213116993351234, - "coeff2": 0.026995202128279605, - "coeff3": 0.0004237683488956673, - "coeff4": -0.0033937181382528853, - "coeff5": -0.00015590571878870143, - "coeff6": 8.275825974599053e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.019811583, - "ref_cond_fluid_flow": 0.019811583, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98333333, - "units": "si", - "x_min": 0.20057581573896352, - "y_min": null, - "x_max": 1.0000000000000002, - "y_max": null, - "out_min": 0.21, - "out_max": 1.0, - "coeff1": 0.0635955937133529, - "coeff2": 0.7609260594077452, - "coeff3": 0.16313217325788237, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "333": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 127.6, - "ref_cap_unit": "ton", - "full_eff": 4.882, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.023052527, - "ref_cond_fluid_flow": 0.023052527, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98888889, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.56, - "out_max": 1.29, - "coeff1": 0.5525730689836341, - "coeff2": -0.008942507903705266, - "coeff3": 0.0005285053630771606, - "coeff4": 0.007170643490113579, - "coeff5": 0.0005406683156455145, - "coeff6": -0.0009752433222082642, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.023052527, - "ref_cond_fluid_flow": 0.023052527, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98888889, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.86, - "out_max": 1.25, - "coeff1": 1.0317332765000569, - "coeff2": 0.02453100864779062, - "coeff3": 0.00040248049358903096, - "coeff4": -0.003557553578714817, - "coeff5": -0.00016322695524507264, - "coeff6": 0.00018390731632385616, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.023052527, - "ref_cond_fluid_flow": 0.023052527, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98888889, - "units": "si", - "x_min": 0.20062695924764892, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.23, - "out_max": 1.0, - "coeff1": 0.04986204878418063, - "coeff2": 0.8614184257247219, - "coeff3": 0.08256521368605568, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "334": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 133.3, - "ref_cap_unit": "ton", - "full_eff": 5.261, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02382412, - "ref_cond_fluid_flow": 0.02382412, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98333333, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.61, - "out_max": 1.46, - "coeff1": 0.7182390339935998, - "coeff2": -0.010756222357898193, - "coeff3": 0.0007342280295473368, - "coeff4": -0.008209075481927217, - "coeff5": 0.0008755431198361057, - "coeff6": -0.0009683003769825846, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02382412, - "ref_cond_fluid_flow": 0.02382412, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98333333, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.81, - "out_max": 1.26, - "coeff1": 1.002510162499333, - "coeff2": 0.026732512669816383, - "coeff3": 0.0005890562578562929, - "coeff4": -0.0014627975905818213, - "coeff5": -0.00019174033809167654, - "coeff6": 1.4785854774687285e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.02382412, - "ref_cond_fluid_flow": 0.02382412, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98333333, - "units": "si", - "x_min": 0.20068027210884357, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.24, - "out_max": 1.0, - "coeff1": 0.07226234767132035, - "coeff2": 0.7798793235104134, - "coeff3": 0.1434551316647952, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "335": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 145.4, - "ref_cap_unit": "ton", - "full_eff": 4.784, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.026849926, - "ref_cond_fluid_flow": 0.026849926, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98888889, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.56, - "out_max": 1.29, - "coeff1": 0.556952179126857, - "coeff2": -0.009663405000941372, - "coeff3": 0.0004544363019149192, - "coeff4": 0.0077147244161314965, - "coeff5": 0.0005137041318841512, - "coeff6": -0.0009176196246763777, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.026849926, - "ref_cond_fluid_flow": 0.026849926, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98888889, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 35.0, - "out_min": 0.86, - "out_max": 1.25, - "coeff1": 1.0210469421764723, - "coeff2": 0.025261732034333434, - "coeff3": 0.00041677674381485064, - "coeff4": -0.003158027889419178, - "coeff5": -0.00016436159844469053, - "coeff6": 0.0001528713134609458, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.026849926, - "ref_cond_fluid_flow": 0.026849926, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98888889, - "units": "si", - "x_min": 0.20071258907363418, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.23, - "out_max": 1.0, - "coeff1": 0.0023707082011120637, - "coeff2": 1.021354838149453, - "coeff3": -0.03268521332328346, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "336": { - "eqp_type": "chiller", - "source": "1", - "model": "ect_lwt", - "ref_cap": 164.6, - "ref_cap_unit": "ton", - "full_eff": 5.169, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.030237238, - "ref_cond_fluid_flow": 0.030237238, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98333333, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.62, - "out_max": 1.44, - "coeff1": 0.66116365979874, - "coeff2": -0.06277772012937993, - "coeff3": 0.008078467297830152, - "coeff4": 0.009750092350031311, - "coeff5": 0.0006209830540713419, - "coeff6": -0.002156465590841861, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.030237238, - "ref_cond_fluid_flow": 0.030237238, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98333333, - "units": "si", - "x_min": 4.4, - "y_min": 12.8, - "x_max": 10.0, - "y_max": 37.8, - "out_min": 0.8, - "out_max": 1.19, - "coeff1": 0.9736866700939979, - "coeff2": 0.04335107335303398, - "coeff3": -0.001847340351006442, - "coeff4": -0.002958321554722504, - "coeff5": -0.00020208738627484533, - "coeff6": 0.0004190488546582614, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "quad", - "ref_evap_fluid_flow": 0.030237238, - "ref_cond_fluid_flow": 0.030237238, - "ref_lwt": 6.666666667, - "ref_ect": 29.4, - "ref_lct": 34.98333333, - "units": "si", - "x_min": 0.20073891625615764, - "y_min": null, - "x_max": 1.0, - "y_max": null, - "out_min": 0.2, - "out_max": 1.0, - "coeff1": 0.09429534119849983, - "coeff2": 0.7121668627195228, - "coeff3": 0.18779352076833133, - "coeff4": 0.0, - "coeff5": 0.0, - "coeff6": 0.0, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "337": { - "eqp_type": "chiller", - "source": "2", - "model": "lct_lwt", - "ref_cap": 247.0, - "ref_cap_unit": "ton", - "full_eff": 5.57, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.18, - "min_unloading": 0.18, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01754, - "ref_cond_fluid_flow": 0.02593, - "ref_lwt": 8.89, - "ref_ect": null, - "ref_lct": 36.12, - "units": "si", - "x_min": 7.22, - "y_min": 22.63, - "x_max": 12.78, - "y_max": 36.94, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5173193, - "coeff2": 0.07303695, - "coeff3": -0.007486318, - "coeff4": -0.002613352, - "coeff5": 0.000100004, - "coeff6": 0.001264598, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01754, - "ref_cond_fluid_flow": 0.02593, - "ref_lwt": 8.89, - "ref_ect": null, - "ref_lct": 36.12, - "units": "si", - "x_min": 7.22, - "y_min": 22.63, - "x_max": 12.78, - "y_max": 36.94, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5989856, - "coeff2": 0.1069929, - "coeff3": -0.008442248, - "coeff4": -0.001622083, - "coeff5": -0.000438439, - "coeff6": 0.002372388, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.01754, - "ref_cond_fluid_flow": 0.02593, - "ref_lwt": 8.89, - "ref_ect": null, - "ref_lct": 36.12, - "units": "si", - "x_min": 14.4, - "y_min": 0.18, - "x_max": 35.0, - "y_max": 1.03, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1317677, - "coeff2": -0.00750196, - "coeff3": 5.07e-6, - "coeff4": 0.8550743, - "coeff5": -0.6215987, - "coeff6": 0.007267902, - "coeff7": 0.0, - "coeff8": 0.6373549, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "338": { - "eqp_type": "chiller", - "source": "2", - "model": "lct_lwt", - "ref_cap": 291.0, - "ref_cap_unit": "ton", - "full_eff": 5.81, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.09, - "min_unloading": 0.09, - "max_plr": 1.06, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02366, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 35.51, - "units": "si", - "x_min": 4.44, - "y_min": 18.34, - "x_max": 8.89, - "y_max": 40.55, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6129429, - "coeff2": -0.0140378, - "coeff3": 0.001331529, - "coeff4": -0.00021821, - "coeff5": 0.000550282, - "coeff6": -0.00109292, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02366, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 35.51, - "units": "si", - "x_min": 4.44, - "y_min": 18.34, - "x_max": 8.89, - "y_max": 40.55, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.3395788, - "coeff2": -0.03084319, - "coeff3": -0.005520572, - "coeff4": 0.1112148, - "coeff5": -0.00266298, - "coeff6": 0.005099892, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.02366, - "ref_cond_fluid_flow": 0.04732, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 35.51, - "units": "si", - "x_min": 17.58, - "y_min": 0.09, - "x_max": 35.51, - "y_max": 1.06, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2511511, - "coeff2": 0.008555669, - "coeff3": -3.4e-5, - "coeff4": -0.2271964, - "coeff5": 1.450679, - "coeff6": -0.006729414, - "coeff7": 0.0, - "coeff8": -0.4981512, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "339": { - "eqp_type": "chiller", - "source": "2", - "model": "lct_lwt", - "ref_cap": 300.0, - "ref_cap_unit": "ton", - "full_eff": 5.96, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.06, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02839, - "ref_cond_fluid_flow": 0.05678, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 34.63, - "units": "si", - "x_min": 4.44, - "y_min": 17.24, - "x_max": 8.89, - "y_max": 39.89, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.5864611, - "coeff2": -0.01981483, - "coeff3": 0.001189656, - "coeff4": 0.004468905, - "coeff5": 0.000436697, - "coeff6": -0.000767908, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02839, - "ref_cond_fluid_flow": 0.05678, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 34.63, - "units": "si", - "x_min": 4.44, - "y_min": 17.24, - "x_max": 8.89, - "y_max": 39.89, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.27075, - "coeff2": -0.06904583, - "coeff3": -0.002862217, - "coeff4": 0.111666, - "coeff5": -0.002741006, - "coeff6": 0.005573759, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.02839, - "ref_cond_fluid_flow": 0.05678, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 34.63, - "units": "si", - "x_min": 17.55, - "y_min": 0.1, - "x_max": 34.63, - "y_max": 1.06, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.2585491, - "coeff2": 0.008250769, - "coeff3": -3.23e-5, - "coeff4": -0.0892162, - "coeff5": 1.025668, - "coeff6": -0.006495267, - "coeff7": 0.0, - "coeff8": -0.2179388, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "340": { - "eqp_type": "chiller", - "source": "2", - "model": "lct_lwt", - "ref_cap": 320.0, - "ref_cap_unit": "ton", - "full_eff": 4.89, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.1, - "min_unloading": 0.1, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02776, - "ref_cond_fluid_flow": 0.02618, - "ref_lwt": 5.56, - "ref_ect": null, - "ref_lct": 36.27, - "units": "si", - "x_min": 5.56, - "y_min": 26.1, - "x_max": 10.0, - "y_max": 36.56, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4744658, - "coeff2": -0.03998991, - "coeff3": -8.17e-5, - "coeff4": 0.01686296, - "coeff5": 8.32e-5, - "coeff6": 0.000160749, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02776, - "ref_cond_fluid_flow": 0.02618, - "ref_lwt": 5.56, - "ref_ect": null, - "ref_lct": 36.27, - "units": "si", - "x_min": 5.56, - "y_min": 26.1, - "x_max": 10.0, - "y_max": 36.56, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3738655, - "coeff2": -0.01966419, - "coeff3": -0.001212112, - "coeff4": 0.03549468, - "coeff5": -0.000580004, - "coeff6": 0.001250514, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.02776, - "ref_cond_fluid_flow": 0.02618, - "ref_lwt": 5.56, - "ref_ect": null, - "ref_lct": 36.27, - "units": "si", - "x_min": 14.57, - "y_min": 0.1, - "x_max": 34.89, - "y_max": 1.01, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3526188, - "coeff2": -0.002052741, - "coeff3": 5.13e-6, - "coeff4": -0.3558764, - "coeff5": 1.168571, - "coeff6": 0.001752891, - "coeff7": 0.0, - "coeff8": -0.1609826, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "341": { - "eqp_type": "chiller", - "source": "2", - "model": "lct_lwt", - "ref_cap": 351.0, - "ref_cap_unit": "ton", - "full_eff": 5.39, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.19, - "min_unloading": 0.19, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02593, - "ref_cond_fluid_flow": 0.03861, - "ref_lwt": 8.89, - "ref_ect": null, - "ref_lct": 35.73, - "units": "si", - "x_min": 7.22, - "y_min": 22.24, - "x_max": 12.78, - "y_max": 36.28, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4746375, - "coeff2": 0.09120326, - "coeff3": -0.00729506, - "coeff4": -0.005662273, - "coeff5": 0.000192803, - "coeff6": 0.000824478, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02593, - "ref_cond_fluid_flow": 0.03861, - "ref_lwt": 8.89, - "ref_ect": null, - "ref_lct": 35.73, - "units": "si", - "x_min": 7.22, - "y_min": 22.24, - "x_max": 12.78, - "y_max": 36.28, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6134255, - "coeff2": 0.1092476, - "coeff3": -0.007352739, - "coeff4": -0.002589985, - "coeff5": -0.000379351, - "coeff6": 0.001839978, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.02593, - "ref_cond_fluid_flow": 0.03861, - "ref_lwt": 8.89, - "ref_ect": null, - "ref_lct": 35.73, - "units": "si", - "x_min": 14.38, - "y_min": 0.19, - "x_max": 34.99, - "y_max": 1.02, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1207212, - "coeff2": -0.009914826, - "coeff3": 1.85e-5, - "coeff4": 0.9880331, - "coeff5": -0.8955866, - "coeff6": 0.008894574, - "coeff7": 0.0, - "coeff8": 0.8005552, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "342": { - "eqp_type": "chiller", - "source": "2", - "model": "lct_lwt", - "ref_cap": 378.0, - "ref_cap_unit": "ton", - "full_eff": 5.38, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.29, - "min_unloading": 0.29, - "max_plr": 1.02, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04732, - "ref_cond_fluid_flow": 0.07098, - "ref_lwt": 6.11, - "ref_ect": null, - "ref_lct": 34.8, - "units": "si", - "x_min": 6.11, - "y_min": 26.77, - "x_max": 10.0, - "y_max": 41.98, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9460623, - "coeff2": 0.03685465, - "coeff3": -0.000753087, - "coeff4": -0.01753701, - "coeff5": 0.000583293, - "coeff6": -0.001143458, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04732, - "ref_cond_fluid_flow": 0.07098, - "ref_lwt": 6.11, - "ref_ect": null, - "ref_lct": 34.8, - "units": "si", - "x_min": 6.11, - "y_min": 26.77, - "x_max": 10.0, - "y_max": 41.98, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.297134, - "coeff2": 0.1063097, - "coeff3": -0.004449876, - "coeff4": 0.02540435, - "coeff5": -0.000569622, - "coeff6": 0.000126992, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.04732, - "ref_cond_fluid_flow": 0.07098, - "ref_lwt": 6.11, - "ref_ect": null, - "ref_lct": 34.8, - "units": "si", - "x_min": 21.44, - "y_min": 0.29, - "x_max": 41.11, - "y_max": 1.02, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.09512023, - "coeff2": 0.008704652, - "coeff3": -6.5e-6, - "coeff4": 1.336749, - "coeff5": -0.6968012, - "coeff6": -0.008318175, - "coeff7": 0.0, - "coeff8": 0.4497796, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "343": { - "eqp_type": "chiller", - "source": "2", - "model": "lct_lwt", - "ref_cap": 451.0, - "ref_cap_unit": "ton", - "full_eff": 5.53, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.19, - "min_unloading": 0.19, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03388, - "ref_cond_fluid_flow": 0.04669, - "ref_lwt": 8.89, - "ref_ect": null, - "ref_lct": 36.26, - "units": "si", - "x_min": 7.22, - "y_min": 23.36, - "x_max": 12.78, - "y_max": 36.72, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.22369, - "coeff2": -0.03668987, - "coeff3": 0.000403892, - "coeff4": -0.01595573, - "coeff5": 0.000508064, - "coeff6": -7.28e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03388, - "ref_cond_fluid_flow": 0.04669, - "ref_lwt": 8.89, - "ref_ect": null, - "ref_lct": 36.26, - "units": "si", - "x_min": 7.22, - "y_min": 23.36, - "x_max": 12.78, - "y_max": 36.72, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.132174, - "coeff2": 0.0008236, - "coeff3": -0.000820759, - "coeff4": 0.002967657, - "coeff5": -0.000389831, - "coeff6": 0.00101583, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.03388, - "ref_cond_fluid_flow": 0.04669, - "ref_lwt": 8.89, - "ref_ect": null, - "ref_lct": 36.26, - "units": "si", - "x_min": 14.58, - "y_min": 0.19, - "x_max": 35.67, - "y_max": 1.01, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.338166, - "coeff2": -0.02323866, - "coeff3": -7.81e-6, - "coeff4": 1.017389, - "coeff5": -0.8328919, - "coeff6": 0.02371783, - "coeff7": 0.0, - "coeff8": 0.4701559, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "344": { - "eqp_type": "chiller", - "source": "2", - "model": "lct_lwt", - "ref_cap": 465.0, - "ref_cap_unit": "ton", - "full_eff": 6.36, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.18, - "min_unloading": 0.18, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03432, - "ref_cond_fluid_flow": 0.05035, - "ref_lwt": 8.89, - "ref_ect": null, - "ref_lct": 35.66, - "units": "si", - "x_min": 7.22, - "y_min": 20.44, - "x_max": 12.78, - "y_max": 36.54, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.6499856, - "coeff2": -0.006235681, - "coeff3": -0.000221974, - "coeff4": 0.008417414, - "coeff5": 0.000231469, - "coeff6": -0.000567948, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.03432, - "ref_cond_fluid_flow": 0.05035, - "ref_lwt": 8.89, - "ref_ect": null, - "ref_lct": 35.66, - "units": "si", - "x_min": 7.22, - "y_min": 20.44, - "x_max": 12.78, - "y_max": 36.54, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.3092875, - "coeff2": -0.03293511, - "coeff3": -0.004782933, - "coeff4": 0.06860171, - "coeff5": -0.002017588, - "coeff6": 0.004670722, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.03432, - "ref_cond_fluid_flow": 0.05035, - "ref_lwt": 8.89, - "ref_ect": null, - "ref_lct": 35.66, - "units": "si", - "x_min": 14.54, - "y_min": 0.18, - "x_max": 34.96, - "y_max": 1.03, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.4206254, - "coeff2": -0.001310337, - "coeff3": 8.8e-5, - "coeff4": 0.06600709, - "coeff5": 0.464231, - "coeff6": -0.003720394, - "coeff7": 0.0, - "coeff8": 0.1189466, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "345": { - "eqp_type": "chiller", - "source": "2", - "model": "lct_lwt", - "ref_cap": 500.0, - "ref_cap_unit": "ton", - "full_eff": 5.96, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.04, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 34.63, - "units": "si", - "x_min": 4.44, - "y_min": 28.68, - "x_max": 8.89, - "y_max": 40.15, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.583438, - "coeff2": -0.003412919, - "coeff3": 0.004476231, - "coeff4": -0.05243024, - "coeff5": 0.001295102, - "coeff6": -0.002210725, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 34.63, - "units": "si", - "x_min": 4.44, - "y_min": 28.68, - "x_max": 8.89, - "y_max": 40.15, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.3784203, - "coeff2": -0.08333229, - "coeff3": -0.008509675, - "coeff4": 0.1031937, - "coeff5": -0.002432261, - "coeff6": 0.00706553, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.07571, - "ref_cond_fluid_flow": 0.09464, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 34.63, - "units": "si", - "x_min": 30.56, - "y_min": 0.2, - "x_max": 34.63, - "y_max": 1.04, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.466664, - "coeff2": -0.04222011, - "coeff3": -0.000115351, - "coeff4": -0.07738226, - "coeff5": -0.9896333, - "coeff6": 0.05014539, - "coeff7": 0.0, - "coeff8": 0.4671251, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "346": { - "eqp_type": "chiller", - "source": "2", - "model": "lct_lwt", - "ref_cap": 1607.0, - "ref_cap_unit": "ton", - "full_eff": 5.5, - "full_eff_unit": "cop", - "compressor_type": "centrifugal", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.19, - "min_unloading": 0.19, - "max_plr": 1.03, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.18927, - "ref_cond_fluid_flow": 0.18927, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 37.89, - "units": "si", - "x_min": 4.44, - "y_min": 26.23, - "x_max": 8.89, - "y_max": 39.12, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.8804871, - "coeff2": 0.000385391, - "coeff3": 0.000222495, - "coeff4": -0.0133756, - "coeff5": 0.000582284, - "coeff6": -0.000874474, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.18927, - "ref_cond_fluid_flow": 0.18927, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 37.89, - "units": "si", - "x_min": 4.44, - "y_min": 26.23, - "x_max": 8.89, - "y_max": 39.12, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9205097, - "coeff2": -0.0783075, - "coeff3": -0.004545053, - "coeff4": 0.05853135, - "coeff5": -0.002108693, - "coeff6": 0.006359267, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.18927, - "ref_cond_fluid_flow": 0.18927, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 37.89, - "units": "si", - "x_min": 31.13, - "y_min": 0.19, - "x_max": 36.52, - "y_max": 1.03, - "out_min": 0.0, - "out_max": null, - "coeff1": -0.1360532, - "coeff2": 0.008642703, - "coeff3": 3.86e-6, - "coeff4": 1.024034, - "coeff5": 0.06047444, - "coeff6": -0.00894786, - "coeff7": 0.0, - "coeff8": 0.05706602, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "347": { - "eqp_type": "chiller", - "source": "2", - "model": "lct_lwt", - "ref_cap": 302.0, - "ref_cap_unit": "ton", - "full_eff": 5.5, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04573, - "ref_cond_fluid_flow": 0.05716, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 34.7, - "units": "si", - "x_min": 6.67, - "y_min": 26.44, - "x_max": 10.0, - "y_max": 35.1, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.1369592, - "coeff2": -0.005681693, - "coeff3": 0.000279515, - "coeff4": 0.02407603, - "coeff5": 0.000214252, - "coeff6": -0.000885073, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.04573, - "ref_cond_fluid_flow": 0.05716, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 34.7, - "units": "si", - "x_min": 6.67, - "y_min": 26.44, - "x_max": 10.0, - "y_max": 35.1, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.054485, - "coeff2": 0.0101565, - "coeff3": -0.004899041, - "coeff4": -0.003792726, - "coeff5": -0.000369988, - "coeff6": 0.002891276, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.04573, - "ref_cond_fluid_flow": 0.05716, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 34.7, - "units": "si", - "x_min": 30.6, - "y_min": 0.2, - "x_max": 34.7, - "y_max": 1.01, - "out_min": 0.0, - "out_max": null, - "coeff1": 1.385765, - "coeff2": -0.03549685, - "coeff3": -4.11e-6, - "coeff4": -0.7678018, - "coeff5": 0.7228808, - "coeff6": 0.03573245, - "coeff7": 0.0, - "coeff8": -0.3442173, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "348": { - "eqp_type": "chiller", - "source": "2", - "model": "lct_lwt", - "ref_cap": 59.0, - "ref_cap_unit": "ton", - "full_eff": 3.99, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.25, - "min_unloading": 0.25, - "max_plr": 1.01, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.00898, - "ref_cond_fluid_flow": 0.01122, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.56, - "y_min": 29.37, - "x_max": 10.0, - "y_max": 40.94, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.7327001, - "coeff2": -0.008343605, - "coeff3": 0.00063853, - "coeff4": -0.003037535, - "coeff5": 0.000484953, - "coeff6": -0.00083585, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.00898, - "ref_cond_fluid_flow": 0.01122, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.56, - "y_min": 29.37, - "x_max": 10.0, - "y_max": 40.94, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.9585465, - "coeff2": 0.0351687, - "coeff3": 0.000124662, - "coeff4": -0.002745559, - "coeff5": -5e-5, - "coeff6": -0.000172349, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.00898, - "ref_cond_fluid_flow": 0.01122, - "ref_lwt": 6.67, - "ref_ect": null, - "ref_lct": 35.0, - "units": "si", - "x_min": 20.33, - "y_min": 0.25, - "x_max": 35.0, - "y_max": 1.01, - "out_min": 0.0, - "out_max": null, - "coeff1": 0.07086284, - "coeff2": 0.002787561, - "coeff3": -8.92e-6, - "coeff4": 0.2309734, - "coeff5": 1.250442, - "coeff6": -0.002161029, - "coeff7": 0.0, - "coeff8": -0.5630094, - "coeff9": 0.0, - "coeff10": 0.0 - } - } - }, - "349": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 43.46, - "ref_cap_unit": "ton", - "full_eff": 4.684, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.007999206, - "ref_cond_fluid_flow": 0.007999206, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 25.8, - "x_max": 10.0, - "y_max": 53.8, - "out_min": 0.66, - "out_max": 2.03, - "coeff1": 0.6691725387779894, - "coeff2": -0.001006408663891123, - "coeff3": 0.0010057359037019056, - "coeff4": -0.010239067417629394, - "coeff5": 0.0007938394525817388, - "coeff6": -0.001398416495283607, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.007999206, - "ref_cond_fluid_flow": 0.007999206, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 25.8, - "x_max": 10.0, - "y_max": 53.8, - "out_min": 0.72, - "out_max": 1.22, - "coeff1": 1.0916179770380245, - "coeff2": 0.03813114983166643, - "coeff3": 0.0003795796405820506, - "coeff4": -0.0065617314052183184, - "coeff5": -5.242828808291601e-5, - "coeff6": -0.00030328190421838753, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.007999206, - "ref_cond_fluid_flow": 0.007999206, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 25.8, - "y_min": 0.2988505747126437, - "x_max": 53.8, - "y_max": 1.0000000000000002, - "out_min": 0.26, - "out_max": 1.0, - "coeff1": -0.22823545749124596, - "coeff2": 0.0032674682237447744, - "coeff3": -6.886116420827697e-5, - "coeff4": 1.9230446062902757, - "coeff5": -1.6308888604687048, - "coeff6": 0.00015407212149048347, - "coeff7": 5.083274694212683e-7, - "coeff8": 0.9002046486266924, - "coeff9": 3.2599419636036658e-6, - "coeff10": -0.0006497757221145851 - } - } - }, - "350": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 145.4, - "ref_cap_unit": "ton", - "full_eff": 4.784, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.026849926, - "ref_cond_fluid_flow": 0.026849926, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.5, - "x_max": 10.0, - "y_max": 40.4, - "out_min": 0.56, - "out_max": 1.29, - "coeff1": 0.5325291740896682, - "coeff2": -0.003049270239411539, - "coeff3": 0.00046457524340905165, - "coeff4": 0.0006453558508825591, - "coeff5": 0.0005503775096261424, - "coeff6": -0.0009642845575149383, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.026849926, - "ref_cond_fluid_flow": 0.026849926, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.5, - "x_max": 10.0, - "y_max": 40.4, - "out_min": 0.86, - "out_max": 1.25, - "coeff1": 1.0308678133611018, - "coeff2": 0.023890959736631828, - "coeff3": 0.0004102025246031163, - "coeff4": -0.0006986425912368505, - "coeff5": -0.00018031847766555907, - "coeff6": 0.0001704970796829783, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.026849926, - "ref_cond_fluid_flow": 0.026849926, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 18.5, - "y_min": 0.20071258907363418, - "x_max": 40.4, - "y_max": 1.0, - "out_min": 0.23, - "out_max": 1.0, - "coeff1": 0.1954766566722037, - "coeff2": -0.006156046941015833, - "coeff3": 9.192530197729741e-5, - "coeff4": 0.009854423658510442, - "coeff5": 1.0117568428137533, - "coeff6": 0.0247459259749662, - "coeff7": -3.0400366178754643e-6, - "coeff8": -0.13454091436976157, - "coeff9": 0.0002380777066186496, - "coeff10": -0.0290940160687949 - } - } - }, - "351": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 127.6, - "ref_cap_unit": "ton", - "full_eff": 4.882, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.023052527, - "ref_cond_fluid_flow": 0.023052527, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.6, - "x_max": 10.0, - "y_max": 40.4, - "out_min": 0.56, - "out_max": 1.29, - "coeff1": 0.5327472122337067, - "coeff2": -0.0020369371718849116, - "coeff3": 0.0005294231989629479, - "coeff4": -0.00024880377897813083, - "coeff5": 0.0005778577022966516, - "coeff6": -0.0010173912785042334, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.023052527, - "ref_cond_fluid_flow": 0.023052527, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.6, - "x_max": 10.0, - "y_max": 40.4, - "out_min": 0.86, - "out_max": 1.25, - "coeff1": 1.0450010903470568, - "coeff2": 0.02301577869513982, - "coeff3": 0.00040043781356452826, - "coeff4": -0.001195642496243668, - "coeff5": -0.00017757938500304548, - "coeff6": 0.00019878127918909587, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.023052527, - "ref_cond_fluid_flow": 0.023052527, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 18.6, - "y_min": 0.20062695924764892, - "x_max": 40.4, - "y_max": 1.0, - "out_min": 0.23, - "out_max": 1.0, - "coeff1": 0.3444660418472135, - "coeff2": -0.02106163650894848, - "coeff3": 0.0007477639057372705, - "coeff4": -0.057683535871607676, - "coeff5": 1.3324680708598335, - "coeff6": 0.012638709621038392, - "coeff7": -1.0105693257331711e-5, - "coeff8": -0.39609302361597687, - "coeff9": 0.00019652392814549285, - "coeff10": -0.018825280203292438 - } - } - }, - "352": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 240.1, - "ref_cap_unit": "ton", - "full_eff": 5.146, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.043045179, - "ref_cond_fluid_flow": 0.043045179, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.5, - "x_max": 10.0, - "y_max": 42.9, - "out_min": 0.57, - "out_max": 1.44, - "coeff1": 0.9211787026326512, - "coeff2": -0.04685167766715598, - "coeff3": 0.0026883290004584073, - "coeff4": -0.01843839733100989, - "coeff5": 0.0008540319192074092, - "coeff6": -0.00047661720903214764, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.043045179, - "ref_cond_fluid_flow": 0.043045179, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.5, - "x_max": 10.0, - "y_max": 42.9, - "out_min": 0.8, - "out_max": 1.25, - "coeff1": 0.9026545347494959, - "coeff2": 0.038528237685857, - "coeff3": -0.0003456965168411631, - "coeff4": 0.005692096090697478, - "coeff5": -0.0002848100275065974, - "coeff6": 1.29042227331074e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.043045179, - "ref_cond_fluid_flow": 0.043045179, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 18.5, - "y_min": 0.20086393088552915, - "x_max": 42.9, - "y_max": 1.0000000000000002, - "out_min": 0.23, - "out_max": 1.0, - "coeff1": 0.25152882400099613, - "coeff2": -0.010149486332224409, - "coeff3": 0.0005606146397063182, - "coeff4": -0.038112689335909944, - "coeff5": 1.4478109596798698, - "coeff6": 0.0013587038324933964, - "coeff7": -9.408711547342877e-6, - "coeff8": -0.5767587166323246, - "coeff9": 0.00016793200916371252, - "coeff10": -0.007665316942887362 - } - } - }, - "353": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 77.78, - "ref_cap_unit": "ton", - "full_eff": 4.781, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.014443869, - "ref_cond_fluid_flow": 0.014443869, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.6, - "x_max": 10.0, - "y_max": 40.3, - "out_min": 0.55, - "out_max": 1.29, - "coeff1": 0.5418395228199031, - "coeff2": -0.001715326278147855, - "coeff3": 0.00027445001647996223, - "coeff4": -0.000679467513772139, - "coeff5": 0.0005731804234094717, - "coeff6": -0.0009188027410985471, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.014443869, - "ref_cond_fluid_flow": 0.014443869, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.6, - "x_max": 10.0, - "y_max": 40.3, - "out_min": 0.86, - "out_max": 1.26, - "coeff1": 1.0426604635336822, - "coeff2": 0.021989390820169596, - "coeff3": 0.0004915825953775363, - "coeff4": 0.00010216643622027594, - "coeff5": -0.0002093314133377774, - "coeff6": 0.00019122894452327794, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.014443869, - "ref_cond_fluid_flow": 0.014443869, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 18.6, - "y_min": 0.20051413881748073, - "x_max": 40.3, - "y_max": 1.0000000000000002, - "out_min": 0.24, - "out_max": 1.0, - "coeff1": 0.34872164350644147, - "coeff2": -0.020563254569238167, - "coeff3": 0.0007436450112170148, - "coeff4": -0.035487689359524954, - "coeff5": 1.1989090521717438, - "coeff6": 0.010639968119232809, - "coeff7": -8.957304665599912e-6, - "coeff8": -0.32130805370061843, - "coeff9": 9.784735595472433e-5, - "coeff10": -0.01420108498139256 - } - } - }, - "354": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 69.63, - "ref_cap_unit": "ton", - "full_eff": 4.675, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.012841378, - "ref_cond_fluid_flow": 0.012841378, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 24.8, - "x_max": 10.0, - "y_max": 53.8, - "out_min": 0.69, - "out_max": 2.1, - "coeff1": 0.8306384492994665, - "coeff2": 0.010242423966864256, - "coeff3": 0.0008417805864990163, - "coeff4": -0.022215486261166185, - "coeff5": 0.000977344363032595, - "coeff6": -0.0015549678857491936, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.012841378, - "ref_cond_fluid_flow": 0.012841378, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 24.8, - "x_max": 10.0, - "y_max": 53.8, - "out_min": 0.71, - "out_max": 1.23, - "coeff1": 1.1317941219393028, - "coeff2": 0.04195763780960049, - "coeff3": 0.0003527140380985144, - "coeff4": -0.008470972066992325, - "coeff5": -3.122474824037963e-5, - "coeff6": -0.00040079968232420915, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.012841378, - "ref_cond_fluid_flow": 0.012841378, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 24.8, - "y_min": 0.29898989898989903, - "x_max": 53.8, - "y_max": 1.0, - "out_min": 0.26, - "out_max": 1.0, - "coeff1": -0.2182156208201036, - "coeff2": 0.0014299613949456578, - "coeff3": -4.541720512995391e-5, - "coeff4": 2.031561213942581, - "coeff5": -1.7103880438659012, - "coeff6": -0.000993573982748275, - "coeff7": 3.760018912390479e-7, - "coeff8": 0.9198266032271611, - "coeff9": 2.757998997038395e-5, - "coeff10": -0.0009254157316109291 - } - } - }, - "355": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 164.6, - "ref_cap_unit": "ton", - "full_eff": 5.169, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.030237238, - "ref_cond_fluid_flow": 0.030237238, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.5, - "x_max": 10.0, - "y_max": 42.9, - "out_min": 0.62, - "out_max": 1.44, - "coeff1": 0.6510267521558877, - "coeff2": -0.04928349831085921, - "coeff3": 0.008148359924899727, - "coeff4": -0.00029770249711214003, - "coeff5": 0.0006930527021754736, - "coeff6": -0.002222668558691482, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.030237238, - "ref_cond_fluid_flow": 0.030237238, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.5, - "x_max": 10.0, - "y_max": 42.9, - "out_min": 0.8, - "out_max": 1.19, - "coeff1": 0.9730088727102302, - "coeff2": 0.04081348684103234, - "coeff3": -0.0018853283115561094, - "coeff4": 0.0005079143890093923, - "coeff5": -0.00022917837124757112, - "coeff6": 0.00043735739634727995, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.030237238, - "ref_cond_fluid_flow": 0.030237238, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 18.5, - "y_min": 0.20073891625615764, - "x_max": 42.9, - "y_max": 1.0, - "out_min": 0.2, - "out_max": 1.0, - "coeff1": 0.3432720376494385, - "coeff2": -0.023654104602831134, - "coeff3": 0.001010996888084785, - "coeff4": 0.12560241312817744, - "coeff5": 1.2563540532759863, - "coeff6": -0.0017341863381094718, - "coeff7": -1.386539674215326e-5, - "coeff8": -0.42330230168584015, - "coeff9": 0.0002540325592634523, - "coeff10": -0.010659295560573904 - } - } - }, - "356": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 80.63, - "ref_cap_unit": "ton", - "full_eff": 5.064, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.014785187, - "ref_cond_fluid_flow": 0.014785187, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.6, - "x_max": 10.0, - "y_max": 43.0, - "out_min": 0.57, - "out_max": 1.45, - "coeff1": 0.7200631347678417, - "coeff2": -0.0009887609807631148, - "coeff3": -0.0003094182841975844, - "coeff4": -0.01516138195800485, - "coeff5": 0.0008058603165745985, - "coeff6": -0.0005605755266658977, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.014785187, - "ref_cond_fluid_flow": 0.014785187, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.6, - "x_max": 10.0, - "y_max": 43.0, - "out_min": 0.81, - "out_max": 1.26, - "coeff1": 1.0162252345921485, - "coeff2": 0.02509261088412401, - "coeff3": 0.0005965432597432076, - "coeff4": 0.001224407776125612, - "coeff5": -0.00021435482301269428, - "coeff6": 3.85064084545433e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.014785187, - "ref_cond_fluid_flow": 0.014785187, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 18.6, - "y_min": 0.2004264392324094, - "x_max": 43.0, - "y_max": 1.0000000000000002, - "out_min": 0.22, - "out_max": 1.0, - "coeff1": 0.25771959753343127, - "coeff2": -0.017933824944135177, - "coeff3": 0.0007892455208238844, - "coeff4": 0.4282919158970184, - "coeff5": 0.6226405454747543, - "coeff6": -0.0012794432586158543, - "coeff7": -1.1300516893245478e-5, - "coeff8": -0.09157883192720652, - "coeff9": 0.00020734127237889076, - "coeff10": -0.008159123603790308 - } - } - }, - "357": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 206.3, - "ref_cap_unit": "ton", - "full_eff": 5.624, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.036558876, - "ref_cond_fluid_flow": 0.036558876, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.7, - "x_max": 10.0, - "y_max": 43.0, - "out_min": 0.64, - "out_max": 1.45, - "coeff1": 0.7640025894440922, - "coeff2": -0.05102972832763286, - "coeff3": 0.008410575604580597, - "coeff4": -0.006935703479826777, - "coeff5": 0.0007931858825778039, - "coeff6": -0.0022307077394594296, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.036558876, - "ref_cond_fluid_flow": 0.036558876, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.7, - "x_max": 10.0, - "y_max": 43.0, - "out_min": 0.81, - "out_max": 1.22, - "coeff1": 1.0002169389232751, - "coeff2": 0.03870010402067792, - "coeff3": -0.0009296019396640674, - "coeff4": -0.001333522051022773, - "coeff5": -0.00017197945255125163, - "coeff6": 0.00016840110073344447, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.036558876, - "ref_cond_fluid_flow": 0.036558876, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 18.7, - "y_min": 0.2007168458781362, - "x_max": 43.0, - "y_max": 1.0000000000000002, - "out_min": 0.21, - "out_max": 1.0, - "coeff1": 0.46004472730884, - "coeff2": -0.03740580247646501, - "coeff3": 0.0014651498023916319, - "coeff4": 0.24211491798078721, - "coeff5": 1.1236029617378787, - "coeff6": -0.0044349917554872345, - "coeff7": -1.872284680779221e-5, - "coeff8": -0.36499751246067547, - "coeff9": 0.0002727183419924663, - "coeff10": -0.009258842589673615 - } - } - }, - "358": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 62.12, - "ref_cap_unit": "ton", - "full_eff": 4.65, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01146412, - "ref_cond_fluid_flow": 0.01146412, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 24.8, - "x_max": 10.0, - "y_max": 53.8, - "out_min": 0.66, - "out_max": 2.02, - "coeff1": 0.6896881780449577, - "coeff2": -0.0029392006300127393, - "coeff3": 0.0007361941261763011, - "coeff4": -0.010964342564479757, - "coeff5": 0.0007776662464772845, - "coeff6": -0.0011919247135701808, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.01146412, - "ref_cond_fluid_flow": 0.01146412, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 24.8, - "x_max": 10.0, - "y_max": 53.8, - "out_min": 0.72, - "out_max": 1.23, - "coeff1": 1.1198080365644365, - "coeff2": 0.04140418313082861, - "coeff3": 0.00039659822023929703, - "coeff4": -0.00812704879608539, - "coeff5": -3.1324096847164945e-5, - "coeff6": -0.00039226965114895333, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.01146412, - "ref_cond_fluid_flow": 0.01146412, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 24.8, - "y_min": 0.29878048780487804, - "x_max": 53.8, - "y_max": 1.0, - "out_min": 0.25, - "out_max": 1.0, - "coeff1": -0.18831513557587565, - "coeff2": 0.002593285816444727, - "coeff3": -2.9504257173987856e-5, - "coeff4": 1.633565277256432, - "coeff5": -1.00790487827717, - "coeff6": -0.0018709075300234008, - "coeff7": 1.1134802555543332e-7, - "coeff8": 0.5601556455508216, - "coeff9": 1.6228337424424198e-5, - "coeff10": -0.0002805221899664528 - } - } - }, - "359": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 145.0, - "ref_cap_unit": "ton", - "full_eff": 4.615, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.026921848, - "ref_cond_fluid_flow": 0.026921848, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.6, - "x_max": 10.0, - "y_max": 43.1, - "out_min": 0.69, - "out_max": 1.3, - "coeff1": 0.7217105699689534, - "coeff2": 0.00017672867326046227, - "coeff3": 0.00011061435004554657, - "coeff4": -0.0038379523791490094, - "coeff5": 0.00045948893367712593, - "coeff6": -0.0006477701492637766, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.026921848, - "ref_cond_fluid_flow": 0.026921848, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.6, - "x_max": 10.0, - "y_max": 43.1, - "out_min": 0.84, - "out_max": 1.24, - "coeff1": 1.0187308673039164, - "coeff2": 0.02759500019134628, - "coeff3": 0.0002067553567225884, - "coeff4": -0.0013812745654865899, - "coeff5": -0.0001516852671939173, - "coeff6": 0.00011483103038366181, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.026921848, - "ref_cond_fluid_flow": 0.026921848, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 18.6, - "y_min": 0.19971570717839376, - "x_max": 43.1, - "y_max": 1.0000000000000002, - "out_min": 0.21, - "out_max": 1.0, - "coeff1": 0.32095995944157385, - "coeff2": -0.02703846436328424, - "coeff3": 0.0010001918649788204, - "coeff4": 0.535902619977823, - "coeff5": 0.23535575294079458, - "coeff6": 0.002718021113579161, - "coeff7": -1.1678164699309914e-5, - "coeff8": 0.24864268334161244, - "coeff9": 0.00016057026097854375, - "coeff10": -0.011795859956711351 - } - } - }, - "360": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 133.3, - "ref_cap_unit": "ton", - "full_eff": 5.261, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02382412, - "ref_cond_fluid_flow": 0.02382412, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.7, - "x_max": 10.0, - "y_max": 43.0, - "out_min": 0.61, - "out_max": 1.46, - "coeff1": 0.8294364219108972, - "coeff2": -0.003963201329280408, - "coeff3": 0.0007463410398201656, - "coeff4": -0.021839877780799863, - "coeff5": 0.0009561119859487195, - "coeff6": -0.0010139959916497944, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.02382412, - "ref_cond_fluid_flow": 0.02382412, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.7, - "x_max": 10.0, - "y_max": 43.0, - "out_min": 0.81, - "out_max": 1.26, - "coeff1": 0.9961128437189519, - "coeff2": 0.026303604080752857, - "coeff3": 0.0005828405721756517, - "coeff4": 0.0017207990135037557, - "coeff5": -0.00021491475324377494, - "coeff6": 2.7016719082990662e-5, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.02382412, - "ref_cond_fluid_flow": 0.02382412, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 18.7, - "y_min": 0.20068027210884357, - "x_max": 43.0, - "y_max": 1.0, - "out_min": 0.24, - "out_max": 1.0, - "coeff1": 0.4313782746276266, - "coeff2": -0.03452241858709767, - "coeff3": 0.0013311349911261944, - "coeff4": 0.10777487941023899, - "coeff5": 1.2358645443449474, - "coeff6": 0.004718327259022005, - "coeff7": -1.618038175060569e-5, - "coeff8": -0.5067499459518509, - "coeff9": 4.034802754594296e-5, - "coeff10": -0.005985561541377058 - } - } - }, - "361": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 108.5, - "ref_cap_unit": "ton", - "full_eff": 5.149, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.019811583, - "ref_cond_fluid_flow": 0.019811583, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.6, - "x_max": 10.0, - "y_max": 43.1, - "out_min": 0.59, - "out_max": 1.46, - "coeff1": 0.7634711253465096, - "coeff2": -0.009158890362061134, - "coeff3": 0.0006384959389366292, - "coeff4": -0.016575492091529406, - "coeff5": 0.0008659441624725078, - "coeff6": -0.0007683118055189146, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.019811583, - "ref_cond_fluid_flow": 0.019811583, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.6, - "x_max": 10.0, - "y_max": 43.1, - "out_min": 0.82, - "out_max": 1.26, - "coeff1": 1.0316282747915475, - "coeff2": 0.026197148760130684, - "coeff3": 0.00040373926797993356, - "coeff4": -0.000970917056543126, - "coeff5": -0.00017352223962848655, - "coeff6": 0.00010242399448352285, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.019811583, - "ref_cond_fluid_flow": 0.019811583, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 18.6, - "y_min": 0.20057581573896352, - "x_max": 43.1, - "y_max": 1.0000000000000002, - "out_min": 0.21, - "out_max": 1.0, - "coeff1": 0.13380477052006154, - "coeff2": -0.013136889104032962, - "coeff3": 0.0005197688247526747, - "coeff4": 0.8025096338520125, - "coeff5": 0.05361352629988542, - "coeff6": 0.003080039658482081, - "coeff7": -5.3361396359900014e-6, - "coeff8": 0.04149136197995065, - "coeff9": -0.00011413919313212653, - "coeff10": 0.0014031301285692428 - } - } - }, - "362": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 31.48, - "ref_cap_unit": "ton", - "full_eff": 4.737, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.6, - "min_unloading": 0.6, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.005795465, - "ref_cond_fluid_flow": 0.005795465, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 24.2, - "x_max": 10.0, - "y_max": 51.1, - "out_min": 0.65, - "out_max": 1.83, - "coeff1": 0.6212843943041635, - "coeff2": -0.0022761116134562, - "coeff3": 0.0005411771213962302, - "coeff4": -0.0067121610498506595, - "coeff5": 0.0007119705201919268, - "coeff6": -0.0011534516204550075, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.005795465, - "ref_cond_fluid_flow": 0.005795465, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 24.2, - "x_max": 10.0, - "y_max": 51.1, - "out_min": 0.76, - "out_max": 1.23, - "coeff1": 1.0635416729411804, - "coeff2": 0.041615501002512545, - "coeff3": 0.0004224381832864388, - "coeff4": -0.006016592450130299, - "coeff5": -4.77661126465597e-5, - "coeff6": -0.00039774991041811696, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.005795465, - "ref_cond_fluid_flow": 0.005795465, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 24.2, - "y_min": 0.5982905982905983, - "x_max": 51.1, - "y_max": 1.0, - "out_min": 0.55, - "out_max": 1.0, - "coeff1": -0.20897380722178482, - "coeff2": 0.0026066134299032595, - "coeff3": -8.981015691199561e-6, - "coeff4": 1.306793949013083, - "coeff5": -0.1678596390476752, - "coeff6": -0.002924012019705935, - "coeff7": -6.704833789463182e-8, - "coeff8": 0.07907731975272403, - "coeff9": 2.0928131523902473e-5, - "coeff10": -0.00028792933695165335 - } - } - }, - "363": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 181.9, - "ref_cap_unit": "ton", - "full_eff": 5.463, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.032669365, - "ref_cond_fluid_flow": 0.032669365, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 17.9, - "x_max": 10.0, - "y_max": 43.7, - "out_min": 0.57, - "out_max": 1.44, - "coeff1": 0.518269912051194, - "coeff2": 0.012734263471481266, - "coeff3": 0.000541422938076918, - "coeff4": -0.0037085196211945337, - "coeff5": 0.0007164556505192157, - "coeff6": -0.0015964107610952284, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.032669365, - "ref_cond_fluid_flow": 0.032669365, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 17.9, - "x_max": 10.0, - "y_max": 43.7, - "out_min": 0.82, - "out_max": 1.24, - "coeff1": 0.7772042430245862, - "coeff2": -0.04863778670208119, - "coeff3": 0.0009712421096955345, - "coeff4": 0.027654508049551003, - "coeff5": -0.0007509401469318569, - "coeff6": 0.002015810593266711, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.032669365, - "ref_cond_fluid_flow": 0.032669365, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 17.9, - "y_min": 0.20072426280393166, - "x_max": 43.7, - "y_max": 1.0, - "out_min": 0.33, - "out_max": 1.0, - "coeff1": 0.2310686108117863, - "coeff2": 0.0019698406419743283, - "coeff3": 0.00011362113410724804, - "coeff4": 0.4062679009810426, - "coeff5": 1.3071570445119132, - "coeff6": -0.0282582196102429, - "coeff7": -6.901893947158411e-7, - "coeff8": -0.8869068595913798, - "coeff9": 4.407453104186766e-6, - "coeff10": 0.021095133662644174 - } - } - }, - "364": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 310.0, - "ref_cap_unit": "ton", - "full_eff": 5.735, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "variable", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.055710536, - "ref_cond_fluid_flow": 0.055710536, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.0, - "x_max": 10.0, - "y_max": 43.1, - "out_min": 0.63, - "out_max": 1.43, - "coeff1": 0.5037505573689749, - "coeff2": -0.013401186092750761, - "coeff3": 0.0026322993403888016, - "coeff4": 0.006819518901468341, - "coeff5": 0.0005631747317337722, - "coeff6": -0.0019019553244164688, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.055710536, - "ref_cond_fluid_flow": 0.055710536, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.0, - "x_max": 10.0, - "y_max": 43.1, - "out_min": 0.83, - "out_max": 1.08, - "coeff1": 0.6922514020832629, - "coeff2": -0.050150254672511385, - "coeff3": 0.005528262076655379, - "coeff4": 0.03691595708053469, - "coeff5": -0.0006873725214071025, - "coeff6": -0.00021446650039674223, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.055710536, - "ref_cond_fluid_flow": 0.055710536, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 18.0, - "y_min": 0.17356173238526182, - "x_max": 43.1, - "y_max": 1.0000000000000002, - "out_min": 0.32, - "out_max": 1.0, - "coeff1": -0.28170916943073476, - "coeff2": 0.02705166896318774, - "coeff3": -0.00038202327399430944, - "coeff4": 1.559288627195432, - "coeff5": 0.004803856066367018, - "coeff6": -0.0472741594654646, - "coeff7": 2.704930514010142e-6, - "coeff8": -0.2931998864971539, - "coeff9": 0.00019225369396215074, - "coeff10": 0.023711381916732485 - } - } - }, - "365": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 21.7, - "ref_cap_unit": "ton", - "full_eff": 4.642, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.6, - "min_unloading": 0.6, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.004006227, - "ref_cond_fluid_flow": 0.004006227, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 24.2, - "x_max": 10.0, - "y_max": 51.2, - "out_min": 0.64, - "out_max": 1.82, - "coeff1": 0.624666200418647, - "coeff2": -0.022278405193616346, - "coeff3": 0.0015073675109768397, - "coeff4": -0.0028317710383451156, - "coeff5": 0.0006606356591379656, - "coeff6": -0.0010956967032768388, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.004006227, - "ref_cond_fluid_flow": 0.004006227, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 24.2, - "x_max": 10.0, - "y_max": 51.2, - "out_min": 0.77, - "out_max": 1.23, - "coeff1": 1.0597236433726502, - "coeff2": 0.043681044418960036, - "coeff3": 0.0002779585234462291, - "coeff4": -0.006387285613697075, - "coeff5": -4.258731178180986e-5, - "coeff6": -0.00037675738037150396, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.004006227, - "ref_cond_fluid_flow": 0.004006227, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 24.2, - "y_min": 0.5966850828729282, - "x_max": 51.2, - "y_max": 1.0000000000000002, - "out_min": 0.55, - "out_max": 1.0, - "coeff1": -0.14127570735580525, - "coeff2": 0.006088693086772366, - "coeff3": -6.3418762448354e-5, - "coeff4": 0.9094752889856548, - "coeff5": 0.3402948920035609, - "coeff6": -0.00476050569874778, - "coeff7": -2.2599444802892725e-7, - "coeff8": -0.09525948266352158, - "coeff9": 9.067533036704592e-5, - "coeff10": -0.002390424261639046 - } - } - }, - "366": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 199.8, - "ref_cap_unit": "ton", - "full_eff": 5.372, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.035637759, - "ref_cond_fluid_flow": 0.035637759, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 34.8, - "units": "si", - "x_min": 4.4, - "y_min": 18.6, - "x_max": 10.0, - "y_max": 43.0, - "out_min": 0.61, - "out_max": 1.44, - "coeff1": -0.10512692352342173, - "coeff2": 0.19266763911167184, - "coeff3": -0.008696202335983342, - "coeff4": -0.0005891583380209092, - "coeff5": 0.0005926774835114687, - "coeff6": -0.002087691980863865, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.035637759, - "ref_cond_fluid_flow": 0.035637759, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 34.8, - "units": "si", - "x_min": 4.4, - "y_min": 18.6, - "x_max": 10.0, - "y_max": 43.0, - "out_min": 0.81, - "out_max": 1.25, - "coeff1": 1.2966704326806329, - "coeff2": -0.039592703231522586, - "coeff3": 0.003936403171424102, - "coeff4": -0.002192512295213417, - "coeff5": -0.0001773728049345592, - "coeff6": 0.00036777810505682145, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.035637759, - "ref_cond_fluid_flow": 0.035637759, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 34.8, - "units": "si", - "x_min": 18.6, - "y_min": 0.2005856515373353, - "x_max": 43.0, - "y_max": 1.0, - "out_min": 0.22, - "out_max": 1.0, - "coeff1": 0.31508209231959305, - "coeff2": -0.024168872318883233, - "coeff3": 0.0009313757396836333, - "coeff4": 0.38024622184674794, - "coeff5": 0.7594846235692199, - "coeff6": -8.877143143981928e-5, - "coeff7": -1.1513169756897304e-5, - "coeff8": -0.14508151930946794, - "coeff9": 0.00018476659394122275, - "coeff10": -0.009721554596629614 - } - } - }, - "367": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 49.54, - "ref_cap_unit": "ton", - "full_eff": 4.681, - "full_eff_unit": "cop", - "compressor_type": "scroll", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.3, - "min_unloading": 0.3, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.009136722, - "ref_cond_fluid_flow": 0.009136722, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 24.8, - "x_max": 10.0, - "y_max": 53.8, - "out_min": 0.67, - "out_max": 2.02, - "coeff1": 0.6925243892256328, - "coeff2": 0.0022025990328561895, - "coeff3": 0.000798414025577017, - "coeff4": -0.012339306225182811, - "coeff5": 0.0008085888063480212, - "coeff6": -0.0013289242436010512, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.009136722, - "ref_cond_fluid_flow": 0.009136722, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 5.6, - "y_min": 24.8, - "x_max": 10.0, - "y_max": 53.8, - "out_min": 0.72, - "out_max": 1.22, - "coeff1": 1.1004515330464164, - "coeff2": 0.03790831757050417, - "coeff3": 0.0004645165747856478, - "coeff4": -0.006718963601228152, - "coeff5": -4.959757709861235e-5, - "coeff6": -0.00033457313650556934, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.009136722, - "ref_cond_fluid_flow": 0.009136722, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 24.8, - "y_min": 0.2987012987012987, - "x_max": 53.8, - "y_max": 1.0000000000000002, - "out_min": 0.25, - "out_max": 1.0, - "coeff1": -0.17004844668895913, - "coeff2": 0.0021616997919747974, - "coeff3": -2.3491880443438407e-5, - "coeff4": 1.6255605385444287, - "coeff5": -1.083086025369436, - "coeff6": -0.0008229748601712457, - "coeff7": -5.296312162470661e-8, - "coeff8": 0.6260135005488028, - "coeff9": 2.6281742261903622e-5, - "coeff10": -0.0012834868333797883 - } - } - }, - "368": { - "eqp_type": "chiller", - "source": "1", - "model": "lct_lwt", - "ref_cap": 102.5, - "ref_cap_unit": "ton", - "full_eff": 4.789, - "full_eff_unit": "cop", - "compressor_type": "screw", - "condenser_type": "water", - "compressor_speed": "constant", - "sim_engine": "energyplus", - "min_plr": 0.2, - "min_unloading": 0.2, - "max_plr": 1.0, - "set_of_curves": { - "eir-f-t": { - "out_var": "eir-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.018937784, - "ref_cond_fluid_flow": 0.018937784, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.2, - "x_max": 10.0, - "y_max": 40.4, - "out_min": 0.56, - "out_max": 1.29, - "coeff1": 0.42923415524296415, - "coeff2": 0.00931093908565378, - "coeff3": -2.3537139966663817e-5, - "coeff4": 0.004053420190864437, - "coeff5": 0.000515279054398643, - "coeff6": -0.0010962440073432212, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "cap-f-t": { - "out_var": "cap-f-t", - "type": "bi_quad", - "ref_evap_fluid_flow": 0.018937784, - "ref_cond_fluid_flow": 0.018937784, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 4.4, - "y_min": 18.2, - "x_max": 10.0, - "y_max": 40.4, - "out_min": 0.86, - "out_max": 1.25, - "coeff1": 0.5461881182991395, - "coeff2": 0.08884531212810848, - "coeff3": -0.0020234776669528325, - "coeff4": 0.01403721903286096, - "coeff5": -0.00030270042632999327, - "coeff6": -0.0006578760097306678, - "coeff7": 0.0, - "coeff8": 0.0, - "coeff9": 0.0, - "coeff10": 0.0 - }, - "eir-f-plr": { - "out_var": "eir-f-plr", - "type": "bi_cub", - "ref_evap_fluid_flow": 0.018937784, - "ref_cond_fluid_flow": 0.018937784, - "ref_lwt": 6.666666667, - "ref_ect": 29.44444444, - "ref_lct": 35.0, - "units": "si", - "x_min": 18.2, - "y_min": 0.20056764427625354, - "x_max": 40.4, - "y_max": 1.0, - "out_min": 0.21, - "out_max": 1.0, - "coeff1": 0.2686873028685008, - "coeff2": -0.019796811457234102, - "coeff3": 0.0006992402983972781, - "coeff4": 0.30597783597399464, - "coeff5": 0.869133044359124, - "coeff6": 0.008122951518315233, - "coeff7": -1.0024306049252592e-5, - "coeff8": -0.15401274854710412, - "coeff9": 0.0003191424013906061, - "coeff10": -0.020298479111593687 - } - } - } - } \ No newline at end of file diff --git a/copper/library.py b/copper/library.py index 183291c..52f6587 100644 --- a/copper/library.py +++ b/copper/library.py @@ -10,7 +10,7 @@ import copper.chiller location = os.path.dirname(os.path.realpath(__file__)) -chiller_lib = os.path.join(location, "lib", "chiller_curves.json") +chiller_lib = os.path.join(location, "data", "chiller_curves.json") class Library: diff --git a/copper/units.py b/copper/units.py index abe5f5f..77907d2 100644 --- a/copper/units.py +++ b/copper/units.py @@ -18,46 +18,65 @@ def conversion(self, new_unit): :rtype: float """ + ton_to_kbtu = 12 + kbtu_to_kw = 3.412141633 if new_unit == "kW/ton": if self.unit == "cop": - return 12.0 / (self.value * 3.412) + return ton_to_kbtu / (self.value * kbtu_to_kw) elif self.unit == "kW/ton": return self.value elif self.unit == "eer": - return 12.0 / self.value + return ton_to_kbtu / self.value + elif self.unit == "eir": + return ton_to_kbtu * self.value / kbtu_to_kw else: return self.value elif new_unit == "cop": if self.unit == "kW/ton": - return 12.0 / self.value / 3.412 + return ton_to_kbtu / self.value / kbtu_to_kw elif self.unit == "cop": return self.value elif self.unit == "eer": - return self.value / 3.412 + return self.value / kbtu_to_kw + elif self.unit == "eir": + return 1 / self.value else: return self.value elif new_unit == "eer": if self.unit == "kW/ton": - return 12.0 / self.value + return ton_to_kbtu / self.value elif self.unit == "eer": return self.value elif self.unit == "cop": - return 3.412 * self.value + return kbtu_to_kw * self.value + elif self.unit == "eir": + return kbtu_to_kw / self.value + else: + return self.value + elif new_unit == "eir": + if self.unit == "kW/ton": + return 1 / (ton_to_kbtu / self.value / kbtu_to_kw) + elif self.unit == "eer": + return kbtu_to_kw / self.value + elif self.unit == "cop": + return 1 / self.value + elif self.unit == "eir": + return self.value else: return self.value elif new_unit == "ton": if self.unit == "kW": - return self.value * (3412 / 12000) + return self.value * (kbtu_to_kw / ton_to_kbtu) elif self.unit == "W": - return self.value * (3.412 / 12000) + return self.value * (kbtu_to_kw / (ton_to_kbtu * 1000)) elif new_unit == "kW": if self.unit == "ton": - return self.value / (3412 / 12000) + return self.value / (kbtu_to_kw / ton_to_kbtu) if self.unit == "W": return self.value / 1000 elif new_unit == "W": if self.unit == "ton": - return self.value / (3.412 / 12000) + return self.value / (kbtu_to_kw / (ton_to_kbtu * 1000)) if self.unit == "kW": return self.value * 1000 elif new_unit == "degC": diff --git a/tests/test_chiller.py b/tests/test_chiller.py index c005d33..312d076 100644 --- a/tests/test_chiller.py +++ b/tests/test_chiller.py @@ -7,7 +7,7 @@ import os location = os.path.dirname(os.path.realpath(__file__)) -chiller_lib = os.path.join(location, "../copper/lib", "chiller_curves.json") +chiller_lib = os.path.join(location, "../copper/data", "chiller_curves.json") class TestChiller(TestCase): diff --git a/tests/test_curves.py b/tests/test_curves.py index f25fa62..2a6e218 100644 --- a/tests/test_curves.py +++ b/tests/test_curves.py @@ -7,7 +7,7 @@ import os location = os.path.dirname(os.path.realpath(__file__)) -chiller_lib = os.path.join(location, "../copper/lib", "chiller_curves.json") +chiller_lib = os.path.join(location, "../copper/data", "chiller_curves.json") class TestCurves(TestCase): diff --git a/tests/test_library.py b/tests/test_library.py index efd4853..1ec08a4 100644 --- a/tests/test_library.py +++ b/tests/test_library.py @@ -4,7 +4,7 @@ import os location = os.path.dirname(os.path.realpath(__file__)) -chiller_lib = os.path.join(location, "../copper/lib", "chiller_curves.json") +chiller_lib = os.path.join(location, "../copper/data", "chiller_curves.json") class TestLibrary(TestCase): diff --git a/tests/test_units.py b/tests/test_units.py index b1073e5..c1e6177 100644 --- a/tests/test_units.py +++ b/tests/test_units.py @@ -10,23 +10,36 @@ def test_conversion(self): self.assertTrue(round(kWpton_.conversion("kW/ton"), 3) == 0.857) kWpton_ = cp.Units(3.5, "cop") self.assertTrue(round(kWpton_.conversion("kW/ton"), 3) == 1.005) + kWpton_ = cp.Units(0.213, "eir") + self.assertTrue(round(kWpton_.conversion("kW/ton"), 2) == 0.75) eer_ = cp.Units(0.75, "kW/ton") self.assertTrue(round(eer_.conversion("eer"), 3) == 16.0) eer_ = cp.Units(3.5, "cop") self.assertTrue(round(eer_.conversion("eer"), 3) == 11.942) - - COP_ = cp.Units(0.75, "kW/ton") - self.assertTrue(round(COP_.conversion("cop"), 3) == 4.689) - COP_ = cp.Units(14.0, "eer") - self.assertTrue(round(COP_.conversion("cop"), 3) == 4.103) + eer_ = cp.Units(0.213, "eir") + self.assertTrue(round(eer_.conversion("eer"), 1) == 16.0) + + cop_ = cp.Units(0.75, "kW/ton") + self.assertTrue(round(cop_.conversion("cop"), 3) == 4.689) + cop_ = cp.Units(14.0, "eer") + self.assertTrue(round(cop_.conversion("cop"), 3) == 4.103) + cop_ = cp.Units(0.213, "eir") + self.assertTrue(round(cop_.conversion("cop"), 1) == 4.7) + + eir_ = cp.Units(0.75, "kW/ton") + self.assertTrue(round(eir_.conversion("eir"), 3) == 0.213) + eir_ = cp.Units(16.0, "eer") + self.assertTrue(round(eir_.conversion("eir"), 3) == 0.213) + eir_ = cp.Units(4.7, "cop") + self.assertTrue(round(eir_.conversion("eir"), 3) == 0.213) # Power conversion ton_ = cp.Units(300.0, "ton") - self.assertTrue(round(ton_.conversion("kW"), 3) == 1055.1) + self.assertTrue(round(ton_.conversion("kW"), 1) == 1055.1) kW_ = cp.Units(130, "kW") - self.assertTrue(round(kW_.conversion("ton"), 3) == 36.963) + self.assertTrue(round(kW_.conversion("ton"), 3) == 36.965) kW_ = cp.Units(130, "kW") self.assertTrue(round(kW_.conversion("W"), 3) == 130000)