openstudio-standards 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/data/standards/OpenStudio_Standards.xlsx +0 -0
- data/data/standards/OpenStudio_Standards_chillers.json +5 -5
- data/data/standards/OpenStudio_Standards_construction_sets.json +2 -2
- data/data/standards/OpenStudio_Standards_curve_cubics.json +12 -0
- data/data/standards/OpenStudio_Standards_heat_pumps.json +2126 -72
- data/data/standards/OpenStudio_Standards_heat_pumps_heating.json +766 -14
- data/data/standards/OpenStudio_Standards_heat_rejection.json +172 -0
- data/data/standards/OpenStudio_Standards_prototype_inputs.json +355 -267
- data/data/standards/OpenStudio_Standards_schedules.json +262 -10
- data/data/standards/OpenStudio_Standards_space_types.json +1466 -794
- data/data/standards/manage_OpenStudio_Standards.rb +19 -21
- data/data/weather/weather_info.csv +96 -0
- data/lib/openstudio-standards/btap/btap.rb +1 -1
- data/lib/openstudio-standards/btap/compliance.rb +135 -40
- data/lib/openstudio-standards/btap/envelope.rb +26 -5
- data/lib/openstudio-standards/btap/geometry.rb +11 -1
- data/lib/openstudio-standards/btap/hvac.rb +489 -56
- data/lib/openstudio-standards/btap/simmanager.rb +1 -1
- data/lib/openstudio-standards/hvac_sizing/HVACSizing.CoilHeatingDXMultiSpeed.rb +120 -0
- data/lib/openstudio-standards/hvac_sizing/Siz.CoilCoolingDXMultiSpeed.rb +151 -7
- data/lib/openstudio-standards/hvac_sizing/Siz.CoilHeatingGasMultiStage.rb +48 -7
- data/lib/openstudio-standards/hvac_sizing/Siz.Model.rb +14 -12
- data/lib/openstudio-standards/prototypes/Prototype.AirTerminalSingleDuctVAVReheat.rb +33 -7
- data/lib/openstudio-standards/prototypes/Prototype.Model.hvac.rb +123 -91
- data/lib/openstudio-standards/prototypes/Prototype.Model.rb +130 -45
- data/lib/openstudio-standards/prototypes/Prototype.Model.swh.rb +13 -7
- data/lib/openstudio-standards/prototypes/Prototype.full_service_restaurant.rb +332 -324
- data/lib/openstudio-standards/prototypes/Prototype.hospital.rb +401 -99
- data/lib/openstudio-standards/prototypes/Prototype.hvac_systems.rb +309 -222
- data/lib/openstudio-standards/prototypes/Prototype.large_hotel.rb +100 -80
- data/lib/openstudio-standards/prototypes/Prototype.large_office.rb +37 -22
- data/lib/openstudio-standards/prototypes/Prototype.medium_office.rb +68 -53
- data/lib/openstudio-standards/prototypes/Prototype.mid_rise_apartment.rb +109 -88
- data/lib/openstudio-standards/prototypes/Prototype.outpatient.rb +52 -4
- data/lib/openstudio-standards/prototypes/Prototype.primary_school.rb +230 -213
- data/lib/openstudio-standards/prototypes/Prototype.quick_service_restaurant.rb +225 -218
- data/lib/openstudio-standards/prototypes/Prototype.retail_standalone.rb +29 -17
- data/lib/openstudio-standards/prototypes/Prototype.retail_stripmall.rb +42 -32
- data/lib/openstudio-standards/prototypes/Prototype.secondary_school.rb +331 -314
- data/lib/openstudio-standards/prototypes/Prototype.small_hotel.rb +233 -219
- data/lib/openstudio-standards/prototypes/Prototype.small_office.rb +40 -32
- data/lib/openstudio-standards/prototypes/Prototype.warehouse.rb +19 -6
- data/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb +576 -555
- data/lib/openstudio-standards/standards/Standards.AirTerminalSingleDuctVAVReheat.rb +3 -1
- data/lib/openstudio-standards/standards/Standards.BoilerHotWater.rb +35 -17
- data/lib/openstudio-standards/standards/Standards.ChillerElectricEIR.rb +51 -23
- data/lib/openstudio-standards/standards/Standards.CoilCoolingDXMultiSpeed.rb +255 -0
- data/lib/openstudio-standards/standards/Standards.CoilHeatingDXMultiSpeed.rb +192 -0
- data/lib/openstudio-standards/standards/Standards.CoilHeatingGasMultiStage.rb +65 -0
- data/lib/openstudio-standards/standards/Standards.Fan.rb +37 -6
- data/lib/openstudio-standards/standards/Standards.Model.rb +28 -3
- data/lib/openstudio-standards/standards/Standards.SpaceType.rb +3 -1
- data/lib/openstudio-standards/standards/Standards.WaterHeaterMixed.rb +41 -15
- data/lib/openstudio-standards/version.rb +1 -1
- data/lib/openstudio-standards/weather/Weather.Model.rb +509 -5
- data/lib/openstudio-standards/weather/Weather.stat_file.rb +145 -5
- metadata +8 -3
- data/lib/openstudio-standards/btap/environment.rb +0 -718
@@ -16,6 +16,12 @@ class OpenStudio::Model::Model
|
|
16
16
|
'Kitchen' => ['Kitchen'],
|
17
17
|
'Attic' => ['attic']
|
18
18
|
}
|
19
|
+
when 'NECB 2011'
|
20
|
+
space_type_map ={
|
21
|
+
"- undefined -" => ["attic"],
|
22
|
+
"Dining - bar lounge/leisure" => ["Dining"],
|
23
|
+
"Food preparation" => ["Kitchen"]
|
24
|
+
}
|
19
25
|
end
|
20
26
|
return space_type_map
|
21
27
|
end
|
@@ -26,277 +32,277 @@ class OpenStudio::Model::Model
|
|
26
32
|
when 'DOE Ref Pre-1980', 'DOE Ref 1980-2004'
|
27
33
|
system_to_space_map = [
|
28
34
|
{
|
29
|
-
|
30
|
-
|
35
|
+
'type' => 'PSZ-AC',
|
36
|
+
'space_names' => ['Dining', 'Kitchen']
|
31
37
|
},
|
32
38
|
{
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
39
|
+
'type' => 'Exhaust Fan',
|
40
|
+
'name' => 'Dining Exhaust Fan',
|
41
|
+
'availability_sch_name' => 'RestaurantFastFood HVACOperationSchd',
|
42
|
+
'flow_rate' => 0.834532374,
|
43
|
+
'flow_fraction_schedule_name' => nil,
|
44
|
+
'balanced_exhaust_fraction_schedule_name' => nil,
|
45
|
+
'space_names' =>
|
40
46
|
[
|
41
|
-
|
42
|
-
|
47
|
+
'Dining'
|
48
|
+
]
|
43
49
|
},
|
44
50
|
{
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
51
|
+
'type' => 'Exhaust Fan',
|
52
|
+
'name' => 'Kitchen Exhaust Fan',
|
53
|
+
'availability_sch_name' => 'RestaurantFastFood HVACOperationSchd',
|
54
|
+
'flow_rate' => 0.722467626,
|
55
|
+
'flow_fraction_schedule_name' => nil,
|
56
|
+
'balanced_exhaust_fraction_schedule_name' => nil,
|
57
|
+
'space_names' =>
|
52
58
|
[
|
53
|
-
|
54
|
-
|
59
|
+
'Kitchen'
|
60
|
+
]
|
55
61
|
},
|
56
62
|
{
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
63
|
+
'type' => 'Refrigeration',
|
64
|
+
'case_type' => 'Walkin Freezer',
|
65
|
+
'cooling_capacity_per_length' => 688,
|
66
|
+
'length' => 2.44,
|
67
|
+
'evaporator_fan_pwr_per_length' => 74,
|
68
|
+
'lighting_per_length' => 33,
|
69
|
+
'lighting_sch_name' => 'QuickServiceRestaurant Bldg Light',
|
70
|
+
'defrost_pwr_per_length' => 1291.7,
|
71
|
+
'restocking_sch_name' => 'RestaurantFastFood Kitchen_Case:1_WALKINFREEZER_WalkInStockingSched',
|
72
|
+
'cop' => 1.5,
|
73
|
+
'cop_f_of_t_curve_name' => 'RACK1_RackCOPfTCurve',
|
74
|
+
'condenser_fan_pwr' => 330,
|
75
|
+
'condenser_fan_pwr_curve_name' => 'RACK1_RackCondFanCurve2',
|
76
|
+
'space_names' =>
|
71
77
|
[
|
72
|
-
|
73
|
-
|
78
|
+
'Kitchen'
|
79
|
+
]
|
74
80
|
},
|
75
81
|
{
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
82
|
+
'type' => 'Refrigeration',
|
83
|
+
'case_type' => 'Display Case',
|
84
|
+
'cooling_capacity_per_length' => 734.0,
|
85
|
+
'length' => 3.05,
|
86
|
+
'evaporator_fan_pwr_per_length' => 66,
|
87
|
+
'lighting_per_length' => 33.0,
|
88
|
+
'lighting_sch_name' => 'QuickServiceRestaurant Bldg Light',
|
89
|
+
'defrost_pwr_per_length' => 0.0,
|
90
|
+
'restocking_sch_name' => 'RestaurantFastFood Kitchen_Case:2_SELFCONTAINEDDISPLAYCASE_CaseStockingSched',
|
91
|
+
'cop' => 3.0,
|
92
|
+
'cop_f_of_t_curve_name' => 'RACK2_RackCOPfTCurve',
|
93
|
+
'condenser_fan_pwr' => 330,
|
94
|
+
'condenser_fan_pwr_curve_name' => nil,
|
95
|
+
'space_names' =>
|
90
96
|
[
|
91
|
-
|
92
|
-
|
97
|
+
'Kitchen'
|
98
|
+
]
|
93
99
|
}
|
94
100
|
]
|
95
101
|
when '90.1-2004'
|
96
102
|
system_to_space_map = [
|
97
103
|
{
|
98
|
-
|
99
|
-
|
104
|
+
'type' => 'PSZ-AC',
|
105
|
+
'space_names' => ['Dining', 'Kitchen']
|
100
106
|
},
|
101
107
|
{
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
108
|
+
'type' => 'Exhaust Fan',
|
109
|
+
'name' => 'Kitchen Exhaust Fan',
|
110
|
+
'availability_sch_name' => 'RestaurantFastFood Hours_of_operation',
|
111
|
+
'flow_rate' => 1.557427,
|
112
|
+
'flow_fraction_schedule_name' => nil,
|
113
|
+
'balanced_exhaust_fraction_schedule_name' => 'RestaurantFastFood Kitchen Exhaust Fan Balanced Exhaust Fraction Schedule_2004',
|
114
|
+
'space_names' =>
|
109
115
|
[
|
110
|
-
|
111
|
-
|
116
|
+
'Kitchen'
|
117
|
+
]
|
112
118
|
},
|
113
119
|
{
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
120
|
+
'type' => 'Exhaust Fan',
|
121
|
+
'name' => 'Dining Exhaust Fan',
|
122
|
+
'availability_sch_name' => 'RestaurantFastFood Hours_of_operation',
|
123
|
+
'flow_rate' => 0.826233,
|
124
|
+
'flow_fraction_schedule_name' => nil,
|
125
|
+
'balanced_exhaust_fraction_schedule_name' => nil,
|
126
|
+
'space_names' =>
|
121
127
|
[
|
122
|
-
|
123
|
-
|
128
|
+
'Dining'
|
129
|
+
]
|
124
130
|
},
|
125
131
|
{
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
132
|
+
'type' => 'Refrigeration',
|
133
|
+
'case_type' => 'Walkin Freezer',
|
134
|
+
'cooling_capacity_per_length' => 688,
|
135
|
+
'length' => 2.44,
|
136
|
+
'evaporator_fan_pwr_per_length' => 74,
|
137
|
+
'lighting_per_length' => 33,
|
138
|
+
'lighting_sch_name' => 'RestaurantFastFood BLDG_LIGHT_DINING_SCH_2004_2007',
|
139
|
+
'defrost_pwr_per_length' => 1291.7,
|
140
|
+
'restocking_sch_name' => 'RestaurantFastFood Kitchen_Case:1_WALKINFREEZER_WalkInStockingSched',
|
141
|
+
'cop' => 1.5,
|
142
|
+
'cop_f_of_t_curve_name' => 'RACK1_RackCOPfTCurve',
|
143
|
+
'condenser_fan_pwr' => 330,
|
144
|
+
'condenser_fan_pwr_curve_name' => 'RACK1_RackCondFanCurve2',
|
145
|
+
'space_names' =>
|
140
146
|
[
|
141
|
-
|
142
|
-
|
147
|
+
'Kitchen'
|
148
|
+
]
|
143
149
|
},
|
144
150
|
{
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
151
|
+
'type' => 'Refrigeration',
|
152
|
+
'case_type' => 'Display Case',
|
153
|
+
'cooling_capacity_per_length' => 734.0,
|
154
|
+
'length' => 3.05,
|
155
|
+
'evaporator_fan_pwr_per_length' => 66,
|
156
|
+
'lighting_per_length' => 33.0,
|
157
|
+
'lighting_sch_name' => 'RestaurantFastFood BLDG_LIGHT_DINING_SCH_2004_2007',
|
158
|
+
'defrost_pwr_per_length' => 0.0,
|
159
|
+
'restocking_sch_name' => 'RestaurantFastFood Kitchen_Case:2_SELFCONTAINEDDISPLAYCASE_CaseStockingSched',
|
160
|
+
'cop' => 3.0,
|
161
|
+
'cop_f_of_t_curve_name' => 'RACK2_RackCOPfTCurve',
|
162
|
+
'condenser_fan_pwr' => 330,
|
163
|
+
'condenser_fan_pwr_curve_name' => nil,
|
164
|
+
'space_names' =>
|
159
165
|
[
|
160
|
-
|
161
|
-
|
166
|
+
'Kitchen'
|
167
|
+
]
|
162
168
|
}
|
163
169
|
]
|
164
170
|
when '90.1-2007', '90.1-2010'
|
165
171
|
system_to_space_map = [
|
166
172
|
{
|
167
|
-
|
168
|
-
|
173
|
+
'type' => 'PSZ-AC',
|
174
|
+
'space_names' => ['Dining', 'Kitchen']
|
169
175
|
},
|
170
176
|
{
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
177
|
+
'type' => 'Exhaust Fan',
|
178
|
+
'name' => 'Kitchen Exhaust Fan',
|
179
|
+
'availability_sch_name' => 'RestaurantFastFood Hours_of_operation',
|
180
|
+
'flow_rate' => 1.557427,
|
181
|
+
'flow_fraction_schedule_name' => nil,
|
182
|
+
'balanced_exhaust_fraction_schedule_name' => 'RestaurantFastFood Kitchen Exhaust Fan Balanced Exhaust Fraction Schedule_2007_2010_2013',
|
183
|
+
'space_names' =>
|
178
184
|
[
|
179
|
-
|
180
|
-
|
185
|
+
'Kitchen'
|
186
|
+
]
|
181
187
|
},
|
182
188
|
{
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
189
|
+
'type' => 'Exhaust Fan',
|
190
|
+
'name' => 'Dining Exhaust Fan',
|
191
|
+
'availability_sch_name' => 'RestaurantFastFood Hours_of_operation',
|
192
|
+
'flow_rate' => 0.416,
|
193
|
+
'flow_fraction_schedule_name' => nil,
|
194
|
+
'balanced_exhaust_fraction_schedule_name' => nil,
|
195
|
+
'space_names' =>
|
190
196
|
[
|
191
|
-
|
192
|
-
|
197
|
+
'Dining'
|
198
|
+
]
|
193
199
|
},
|
194
200
|
{
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
201
|
+
'type' => 'Refrigeration',
|
202
|
+
'case_type' => 'Walkin Freezer',
|
203
|
+
'cooling_capacity_per_length' => 688,
|
204
|
+
'length' => 2.44,
|
205
|
+
'evaporator_fan_pwr_per_length' => 74,
|
206
|
+
'lighting_per_length' => 33,
|
207
|
+
'lighting_sch_name' => 'RestaurantFastFood BLDG_LIGHT_DINING_SCH_2004_2007',
|
208
|
+
'defrost_pwr_per_length' => 1291.7,
|
209
|
+
'restocking_sch_name' => 'RestaurantFastFood Kitchen_Case:1_WALKINFREEZER_WalkInStockingSched',
|
210
|
+
'cop' => 1.5,
|
211
|
+
'cop_f_of_t_curve_name' => 'RACK1_RackCOPfTCurve',
|
212
|
+
'condenser_fan_pwr' => 330,
|
213
|
+
'condenser_fan_pwr_curve_name' => 'RACK1_RackCondFanCurve2',
|
214
|
+
'space_names' =>
|
209
215
|
[
|
210
|
-
|
211
|
-
|
216
|
+
'Kitchen'
|
217
|
+
]
|
212
218
|
},
|
213
219
|
{
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
220
|
+
'type' => 'Refrigeration',
|
221
|
+
'case_type' => 'Display Case',
|
222
|
+
'cooling_capacity_per_length' => 734.0,
|
223
|
+
'length' => 3.05,
|
224
|
+
'evaporator_fan_pwr_per_length' => 66,
|
225
|
+
'lighting_per_length' => 33.0,
|
226
|
+
'lighting_sch_name' => 'RestaurantFastFood BLDG_LIGHT_DINING_SCH_2004_2007',
|
227
|
+
'defrost_pwr_per_length' => 0.0,
|
228
|
+
'restocking_sch_name' => 'RestaurantFastFood Kitchen_Case:2_SELFCONTAINEDDISPLAYCASE_CaseStockingSched',
|
229
|
+
'cop' => 3.0,
|
230
|
+
'cop_f_of_t_curve_name' => 'RACK2_RackCOPfTCurve',
|
231
|
+
'condenser_fan_pwr' => 330,
|
232
|
+
'condenser_fan_pwr_curve_name' => nil,
|
233
|
+
'space_names' =>
|
228
234
|
[
|
229
|
-
|
230
|
-
|
235
|
+
'Kitchen'
|
236
|
+
]
|
231
237
|
}
|
232
238
|
]
|
233
239
|
when '90.1-2013'
|
234
240
|
system_to_space_map = [
|
235
241
|
{
|
236
|
-
|
237
|
-
|
242
|
+
'type' => 'PSZ-AC',
|
243
|
+
'space_names' => ['Dining', 'Kitchen']
|
238
244
|
},
|
239
245
|
{
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
246
|
+
'type' => 'Exhaust Fan',
|
247
|
+
'name' => 'Kitchen Exhaust Fan',
|
248
|
+
'availability_sch_name' => 'RestaurantFastFood Hours_of_operation',
|
249
|
+
'flow_rate' => 1.557427,
|
250
|
+
'flow_fraction_schedule_name' => nil,
|
251
|
+
'balanced_exhaust_fraction_schedule_name' => 'RestaurantFastFood Kitchen Exhaust Fan Balanced Exhaust Fraction Schedule_2007_2010_2013',
|
252
|
+
'space_names' =>
|
247
253
|
[
|
248
|
-
|
249
|
-
|
254
|
+
'Kitchen'
|
255
|
+
]
|
250
256
|
},
|
251
257
|
{
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
258
|
+
'type' => 'Exhaust Fan',
|
259
|
+
'name' => 'Dining Exhaust Fan',
|
260
|
+
'availability_sch_name' => 'RestaurantFastFood Hours_of_operation',
|
261
|
+
'flow_rate' => 0.416,
|
262
|
+
'flow_fraction_schedule_name' => nil,
|
263
|
+
'balanced_exhaust_fraction_schedule_name' => nil,
|
264
|
+
'space_names' =>
|
259
265
|
[
|
260
|
-
|
261
|
-
|
266
|
+
'Dining'
|
267
|
+
]
|
262
268
|
},
|
263
269
|
{
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
270
|
+
'type' => 'Refrigeration',
|
271
|
+
'case_type' => 'Walkin Freezer',
|
272
|
+
'cooling_capacity_per_length' => 688,
|
273
|
+
'length' => 2.44,
|
274
|
+
'evaporator_fan_pwr_per_length' => 21.143,
|
275
|
+
'lighting_per_length' => 33,
|
276
|
+
'lighting_sch_name' => 'RestaurantFastFood walkin_occ_lght_SCH',
|
277
|
+
'defrost_pwr_per_length' => 1291.7,
|
278
|
+
'restocking_sch_name' => 'RestaurantFastFood Kitchen_Case:1_WALKINFREEZER_WalkInStockingSched',
|
279
|
+
'cop' => 1.5,
|
280
|
+
'cop_f_of_t_curve_name' => 'RACK1_RackCOPfTCurve',
|
281
|
+
'condenser_fan_pwr' => 330,
|
282
|
+
'condenser_fan_pwr_curve_name' => 'RACK1_RackCondFanCurve2',
|
283
|
+
'space_names' =>
|
278
284
|
[
|
279
|
-
|
280
|
-
|
285
|
+
'Kitchen'
|
286
|
+
]
|
281
287
|
},
|
282
288
|
{
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
289
|
+
'type' => 'Refrigeration',
|
290
|
+
'case_type' => 'Display Case',
|
291
|
+
'cooling_capacity_per_length' => 734.0,
|
292
|
+
'length' => 3.05,
|
293
|
+
'evaporator_fan_pwr_per_length' => 18.857,
|
294
|
+
'lighting_per_length' => 33.0,
|
295
|
+
'lighting_sch_name' => 'RestaurantFastFood walkin_occ_lght_SCH',
|
296
|
+
'defrost_pwr_per_length' => 0.0,
|
297
|
+
'restocking_sch_name' => 'RestaurantFastFood Kitchen_Case:2_SELFCONTAINEDDISPLAYCASE_CaseStockingSched',
|
298
|
+
'cop' => 3.0,
|
299
|
+
'cop_f_of_t_curve_name' => 'RACK2_RackCOPfTCurve',
|
300
|
+
'condenser_fan_pwr' => 330,
|
301
|
+
'condenser_fan_pwr_curve_name' => nil,
|
302
|
+
'space_names' =>
|
297
303
|
[
|
298
|
-
|
299
|
-
|
304
|
+
'Kitchen'
|
305
|
+
]
|
300
306
|
}
|
301
307
|
]
|
302
308
|
end
|
@@ -343,7 +349,7 @@ class OpenStudio::Model::Model
|
|
343
349
|
elsif building_vintage == '90.1-2007'
|
344
350
|
case climate_zone
|
345
351
|
when 'ASHRAE 169-2006-1A', 'ASHRAE 169-2006-2A', 'ASHRAE 169-2006-2B', 'ASHRAE 169-2006-3A', 'ASHRAE 169-2006-3B',
|
346
|
-
|
352
|
+
'ASHRAE 169-2006-3C', 'ASHRAE 169-2006-4A', 'ASHRAE 169-2006-4B', 'ASHRAE 169-2006-4C'
|
347
353
|
infiltration_per_zone_diningdoor = 0.902834611
|
348
354
|
infiltration_diningdoor.setSchedule(add_schedule('RestaurantFastFood DOOR_INFIL_SCH'))
|
349
355
|
else
|
@@ -440,14 +446,14 @@ class OpenStudio::Model::Model
|
|
440
446
|
thermostat = self.getThermostatSetpointDualSetpointByName(thermostat_name).get
|
441
447
|
case building_vintage
|
442
448
|
when '90.1-2004', '90.1-2007', '90.1-2010'
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
449
|
+
if climate_zone == 'ASHRAE 169-2006-2B' || climate_zone == 'ASHRAE 169-2006-1B' || climate_zone == 'ASHRAE 169-2006-3B'
|
450
|
+
case space_name
|
451
|
+
when 'Dining'
|
452
|
+
thermostat.setCoolingSetpointTemperatureSchedule(add_schedule("RestaurantFastFood CLGSETP_SCH_NO_OPTIMUM"))
|
453
|
+
when 'Kitchen'
|
454
|
+
thermostat.setCoolingSetpointTemperatureSchedule(add_schedule("RestaurantFastFood CLGSETP_KITCHEN_SCH_NO_OPTIMUM"))
|
455
|
+
end
|
456
|
+
end
|
451
457
|
end
|
452
458
|
end
|
453
459
|
end
|
@@ -509,7 +515,7 @@ class OpenStudio::Model::Model
|
|
509
515
|
|
510
516
|
def update_waterheater_loss_coefficient(building_vintage)
|
511
517
|
case building_vintage
|
512
|
-
when '90.1-2004', '90.1-2007', '90.1-2010', '90.1-2013'
|
518
|
+
when '90.1-2004', '90.1-2007', '90.1-2010', '90.1-2013', 'NECB 2011'
|
513
519
|
self.getWaterHeaterMixeds.sort.each do |water_heater|
|
514
520
|
water_heater.setOffCycleLossCoefficienttoAmbientTemperature(7.561562668)
|
515
521
|
water_heater.setOnCycleLossCoefficienttoAmbientTemperature(7.561562668)
|
@@ -517,6 +523,7 @@ class OpenStudio::Model::Model
|
|
517
523
|
end
|
518
524
|
end
|
519
525
|
|
526
|
+
|
520
527
|
def custom_swh_tweaks(building_type, building_vintage, climate_zone, prototype_input)
|
521
528
|
|
522
529
|
self.update_waterheater_loss_coefficient(building_vintage)
|