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,516 @@
1
+ {
2
+ "tables": {
3
+ "hvac_types": {
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 with exhaust ASHP 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": "MZ BU RTU Electric Heating Coil Scroll Chiller and Electric Baseboard",
355
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|",
356
+ "baseboard_type": "Electric",
357
+ "chiller_type": "Scroll",
358
+ "fan_type": "var_speed_drive",
359
+ "heating_coil_type": "Electric",
360
+ "system": "sys_6",
361
+ "needs_boiler": false
362
+ },
363
+ {
364
+ "description": "MZ BU RTU Electric Heating Coil Centrifugal Chiller and Electric Baseboard",
365
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|",
366
+ "baseboard_type": "Electric",
367
+ "chiller_type": "Centrifugal",
368
+ "fan_type": "var_speed_drive",
369
+ "heating_coil_type": "Electric",
370
+ "system": "sys_6",
371
+ "needs_boiler": false
372
+ },
373
+ {
374
+ "description": "MZ BU RTU Electric Heating Coil Rotary Screw Chiller and Electric Baseboard",
375
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|",
376
+ "baseboard_type": "Electric",
377
+ "chiller_type": "RotaryScrew",
378
+ "fan_type": "var_speed_drive",
379
+ "heating_coil_type": "Electric",
380
+ "system": "sys_6",
381
+ "needs_boiler": false
382
+ },
383
+ {
384
+ "description": "MZ BU RTU Electric Heating Coil Reciprocating Chiller and Electric Baseboard",
385
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-e|zc>none|srf>vv|",
386
+ "baseboard_type": "Electric",
387
+ "chiller_type": "Reciprocating",
388
+ "fan_type": "var_speed_drive",
389
+ "heating_coil_type": "Electric",
390
+ "system": "sys_6",
391
+ "needs_boiler": false
392
+ },
393
+ {
394
+ "description": "MZ BU RTU Electric Heating Coil Scroll Chiller and Hot Water Baseboard",
395
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|",
396
+ "baseboard_type": "Hot Water",
397
+ "chiller_type": "Scroll",
398
+ "fan_type": "var_speed_drive",
399
+ "heating_coil_type": "Electric",
400
+ "system": "sys_6",
401
+ "needs_boiler": true
402
+ },
403
+ {
404
+ "description": "MZ BU RTU Electric Heating Coil Centrifugal Chiller and Hot Water Baseboard",
405
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|",
406
+ "baseboard_type": "Hot Water",
407
+ "chiller_type": "Centrifugal",
408
+ "fan_type": "var_speed_drive",
409
+ "heating_coil_type": "Electric",
410
+ "system": "sys_6",
411
+ "needs_boiler": true
412
+ },
413
+ {
414
+ "description": "MZ BU RTU Electric Heating Coil Rotary Screw Chiller and Hot Water Baseboard",
415
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|",
416
+ "baseboard_type": "Hot Water",
417
+ "chiller_type": "RotaryScrew",
418
+ "fan_type": "var_speed_drive",
419
+ "heating_coil_type": "Electric",
420
+ "system": "sys_6",
421
+ "needs_boiler": true
422
+ },
423
+ {
424
+ "description": "MZ BU RTU Electric Heating Coil Reciprocating Chiller and Hot Water Baseboard",
425
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-e|ssf>vv|zh>b-hw|zc>none|srf>vv|",
426
+ "baseboard_type": "Hot Water",
427
+ "chiller_type": "Reciprocating",
428
+ "fan_type": "var_speed_drive",
429
+ "heating_coil_type": "Electric",
430
+ "system": "sys_6",
431
+ "needs_boiler": true
432
+ },
433
+ {
434
+ "description": "MZ BU RTU Hot Water Heating Coil Scroll Chiller and Electric Baseboard",
435
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|",
436
+ "baseboard_type": "Electric",
437
+ "chiller_type": "Scroll",
438
+ "fan_type": "var_speed_drive",
439
+ "heating_coil_type": "Hot Water",
440
+ "system": "sys_6",
441
+ "needs_boiler": true
442
+ },
443
+ {
444
+ "description": "MZ BU RTU Hot Water Heating Coil Centrifugal Chiller and Electric Baseboard",
445
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|",
446
+ "baseboard_type": "Electric",
447
+ "chiller_type": "Centrifugal",
448
+ "fan_type": "var_speed_drive",
449
+ "heating_coil_type": "Hot Water",
450
+ "system": "sys_6",
451
+ "needs_boiler": true
452
+ },
453
+ {
454
+ "description": "MZ BU RTU Hot Water Heating Coil Rotary Screw Chiller and Electric Baseboard",
455
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|",
456
+ "baseboard_type": "Electric",
457
+ "chiller_type": "RotaryScrew",
458
+ "fan_type": "var_speed_drive",
459
+ "heating_coil_type": "Hot Water",
460
+ "system": "sys_6",
461
+ "needs_boiler": true
462
+ },
463
+ {
464
+ "description": "MZ BU RTU Hot Water Heating Coil Reciprocating Chiller and Electric Baseboard",
465
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-e|zc>none|srf>vv|",
466
+ "baseboard_type": "Electric",
467
+ "chiller_type": "Reciprocating",
468
+ "fan_type": "var_speed_drive",
469
+ "heating_coil_type": "Hot Water",
470
+ "system": "sys_6",
471
+ "needs_boiler": true
472
+ },
473
+ {
474
+ "description": "MZ BU RTU Hot Water Heating Coil Scroll Chiller and Hot Water Baseboard",
475
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|",
476
+ "baseboard_type": "Hot Water",
477
+ "chiller_type": "Scroll",
478
+ "fan_type": "var_speed_drive",
479
+ "heating_coil_type": "Hot Water",
480
+ "system": "sys_6",
481
+ "needs_boiler": true
482
+ },
483
+ {
484
+ "description": "MZ BU RTU Hot Water Heating Coil Centrifugal Chiller and Hot Water Baseboard",
485
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|",
486
+ "baseboard_type": "Hot Water",
487
+ "chiller_type": "Centrifugal",
488
+ "fan_type": "var_speed_drive",
489
+ "heating_coil_type": "Hot Water",
490
+ "system": "sys_6",
491
+ "needs_boiler": true
492
+ },
493
+ {
494
+ "description": "MZ BU RTU Hot Water Heating Coil Rotary Screw Chiller and Hot Water Baseboard",
495
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|",
496
+ "baseboard_type": "Hot Water",
497
+ "chiller_type": "RotaryScrew",
498
+ "fan_type": "var_speed_drive",
499
+ "heating_coil_type": "Hot Water",
500
+ "system": "sys_6",
501
+ "needs_boiler": true
502
+ },
503
+ {
504
+ "description": "MZ BU RTU Hot Water Heating Coil Reciprocating Chiller and Hot Water Baseboard",
505
+ "name": "sys_6|mixed|shr>none|sc>c-chw|sh>c-hw|ssf>vv|zh>b-hw|zc>none|srf>vv|",
506
+ "baseboard_type": "Hot Water",
507
+ "chiller_type": "Reciprocating",
508
+ "fan_type": "var_speed_drive",
509
+ "heating_coil_type": "Hot Water",
510
+ "system": "sys_6",
511
+ "needs_boiler": true
512
+ }
513
+ ]
514
+ }
515
+ }
516
+ }