honeybee-openstudio 2.11.0 → 2.11.1

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.
@@ -3,7 +3,7 @@
3
3
  "servers": [],
4
4
  "info": {
5
5
  "description": "Honeybee simulation-parameter schema.",
6
- "version": "1.39.12",
6
+ "version": "1.40.0",
7
7
  "title": "Honeybee Simulation Parameter Schema",
8
8
  "contact": {
9
9
  "name": "Ladybug Tools",
@@ -53,103 +53,103 @@ class OpenStudio::Model::Model
53
53
 
54
54
  case system_type
55
55
 
56
- when 'Baseboard electric'
56
+ when 'ElectricBaseboard'
57
57
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
58
58
 
59
- when 'Baseboard gas boiler'
59
+ when 'BoilerBaseboard'
60
60
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
61
61
 
62
- when 'Baseboard central air source heat pump'
62
+ when 'ASHPBaseboard'
63
63
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'AirSourceHeatPump', znht = nil, cl = nil, heated_zones)
64
64
 
65
- when 'Baseboard district hot water'
65
+ when 'DHWBaseboard'
66
66
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'DistrictHeating', znht = nil, cl = nil, heated_zones)
67
67
 
68
- when 'Direct evap coolers with baseboard electric'
68
+ when 'EvapCoolers_ElectricBaseboard'
69
69
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
70
70
  standard.model_add_hvac_system(self, 'Evaporative Cooler', ht = nil, znht = nil, cl = 'Electricity', cooled_zones)
71
71
 
72
- when 'Direct evap coolers with baseboard gas boiler'
72
+ when 'EvapCoolers_BoilerBaseboard'
73
73
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
74
74
  standard.model_add_hvac_system(self, 'Evaporative Cooler', ht = nil, znht = nil, cl = 'Electricity', cooled_zones)
75
75
 
76
- when 'Direct evap coolers with baseboard central air source heat pump'
76
+ when 'EvapCoolers_ASHPBaseboard'
77
77
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'AirSourceHeatPump', znht = nil, cl = nil, heated_zones)
78
78
  standard.model_add_hvac_system(self, 'Evaporative Cooler', ht = nil, znht = nil, cl = 'Electricity', cooled_zones)
79
79
 
80
- when 'Direct evap coolers with baseboard district hot water'
80
+ when 'EvapCoolers_DHWBaseboard'
81
81
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'DistrictHeating', znht = nil, cl = nil, heated_zones)
82
82
  standard.model_add_hvac_system(self, 'Evaporative Cooler', ht = nil, znht = nil, cl = 'Electricity', cooled_zones)
83
83
 
84
- when 'Direct evap coolers with forced air furnace'
84
+ when 'EvapCoolers_Furnace'
85
85
  # Using unit heater to represent forced air furnace to limit to one airloop per thermal zone.
86
86
  standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
87
87
  standard.model_add_hvac_system(self, 'Evaporative Cooler', ht = nil, znht = nil, cl = 'Electricity', cooled_zones)
88
88
 
89
- when 'Direct evap coolers with gas unit heaters'
89
+ when 'EvapCoolers_UnitHeaters'
90
90
  standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
91
91
  standard.model_add_hvac_system(self, 'Evaporative Cooler', ht = nil, znht = nil, cl = 'Electricity', cooled_zones)
92
92
 
93
- when 'Direct evap coolers with no heat'
93
+ when 'EvapCoolers'
94
94
  standard.model_add_hvac_system(self, 'Evaporative Cooler', ht = nil, znht = nil, cl = 'Electricity', cooled_zones)
95
95
 
96
- when 'DOAS with fan coil chiller with boiler'
96
+ when 'DOAS_FCU_Chiller_Boiler'
97
97
  standard.model_add_hvac_system(self, 'DOAS', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones)
98
98
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones,
99
99
  zone_equipment_ventilation: false)
100
100
 
101
- when 'DOAS with fan coil chiller with central air source heat pump'
101
+ when 'DOAS_FCU_Chiller_ASHP'
102
102
  standard.model_add_hvac_system(self, 'DOAS', ht = 'AirSourceHeatPump', znht = nil, cl = 'Electricity', zones)
103
103
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'AirSourceHeatPump', znht = nil, cl = 'Electricity', zones,
104
104
  zone_equipment_ventilation: false)
105
105
 
106
- when 'DOAS with fan coil chiller with district hot water'
106
+ when 'DOAS_FCU_Chiller_DHW'
107
107
  standard.model_add_hvac_system(self, 'DOAS', ht = 'DistrictHeating', znht = nil, cl = 'Electricity', zones)
108
108
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'DistrictHeating', znht = nil, cl = 'Electricity', zones,
109
109
  zone_equipment_ventilation: false)
110
110
 
111
- when 'DOAS with fan coil chiller with baseboard electric'
111
+ when 'DOAS_FCU_Chiller_ElectricBaseboard'
112
112
  standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'Electricity', zones,
113
113
  air_loop_heating_type: nil)
114
114
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones,
115
115
  zone_equipment_ventilation: false)
116
116
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
117
117
 
118
- when 'DOAS with fan coil chiller with gas unit heaters'
118
+ when 'DOAS_FCU_Chiller_GasHeaters'
119
119
  standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'Electricity', zones,
120
120
  air_loop_heating_type: nil)
121
121
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones,
122
122
  zone_equipment_ventilation: false)
123
123
  standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
124
124
 
125
- when 'DOAS with fan coil chiller with no heat'
125
+ when 'DOAS_FCU_Chiller'
126
126
  standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'Electricity', zones,
127
127
  air_loop_heating_type: nil)
128
128
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones,
129
129
  zone_equipment_ventilation: false)
130
130
 
131
- when 'DOAS with fan coil air-cooled chiller with boiler'
131
+ when 'DOAS_FCU_ACChiller_Boiler'
132
132
  standard.model_add_hvac_system(self, 'DOAS', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones,
133
133
  chilled_water_loop_cooling_type: 'AirCooled')
134
134
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones,
135
135
  chilled_water_loop_cooling_type: 'AirCooled',
136
136
  zone_equipment_ventilation: false)
137
137
 
138
- when 'DOAS with fan coil air-cooled chiller with central air source heat pump'
138
+ when 'DOAS_FCU_ACChiller_ASHP'
139
139
  standard.model_add_hvac_system(self, 'DOAS', ht = 'AirSourceHeatPump', znht = nil, cl = 'Electricity', zones,
140
140
  chilled_water_loop_cooling_type: 'AirCooled')
141
141
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'AirSourceHeatPump', znht = nil, cl = 'Electricity', zones,
142
142
  chilled_water_loop_cooling_type: 'AirCooled',
143
143
  zone_equipment_ventilation: false)
144
144
 
145
- when 'DOAS with fan coil air-cooled chiller with district hot water'
145
+ when 'DOAS_FCU_ACChiller_DHW'
146
146
  standard.model_add_hvac_system(self, 'DOAS', ht = 'DistrictHeating', znht = nil, cl = 'Electricity', zones,
147
147
  chilled_water_loop_cooling_type: 'AirCooled')
148
148
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'DistrictHeating', znht = nil, cl = 'Electricity', zones,
149
149
  chilled_water_loop_cooling_type: 'AirCooled',
150
150
  zone_equipment_ventilation: false)
151
151
 
152
- when 'DOAS with fan coil air-cooled chiller with baseboard electric'
152
+ when 'DOAS_FCU_ACChiller_ElectricBaseboard'
153
153
  standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'Electricity', zones,
154
154
  chilled_water_loop_cooling_type: 'AirCooled', air_loop_heating_type: nil)
155
155
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones,
@@ -157,7 +157,7 @@ class OpenStudio::Model::Model
157
157
  zone_equipment_ventilation: false)
158
158
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
159
159
 
160
- when 'DOAS with fan coil air-cooled chiller with gas unit heaters'
160
+ when 'DOAS_FCU_ACChiller_GasHeaters'
161
161
  standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'Electricity', zones,
162
162
  chilled_water_loop_cooling_type: 'AirCooled', air_loop_heating_type: nil)
163
163
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones,
@@ -165,194 +165,194 @@ class OpenStudio::Model::Model
165
165
  zone_equipment_ventilation: false)
166
166
  standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
167
167
 
168
- when 'DOAS with fan coil air-cooled chiller with no heat'
168
+ when 'DOAS_FCU_ACChiller'
169
169
  standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'Electricity', zones,
170
170
  chilled_water_loop_cooling_type: 'AirCooled', air_loop_heating_type: nil)
171
171
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones,
172
172
  chilled_water_loop_cooling_type: 'AirCooled',
173
173
  zone_equipment_ventilation: false)
174
174
 
175
- when 'DOAS with fan coil district chilled water with boiler'
175
+ when 'DOAS_FCU_DCW_Boiler'
176
176
  standard.model_add_hvac_system(self, 'DOAS', ht = 'NaturalGas', znht = nil, cl = 'DistrictCooling', zones)
177
177
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'NaturalGas', znht = nil, cl = 'DistrictCooling', zones,
178
178
  zone_equipment_ventilation: false)
179
179
 
180
- when 'DOAS with fan coil district chilled water with central air source heat pump'
180
+ when 'DOAS_FCU_DCW_ASHP'
181
181
  standard.model_add_hvac_system(self, 'DOAS', ht = 'AirSourceHeatPump', znht = nil, cl = 'DistrictCooling', zones)
182
182
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'AirSourceHeatPump', znht = nil, cl = 'DistrictCooling', zones,
183
183
  zone_equipment_ventilation: false)
184
184
 
185
- when 'DOAS with fan coil district chilled water with district hot water'
185
+ when 'DOAS_FCU_DCW_DHW'
186
186
  standard.model_add_hvac_system(self, 'DOAS', ht = 'DistrictHeating', znht = nil, cl = 'DistrictCooling', zones)
187
187
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'DistrictHeating', znht = nil, cl = 'DistrictCooling', zones,
188
188
  zone_equipment_ventilation: false)
189
189
 
190
- when 'DOAS with fan coil district chilled water with baseboard electric'
190
+ when 'DOAS_FCU_DCW_ElectricBaseboard'
191
191
  standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'DistrictCooling', zones,
192
192
  air_loop_heating_type: nil)
193
193
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'DistrictCooling', zones,
194
194
  zone_equipment_ventilation: false)
195
195
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
196
196
 
197
- when 'DOAS with fan coil district chilled water with gas unit heaters'
197
+ when 'DOAS_FCU_DCW_GasHeaters'
198
198
  standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'DistrictCooling', zones,
199
199
  air_loop_heating_type: nil)
200
200
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'DistrictCooling', zones,
201
201
  zone_equipment_ventilation: false)
202
202
  standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
203
203
 
204
- when 'DOAS with fan coil district chilled water with no heat'
204
+ when 'DOAS_FCU_DCW'
205
205
  standard.model_add_hvac_system(self, 'DOAS', ht = nil, znht = nil, cl = 'DistrictCooling', zones,
206
206
  air_loop_heating_type: nil)
207
207
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'DistrictCooling', zones,
208
208
  zone_equipment_ventilation: false)
209
209
 
210
- when 'DOAS with VRF'
210
+ when 'DOAS_VRF'
211
211
  standard.model_add_hvac_system(self, 'DOAS', ht = 'Electricity', znht = nil, cl = 'Electricity', zones,
212
212
  air_loop_heating_type: 'DX',
213
213
  air_loop_cooling_type: 'DX')
214
214
  standard.model_add_hvac_system(self, 'VRF', ht = 'Electricity', znht = nil, cl = 'Electricity', zones)
215
215
 
216
- when 'DOAS with water source heat pumps fluid cooler with boiler'
216
+ when 'DOAS_WSHP_FluidCooler_Boiler'
217
217
  standard.model_add_hvac_system(self, 'DOAS', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones)
218
218
  standard.model_add_hvac_system(self, 'Water Source Heat Pumps', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones,
219
219
  heat_pump_loop_cooling_type: 'FluidCooler',
220
220
  zone_equipment_ventilation: false)
221
221
 
222
- when 'DOAS with water source heat pumps cooling tower with boiler'
222
+ when 'DOAS_WSHP_CoolingTower_Boiler'
223
223
  standard.model_add_hvac_system(self, 'DOAS', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones)
224
224
  standard.model_add_hvac_system(self, 'Water Source Heat Pumps', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones,
225
225
  heat_pump_loop_cooling_type: 'CoolingTower',
226
226
  zone_equipment_ventilation: false)
227
227
 
228
- when 'DOAS with water source heat pumps with ground source heat pump'
228
+ when 'DOAS_WSHP_GSHP'
229
229
  standard.model_add_hvac_system(self, 'DOAS', ht = 'Electricity', znht = nil, cl = 'Electricity', zones,
230
230
  air_loop_heating_type: 'DX',
231
231
  air_loop_cooling_type: 'DX')
232
232
  standard.model_add_hvac_system(self, 'Ground Source Heat Pumps', ht = 'Electricity', znht = nil, cl = 'Electricity', zones,
233
233
  zone_equipment_ventilation: false)
234
234
 
235
- when 'DOAS with water source heat pumps district chilled water with district hot water'
235
+ when 'DOAS_WSHP_DCW_DHW'
236
236
  standard.model_add_hvac_system(self, 'DOAS', ht = 'DistrictHeating', znht = nil, cl = 'DistrictCooling', zones)
237
237
  standard.model_add_hvac_system(self, 'Water Source Heat Pumps', ht = 'DistrictHeating', znht = nil, cl = 'DistrictCooling', zones,
238
238
  zone_equipment_ventilation: false)
239
239
 
240
240
  # ventilation provided by zone fan coil unit in fan coil systems
241
- when 'Fan coil chiller with boiler'
241
+ when 'FCU_Chiller_Boiler'
242
242
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones)
243
243
 
244
- when 'Fan coil chiller with central air source heat pump'
244
+ when 'FCU_Chiller_ASHP'
245
245
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'AirSourceHeatPump', znht = nil, cl = 'Electricity', zones)
246
246
 
247
- when 'Fan coil chiller with district hot water'
247
+ when 'FCU_Chiller_DHW'
248
248
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'DistrictHeating', znht = nil, cl = 'Electricity', zones)
249
249
 
250
- when 'Fan coil chiller with baseboard electric'
250
+ when 'FCU_Chiller_ElectricBaseboard'
251
251
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones)
252
252
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
253
253
 
254
- when 'Fan coil chiller with gas unit heaters'
254
+ when 'FCU_Chiller_GasHeaters'
255
255
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones)
256
256
  standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
257
257
 
258
- when 'Fan coil chiller with no heat'
258
+ when 'FCU_Chiller'
259
259
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones)
260
260
 
261
- when 'Fan coil air-cooled chiller with boiler'
261
+ when 'FCU_ACChiller_Boiler'
262
262
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones,
263
263
  chilled_water_loop_cooling_type: 'AirCooled')
264
264
 
265
- when 'Fan coil air-cooled chiller with central air source heat pump'
265
+ when 'FCU_ACChiller_ASHP'
266
266
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'AirSourceHeatPump', znht = nil, cl = 'Electricity', zones,
267
267
  chilled_water_loop_cooling_type: 'AirCooled')
268
268
 
269
- when 'Fan coil air-cooled chiller with district hot water'
269
+ when 'FCU_ACChiller_DHW'
270
270
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'DistrictHeating', znht = nil, cl = 'Electricity', zones,
271
271
  chilled_water_loop_cooling_type: 'AirCooled')
272
272
 
273
- when 'Fan coil air-cooled chiller with baseboard electric'
273
+ when 'FCU_ACChiller_ElectricBaseboard'
274
274
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones,
275
275
  chilled_water_loop_cooling_type: 'AirCooled')
276
276
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
277
277
 
278
- when 'Fan coil air-cooled chiller with gas unit heaters'
278
+ when 'FCU_ACChiller_GasHeaters'
279
279
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones,
280
280
  chilled_water_loop_cooling_type: 'AirCooled')
281
281
  standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
282
282
 
283
- when 'Fan coil air-cooled chiller with no heat'
283
+ when 'FCU_ACChiller'
284
284
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'Electricity', zones,
285
285
  chilled_water_loop_cooling_type: 'AirCooled')
286
286
 
287
- when 'Fan coil district chilled water with boiler'
287
+ when 'FCU_DCW_Boiler'
288
288
  standard.model_add_hvac_system(self, 'Fan Coil ', ht = 'NaturalGas', znht = nil, cl = 'DistrictCooling', zones)
289
289
 
290
- when 'Fan coil district chilled water with central air source heat pump'
290
+ when 'FCU_DCW_ASHP'
291
291
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'AirSourceHeatPump', znht = nil, cl = 'DistrictCooling', zones)
292
292
 
293
- when 'Fan coil district chilled water with district hot water'
293
+ when 'FCU_DCW_DHW'
294
294
  standard.model_add_hvac_system(self, 'Fan Coil', ht = 'DistrictHeating', znht = nil, cl = 'DistrictCooling', zones)
295
295
 
296
- when 'Fan coil district chilled water with baseboard electric'
296
+ when 'FCU_DCW_ElectricBaseboard'
297
297
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'DistrictCooling', zones)
298
298
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
299
299
 
300
- when 'Fan coil district chilled water with gas unit heaters'
300
+ when 'FCU_DCW_GasHeaters'
301
301
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'DistrictCooling', zones)
302
302
  standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
303
303
 
304
- when 'Fan coil district chilled water with no heat '
304
+ when 'FCU_DCW'
305
305
  standard.model_add_hvac_system(self, 'Fan Coil', ht = nil, znht = nil, cl = 'DistrictCooling', zones)
306
306
 
307
- when 'Forced air furnace'
307
+ when 'Furnace'
308
308
  # includes ventilation, whereas residential forced air furnace does not.
309
309
  standard.model_add_hvac_system(self, 'Forced Air Furnace', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
310
310
 
311
- when 'Gas unit heaters'
311
+ when 'GasHeaters'
312
312
  standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
313
313
 
314
- when 'PTAC with baseboard electric'
314
+ when 'PTAC_ElectricBaseboard'
315
315
  standard.model_add_hvac_system(self, 'PTAC', ht = nil, znht = nil, cl = 'Electricity', system_zones)
316
316
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
317
317
 
318
- when 'PTAC with baseboard gas boiler'
318
+ when 'PTAC_BoilerBaseboard'
319
319
  standard.model_add_hvac_system(self, 'PTAC', ht = nil, znht = nil, cl = 'Electricity', system_zones)
320
320
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
321
321
 
322
- when 'PTAC with baseboard district hot water'
322
+ when 'PTAC_DHWBaseboard'
323
323
  standard.model_add_hvac_system(self, 'PTAC', ht = nil, znht = nil, cl = 'Electricity', system_zones)
324
324
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'DistrictHeating', znht = nil, cl = nil, heated_zones)
325
325
 
326
- when 'PTAC with gas unit heaters'
326
+ when 'PTAC_GasHeaters'
327
327
  standard.model_add_hvac_system(self, 'PTAC', ht = nil, znht = nil, cl = 'Electricity', system_zones)
328
328
  standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
329
329
 
330
- when 'PTAC with electric coil'
330
+ when 'PTAC_ElectricCoil'
331
331
  standard.model_add_hvac_system(self, 'PTAC', ht = nil, znht = 'Electricity', cl = 'Electricity', system_zones)
332
332
  # use 'Baseboard electric' for heated only zones
333
333
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_only_zones)
334
334
 
335
- when 'PTAC with gas coil'
335
+ when 'PTAC_GasCoil'
336
336
  standard.model_add_hvac_system(self, 'PTAC', ht = nil, znht = 'NaturalGas', cl = 'Electricity', system_zones)
337
337
  # use 'Baseboard electric' for heated only zones
338
338
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_only_zones)
339
339
 
340
- when 'PTAC with gas boiler'
340
+ when 'PTAC_Boiler'
341
341
  standard.model_add_hvac_system(self, 'PTAC', ht = 'NaturalGas', znht = nil, cl = 'Electricity', system_zones)
342
342
  # use 'Baseboard gas boiler' for heated only zones
343
343
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'NaturalGas', znht = nil, cl = nil, heated_only_zones)
344
344
 
345
- when 'PTAC with central air source heat pump'
345
+ when 'PTAC_ASHP'
346
346
  standard.model_add_hvac_system(self, 'PTAC', ht = 'AirSourceHeatPump', znht = nil, cl = 'Electricity', system_zones)
347
347
  # use 'Baseboard central air source heat pump' for heated only zones
348
348
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'AirSourceHeatPump', znht = nil, cl = nil, heated_only_zones)
349
349
 
350
- when 'PTAC with district hot water'
350
+ when 'PTAC_DHW'
351
351
  standard.model_add_hvac_system(self, 'PTAC', ht = 'DistrictHeating', znht = nil, cl = 'Electricity', system_zones)
352
352
  # use 'Baseboard district hot water heat' for heated only zones
353
353
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'DistrictHeating', znht = nil, cl = nil, heated_only_zones)
354
354
 
355
- when 'PTAC with no heat'
355
+ when 'PTAC'
356
356
  standard.model_add_hvac_system(self, 'PTAC', ht = nil, znht = nil, cl = 'Electricity', system_zones)
357
357
 
358
358
  when 'PTHP'
@@ -360,277 +360,235 @@ class OpenStudio::Model::Model
360
360
  # use 'Baseboard electric' for heated only zones
361
361
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_only_zones)
362
362
 
363
- when 'PSZ-AC with baseboard electric'
363
+ when 'PSZAC_ElectricBaseboard'
364
364
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = nil, znht = nil, cl = 'Electricity', system_zones)
365
365
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
366
366
 
367
- when 'PSZ-AC with baseboard gas boiler'
367
+ when 'PSZAC_BoilerBaseboard'
368
368
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = nil, znht = nil, cl = 'Electricity', system_zones)
369
369
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
370
370
 
371
- when 'PSZ-AC with baseboard district hot water'
371
+ when 'PSZAC_DHWBaseboard'
372
372
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = nil, znht = nil, cl = 'Electricity', system_zones)
373
373
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'DistrictHeating', znht = nil, cl = nil, heated_zones)
374
374
 
375
- when 'PSZ-AC with gas unit heaters'
375
+ when 'PSZAC_GasHeaters'
376
376
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = nil, znht = nil, cl = 'Electricity', system_zones)
377
377
  standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
378
378
 
379
- when 'PSZ-AC with electric coil'
379
+ when 'PSZAC_ElectricCoil'
380
380
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = nil, znht = 'Electricity', cl = 'Electricity', system_zones)
381
381
  # use 'Baseboard electric' for heated only zones
382
382
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_only_zones)
383
383
 
384
- when 'PSZ-AC with gas coil'
384
+ when 'PSZAC_GasCoil'
385
385
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = nil, znht = 'NaturalGas', cl = 'Electricity', system_zones)
386
386
  # use 'Baseboard electric' for heated only zones
387
387
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_only_zones)
388
388
 
389
- when 'PSZ-AC with gas boiler'
389
+ when 'PSZAC_Boiler'
390
390
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = 'NaturalGas', znht = nil, cl = 'Electricity', system_zones)
391
391
  # use 'Baseboard gas boiler' for heated only zones
392
392
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'NaturalGas', znht = nil, cl = nil, heated_only_zones)
393
393
 
394
- when 'PSZ-AC with central air source heat pump'
394
+ when 'PSZAC_ASHP'
395
395
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = 'AirSourceHeatPump', znht = nil, cl = 'Electricity', system_zones)
396
396
  # use 'Baseboard central air source heat pump' for heated only zones
397
397
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'AirSourceHeatPump', znht = nil, cl = nil, heated_only_zones)
398
398
 
399
- when 'PSZ-AC with district hot water'
399
+ when 'PSZAC_DHW'
400
400
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = 'DistrictHeating', znht = nil, cl = 'Electricity', system_zones)
401
401
  # use 'Baseboard district hot water' for heated only zones
402
402
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'DistrictHeating', znht = nil, cl = nil, heated_only_zones)
403
403
 
404
- when 'PSZ-AC with no heat'
404
+ when 'PSZAC'
405
405
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = nil, znht = nil, cl = 'Electricity', cooled_zones)
406
406
 
407
- when 'PSZ-AC district chilled water with baseboard electric'
407
+ when 'PSZAC_DCW_ElectricBaseboard'
408
408
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = nil, znht = nil, cl = 'DistrictCooling', system_zones)
409
409
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
410
410
 
411
- when 'PSZ-AC district chilled water with baseboard gas boiler'
411
+ when 'PSZAC_DCW_BoilerBaseboard'
412
412
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = nil, znht = nil, cl = 'DistrictCooling', system_zones)
413
413
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
414
414
 
415
- when 'PSZ-AC district chilled water with gas unit heaters'
415
+ when 'PSZAC_DCW_GasHeaters'
416
416
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = nil, znht = nil, cl = 'DistrictCooling', system_zones)
417
417
  standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
418
418
 
419
- when 'PSZ-AC district chilled water with electric coil'
419
+ when 'PSZAC_DCW_ElectricCoil'
420
420
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = nil, znht = 'Electricity', cl = 'DistrictCooling', system_zones)
421
421
  # use 'Baseboard electric' for heated only zones
422
422
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_only_zones)
423
423
 
424
- when 'PSZ-AC district chilled water with gas coil'
424
+ when 'PSZAC_DCW_GasCoil'
425
425
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = nil, znht = 'NaturalGas', cl = 'DistrictCooling', system_zones)
426
426
  # use 'Baseboard electric' for heated only zones
427
427
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_only_zones)
428
428
 
429
- when 'PSZ-AC district chilled water with gas boiler'
429
+ when 'PSZAC_DCW_Boiler'
430
430
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = 'NaturalGas', znht = nil, cl = 'DistrictCooling', system_zones)
431
431
  # use 'Baseboard gas boiler' for heated only zones
432
432
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'NaturalGas', znht = nil, cl = nil, heated_only_zones)
433
433
 
434
- when 'PSZ-AC district chilled water with central air source heat pump'
434
+ when 'PSZAC_DCW_ASHP'
435
435
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = 'AirSourceHeatPump', znht = nil, cl = 'DistrictCooling', system_zones)
436
436
  # use 'Baseboard central air source heat pump' for heated only zones
437
437
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'AirSourceHeatPump', znht = nil, cl = nil, heated_only_zones)
438
438
 
439
- when 'PSZ-AC district chilled water with district hot water'
439
+ when 'PSZAC_DCW_DHW'
440
440
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = 'DistrictHeating', znht = nil, cl = 'DistrictCooling', system_zones)
441
441
  # use 'Baseboard district hot water' for heated only zones
442
442
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'DistrictHeating', znht = nil, cl = nil, heated_only_zones)
443
443
 
444
- when 'PSZ-AC district chilled water with no heat'
444
+ when 'PSZAC_DCW'
445
445
  standard.model_add_hvac_system(self, 'PSZ-AC', ht = nil, znht = nil, cl = 'DistrictCooling', cooled_zones)
446
446
 
447
- when 'PSZ-HP'
447
+ when 'PSZHP'
448
448
  standard.model_add_hvac_system(self, 'PSZ-HP', ht = 'Electricity', znht = nil, cl = 'Electricity', system_zones)
449
449
  # use 'Baseboard electric' for heated only zones
450
450
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_only_zones)
451
451
 
452
452
  # PVAV systems by default use a DX coil for cooling
453
- when 'PVAV with gas boiler reheat', 'Packaged VAV Air Loop with Boiler' # second enumeration for backwards compatibility with Tenant Star project
453
+ when 'PVAV_Boiler'
454
454
  standard.model_add_hvac_system(self, 'PVAV Reheat', ht = 'NaturalGas', znht = 'NaturalGas', cl = 'Electricity', zones)
455
455
 
456
- when 'PVAV with central air source heat pump reheat'
456
+ when 'PVAV_ASHP'
457
457
  standard.model_add_hvac_system(self, 'PVAV Reheat', ht = 'AirSourceHeatPump', znht = 'AirSourceHeatPump', cl = 'Electricity', zones)
458
458
 
459
- when 'PVAV with district hot water reheat'
459
+ when 'PVAV_DHW'
460
460
  standard.model_add_hvac_system(self, 'PVAV Reheat', ht = 'DistrictHeating', znht = 'DistrictHeating', cl = 'Electricity', zones)
461
461
 
462
- when 'PVAV with PFP boxes'
462
+ when 'PVAV_PFP'
463
463
  standard.model_add_hvac_system(self, 'PVAV PFP Boxes', ht = 'Electricity', znht = 'Electricity', cl = 'Electricity', zones)
464
464
 
465
- when 'PVAV with gas heat with electric reheat'
465
+ when 'PVAV_BoilerElectricReheat'
466
466
  standard.model_add_hvac_system(self, 'PVAV Reheat', ht = 'Gas', znht = 'Electricity', cl = 'Electricity', zones)
467
467
 
468
468
  # all residential systems do not have ventilation
469
- when 'Residential AC with baseboard electric'
469
+ when 'ResidentialAC_ElectricBaseboard'
470
470
  standard.model_add_hvac_system(self, 'Residential AC', ht = nil, znht = nil, cl = nil, cooled_zones)
471
471
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
472
472
 
473
- when 'Residential AC with baseboard gas boiler'
473
+ when 'ResidentialAC_BoilerBaseboard'
474
474
  standard.model_add_hvac_system(self, 'Residential AC', ht = nil, znht = nil, cl = nil, cooled_zones)
475
475
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
476
476
 
477
- when 'Residential AC with baseboard central air source heat pump'
477
+ when 'ResidentialAC_ASHPBaseboard'
478
478
  standard.model_add_hvac_system(self, 'Residential AC', ht = nil, znht = nil, cl = nil, cooled_zones)
479
479
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'AirSourceHeatPump', znht = nil, cl = nil, heated_zones)
480
480
 
481
- when 'Residential AC with baseboard district hot water'
481
+ when 'ResidentialAC_DHWBaseboard'
482
482
  standard.model_add_hvac_system(self, 'Residential AC', ht = nil, znht = nil, cl = nil, cooled_zones)
483
483
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'DistrictHeating', znht = nil, cl = nil, heated_zones)
484
484
 
485
- when 'Residential AC with residential forced air furnace'
485
+ when 'ResidentialAC_ResidentialFurnace'
486
486
  standard.model_add_hvac_system(self, 'Residential Forced Air Furnace with AC', ht = nil, znht = nil, cl = nil, zones)
487
487
 
488
- when 'Residential AC with no heat'
488
+ when 'ResidentialAC'
489
489
  standard.model_add_hvac_system(self, 'Residential AC', ht = nil, znht = nil, cl = nil, cooled_zones)
490
490
 
491
- when 'Residential heat pump'
491
+ when 'ResidentialHP'
492
492
  standard.model_add_hvac_system(self, 'Residential Air Source Heat Pump', ht = 'Electricity', znht = nil, cl = 'Electricity', zones)
493
493
 
494
- when 'Residential heat pump with no cooling'
494
+ when 'ResidentialHPNoCool'
495
495
  standard.model_add_hvac_system(self, 'Residential Air Source Heat Pump', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
496
496
 
497
- when 'Residential forced air furnace'
497
+ when 'ResidentialFurnace'
498
498
  standard.model_add_hvac_system(self, 'Residential Forced Air Furnace', ht = 'NaturalGas', znht = nil, cl = nil, zones)
499
499
 
500
- when 'VAV chiller with gas boiler reheat'
500
+ when 'VAV_Chiller_Boiler'
501
501
  standard.model_add_hvac_system(self, 'VAV Reheat', ht = 'NaturalGas', znht = 'NaturalGas', cl = 'Electricity', zones)
502
502
 
503
- when 'VAV chiller with central air source heat pump reheat'
503
+ when 'VAV_Chiller_ASHP'
504
504
  standard.model_add_hvac_system(self, 'VAV Reheat', ht = 'AirSourceHeatPump', znht = 'AirSourceHeatPump', cl = 'Electricity', zones)
505
505
 
506
- when 'VAV chiller with district hot water reheat'
506
+ when 'VAV_Chiller_DHW'
507
507
  standard.model_add_hvac_system(self, 'VAV Reheat', ht = 'DistrictHeating', znht = 'DistrictHeating', cl = 'Electricity', zones)
508
508
 
509
- when 'VAV chiller with PFP boxes'
509
+ when 'VAV_Chiller_PFP'
510
510
  standard.model_add_hvac_system(self, 'VAV PFP Boxes', ht = 'NaturalGas', znht = 'NaturalGas', cl = 'Electricity', zones)
511
511
 
512
- when 'VAV chiller with gas coil reheat'
512
+ when 'VAV_Chiller_GasCoil'
513
513
  standard.model_add_hvac_system(self, 'VAV Gas Reheat', ht = 'NaturalGas', ht = 'NaturalGas', cl = 'Electricity', zones)
514
514
 
515
- when 'VAV chiller with no reheat with baseboard electric'
516
- standard.model_add_hvac_system(self, 'VAV No Reheat', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones)
517
- standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
518
-
519
- when 'VAV chiller with no reheat with gas unit heaters'
520
- standard.model_add_hvac_system(self, 'VAV No Reheat', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones)
521
- standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
522
-
523
- when 'VAV chiller with no reheat with zone heat pump'
524
- standard.model_add_hvac_system(self, 'VAV No Reheat', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones)
525
- # Using PTHP to represent zone heat pump to limit to one airloop per thermal zone.
526
- standard.model_add_hvac_system(self, 'PTHP', ht = 'Electricity', znht = nil, cl = 'Electricity', zones)
527
-
528
- when 'VAV air-cooled chiller with gas boiler reheat'
515
+ when 'VAV_ACChiller_Boiler'
529
516
  standard.model_add_hvac_system(self, 'VAV Reheat', ht = 'NaturalGas', znht = 'NaturalGas', cl = 'Electricity', zones,
530
517
  chilled_water_loop_cooling_type: 'AirCooled')
531
518
 
532
- when 'VAV air-cooled chiller with central air source heat pump reheat '
519
+ when 'VAV_ACChiller_ASHP'
533
520
  standard.model_add_hvac_system(self, 'VAV Reheat', ht = 'AirSourceHeatPump', znht = 'AirSourceHeatPump', cl = 'Electricity', zones,
534
521
  chilled_water_loop_cooling_type: 'AirCooled')
535
522
 
536
- when 'VAV air-cooled chiller with district hot water reheat'
523
+ when 'VAV_ACChiller_DHW'
537
524
  standard.model_add_hvac_system(self, 'VAV Reheat', ht = 'DistrictHeating', znht = 'DistrictHeating', cl = 'Electricity', zones,
538
525
  chilled_water_loop_cooling_type: 'AirCooled')
539
526
 
540
- when 'VAV air-cooled chiller with PFP boxes'
527
+ when 'VAV_ACChiller_PFP'
541
528
  standard.model_add_hvac_system(self, 'VAV PFP Boxes', ht = 'NaturalGas', znht = 'NaturalGas', cl = 'Electricity', zones,
542
529
  chilled_water_loop_cooling_type: 'AirCooled')
543
530
 
544
- when 'VAV air-cooled chiller with gas coil reheat'
531
+ when 'VAV_ACChiller_GasCoil'
545
532
  standard.model_add_hvac_system(self, 'VAV Gas Reheat', ht = 'NaturalGas', ht = 'NaturalGas', cl = 'Electricity', zones,
546
533
  chilled_water_loop_cooling_type: 'AirCooled')
547
534
 
548
- when 'VAV air-cooled chiller with no reheat with baseboard electric'
549
- standard.model_add_hvac_system(self, 'VAV No Reheat', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones,
550
- chilled_water_loop_cooling_type: 'AirCooled')
551
- standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
552
-
553
- when 'VAV air-cooled chiller with no reheat with gas unit heaters'
554
- standard.model_add_hvac_system(self, 'VAV No Reheat', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones,
555
- chilled_water_loop_cooling_type: 'AirCooled')
556
- standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
557
-
558
- when 'VAV air-cooled chiller with no reheat with zone heat pump'
559
- standard.model_add_hvac_system(self, 'VAV No Reheat', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones,
560
- chilled_water_loop_cooling_type: 'AirCooled')
561
- # Using PTHP to represent zone heat pump to limit to one airloop per thermal zone.
562
- standard.model_add_hvac_system(self, 'PTHP', ht = 'Electricity', znht = nil, cl = 'Electricity', zones)
563
-
564
- when 'VAV district chilled water with gas boiler reheat'
535
+ when 'VAV_DCW_Boiler'
565
536
  standard.model_add_hvac_system(self, 'VAV Reheat', ht = 'NaturalGas', znht = 'NaturalGas', cl = 'DistrictCooling', zones)
566
537
 
567
- when 'VAV district chilled water with central air source heat pump reheat'
538
+ when 'VAV_DCW_ASHP'
568
539
  standard.model_add_hvac_system(self, 'VAV Reheat', ht = 'AirSourceHeatPump', znht = 'AirSourceHeatPump', cl = 'DistrictCooling', zones)
569
540
 
570
- when 'VAV district chilled water with district hot water reheat'
541
+ when 'VAV_DCW_DHW'
571
542
  standard.model_add_hvac_system(self, 'VAV Reheat', ht = 'DistrictHeating', znht = 'DistrictHeating', cl = 'DistrictCooling', zones)
572
543
 
573
- when 'VAV district chilled water with PFP boxes'
544
+ when 'VAV_DCW_PFP'
574
545
  standard.model_add_hvac_system(self, 'VAV PFP Boxes', ht = 'NaturalGas', znht = 'NaturalGas', cl = 'DistrictCooling', zones)
575
546
 
576
- when 'VAV district chilled water with gas coil reheat'
547
+ when 'VAV_DCW_GasCoil'
577
548
  standard.model_add_hvac_system(self, 'VAV Gas Reheat', ht = 'NaturalGas', ht = 'NaturalGas', cl = 'DistrictCooling', zones)
578
549
 
579
- when 'VAV district chilled water with no reheat with baseboard electric'
580
- standard.model_add_hvac_system(self, 'VAV No Reheat', ht = 'NaturalGas', znht = nil, cl = 'DistrictCooling', zones)
581
- standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
582
-
583
- when 'VAV district chilled water with no reheat with gas unit heaters'
584
- standard.model_add_hvac_system(self, 'VAV No Reheat', ht = 'NaturalGas', znht = nil, cl = 'DistrictCooling', zones)
585
- standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
586
-
587
- when 'VAV district chilled water with no reheat with zone heat pump'
588
- standard.model_add_hvac_system(self, 'VAV No Reheat', ht = 'NaturalGas', znht = nil, cl = 'DistrictCooling', zones)
589
- # Using PTHP to represent zone heat pump to limit to one airloop per thermal zone.
590
- standard.model_add_hvac_system(self, 'PTHP', ht = 'Electricity', znht = nil, cl = 'Electricity', zones)
591
-
592
550
  when 'VRF'
593
551
  standard.model_add_hvac_system(self, 'VRF', ht = 'Electricity', znht = nil, cl = 'Electricity', zones)
594
552
 
595
- when 'Water source heat pumps fluid cooler with boiler'
553
+ when 'WSHP_FluidCooler_Boiler'
596
554
  standard.model_add_hvac_system(self, 'Water Source Heat Pumps', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones,
597
555
  heat_pump_loop_cooling_type: 'FluidCooler')
598
556
 
599
- when 'Water source heat pumps cooling tower with boiler'
557
+ when 'WSHP_CoolingTower_Boiler'
600
558
  standard.model_add_hvac_system(self, 'Water Source Heat Pumps', ht = 'NaturalGas', znht = nil, cl = 'Electricity', zones,
601
559
  heat_pump_loop_cooling_type: 'CoolingTower')
602
560
 
603
- when 'Water source heat pumps with ground source heat pump'
561
+ when 'WSHP_GSHP'
604
562
  standard.model_add_hvac_system(self, 'Ground Source Heat Pumps', ht = 'Electricity', znht = nil, cl = 'Electricity', zones)
605
563
 
606
- when 'Water source heat pumps district chilled water with district hot water'
564
+ when 'WSHP_DCW_DHW'
607
565
  standard.model_add_hvac_system(self, 'Water Source Heat Pumps', ht = 'DistrictHeating', znht = nil, cl = 'DistrictCooling', zones)
608
566
 
609
- when 'Window AC with baseboard electric'
567
+ when 'WindowAC_ElectricBaseboard'
610
568
  standard.model_add_hvac_system(self, 'Window AC', ht = nil, znht = nil, cl = 'Electricity', cooled_zones)
611
569
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'Electricity', znht = nil, cl = nil, heated_zones)
612
570
 
613
- when 'Window AC with baseboard gas boiler'
571
+ when 'WindowAC_BoilerBaseboard'
614
572
  standard.model_add_hvac_system(self, 'Window AC', ht = nil, znht = nil, cl = 'Electricity', cooled_zones)
615
573
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
616
574
 
617
- when 'Window AC with baseboard central air source heat pump'
575
+ when 'WindowAC_ASHPBaseboard'
618
576
  standard.model_add_hvac_system(self, 'Window AC', ht = nil, znht = nil, cl = 'Electricity', cooled_zones)
619
577
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'AirSourceHeatPump', znht = nil, cl = nil, heated_zones)
620
578
 
621
- when 'Window AC with baseboard district hot water'
579
+ when 'WindowAC_DHWBaseboard'
622
580
  standard.model_add_hvac_system(self, 'Window AC', ht = nil, znht = nil, cl = 'Electricity', cooled_zones)
623
581
  standard.model_add_hvac_system(self, 'Baseboards', ht = 'DistrictHeating', znht = nil, cl = nil, heated_zones)
624
582
 
625
- when 'Window AC with forced air furnace'
583
+ when 'WindowAC_Furnace'
626
584
  standard.model_add_hvac_system(self, 'Window AC', ht = nil, znht = nil, cl = 'Electricity', cooled_zones)
627
585
  standard.model_add_hvac_system(self, 'Forced Air Furnace', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
628
586
 
629
- when 'Window AC with unit heaters'
587
+ when 'WindowAC_GasHeaters'
630
588
  standard.model_add_hvac_system(self, 'Window AC', ht = nil, znht = nil, cl = 'Electricity', cooled_zones)
631
589
  standard.model_add_hvac_system(self, 'Unit Heaters', ht = 'NaturalGas', znht = nil, cl = nil, heated_zones)
632
590
 
633
- when 'Window AC with no heat'
591
+ when 'WindowAC'
634
592
  standard.model_add_hvac_system(self, 'Window AC', ht = nil, znht = nil, cl = 'Electricity', cooled_zones)
635
593
 
636
594
  else