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.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/lib/openstudio-standards/btap/costing/README.md +502 -0
  3. data/lib/openstudio-standards/btap/costing/btap_costing.rb +473 -0
  4. data/lib/openstudio-standards/btap/costing/btap_measure_helper.rb +359 -0
  5. data/lib/openstudio-standards/btap/costing/btap_workflow.rb +117 -0
  6. data/lib/openstudio-standards/btap/costing/common_paths.rb +78 -0
  7. data/lib/openstudio-standards/btap/costing/common_resources/ConstructionProperties.csv +52 -0
  8. data/lib/openstudio-standards/btap/costing/common_resources/Constructions.csv +37 -0
  9. data/lib/openstudio-standards/btap/costing/common_resources/construction_sets.csv +1270 -0
  10. data/lib/openstudio-standards/btap/costing/common_resources/constructions_glazing.csv +61 -0
  11. data/lib/openstudio-standards/btap/costing/common_resources/constructions_opaque.csv +2256 -0
  12. data/lib/openstudio-standards/btap/costing/common_resources/costs.csv +1904 -0
  13. data/lib/openstudio-standards/btap/costing/common_resources/costs_local_factors.csv +2315 -0
  14. data/lib/openstudio-standards/btap/costing/common_resources/hvac_vent_ahu.csv +925 -0
  15. data/lib/openstudio-standards/btap/costing/common_resources/lighting.csv +364 -0
  16. data/lib/openstudio-standards/btap/costing/common_resources/lighting_sets.csv +2667 -0
  17. data/lib/openstudio-standards/btap/costing/common_resources/locations.csv +75 -0
  18. data/lib/openstudio-standards/btap/costing/common_resources/materials_glazing.csv +35 -0
  19. data/lib/openstudio-standards/btap/costing/common_resources/materials_hvac.csv +1699 -0
  20. data/lib/openstudio-standards/btap/costing/common_resources/materials_lighting.csv +267 -0
  21. data/lib/openstudio-standards/btap/costing/common_resources/materials_opaque.csv +164 -0
  22. data/lib/openstudio-standards/btap/costing/copy_test_results_files_to_expected_results.rb +11 -0
  23. data/lib/openstudio-standards/btap/costing/cost_building_from_file.rb +136 -0
  24. data/lib/openstudio-standards/btap/costing/costing_database_wrapper.rb +177 -0
  25. data/lib/openstudio-standards/btap/costing/daylighting_sensor_control_costing.rb +353 -0
  26. data/lib/openstudio-standards/btap/costing/dcv_costing.rb +314 -0
  27. data/lib/openstudio-standards/btap/costing/dummy.epw +8768 -0
  28. data/lib/openstudio-standards/btap/costing/dummy.osm +5320 -0
  29. data/lib/openstudio-standards/btap/costing/envelope_costing.rb +284 -0
  30. data/lib/openstudio-standards/btap/costing/heating_cooling_costing.rb +2584 -0
  31. data/lib/openstudio-standards/btap/costing/led_lighting_costing.rb +155 -0
  32. data/lib/openstudio-standards/btap/costing/lighting_costing.rb +209 -0
  33. data/lib/openstudio-standards/btap/costing/mech_sizing.json +502 -0
  34. data/lib/openstudio-standards/btap/costing/neb_end_use_prices.csv +42 -0
  35. data/lib/openstudio-standards/btap/costing/necb_2011_spacetype_info.csv +225 -0
  36. data/lib/openstudio-standards/btap/costing/necb_reference_runs.csv +28705 -0
  37. data/lib/openstudio-standards/btap/costing/nv_costing.rb +547 -0
  38. data/lib/openstudio-standards/btap/costing/parallel_tests.rb +92 -0
  39. data/lib/openstudio-standards/btap/costing/pv_ground_costing.rb +687 -0
  40. data/lib/openstudio-standards/btap/costing/shw_costing.rb +705 -0
  41. data/lib/openstudio-standards/btap/costing/test_list.txt +17 -0
  42. data/lib/openstudio-standards/btap/costing/test_run_all_test_locally.rb +26 -0
  43. data/lib/openstudio-standards/btap/costing/test_run_costing_tests.rb +80 -0
  44. data/lib/openstudio-standards/btap/costing/ventilation_costing.rb +2616 -0
  45. data/lib/openstudio-standards/constructions/modify.rb +2 -1
  46. data/lib/openstudio-standards/standards/Standards.Model.rb +39 -9
  47. data/lib/openstudio-standards/standards/ashrae_90_1_prm/ashrae_90_1_prm.Model.rb +2 -2
  48. data/lib/openstudio-standards/standards/ashrae_90_1_prm/userdata_csv/ashrae_90_1_prm.UserData.rb +6 -1
  49. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/btap_pre1980.rb +2 -27
  50. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_3_and_8_single_speed.rb +68 -27
  51. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_4.rb +64 -25
  52. data/lib/openstudio-standards/standards/necb/BTAPPRE1980/hvac_system_6.rb +9 -14
  53. data/lib/openstudio-standards/standards/necb/ECMS/hvac_systems.rb +46 -20
  54. data/lib/openstudio-standards/standards/necb/NECB2011/autozone.rb +635 -248
  55. data/lib/openstudio-standards/standards/necb/NECB2011/data/constants.json +43 -7
  56. data/lib/openstudio-standards/standards/necb/NECB2011/data/fuel_type_sets.json +7 -1
  57. data/lib/openstudio-standards/standards/necb/NECB2011/data/geometry/HighriseApartmentMult.osm +14272 -0
  58. data/lib/openstudio-standards/standards/necb/NECB2011/data/necb_2015_table_c1.json +1 -1
  59. data/lib/openstudio-standards/standards/necb/NECB2011/data/space_types.json +437 -437
  60. data/lib/openstudio-standards/standards/necb/NECB2011/data/systems.json +516 -0
  61. data/lib/openstudio-standards/standards/necb/NECB2011/data/systems_including_sys5.json +588 -0
  62. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_namer.rb +489 -0
  63. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_1_single_speed.rb +16 -6
  64. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_2_and_5.rb +48 -5
  65. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_multi_speed.rb +2 -2
  66. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_3_and_8_single_speed.rb +35 -27
  67. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_4.rb +34 -23
  68. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_system_6.rb +8 -6
  69. data/lib/openstudio-standards/standards/necb/NECB2011/hvac_systems.rb +42 -13
  70. data/lib/openstudio-standards/standards/necb/NECB2011/necb_2011.rb +214 -25
  71. data/lib/openstudio-standards/standards/necb/NECB2011/system_fuels.rb +61 -1
  72. data/lib/openstudio-standards/standards/necb/NECB2015/data/space_types.json +636 -636
  73. data/lib/openstudio-standards/standards/necb/NECB2015/data/unitary_acs.json +38 -38
  74. data/lib/openstudio-standards/standards/necb/NECB2015/hvac_systems.rb +15 -6
  75. data/lib/openstudio-standards/standards/necb/NECB2017/data/space_types.json +636 -636
  76. data/lib/openstudio-standards/standards/necb/NECB2020/data/chillers.json +71 -71
  77. data/lib/openstudio-standards/standards/necb/README.md +343 -0
  78. data/lib/openstudio-standards/standards/necb/common/btap_data.rb +190 -28
  79. data/lib/openstudio-standards/standards/necb/common/btap_datapoint.rb +14 -5
  80. data/lib/openstudio-standards/standards/necb/common/eccc_electric_grid_intensity_20250311.csv +14 -0
  81. data/lib/openstudio-standards/standards/necb/common/nir_gas_grid_intensity_20250311.csv +14 -0
  82. data/lib/openstudio-standards/standards/necb/common/system_types.yaml +0 -0
  83. data/lib/openstudio-standards/utilities/logging.rb +18 -14
  84. data/lib/openstudio-standards/version.rb +1 -1
  85. data/lib/openstudio-standards/weather/modify.rb +2 -2
  86. data/lib/openstudio-standards.rb +12 -0
  87. metadata +53 -2
@@ -0,0 +1,588 @@
1
+ {
2
+ "tables": {
3
+ "hvac_types_with_sys5": {
4
+ "data_type": "table",
5
+ "refs": [
6
+ "assumption"
7
+ ],
8
+ "table":[
9
+ {
10
+ "description": "PSZ RTU ASHP with Gas and ASHP Coils and Hot Water Baseboard with Gas Reheat",
11
+ "name": "sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|",
12
+ "baseboard_type": "Hot Water",
13
+ "mau_heating_type": "DX",
14
+ "mau_type": true,
15
+ "multispeed": false,
16
+ "necb_reference_hp": true,
17
+ "necb_reference_hp_supp_fuel": "NaturalGas",
18
+ "system": "sys_1",
19
+ "needs_boiler": true
20
+ },
21
+ {
22
+ "description": "PSZ RTU ASHP with Gas and ASHP Coils and Electric Baseboard with Gas Reheat",
23
+ "name": "sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|",
24
+ "baseboard_type": "Electric",
25
+ "mau_heating_type": "DX",
26
+ "mau_type": true,
27
+ "multispeed": false,
28
+ "necb_reference_hp": true,
29
+ "necb_reference_hp_supp_fuel": "NaturalGas",
30
+ "system": "sys_1",
31
+ "needs_boiler": false
32
+ },
33
+ {
34
+ "description": "PSZ RTU ASHP with Electric and ASHP Coils and Hot Water Baseboard with Electric Reheat",
35
+ "name": "sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|",
36
+ "baseboard_type": "Hot Water",
37
+ "mau_heating_type": "DX",
38
+ "mau_type": true,
39
+ "multispeed": false,
40
+ "necb_reference_hp": true,
41
+ "necb_reference_hp_supp_fuel": "Electricity",
42
+ "system": "sys_1",
43
+ "needs_boiler": true
44
+ },
45
+ {
46
+ "description": "PSZ RTU ASHP with Electric and ASHP Coils and Electric Baseboard with Electric Reheat",
47
+ "name": "sys_1|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|",
48
+ "baseboard_type": "Electric",
49
+ "mau_heating_type": "DX",
50
+ "mau_type": true,
51
+ "multispeed": false,
52
+ "necb_reference_hp": true,
53
+ "necb_reference_hp_supp_fuel": "Electricity",
54
+ "system": "sys_1",
55
+ "needs_boiler": false
56
+ },
57
+ {
58
+ "description": "PSZ MAU Hot Water and DX Coils and Hot Water Baseboard with PTAC",
59
+ "name": "sys_1|doas|shr>none|sc>dx|sh>c-hw|ssf>cv|zh>b-hw|zc>ptac|srf>none|",
60
+ "baseboard_type": "Hot Water",
61
+ "mau_heating_type": "Hot Water",
62
+ "mau_type": true,
63
+ "multispeed": false,
64
+ "necb_reference_hp": false,
65
+ "necb_reference_hp_supp_fuel": "None",
66
+ "system": "sys_1",
67
+ "needs_boiler": true
68
+ },
69
+ {
70
+ "description": "PSZ MAU Hot Water and DX Coils and Electric Baseboard with PTAC",
71
+ "name": "sys_1|doas|shr>none|sc>dx|sh>c-hw|ssf>cv|zh>b-e|zc>ptac|srf>none|",
72
+ "baseboard_type": "Electric",
73
+ "mau_heating_type": "Hot Water",
74
+ "mau_type": true,
75
+ "multispeed": false,
76
+ "necb_reference_hp": false,
77
+ "necb_reference_hp_supp_fuel": "None",
78
+ "system": "sys_1",
79
+ "needs_boiler": true
80
+ },
81
+ {
82
+ "description": "PSZ MAU Electric and DX Coils and Hot Water Baseboard with PTAC",
83
+ "name": "sys_1|doas|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-hw|zc>ptac|srf>none|",
84
+ "baseboard_type": "Hot Water",
85
+ "mau_heating_type": "Electric",
86
+ "mau_type": true,
87
+ "multispeed": false,
88
+ "necb_reference_hp": false,
89
+ "necb_reference_hp_supp_fuel": "None",
90
+ "system": "sys_1",
91
+ "needs_boiler": true
92
+ },
93
+ {
94
+ "description": "PSZ MAU Electric and DX Coils and Electric Baseboard with PTAC",
95
+ "name": "sys_1|doas|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>ptac|srf>none|",
96
+ "baseboard_type": "Electric",
97
+ "mau_heating_type": "Electric",
98
+ "mau_type": true,
99
+ "multispeed": false,
100
+ "necb_reference_hp": false,
101
+ "necb_reference_hp_supp_fuel": "None",
102
+ "system": "sys_1",
103
+ "needs_boiler": false
104
+ },
105
+ {
106
+ "description": "FPFC MAU DX Coils with Scroll Chiller",
107
+ "name": "sys_2|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|",
108
+ "chiller_type": "Scroll",
109
+ "fan_coil_type": "FPFC",
110
+ "mau_cooling_type": "DX",
111
+ "system": "sys_2",
112
+ "needs_boiler": true
113
+ },
114
+ {
115
+ "description": "FPFC MAU DX Coils with Centrifugal Chiller",
116
+ "name": "sys_2|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|",
117
+ "chiller_type": "Centrifugal",
118
+ "fan_coil_type": "FPFC",
119
+ "mau_cooling_type": "DX",
120
+ "system": "sys_2",
121
+ "needs_boiler": true
122
+ },
123
+ {
124
+ "description": "FPFC MAU DX Coils with Rotary Screw Chiller",
125
+ "name": "sys_2|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|",
126
+ "chiller_type": "RotaryScrew",
127
+ "fan_coil_type": "FPFC",
128
+ "mau_cooling_type": "DX",
129
+ "system": "sys_2",
130
+ "needs_boiler": true
131
+ },
132
+ {
133
+ "description": "FPFC MAU DX Coils with Reciprocating Chiller",
134
+ "name": "sys_2|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|",
135
+ "chiller_type": "Reciprocating",
136
+ "fan_coil_type": "FPFC",
137
+ "mau_cooling_type": "DX",
138
+ "system": "sys_2",
139
+ "needs_boiler": true
140
+ },
141
+ {
142
+ "description": "FPFC MAU Chilled Water Coils with Scroll Chiller",
143
+ "name": "sys_2|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|",
144
+ "chiller_type": "Scroll",
145
+ "fan_coil_type": "FPFC",
146
+ "mau_cooling_type": "Hydronic",
147
+ "system": "sys_2",
148
+ "needs_boiler": true
149
+ },
150
+ {
151
+ "description": "FPFC MAU Chilled Water Coils with Centrifugal Chiller",
152
+ "name": "sys_2|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|",
153
+ "chiller_type": "Centrifugal",
154
+ "fan_coil_type": "FPFC",
155
+ "mau_cooling_type": "Hydronic",
156
+ "system": "sys_2",
157
+ "needs_boiler": true
158
+ },
159
+ {
160
+ "description": "FPFC MAU Chilled Water Coils with Rotary Screw Chiller",
161
+ "name": "sys_2|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|",
162
+ "chiller_type": "RotaryScrew",
163
+ "fan_coil_type": "FPFC",
164
+ "mau_cooling_type": "Hydronic",
165
+ "system": "sys_2",
166
+ "needs_boiler": true
167
+ },
168
+ {
169
+ "description": "FPFC MAU Chilled Water Coils with Reciprocating Chiller",
170
+ "name": "sys_2|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>fpfc|zc>fpfc|srf>none|",
171
+ "chiller_type": "Reciprocating",
172
+ "fan_coil_type": "FPFC",
173
+ "mau_cooling_type": "Hydronic",
174
+ "system": "sys_2",
175
+ "needs_boiler": true
176
+ },
177
+ {
178
+ "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Hot Water Baseboard",
179
+ "name": "sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|",
180
+ "baseboard_type": "Hot Water",
181
+ "heating_coil_type": "DX",
182
+ "mau_type": true,
183
+ "multispeed": false,
184
+ "necb_reference_hp": true,
185
+ "necb_reference_hp_supp_fuel": "NaturalGas",
186
+ "system": "sys_3",
187
+ "needs_boiler": true
188
+ },
189
+ {
190
+ "description": "PSZ RTU ASHP with Gas and ASHP with Gas Supp. Heat Coils and Electric Baseboard",
191
+ "name": "sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|",
192
+ "baseboard_type": "Electric",
193
+ "heating_coil_type": "DX",
194
+ "mau_type": true,
195
+ "multispeed": false,
196
+ "necb_reference_hp": true,
197
+ "necb_reference_hp_supp_fuel": "NaturalGas",
198
+ "system": "sys_3",
199
+ "needs_boiler": false
200
+ },
201
+ {
202
+ "description": "PSZ RTU ASHP with Electric and ASHP with Electric Supp. Heat Coils and Hot Water Baseboard",
203
+ "name": "sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|",
204
+ "baseboard_type": "Hot Water",
205
+ "heating_coil_type": "DX",
206
+ "mau_type": true,
207
+ "multispeed": false,
208
+ "necb_reference_hp": true,
209
+ "necb_reference_hp_supp_fuel": "Electricity",
210
+ "system": "sys_3",
211
+ "needs_boiler": true
212
+ },
213
+ {
214
+ "description": "PSZ RTU ASHP with Electric and ASHP with Electric Supp. Heat Coils and Electric Baseboard",
215
+ "name": "sys_3|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|",
216
+ "baseboard_type": "Electric",
217
+ "heating_coil_type": "DX",
218
+ "mau_type": true,
219
+ "multispeed": false,
220
+ "necb_reference_hp": true,
221
+ "necb_reference_hp_supp_fuel": "Electricity",
222
+ "system": "sys_3",
223
+ "needs_boiler": false
224
+ },
225
+ {
226
+ "description": "PSZ RTU Gas and DX Coils and Hot Water Baseboard",
227
+ "name": "sys_3|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|",
228
+ "baseboard_type": "Hot Water",
229
+ "heating_coil_type": "Gas",
230
+ "mau_type": true,
231
+ "multispeed": false,
232
+ "necb_reference_hp": false,
233
+ "necb_reference_hp_supp_fuel": "None",
234
+ "system": "sys_3",
235
+ "needs_boiler": true
236
+ },
237
+ {
238
+ "description": "PSZ RTU Gas and DX Coils and Electric Baseboard",
239
+ "name": "sys_3|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-e|zc>none|srf>none|",
240
+ "baseboard_type": "Electric",
241
+ "heating_coil_type": "Gas",
242
+ "mau_type": true,
243
+ "multispeed": false,
244
+ "necb_reference_hp": false,
245
+ "necb_reference_hp_supp_fuel": "None",
246
+ "system": "sys_3",
247
+ "needs_boiler": false
248
+ },
249
+ {
250
+ "description": "PSZ RTU Electric and DX Coils and Hot Water Baseboard",
251
+ "name": "sys_3|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|",
252
+ "baseboard_type": "Hot Water",
253
+ "heating_coil_type": "Electric",
254
+ "mau_type": true,
255
+ "multispeed": false,
256
+ "necb_reference_hp": false,
257
+ "necb_reference_hp_supp_fuel": "None",
258
+ "system": "sys_3",
259
+ "needs_boiler": true
260
+ },
261
+ {
262
+ "description": "PSZ RTU Electric and DX Coils and Electric Baseboard",
263
+ "name": "sys_3|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none|",
264
+ "baseboard_type": "Electric",
265
+ "heating_coil_type": "Electric",
266
+ "mau_type": true,
267
+ "multispeed": false,
268
+ "necb_reference_hp": false,
269
+ "necb_reference_hp_supp_fuel": "None",
270
+ "system": "sys_3",
271
+ "needs_boiler": false
272
+ },
273
+ {
274
+ "description": "PSZ RTU ASHP with exhaust with Gas and ASHP with Gas Supp. Heat Coils and Hot Water Baseboard",
275
+ "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|",
276
+ "baseboard_type": "Hot Water",
277
+ "heating_coil_type": "DX",
278
+ "necb_reference_hp": true,
279
+ "necb_reference_hp_supp_fuel": "NaturalGas",
280
+ "system": "sys_4",
281
+ "needs_boiler": true
282
+ },
283
+ {
284
+ "description": "PSZ RTU with exhaust ASHP with Gas and ASHP with Gas Supp. Heat Coils and Electric Baseboard",
285
+ "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-g|ssf>cv|zh>b-e|zc>none|srf>none|",
286
+ "baseboard_type": "Electric",
287
+ "heating_coil_type": "DX",
288
+ "necb_reference_hp": true,
289
+ "necb_reference_hp_supp_fuel": "NaturalGas",
290
+ "system": "sys_4",
291
+ "needs_boiler": false
292
+ },
293
+ {
294
+ "description": "PSZ RTU with exhaust ASHP with Electric and ASHP with Electric Supp. Heat Coils and Hot Water Baseboard",
295
+ "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|",
296
+ "baseboard_type": "Hot Water",
297
+ "heating_coil_type": "DX",
298
+ "necb_reference_hp": true,
299
+ "necb_reference_hp_supp_fuel": "Electricity",
300
+ "system": "sys_4",
301
+ "needs_boiler": true
302
+ },
303
+ {
304
+ "description": "PSZ RTU with exhaust ASHP with Electric and ASHP with Electric Supp. Heat Coils and Electric Baseboard",
305
+ "name": "sys_4|mixed|shr>none|sc>ashp|sh>ashp>c-e|ssf>cv|zh>b-e|zc>none|srf>none|",
306
+ "baseboard_type": "Electric",
307
+ "heating_coil_type": "DX",
308
+ "necb_reference_hp": true,
309
+ "necb_reference_hp_supp_fuel": "Electricity",
310
+ "system": "sys_4",
311
+ "needs_boiler": false
312
+ },
313
+ {
314
+ "description": "PSZ RTU with exhaust Gas and DX Coils and Hot Water Baseboard",
315
+ "name": "sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-hw|zc>none|srf>none|",
316
+ "baseboard_type": "Hot Water",
317
+ "heating_coil_type": "Gas",
318
+ "necb_reference_hp": false,
319
+ "necb_reference_hp_supp_fuel": "None",
320
+ "system": "sys_4",
321
+ "needs_boiler": true
322
+ },
323
+ {
324
+ "description": "PSZ RTU with exhaust Gas and DX Coils and Electric Baseboard",
325
+ "name": "sys_4|mixed|shr>none|sc>dx|sh>c-g|ssf>cv|zh>b-e|zc>none|srf>none|",
326
+ "baseboard_type": "Electric",
327
+ "heating_coil_type": "Gas",
328
+ "necb_reference_hp": false,
329
+ "necb_reference_hp_supp_fuel": "None",
330
+ "system": "sys_4",
331
+ "needs_boiler": false
332
+ },
333
+ {
334
+ "description": "PSZ RTU with exhaust Electric and DX Coils and Hot Water Baseboard",
335
+ "name": "sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-hw|zc>none|srf>none|",
336
+ "baseboard_type": "Hot Water",
337
+ "heating_coil_type": "Electric",
338
+ "necb_reference_hp": false,
339
+ "necb_reference_hp_supp_fuel": "None",
340
+ "system": "sys_4",
341
+ "needs_boiler": true
342
+ },
343
+ {
344
+ "description": "PSZ RTU with exhaust Electric and DX Coils and Electric Baseboard",
345
+ "name": "sys_4|mixed|shr>none|sc>dx|sh>c-e|ssf>cv|zh>b-e|zc>none|srf>none|",
346
+ "baseboard_type": "Electric",
347
+ "heating_coil_type": "Electric",
348
+ "necb_reference_hp": false,
349
+ "necb_reference_hp_supp_fuel": "None",
350
+ "system": "sys_4",
351
+ "needs_boiler": false
352
+ },
353
+ {
354
+ "description": "TPFC MAU DX Coils with Scroll Chiller",
355
+ "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|",
356
+ "chiller_type": "Scroll",
357
+ "fan_coil_type": "TPFC",
358
+ "mau_cooling_type": "DX",
359
+ "system": "sys_5",
360
+ "needs_boiler": false
361
+ },
362
+ {
363
+ "description": "TPFC MAU DX Coils with Centrifugal Chiller",
364
+ "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|",
365
+ "chiller_type": "Centrifugal",
366
+ "fan_coil_type": "TPFC",
367
+ "mau_cooling_type": "DX",
368
+ "system": "sys_5",
369
+ "needs_boiler": false
370
+ },
371
+ {
372
+ "description": "TPFC MAU DX Coils with Rotary Screw Chiller",
373
+ "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|",
374
+ "chiller_type": "RotaryScrew",
375
+ "fan_coil_type": "TPFC",
376
+ "mau_cooling_type": "DX",
377
+ "system": "sys_5",
378
+ "needs_boiler": false
379
+ },
380
+ {
381
+ "description": "TPFC MAU DX Coils with Reciprocating Chiller",
382
+ "name": "sys_5|doas|shr>none|sc>dx|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|",
383
+ "chiller_type": "Reciprocating",
384
+ "fan_coil_type": "TPFC",
385
+ "mau_cooling_type": "DX",
386
+ "system": "sys_5",
387
+ "needs_boiler": false
388
+ },
389
+ {
390
+ "description": "TPFC MAU Chilled Water Coils with Scroll Chiller",
391
+ "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|",
392
+ "chiller_type": "Scroll",
393
+ "fan_coil_type": "TPFC",
394
+ "mau_cooling_type": "Hydronic",
395
+ "system": "sys_5",
396
+ "needs_boiler": false
397
+ },
398
+ {
399
+ "description": "TPFC MAU Chilled Water Coils with Centrifugal Chiller",
400
+ "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|",
401
+ "chiller_type": "Centrifugal",
402
+ "fan_coil_type": "TPFC",
403
+ "mau_cooling_type": "Hydronic",
404
+ "system": "sys_5",
405
+ "needs_boiler": false
406
+ },
407
+ {
408
+ "description": "TPFC MAU Chilled Water Coils with Rotary Screw Chiller",
409
+ "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|",
410
+ "chiller_type": "RotaryScrew",
411
+ "fan_coil_type": "TPFC",
412
+ "mau_cooling_type": "Hydronic",
413
+ "system": "sys_5",
414
+ "needs_boiler": false
415
+ },
416
+ {
417
+ "description": "TPFC MAU Chilled Water Coils with Reciprocating Chiller",
418
+ "name": "sys_5|doas|shr>none|sc>c-chw|sh>c-g|ssf>cv|zh>tpfc|zc>tpfc|srf>none|",
419
+ "chiller_type": "Reciprocating",
420
+ "fan_coil_type": "TPFC",
421
+ "mau_cooling_type": "Hydronic",
422
+ "system": "sys_5",
423
+ "needs_boiler": false
424
+ },
425
+ {
426
+ "description": "MZ BU RTU Electric Heating Coil Scroll Chiller and Electric Baseboard",
427
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|",
428
+ "baseboard_type": "Electric",
429
+ "chiller_type": "Scroll",
430
+ "fan_type": "var_speed_drive",
431
+ "heating_coil_type": "Electric",
432
+ "system": "sys_6",
433
+ "needs_boiler": false
434
+ },
435
+ {
436
+ "description": "MZ BU RTU Electric Heating Coil Centrifugal Chiller and Electric Baseboard",
437
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|",
438
+ "baseboard_type": "Electric",
439
+ "chiller_type": "Centrifugal",
440
+ "fan_type": "var_speed_drive",
441
+ "heating_coil_type": "Electric",
442
+ "system": "sys_6",
443
+ "needs_boiler": false
444
+ },
445
+ {
446
+ "description": "MZ BU RTU Electric Heating Coil Rotary Screw Chiller and Electric Baseboard",
447
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|",
448
+ "baseboard_type": "Electric",
449
+ "chiller_type": "RotaryScrew",
450
+ "fan_type": "var_speed_drive",
451
+ "heating_coil_type": "Electric",
452
+ "system": "sys_6",
453
+ "needs_boiler": false
454
+ },
455
+ {
456
+ "description": "MZ BU RTU Electric Heating Coil Reciprocating Chiller and Electric Baseboard",
457
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|",
458
+ "baseboard_type": "Electric",
459
+ "chiller_type": "Reciprocating",
460
+ "fan_type": "var_speed_drive",
461
+ "heating_coil_type": "Electric",
462
+ "system": "sys_6",
463
+ "needs_boiler": false
464
+ },
465
+ {
466
+ "description": "MZ BU RTU Electric Heating Coil Scroll Chiller and Hot Water Baseboard",
467
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|",
468
+ "baseboard_type": "Hot Water",
469
+ "chiller_type": "Scroll",
470
+ "fan_type": "var_speed_drive",
471
+ "heating_coil_type": "Electric",
472
+ "system": "sys_6",
473
+ "needs_boiler": true
474
+ },
475
+ {
476
+ "description": "MZ BU RTU Electric Heating Coil Centrifugal Chiller and Hot Water Baseboard",
477
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|",
478
+ "baseboard_type": "Hot Water",
479
+ "chiller_type": "Centrifugal",
480
+ "fan_type": "var_speed_drive",
481
+ "heating_coil_type": "Electric",
482
+ "system": "sys_6",
483
+ "needs_boiler": true
484
+ },
485
+ {
486
+ "description": "MZ BU RTU Electric Heating Coil Rotary Screw Chiller and Hot Water Baseboard",
487
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|",
488
+ "baseboard_type": "Hot Water",
489
+ "chiller_type": "RotaryScrew",
490
+ "fan_type": "var_speed_drive",
491
+ "heating_coil_type": "Electric",
492
+ "system": "sys_6",
493
+ "needs_boiler": true
494
+ },
495
+ {
496
+ "description": "MZ BU RTU Electric Heating Coil Reciprocating Chiller and Hot Water Baseboard",
497
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|",
498
+ "baseboard_type": "Hot Water",
499
+ "chiller_type": "Reciprocating",
500
+ "fan_type": "var_speed_drive",
501
+ "heating_coil_type": "Electric",
502
+ "system": "sys_6",
503
+ "needs_boiler": true
504
+ },
505
+ {
506
+ "description": "MZ BU RTU Hot Water Heating Coil Scroll Chiller and Electric Baseboard",
507
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|",
508
+ "baseboard_type": "Electric",
509
+ "chiller_type": "Scroll",
510
+ "fan_type": "var_speed_drive",
511
+ "heating_coil_type": "Hot Water",
512
+ "system": "sys_6",
513
+ "needs_boiler": true
514
+ },
515
+ {
516
+ "description": "MZ BU RTU Hot Water Heating Coil Centrifugal Chiller and Electric Baseboard",
517
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|",
518
+ "baseboard_type": "Electric",
519
+ "chiller_type": "Centrifugal",
520
+ "fan_type": "var_speed_drive",
521
+ "heating_coil_type": "Hot Water",
522
+ "system": "sys_6",
523
+ "needs_boiler": true
524
+ },
525
+ {
526
+ "description": "MZ BU RTU Hot Water Heating Coil Rotary Screw Chiller and Electric Baseboard",
527
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|",
528
+ "baseboard_type": "Electric",
529
+ "chiller_type": "RotaryScrew",
530
+ "fan_type": "var_speed_drive",
531
+ "heating_coil_type": "Hot Water",
532
+ "system": "sys_6",
533
+ "needs_boiler": true
534
+ },
535
+ {
536
+ "description": "MZ BU RTU Hot Water Heating Coil Reciprocating Chiller and Electric Baseboard",
537
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|",
538
+ "baseboard_type": "Electric",
539
+ "chiller_type": "Reciprocating",
540
+ "fan_type": "var_speed_drive",
541
+ "heating_coil_type": "Hot Water",
542
+ "system": "sys_6",
543
+ "needs_boiler": true
544
+ },
545
+ {
546
+ "description": "MZ BU RTU Hot Water Heating Coil Scroll Chiller and Hot Water Baseboard",
547
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|",
548
+ "baseboard_type": "Hot Water",
549
+ "chiller_type": "Scroll",
550
+ "fan_type": "var_speed_drive",
551
+ "heating_coil_type": "Hot Water",
552
+ "system": "sys_6",
553
+ "needs_boiler": true
554
+ },
555
+ {
556
+ "description": "MZ BU RTU Hot Water Heating Coil Centrifugal Chiller and Hot Water Baseboard",
557
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|",
558
+ "baseboard_type": "Hot Water",
559
+ "chiller_type": "Centrifugal",
560
+ "fan_type": "var_speed_drive",
561
+ "heating_coil_type": "Hot Water",
562
+ "system": "sys_6",
563
+ "needs_boiler": true
564
+ },
565
+ {
566
+ "description": "MZ BU RTU Hot Water Heating Coil Rotary Screw Chiller and Hot Water Baseboard",
567
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|",
568
+ "baseboard_type": "Hot Water",
569
+ "chiller_type": "RotaryScrew",
570
+ "fan_type": "var_speed_drive",
571
+ "heating_coil_type": "Hot Water",
572
+ "system": "sys_6",
573
+ "needs_boiler": true
574
+ },
575
+ {
576
+ "description": "MZ BU RTU Hot Water Heating Coil Reciprocating Chiller and Hot Water Baseboard",
577
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|",
578
+ "baseboard_type": "Hot Water",
579
+ "chiller_type": "Reciprocating",
580
+ "fan_type": "var_speed_drive",
581
+ "heating_coil_type": "Hot Water",
582
+ "system": "sys_6",
583
+ "needs_boiler": true
584
+ }
585
+ ]
586
+ }
587
+ }
588
+ }