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
@@ -3,7 +3,7 @@
|
|
3
3
|
"unitary_acs": {
|
4
4
|
"data_type": "table",
|
5
5
|
"refs": [
|
6
|
-
"
|
6
|
+
"NECB 2015p1"
|
7
7
|
],
|
8
8
|
"table": [
|
9
9
|
{
|
@@ -26,7 +26,7 @@
|
|
26
26
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
27
27
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
28
28
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
29
|
-
"notes": "From NECB
|
29
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
30
30
|
},
|
31
31
|
{
|
32
32
|
"equipment_type": "Air Conditioners",
|
@@ -48,7 +48,7 @@
|
|
48
48
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
49
49
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
50
50
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
51
|
-
"notes": "From NECB
|
51
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
52
52
|
},
|
53
53
|
{
|
54
54
|
"equipment_type": "Air Conditioners",
|
@@ -70,7 +70,7 @@
|
|
70
70
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
71
71
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
72
72
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
73
|
-
"notes": "From NECB
|
73
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
74
74
|
},
|
75
75
|
{
|
76
76
|
"equipment_type": "Air Conditioners",
|
@@ -92,14 +92,14 @@
|
|
92
92
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
93
93
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
94
94
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
95
|
-
"notes": "From NECB
|
95
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
96
96
|
},
|
97
97
|
{
|
98
98
|
"equipment_type": "Air Conditioners",
|
99
99
|
"cooling_type": "AirCooled",
|
100
100
|
"heating_type": "Electric Resistance or None",
|
101
101
|
"subcategory": "Single Package",
|
102
|
-
"minimum_capacity":
|
102
|
+
"minimum_capacity": 65000.0,
|
103
103
|
"maximum_capacity": 136480.0,
|
104
104
|
"start_date": "9/9/1919",
|
105
105
|
"end_date": "2999-09-09T00:00:00+00:00",
|
@@ -114,14 +114,14 @@
|
|
114
114
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
115
115
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
116
116
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
117
|
-
"notes": "From NECB
|
117
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
118
118
|
},
|
119
119
|
{
|
120
120
|
"equipment_type": "Air Conditioners",
|
121
121
|
"cooling_type": "AirCooled",
|
122
122
|
"heating_type": "All Other",
|
123
123
|
"subcategory": "Single Package",
|
124
|
-
"minimum_capacity":
|
124
|
+
"minimum_capacity": 65000.0,
|
125
125
|
"maximum_capacity": 136480.0,
|
126
126
|
"start_date": "9/9/1919",
|
127
127
|
"end_date": "2999-09-09T00:00:00+00:00",
|
@@ -136,14 +136,14 @@
|
|
136
136
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
137
137
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
138
138
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
139
|
-
"notes": "From NECB
|
139
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
140
140
|
},
|
141
141
|
{
|
142
142
|
"equipment_type": "Air Conditioners",
|
143
143
|
"cooling_type": "AirCooled",
|
144
144
|
"heating_type": "Electric Resistance or None",
|
145
145
|
"subcategory": "Split System",
|
146
|
-
"minimum_capacity":
|
146
|
+
"minimum_capacity": 65000.0,
|
147
147
|
"maximum_capacity": 136480.0,
|
148
148
|
"start_date": "9/9/1919",
|
149
149
|
"end_date": "2999-09-09T00:00:00+00:00",
|
@@ -158,14 +158,14 @@
|
|
158
158
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
159
159
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
160
160
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
161
|
-
"notes": "From NECB
|
161
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
162
162
|
},
|
163
163
|
{
|
164
164
|
"equipment_type": "Air Conditioners",
|
165
165
|
"cooling_type": "AirCooled",
|
166
166
|
"heating_type": "All Other",
|
167
167
|
"subcategory": "Split System",
|
168
|
-
"minimum_capacity":
|
168
|
+
"minimum_capacity": 65000.0,
|
169
169
|
"maximum_capacity": 136480.0,
|
170
170
|
"start_date": "9/9/1919",
|
171
171
|
"end_date": "2999-09-09T00:00:00+00:00",
|
@@ -180,14 +180,14 @@
|
|
180
180
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
181
181
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
182
182
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
183
|
-
"notes": "From NECB
|
183
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
184
184
|
},
|
185
185
|
{
|
186
186
|
"equipment_type": "Air Conditioners",
|
187
187
|
"cooling_type": "AirCooled",
|
188
188
|
"heating_type": "Electric Resistance or None",
|
189
189
|
"subcategory": "Single Package",
|
190
|
-
"minimum_capacity":
|
190
|
+
"minimum_capacity": 136480.0,
|
191
191
|
"maximum_capacity": 238840.0,
|
192
192
|
"start_date": "9/9/1919",
|
193
193
|
"end_date": "2999-09-09T00:00:00+00:00",
|
@@ -202,14 +202,14 @@
|
|
202
202
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
203
203
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
204
204
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
205
|
-
"notes": "From NECB
|
205
|
+
"notes": "From NECB 2015, Table 5.2.12.1: CHECK THIS"
|
206
206
|
},
|
207
207
|
{
|
208
208
|
"equipment_type": "Air Conditioners",
|
209
209
|
"cooling_type": "AirCooled",
|
210
210
|
"heating_type": "All Other",
|
211
211
|
"subcategory": "Single Package",
|
212
|
-
"minimum_capacity":
|
212
|
+
"minimum_capacity": 136480.0,
|
213
213
|
"maximum_capacity": 238840.0,
|
214
214
|
"start_date": "9/9/1919",
|
215
215
|
"end_date": "2999-09-09T00:00:00+00:00",
|
@@ -224,14 +224,14 @@
|
|
224
224
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
225
225
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
226
226
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
227
|
-
"notes": "From NECB
|
227
|
+
"notes": "From NECB 2015, Table 5.2.12.1: CHECK THIS"
|
228
228
|
},
|
229
229
|
{
|
230
230
|
"equipment_type": "Air Conditioners",
|
231
231
|
"cooling_type": "AirCooled",
|
232
232
|
"heating_type": "Electric Resistance or None",
|
233
233
|
"subcategory": "Split System",
|
234
|
-
"minimum_capacity":
|
234
|
+
"minimum_capacity": 136480.0,
|
235
235
|
"maximum_capacity": 238840.0,
|
236
236
|
"start_date": "9/9/1919",
|
237
237
|
"end_date": "2999-09-09T00:00:00+00:00",
|
@@ -246,14 +246,14 @@
|
|
246
246
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
247
247
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
248
248
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
249
|
-
"notes": "From NECB
|
249
|
+
"notes": "From NECB 2015, Table 5.2.12.1: CHECK THIS"
|
250
250
|
},
|
251
251
|
{
|
252
252
|
"equipment_type": "Air Conditioners",
|
253
253
|
"cooling_type": "AirCooled",
|
254
254
|
"heating_type": "All Other",
|
255
255
|
"subcategory": "Split System",
|
256
|
-
"minimum_capacity":
|
256
|
+
"minimum_capacity": 136480.0,
|
257
257
|
"maximum_capacity": 238840.0,
|
258
258
|
"start_date": "9/9/1919",
|
259
259
|
"end_date": "2999-09-09T00:00:00+00:00",
|
@@ -268,14 +268,14 @@
|
|
268
268
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
269
269
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
270
270
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
271
|
-
"notes": "From NECB
|
271
|
+
"notes": "From NECB 2015, Table 5.2.12.1: CHECK THIS"
|
272
272
|
},
|
273
273
|
{
|
274
274
|
"equipment_type": "Air Conditioners",
|
275
275
|
"cooling_type": "AirCooled",
|
276
276
|
"heating_type": "Electric Resistance or None",
|
277
277
|
"subcategory": "Single Package",
|
278
|
-
"minimum_capacity":
|
278
|
+
"minimum_capacity": 238840.0,
|
279
279
|
"maximum_capacity": 759999.0,
|
280
280
|
"start_date": "9/9/1919",
|
281
281
|
"end_date": "2999-09-09T00:00:00+00:00",
|
@@ -290,14 +290,14 @@
|
|
290
290
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
291
291
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
292
292
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
293
|
-
"notes": "From NECB
|
293
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
294
294
|
},
|
295
295
|
{
|
296
296
|
"equipment_type": "Air Conditioners",
|
297
297
|
"cooling_type": "AirCooled",
|
298
298
|
"heating_type": "All Other",
|
299
299
|
"subcategory": "Single Package",
|
300
|
-
"minimum_capacity":
|
300
|
+
"minimum_capacity": 238840.0,
|
301
301
|
"maximum_capacity": 759999.0,
|
302
302
|
"start_date": "9/9/1919",
|
303
303
|
"end_date": "2999-09-09T00:00:00+00:00",
|
@@ -312,14 +312,14 @@
|
|
312
312
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
313
313
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
314
314
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
315
|
-
"notes": "From NECB
|
315
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
316
316
|
},
|
317
317
|
{
|
318
318
|
"equipment_type": "Air Conditioners",
|
319
319
|
"cooling_type": "AirCooled",
|
320
320
|
"heating_type": "Electric Resistance or None",
|
321
321
|
"subcategory": "Split System",
|
322
|
-
"minimum_capacity":
|
322
|
+
"minimum_capacity": 238840.0,
|
323
323
|
"maximum_capacity": 759999.0,
|
324
324
|
"start_date": "9/9/1919",
|
325
325
|
"end_date": "2999-09-09T00:00:00+00:00",
|
@@ -334,7 +334,7 @@
|
|
334
334
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
335
335
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
336
336
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
337
|
-
"notes": "From NECB
|
337
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
338
338
|
},
|
339
339
|
{
|
340
340
|
"equipment_type": "Air Conditioners",
|
@@ -356,14 +356,14 @@
|
|
356
356
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
357
357
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
358
358
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
359
|
-
"notes": "From NECB
|
359
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
360
360
|
},
|
361
361
|
{
|
362
362
|
"equipment_type": "Air Conditioners",
|
363
363
|
"cooling_type": "AirCooled",
|
364
364
|
"heating_type": "Electric Resistance or None",
|
365
365
|
"subcategory": "Single Package",
|
366
|
-
"minimum_capacity":
|
366
|
+
"minimum_capacity": 759999.0,
|
367
367
|
"maximum_capacity": 9999999.0,
|
368
368
|
"start_date": "9/9/1919",
|
369
369
|
"end_date": "2999-09-09T00:00:00+00:00",
|
@@ -378,14 +378,14 @@
|
|
378
378
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
379
379
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
380
380
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
381
|
-
"notes": "From NECB
|
381
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
382
382
|
},
|
383
383
|
{
|
384
384
|
"equipment_type": "Air Conditioners",
|
385
385
|
"cooling_type": "AirCooled",
|
386
386
|
"heating_type": "All Other",
|
387
387
|
"subcategory": "Single Package",
|
388
|
-
"minimum_capacity":
|
388
|
+
"minimum_capacity": 759999.0,
|
389
389
|
"maximum_capacity": 9999999.0,
|
390
390
|
"start_date": "9/9/1919",
|
391
391
|
"end_date": "2999-09-09T00:00:00+00:00",
|
@@ -400,14 +400,14 @@
|
|
400
400
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
401
401
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
402
402
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
403
|
-
"notes": "From NECB
|
403
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
404
404
|
},
|
405
405
|
{
|
406
406
|
"equipment_type": "Air Conditioners",
|
407
407
|
"cooling_type": "AirCooled",
|
408
408
|
"heating_type": "Electric Resistance or None",
|
409
409
|
"subcategory": "Split System",
|
410
|
-
"minimum_capacity":
|
410
|
+
"minimum_capacity": 759999.0,
|
411
411
|
"maximum_capacity": 9999999.0,
|
412
412
|
"start_date": "9/9/1919",
|
413
413
|
"end_date": "2999-09-09T00:00:00+00:00",
|
@@ -422,14 +422,14 @@
|
|
422
422
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
423
423
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
424
424
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
425
|
-
"notes": "From NECB
|
425
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
426
426
|
},
|
427
427
|
{
|
428
428
|
"equipment_type": "Air Conditioners",
|
429
429
|
"cooling_type": "AirCooled",
|
430
430
|
"heating_type": "All Other",
|
431
431
|
"subcategory": "Split System",
|
432
|
-
"minimum_capacity":
|
432
|
+
"minimum_capacity": 759999.0,
|
433
433
|
"maximum_capacity": 9999999.0,
|
434
434
|
"start_date": "9/9/1919",
|
435
435
|
"end_date": "2999-09-09T00:00:00+00:00",
|
@@ -444,7 +444,7 @@
|
|
444
444
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
445
445
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
446
446
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
447
|
-
"notes": "From NECB
|
447
|
+
"notes": "From NECB 2015, Table 5.2.12.1"
|
448
448
|
},
|
449
449
|
{
|
450
450
|
"equipment_type": "PTAC",
|
@@ -467,7 +467,7 @@
|
|
467
467
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
468
468
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
469
469
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
470
|
-
"notes": "From NECB
|
470
|
+
"notes": "From NECB 2015, Table 5.2.12.1 (page 5-16)"
|
471
471
|
},
|
472
472
|
{
|
473
473
|
"equipment_type": "PTAC",
|
@@ -490,7 +490,7 @@
|
|
490
490
|
"cool_eir_ft": "DXCOOL-NECB2011-REF-COOLEIRFT",
|
491
491
|
"cool_eir_fflow": "DXCOOL-NECB2011-REF-COOLEIRFFLOW",
|
492
492
|
"cool_plf_fplr": "DXCOOL-NECB2011-REF-COOLPLFFPLR",
|
493
|
-
"notes": "From NECB
|
493
|
+
"notes": "From NECB 2015, Table 5.2.12.1 (page 5-16)"
|
494
494
|
}
|
495
495
|
]
|
496
496
|
}
|
@@ -104,14 +104,23 @@ class NECB2015
|
|
104
104
|
|
105
105
|
# Set cooling tower properties now that the new COP of the chiller is set
|
106
106
|
if chiller_electric_eir.name.to_s.include? 'Primary Chiller'
|
107
|
-
#
|
107
|
+
# Get the cooling tower based on the condenser water loop rather than assume that there is only one cooling tower loop.
|
108
|
+
clg_towers = []
|
108
109
|
tower_cap = capacity_w * (1.0 + 1.0 / chiller_electric_eir.referenceCOP)
|
110
|
+
condenser_loop = chiller_electric_eir.condenserWaterLoop.get
|
111
|
+
condenser_loop.supplyComponents.each do |supply_comp|
|
112
|
+
if supply_comp.to_CoolingTowerSingleSpeed.is_initialized
|
113
|
+
clg_towers << supply_comp.to_CoolingTowerSingleSpeed.get
|
114
|
+
end
|
115
|
+
end
|
116
|
+
# Single speed tower model assumes 25% extra for compressor power
|
109
117
|
if (tower_cap / 1000.0) < 1750
|
110
|
-
|
118
|
+
clg_towers[0].setNumberofCells(1)
|
111
119
|
else
|
112
|
-
|
120
|
+
clg_towers[0].setNumberofCells((tower_cap / (1000 * 1750) + 0.5).round)
|
113
121
|
end
|
114
|
-
|
122
|
+
# Only apply cooling tower fan power if power is greater than 13kW. This is to avoid EnergyPlus issues with some small cooling towers.
|
123
|
+
clg_towers[0].setFanPoweratDesignAirFlowRate(0.013 * tower_cap) if (tower_cap * 0.013 > 13000.0)
|
115
124
|
end
|
116
125
|
|
117
126
|
# Append the name with size and kw/ton
|
@@ -138,7 +147,7 @@ class NECB2015
|
|
138
147
|
max_total_loop_pump_power_table = @standards_data['max_total_loop_pump_power']
|
139
148
|
plantloop.supplyComponents.each do |supplycomp|
|
140
149
|
case supplycomp.iddObjectType.valueName.to_s
|
141
|
-
when 'OS_CentralHeatPumpSystem', 'OS_Coil_Heating_WaterToAirHeatPump_EquationFit', 'OS_Coil_Heating_WaterToAirHeatPump_VariableSpeedEquationFit',
|
150
|
+
when 'OS_CentralHeatPumpSystem', 'OS_Coil_Heating_WaterToAirHeatPump_EquationFit', 'OS_Coil_Heating_WaterToAirHeatPump_VariableSpeedEquationFit',
|
142
151
|
'OS_Coil_Heating_WaterToAirHeatPump_VariableSpeedEquationFit_SpeedData', 'OS_HeatPump_PlantLoop_EIR_Heating', 'OS_HeatPump_PlantLoop_EIR_Cooling'
|
143
152
|
search_hash = { 'hydronic_system_type' => 'WSHP' }
|
144
153
|
max_powertoload = model_find_object(max_total_loop_pump_power_table, search_hash)['total_normalized_pump_power_wperkw']
|
@@ -167,7 +176,7 @@ class NECB2015
|
|
167
176
|
var_spd_pumps = pumps.select {|pump| pump.to_PumpVariableSpeed.is_initialized}
|
168
177
|
# EnergyPlus doesn't currently properly account for variable speed pumps operation in the condenser loop.
|
169
178
|
# This code is an approximation for a correction to the pump head when the loop has variable speed pumps for ground-source condenser loops.
|
170
|
-
# These estimates were confirmed with OS runs using Montreal weather file for offices, schoold, and apartment bldgs. Office estimates are
|
179
|
+
# These estimates were confirmed with OS runs using Montreal weather file for offices, schoold, and apartment bldgs. Office estimates are
|
171
180
|
# then for other bldg types.
|
172
181
|
if plantloop.name.to_s.upcase.include? "GLHX"
|
173
182
|
max_powertoload = 21.0
|