openstudio-standards 0.8.3 → 0.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/openstudio-standards/btap/costing/README.md +502 -0
- data/lib/openstudio-standards/btap/costing/btap_costing.rb +473 -0
- data/lib/openstudio-standards/btap/costing/btap_measure_helper.rb +359 -0
- data/lib/openstudio-standards/btap/costing/btap_workflow.rb +117 -0
- data/lib/openstudio-standards/btap/costing/common_paths.rb +78 -0
- data/lib/openstudio-standards/btap/costing/common_resources/ConstructionProperties.csv +52 -0
- data/lib/openstudio-standards/btap/costing/common_resources/Constructions.csv +37 -0
- data/lib/openstudio-standards/btap/costing/common_resources/construction_sets.csv +1270 -0
- data/lib/openstudio-standards/btap/costing/common_resources/constructions_glazing.csv +61 -0
- data/lib/openstudio-standards/btap/costing/common_resources/constructions_opaque.csv +2256 -0
- data/lib/openstudio-standards/btap/costing/common_resources/costs.csv +1904 -0
- data/lib/openstudio-standards/btap/costing/common_resources/costs_local_factors.csv +2315 -0
- data/lib/openstudio-standards/btap/costing/common_resources/hvac_vent_ahu.csv +925 -0
- data/lib/openstudio-standards/btap/costing/common_resources/lighting.csv +364 -0
- data/lib/openstudio-standards/btap/costing/common_resources/lighting_sets.csv +2667 -0
- data/lib/openstudio-standards/btap/costing/common_resources/locations.csv +75 -0
- data/lib/openstudio-standards/btap/costing/common_resources/materials_glazing.csv +35 -0
- data/lib/openstudio-standards/btap/costing/common_resources/materials_hvac.csv +1699 -0
- data/lib/openstudio-standards/btap/costing/common_resources/materials_lighting.csv +267 -0
- data/lib/openstudio-standards/btap/costing/common_resources/materials_opaque.csv +164 -0
- data/lib/openstudio-standards/btap/costing/copy_test_results_files_to_expected_results.rb +11 -0
- data/lib/openstudio-standards/btap/costing/cost_building_from_file.rb +136 -0
- data/lib/openstudio-standards/btap/costing/costing_database_wrapper.rb +177 -0
- data/lib/openstudio-standards/btap/costing/daylighting_sensor_control_costing.rb +353 -0
- data/lib/openstudio-standards/btap/costing/dcv_costing.rb +314 -0
- data/lib/openstudio-standards/btap/costing/dummy.epw +8768 -0
- data/lib/openstudio-standards/btap/costing/dummy.osm +5320 -0
- data/lib/openstudio-standards/btap/costing/envelope_costing.rb +284 -0
- data/lib/openstudio-standards/btap/costing/heating_cooling_costing.rb +2584 -0
- data/lib/openstudio-standards/btap/costing/led_lighting_costing.rb +155 -0
- data/lib/openstudio-standards/btap/costing/lighting_costing.rb +209 -0
- data/lib/openstudio-standards/btap/costing/mech_sizing.json +502 -0
- data/lib/openstudio-standards/btap/costing/neb_end_use_prices.csv +42 -0
- data/lib/openstudio-standards/btap/costing/necb_2011_spacetype_info.csv +225 -0
- data/lib/openstudio-standards/btap/costing/necb_reference_runs.csv +28705 -0
- data/lib/openstudio-standards/btap/costing/nv_costing.rb +547 -0
- data/lib/openstudio-standards/btap/costing/parallel_tests.rb +92 -0
- data/lib/openstudio-standards/btap/costing/pv_ground_costing.rb +687 -0
- data/lib/openstudio-standards/btap/costing/shw_costing.rb +705 -0
- data/lib/openstudio-standards/btap/costing/test_list.txt +17 -0
- data/lib/openstudio-standards/btap/costing/test_run_all_test_locally.rb +26 -0
- data/lib/openstudio-standards/btap/costing/test_run_costing_tests.rb +80 -0
- data/lib/openstudio-standards/btap/costing/ventilation_costing.rb +2616 -0
- data/lib/openstudio-standards/constructions/modify.rb +2 -1
- data/lib/openstudio-standards/standards/Standards.Model.rb +39 -9
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Model.rb +2 -2
- data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/ashrae_90_1_prm.UserData.rb +6 -1
- data/lib/openstudio-standards/standards/necb/BTAPPRE1980/btap_pre1980.rb +2 -27
- data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_3_and_8_single_speed.rb +68 -27
- data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_4.rb +64 -25
- data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_6.rb +9 -14
- data/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb +46 -20
- data/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +635 -248
- data/lib/openstudio-standards/standards/necb/NECB2011/data/constants.json +43 -7
- data/lib/openstudio-standards/standards/necb/NECB2011/data/fuel_type_sets.json +7 -1
- data/lib/openstudio-standards/standards/necb/NECB2011/data/geometry/HighriseApartmentMult.osm +14272 -0
- data/lib/openstudio-standards/standards/necb/NECB2011/data/necb_2015_table_c1.json +1 -1
- data/lib/openstudio-standards/standards/necb/NECB2011/data/space_types.json +437 -437
- data/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json +516 -0
- data/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json +588 -0
- data/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb +489 -0
- data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb +16 -6
- data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb +48 -5
- data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_multi_speed.rb +2 -2
- data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb +35 -27
- data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb +34 -23
- data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb +8 -6
- data/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb +42 -13
- data/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb +214 -25
- data/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb +61 -1
- data/lib/openstudio-standards/standards/necb/NECB2015/data/space_types.json +636 -636
- data/lib/openstudio-standards/standards/necb/NECB2015/data/unitary_acs.json +38 -38
- data/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb +15 -6
- data/lib/openstudio-standards/standards/necb/NECB2017/data/space_types.json +636 -636
- data/lib/openstudio-standards/standards/necb/NECB2020/data/chillers.json +71 -71
- data/lib/openstudio-standards/standards/necb/README.md +343 -0
- data/lib/openstudio-standards/standards/necb/common/btap_data.rb +190 -28
- data/lib/openstudio-standards/standards/necb/common/btap_datapoint.rb +14 -5
- data/lib/openstudio-standards/standards/necb/common/eccc_electric_grid_intensity_20250311.csv +14 -0
- data/lib/openstudio-standards/standards/necb/common/nir_gas_grid_intensity_20250311.csv +14 -0
- data/lib/openstudio-standards/standards/necb/common/system_types.yaml +0 -0
- data/lib/openstudio-standards/utilities/logging.rb +18 -14
- data/lib/openstudio-standards/version.rb +1 -1
- data/lib/openstudio-standards/weather/modify.rb +2 -2
- data/lib/openstudio-standards.rb +12 -0
- metadata +53 -2
@@ -2,7 +2,7 @@
|
|
2
2
|
"tables": {
|
3
3
|
"chillers": {
|
4
4
|
"refs": [
|
5
|
-
"
|
5
|
+
"NECB 2020 Table 5.2.12.1.-K, Path B"
|
6
6
|
],
|
7
7
|
"table": [
|
8
8
|
{
|
@@ -12,15 +12,15 @@
|
|
12
12
|
"absorption_type": null,
|
13
13
|
"variable_speed_drive": null,
|
14
14
|
"minimum_capacity": 0.0,
|
15
|
-
"maximum_capacity":
|
15
|
+
"maximum_capacity": 75.07,
|
16
16
|
"start_date": "9/9/1919",
|
17
17
|
"end_date": "2999-09-09T00:00:00+00:00",
|
18
|
-
"minimum_full_load_efficiency": 0.
|
18
|
+
"minimum_full_load_efficiency": 0.77927,
|
19
19
|
"minimum_integrated_part_load_value": null,
|
20
20
|
"capft": "WaterCooled_Scroll_CAPFT_NECB2011",
|
21
21
|
"eirft": "WaterCooled_Scroll_EIRFT_NECB2011",
|
22
22
|
"eirfplr": "WaterCooled_Scroll_EIRFPLR_NECB2011",
|
23
|
-
"notes": "capacity in ton"
|
23
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
24
24
|
},
|
25
25
|
{
|
26
26
|
"cooling_type": "WaterCooled",
|
@@ -28,16 +28,16 @@
|
|
28
28
|
"compressor_type": "Scroll",
|
29
29
|
"absorption_type": null,
|
30
30
|
"variable_speed_drive": null,
|
31
|
-
"minimum_capacity": 75.
|
32
|
-
"maximum_capacity":
|
31
|
+
"minimum_capacity": 75.07,
|
32
|
+
"maximum_capacity": 150.13,
|
33
33
|
"start_date": "9/9/1919",
|
34
34
|
"end_date": "2999-09-09T00:00:00+00:00",
|
35
|
-
"minimum_full_load_efficiency": 0.
|
35
|
+
"minimum_full_load_efficiency": 0.74922,
|
36
36
|
"minimum_integrated_part_load_value": null,
|
37
37
|
"capft": "WaterCooled_Scroll_CAPFT_NECB2011",
|
38
38
|
"eirft": "WaterCooled_Scroll_EIRFT_NECB2011",
|
39
39
|
"eirfplr": "WaterCooled_Scroll_EIRFPLR_NECB2011",
|
40
|
-
"notes": "capacity in ton"
|
40
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
41
41
|
},
|
42
42
|
{
|
43
43
|
|
@@ -46,16 +46,16 @@
|
|
46
46
|
"compressor_type": "Scroll",
|
47
47
|
"absorption_type": null,
|
48
48
|
"variable_speed_drive": null,
|
49
|
-
"minimum_capacity": 150.
|
50
|
-
"maximum_capacity": 299.
|
49
|
+
"minimum_capacity": 150.13,
|
50
|
+
"maximum_capacity": 299.98,
|
51
51
|
"start_date": "9/9/1919",
|
52
52
|
"end_date": "2999-09-09T00:00:00+00:00",
|
53
|
-
"minimum_full_load_efficiency": 0.
|
53
|
+
"minimum_full_load_efficiency": 0.67932,
|
54
54
|
"minimum_integrated_part_load_value": null,
|
55
55
|
"capft": "WaterCooled_Scroll_CAPFT_NECB2011",
|
56
56
|
"eirft": "WaterCooled_Scroll_EIRFT_NECB2011",
|
57
57
|
"eirfplr": "WaterCooled_Scroll_EIRFPLR_NECB2011",
|
58
|
-
"notes": "capacity in ton"
|
58
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
59
59
|
},
|
60
60
|
{
|
61
61
|
"cooling_type": "WaterCooled",
|
@@ -63,16 +63,16 @@
|
|
63
63
|
"compressor_type": "Scroll",
|
64
64
|
"absorption_type": null,
|
65
65
|
"variable_speed_drive": null,
|
66
|
-
"minimum_capacity":
|
67
|
-
"maximum_capacity": 599.
|
66
|
+
"minimum_capacity": 299.98,
|
67
|
+
"maximum_capacity": 599.97,
|
68
68
|
"start_date": "9/9/1919",
|
69
69
|
"end_date": "2999-09-09T00:00:00+00:00",
|
70
|
-
"minimum_full_load_efficiency": 0.
|
70
|
+
"minimum_full_load_efficiency": 0.62433,
|
71
71
|
"minimum_integrated_part_load_value": null,
|
72
72
|
"capft": "WaterCooled_Scroll_CAPFT_NECB2011",
|
73
73
|
"eirft": "WaterCooled_Scroll_EIRFT_NECB2011",
|
74
74
|
"eirfplr": "WaterCooled_Scroll_EIRFPLR_NECB2011",
|
75
|
-
"notes": "capacity in ton"
|
75
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
76
76
|
},
|
77
77
|
{
|
78
78
|
"cooling_type": "WaterCooled",
|
@@ -80,16 +80,16 @@
|
|
80
80
|
"compressor_type": "Scroll",
|
81
81
|
"absorption_type": null,
|
82
82
|
"variable_speed_drive": null,
|
83
|
-
"minimum_capacity":
|
83
|
+
"minimum_capacity": 599.97,
|
84
84
|
"maximum_capacity": 9999.0,
|
85
85
|
"start_date": "9/9/1919",
|
86
86
|
"end_date": "2999-09-09T00:00:00+00:00",
|
87
|
-
"minimum_full_load_efficiency": 0.
|
87
|
+
"minimum_full_load_efficiency": 0.58439,
|
88
88
|
"minimum_integrated_part_load_value": null,
|
89
89
|
"capft": "WaterCooled_Scroll_CAPFT_NECB2011",
|
90
90
|
"eirft": "WaterCooled_Scroll_EIRFT_NECB2011",
|
91
91
|
"eirfplr": "WaterCooled_Scroll_EIRFPLR_NECB2011",
|
92
|
-
"notes": "capacity in ton"
|
92
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
93
93
|
},
|
94
94
|
{
|
95
95
|
"cooling_type": "WaterCooled",
|
@@ -98,15 +98,15 @@
|
|
98
98
|
"absorption_type": null,
|
99
99
|
"variable_speed_drive": null,
|
100
100
|
"minimum_capacity": 0.0,
|
101
|
-
"maximum_capacity":
|
101
|
+
"maximum_capacity": 75.07,
|
102
102
|
"start_date": "9/9/1919",
|
103
103
|
"end_date": "2999-09-09T00:00:00+00:00",
|
104
|
-
"minimum_full_load_efficiency": 0.
|
104
|
+
"minimum_full_load_efficiency": 0.77927,
|
105
105
|
"minimum_integrated_part_load_value": null,
|
106
106
|
"capft": "WaterCooled_Reciprocating_CAPFT_NECB2011",
|
107
107
|
"eirft": "WaterCooled_Reciprocating_EIRFT_NECB2011",
|
108
108
|
"eirfplr": "WaterCooled_Reciprocating_EIRFPLR_NECB2011",
|
109
|
-
"notes": "capacity in ton"
|
109
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
110
110
|
},
|
111
111
|
{
|
112
112
|
"cooling_type": "WaterCooled",
|
@@ -114,16 +114,16 @@
|
|
114
114
|
"compressor_type": "Reciprocating",
|
115
115
|
"absorption_type": null,
|
116
116
|
"variable_speed_drive": null,
|
117
|
-
"minimum_capacity": 75.
|
118
|
-
"maximum_capacity":
|
117
|
+
"minimum_capacity": 75.07,
|
118
|
+
"maximum_capacity": 150.13,
|
119
119
|
"start_date": "9/9/1919",
|
120
120
|
"end_date": "2999-09-09T00:00:00+00:00",
|
121
|
-
"minimum_full_load_efficiency": 0.
|
121
|
+
"minimum_full_load_efficiency": 0.74922,
|
122
122
|
"minimum_integrated_part_load_value": null,
|
123
123
|
"capft": "WaterCooled_Reciprocating_CAPFT_NECB2011",
|
124
124
|
"eirft": "WaterCooled_Reciprocating_EIRFT_NECB2011",
|
125
125
|
"eirfplr": "WaterCooled_Reciprocating_EIRFPLR_NECB2011",
|
126
|
-
"notes": "capacity in ton"
|
126
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
127
127
|
},
|
128
128
|
{
|
129
129
|
"cooling_type": "WaterCooled",
|
@@ -131,16 +131,16 @@
|
|
131
131
|
"compressor_type": "Reciprocating",
|
132
132
|
"absorption_type": null,
|
133
133
|
"variable_speed_drive": null,
|
134
|
-
"minimum_capacity": 150.
|
135
|
-
"maximum_capacity": 299.
|
134
|
+
"minimum_capacity": 150.13,
|
135
|
+
"maximum_capacity": 299.98,
|
136
136
|
"start_date": "9/9/1919",
|
137
137
|
"end_date": "2999-09-09T00:00:00+00:00",
|
138
|
-
"minimum_full_load_efficiency": 0.
|
138
|
+
"minimum_full_load_efficiency": 0.67932,
|
139
139
|
"minimum_integrated_part_load_value": null,
|
140
140
|
"capft": "WaterCooled_Reciprocating_CAPFT_NECB2011",
|
141
141
|
"eirft": "WaterCooled_Reciprocating_EIRFT_NECB2011",
|
142
142
|
"eirfplr": "WaterCooled_Reciprocating_EIRFPLR_NECB2011",
|
143
|
-
"notes": "capacity in ton"
|
143
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
144
144
|
},
|
145
145
|
{
|
146
146
|
"cooling_type": "WaterCooled",
|
@@ -148,16 +148,16 @@
|
|
148
148
|
"compressor_type": "Reciprocating",
|
149
149
|
"absorption_type": null,
|
150
150
|
"variable_speed_drive": null,
|
151
|
-
"minimum_capacity":
|
152
|
-
"maximum_capacity": 599.
|
151
|
+
"minimum_capacity": 299.98,
|
152
|
+
"maximum_capacity": 599.97,
|
153
153
|
"start_date": "9/9/1919",
|
154
154
|
"end_date": "2999-09-09T00:00:00+00:00",
|
155
|
-
"minimum_full_load_efficiency": 0.
|
155
|
+
"minimum_full_load_efficiency": 0.62433,
|
156
156
|
"minimum_integrated_part_load_value": null,
|
157
157
|
"capft": "WaterCooled_Reciprocating_CAPFT_NECB2011",
|
158
158
|
"eirft": "WaterCooled_Reciprocating_EIRFT_NECB2011",
|
159
159
|
"eirfplr": "WaterCooled_Reciprocating_EIRFPLR_NECB2011",
|
160
|
-
"notes": "capacity in ton"
|
160
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
161
161
|
},
|
162
162
|
{
|
163
163
|
"cooling_type": "WaterCooled",
|
@@ -165,16 +165,16 @@
|
|
165
165
|
"compressor_type": "Reciprocating",
|
166
166
|
"absorption_type": null,
|
167
167
|
"variable_speed_drive": null,
|
168
|
-
"minimum_capacity":
|
168
|
+
"minimum_capacity": 599.97,
|
169
169
|
"maximum_capacity": 9999.0,
|
170
170
|
"start_date": "9/9/1919",
|
171
171
|
"end_date": "2999-09-09T00:00:00+00:00",
|
172
|
-
"minimum_full_load_efficiency": 0.
|
172
|
+
"minimum_full_load_efficiency": 0.58439,
|
173
173
|
"minimum_integrated_part_load_value": null,
|
174
174
|
"capft": "WaterCooled_Reciprocating_CAPFT_NECB2011",
|
175
175
|
"eirft": "WaterCooled_Reciprocating_EIRFT_NECB2011",
|
176
176
|
"eirfplr": "WaterCooled_Reciprocating_EIRFPLR_NECB2011",
|
177
|
-
"notes": "capacity in ton"
|
177
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
178
178
|
},
|
179
179
|
{
|
180
180
|
"cooling_type": "WaterCooled",
|
@@ -183,15 +183,15 @@
|
|
183
183
|
"absorption_type": null,
|
184
184
|
"variable_speed_drive": null,
|
185
185
|
"minimum_capacity": 0.0,
|
186
|
-
"maximum_capacity":
|
186
|
+
"maximum_capacity": 75.07,
|
187
187
|
"start_date": "9/9/1919",
|
188
188
|
"end_date": "2999-09-09T00:00:00+00:00",
|
189
|
-
"minimum_full_load_efficiency": 0.
|
189
|
+
"minimum_full_load_efficiency": 0.77927,
|
190
190
|
"minimum_integrated_part_load_value": null,
|
191
191
|
"capft": "WaterCooled_Screw_CAPFT_NECB2011",
|
192
192
|
"eirft": "WaterCooled_Screw_EIRFT_NECB2011",
|
193
193
|
"eirfplr": "WaterCooled_Screw_EIRFPLR_NECB2011",
|
194
|
-
"notes": "capacity in ton"
|
194
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
195
195
|
},
|
196
196
|
{
|
197
197
|
"cooling_type": "WaterCooled",
|
@@ -199,16 +199,16 @@
|
|
199
199
|
"compressor_type": "Rotary Screw",
|
200
200
|
"absorption_type": null,
|
201
201
|
"variable_speed_drive": null,
|
202
|
-
"minimum_capacity": 75.
|
203
|
-
"maximum_capacity":
|
202
|
+
"minimum_capacity": 75.07,
|
203
|
+
"maximum_capacity": 150.13,
|
204
204
|
"start_date": "9/9/1919",
|
205
205
|
"end_date": "2999-09-09T00:00:00+00:00",
|
206
|
-
"minimum_full_load_efficiency": 0.
|
206
|
+
"minimum_full_load_efficiency": 0.74922,
|
207
207
|
"minimum_integrated_part_load_value": null,
|
208
208
|
"capft": "WaterCooled_Screw_CAPFT_NECB2011",
|
209
209
|
"eirft": "WaterCooled_Screw_EIRFT_NECB2011",
|
210
210
|
"eirfplr": "WaterCooled_Screw_EIRFPLR_NECB2011",
|
211
|
-
"notes": "capacity in ton"
|
211
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
212
212
|
},
|
213
213
|
{
|
214
214
|
"cooling_type": "WaterCooled",
|
@@ -216,16 +216,16 @@
|
|
216
216
|
"compressor_type": "Rotary Screw",
|
217
217
|
"absorption_type": null,
|
218
218
|
"variable_speed_drive": null,
|
219
|
-
"minimum_capacity": 150.
|
220
|
-
"maximum_capacity": 299.
|
219
|
+
"minimum_capacity": 150.13,
|
220
|
+
"maximum_capacity": 299.98,
|
221
221
|
"start_date": "9/9/1919",
|
222
222
|
"end_date": "2999-09-09T00:00:00+00:00",
|
223
|
-
"minimum_full_load_efficiency": 0.
|
223
|
+
"minimum_full_load_efficiency": 0.67932,
|
224
224
|
"minimum_integrated_part_load_value": null,
|
225
225
|
"capft": "WaterCooled_Screw_CAPFT_NECB2011",
|
226
226
|
"eirft": "WaterCooled_Screw_EIRFT_NECB2011",
|
227
227
|
"eirfplr": "WaterCooled_Screw_EIRFPLR_NECB2011",
|
228
|
-
"notes": "capacity in ton"
|
228
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
229
229
|
},
|
230
230
|
{
|
231
231
|
"cooling_type": "WaterCooled",
|
@@ -233,16 +233,16 @@
|
|
233
233
|
"compressor_type": "Rotary Screw",
|
234
234
|
"absorption_type": null,
|
235
235
|
"variable_speed_drive": null,
|
236
|
-
"minimum_capacity":
|
237
|
-
"maximum_capacity": 599.
|
236
|
+
"minimum_capacity": 299.98,
|
237
|
+
"maximum_capacity": 599.97,
|
238
238
|
"start_date": "9/9/1919",
|
239
239
|
"end_date": "2999-09-09T00:00:00+00:00",
|
240
|
-
"minimum_full_load_efficiency": 0.
|
240
|
+
"minimum_full_load_efficiency": 0.62433,
|
241
241
|
"minimum_integrated_part_load_value": null,
|
242
242
|
"capft": "WaterCooled_Screw_CAPFT_NECB2011",
|
243
243
|
"eirft": "WaterCooled_Screw_EIRFT_NECB2011",
|
244
244
|
"eirfplr": "WaterCooled_Screw_EIRFPLR_NECB2011",
|
245
|
-
"notes": "capacity in ton"
|
245
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
246
246
|
},
|
247
247
|
{
|
248
248
|
"cooling_type": "WaterCooled",
|
@@ -250,16 +250,16 @@
|
|
250
250
|
"compressor_type": "Rotary Screw",
|
251
251
|
"absorption_type": null,
|
252
252
|
"variable_speed_drive": null,
|
253
|
-
"minimum_capacity":
|
253
|
+
"minimum_capacity": 599.97,
|
254
254
|
"maximum_capacity": 9999.0,
|
255
255
|
"start_date": "9/9/1919",
|
256
256
|
"end_date": "2999-09-09T00:00:00+00:00",
|
257
|
-
"minimum_full_load_efficiency": 0.
|
257
|
+
"minimum_full_load_efficiency": 0.58439,
|
258
258
|
"minimum_integrated_part_load_value": null,
|
259
259
|
"capft": "WaterCooled_Screw_CAPFT_NECB2011",
|
260
260
|
"eirft": "WaterCooled_Screw_EIRFT_NECB2011",
|
261
261
|
"eirfplr": "WaterCooled_Screw_EIRFPLR_NECB2011",
|
262
|
-
"notes": "capacity in ton"
|
262
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
263
263
|
},
|
264
264
|
{
|
265
265
|
"cooling_type": "WaterCooled",
|
@@ -268,15 +268,15 @@
|
|
268
268
|
"absorption_type": null,
|
269
269
|
"variable_speed_drive": null,
|
270
270
|
"minimum_capacity": 0.0,
|
271
|
-
"maximum_capacity":
|
271
|
+
"maximum_capacity": 150.13,
|
272
272
|
"start_date": "9/9/1919",
|
273
273
|
"end_date": "2999-09-09T00:00:00+00:00",
|
274
|
-
"minimum_full_load_efficiency": 0.
|
274
|
+
"minimum_full_load_efficiency": 0.69434,
|
275
275
|
"minimum_integrated_part_load_value": null,
|
276
276
|
"capft": "WaterCooled_Centrifugal_CAPFT_NECB2011",
|
277
277
|
"eirft": "WaterCooled_Centrifugal_EIRFT_NECB2011",
|
278
278
|
"eirfplr": "WaterCooled_Centrifugal_EIRFPLR_NECB2011",
|
279
|
-
"notes": "capacity in ton"
|
279
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
280
280
|
},
|
281
281
|
{
|
282
282
|
"cooling_type": "WaterCooled",
|
@@ -284,16 +284,16 @@
|
|
284
284
|
"compressor_type": "Centrifugal",
|
285
285
|
"absorption_type": null,
|
286
286
|
"variable_speed_drive": null,
|
287
|
-
"minimum_capacity": 150.
|
288
|
-
"maximum_capacity": 299.
|
287
|
+
"minimum_capacity": 150.13,
|
288
|
+
"maximum_capacity": 299.98,
|
289
289
|
"start_date": "9/9/1919",
|
290
290
|
"end_date": "2999-09-09T00:00:00+00:00",
|
291
|
-
"minimum_full_load_efficiency": 0.
|
291
|
+
"minimum_full_load_efficiency": 0.63435,
|
292
292
|
"minimum_integrated_part_load_value": null,
|
293
293
|
"capft": "WaterCooled_Centrifugal_CAPFT_NECB2011",
|
294
294
|
"eirft": "WaterCooled_Centrifugal_EIRFT_NECB2011",
|
295
295
|
"eirfplr": "WaterCooled_Centrifugal_EIRFPLR_NECB2011",
|
296
|
-
"notes": "capacity in ton"
|
296
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
297
297
|
},
|
298
298
|
{
|
299
299
|
"cooling_type": "WaterCooled",
|
@@ -301,16 +301,16 @@
|
|
301
301
|
"compressor_type": "Centrifugal",
|
302
302
|
"absorption_type": null,
|
303
303
|
"variable_speed_drive": null,
|
304
|
-
"minimum_capacity":
|
305
|
-
"maximum_capacity":
|
304
|
+
"minimum_capacity": 299.98,
|
305
|
+
"maximum_capacity": 400.07,
|
306
306
|
"start_date": "9/9/1919",
|
307
307
|
"end_date": "2999-09-09T00:00:00+00:00",
|
308
|
-
"minimum_full_load_efficiency": 0.
|
308
|
+
"minimum_full_load_efficiency": 0.59436,
|
309
309
|
"minimum_integrated_part_load_value": null,
|
310
310
|
"capft": "WaterCooled_Centrifugal_CAPFT_NECB2011",
|
311
311
|
"eirft": "WaterCooled_Centrifugal_EIRFT_NECB2011",
|
312
312
|
"eirfplr": "WaterCooled_Centrifugal_EIRFPLR_NECB2011",
|
313
|
-
"notes": "capacity in ton"
|
313
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
314
314
|
},
|
315
315
|
{
|
316
316
|
"cooling_type": "WaterCooled",
|
@@ -318,16 +318,16 @@
|
|
318
318
|
"compressor_type": "Centrifugal",
|
319
319
|
"absorption_type": null,
|
320
320
|
"variable_speed_drive": null,
|
321
|
-
"minimum_capacity": 400.
|
321
|
+
"minimum_capacity": 400.07,
|
322
322
|
"maximum_capacity": 9999.0,
|
323
323
|
"start_date": "9/9/1919",
|
324
324
|
"end_date": "2999-09-09T00:00:00+00:00",
|
325
|
-
"minimum_full_load_efficiency": 0.
|
325
|
+
"minimum_full_load_efficiency": 0.58439,
|
326
326
|
"minimum_integrated_part_load_value": null,
|
327
327
|
"capft": "WaterCooled_Centrifugal_CAPFT_NECB2011",
|
328
328
|
"eirft": "WaterCooled_Centrifugal_EIRFT_NECB2011",
|
329
329
|
"eirfplr": "WaterCooled_Centrifugal_EIRFPLR_NECB2011",
|
330
|
-
"notes": "capacity in ton"
|
330
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
331
331
|
},
|
332
332
|
{
|
333
333
|
"cooling_type": "AirCooled",
|
@@ -339,12 +339,12 @@
|
|
339
339
|
"maximum_capacity": 9999.0,
|
340
340
|
"start_date": "9/9/1919",
|
341
341
|
"end_date": "2999-09-09T00:00:00+00:00",
|
342
|
-
"minimum_full_load_efficiency": 1.
|
342
|
+
"minimum_full_load_efficiency": 1.22709,
|
343
343
|
"minimum_integrated_part_load_value": null,
|
344
344
|
"capft": null,
|
345
345
|
"eirft": null,
|
346
346
|
"eirfplr": null,
|
347
|
-
"notes": "capacity in ton"
|
347
|
+
"notes": "capacity in ton, full load eff in kW/ton"
|
348
348
|
}
|
349
349
|
]
|
350
350
|
}
|