openstudio-standards 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/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
@@ -8,12 +8,23 @@ class OpenStudio::Model::Model
|
|
8
8
|
# TODO: Need to determine if WaterHeater can be alone or if we need to 'fake' it.
|
9
9
|
|
10
10
|
def define_space_type_map(building_type, building_vintage, climate_zone)
|
11
|
-
space_type_map =
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
11
|
+
space_type_map = nil
|
12
|
+
case building_vintage
|
13
|
+
when 'NECB 2011'
|
14
|
+
space_type_map ={
|
15
|
+
"Storage area" => ["Back_Space"],
|
16
|
+
"Retail - sales" => ["Core_Retail", "Front_Retail", "Point_Of_Sale"],
|
17
|
+
"Lobby - elevator" => ["Front_Entry"]
|
18
|
+
}
|
19
|
+
|
20
|
+
else
|
21
|
+
space_type_map = {
|
22
|
+
'Back_Space' => ['Back_Space'],
|
23
|
+
'Entry' => ['Front_Entry'],
|
24
|
+
'Point_of_Sale' => ['Point_Of_Sale'],
|
25
|
+
'Retail' => ['Core_Retail', 'Front_Retail']
|
26
|
+
}
|
27
|
+
end
|
17
28
|
return space_type_map
|
18
29
|
end
|
19
30
|
|
@@ -35,18 +46,19 @@ class OpenStudio::Model::Model
|
|
35
46
|
|
36
47
|
OpenStudio::logFree(OpenStudio::Info, 'openstudio.model.Model', 'Started building type specific adjustments')
|
37
48
|
|
49
|
+
|
38
50
|
# Add the door infiltration for vintage 2004,2007,2010,2013
|
39
51
|
case building_vintage
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
52
|
+
when '90.1-2004','90.1-2007','90.1-2010','90.1-2013'
|
53
|
+
entry_space = self.getSpaceByName('Front_Entry').get
|
54
|
+
infiltration_entry = OpenStudio::Model::SpaceInfiltrationDesignFlowRate.new(self)
|
55
|
+
infiltration_entry.setName("Entry door Infiltration")
|
56
|
+
infiltration_per_zone = 1.418672682
|
57
|
+
infiltration_entry.setDesignFlowRate(infiltration_per_zone)
|
58
|
+
infiltration_entry.setSchedule(add_schedule('RetailStandalone INFIL_Door_Opening_SCH'))
|
59
|
+
infiltration_entry.setSpace(entry_space)
|
60
|
+
else
|
61
|
+
# do nothing
|
50
62
|
end
|
51
63
|
|
52
64
|
OpenStudio::logFree(OpenStudio::Info, 'openstudio.model.Model', 'Finished building type specific adjustments')
|
@@ -57,7 +69,7 @@ class OpenStudio::Model::Model
|
|
57
69
|
|
58
70
|
def update_waterheater_loss_coefficient(building_vintage)
|
59
71
|
case building_vintage
|
60
|
-
when '90.1-2004', '90.1-2007', '90.1-2010', '90.1-2013'
|
72
|
+
when '90.1-2004', '90.1-2007', '90.1-2010', '90.1-2013', 'NECB 2011'
|
61
73
|
self.getWaterHeaterMixeds.sort.each do |water_heater|
|
62
74
|
water_heater.setOffCycleLossCoefficienttoAmbientTemperature(4.10807252)
|
63
75
|
water_heater.setOnCycleLossCoefficienttoAmbientTemperature(4.10807252)
|
@@ -3,17 +3,26 @@
|
|
3
3
|
class OpenStudio::Model::Model
|
4
4
|
|
5
5
|
def define_space_type_map(building_type, building_vintage, climate_zone)
|
6
|
-
space_type_map =
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
6
|
+
space_type_map = nil
|
7
|
+
case building_vintage
|
8
|
+
|
9
|
+
when 'NECB 2011'
|
10
|
+
space_type_map ={
|
11
|
+
"Retail - sales" => ["LGstore1", "LGstore2", "SMstore1", "SMstore2", "SMstore3", "SMstore4", "SMstore5", "SMstore6", "SMstore7", "SMstore8"]
|
12
|
+
}
|
13
|
+
else
|
14
|
+
space_type_map = {
|
15
|
+
'Strip mall - type 1' => [
|
16
|
+
'LGstore1', 'SMstore1'
|
17
|
+
],
|
18
|
+
'Strip mall - type 2' => [
|
19
|
+
'SMstore2', 'SMstore3', 'SMstore4'
|
20
|
+
],
|
21
|
+
'Strip mall - type 3' => [
|
22
|
+
'LGstore2', 'SMstore5', 'SMstore6', 'SMstore7', 'SMstore8'
|
23
|
+
]
|
24
|
+
}
|
25
|
+
end
|
17
26
|
return space_type_map
|
18
27
|
end
|
19
28
|
|
@@ -90,38 +99,39 @@ class OpenStudio::Model::Model
|
|
90
99
|
# Add infiltration door opening
|
91
100
|
# Spaces names to design infiltration rates (m3/s)
|
92
101
|
case building_vintage
|
93
|
-
|
94
|
-
|
95
|
-
|
102
|
+
when '90.1-2004','90.1-2007','90.1-2010', '90.1-2013'
|
103
|
+
door_infiltration_map = { ['LGstore1','LGstore2'] => 0.388884328,
|
104
|
+
['SMstore1','SMstore2', 'SMstore3', 'SMstore4','SMstore5', 'SMstore6', 'SMstore7', 'SMstore8']=>0.222287037}
|
96
105
|
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
end
|
106
|
+
door_infiltration_map.each_pair do |space_names, infiltration_design_flowrate|
|
107
|
+
space_names.each do |space_name|
|
108
|
+
space = self.getSpaceByName(space_name).get
|
109
|
+
# Create the infiltration object and hook it up to the space type
|
110
|
+
infiltration = OpenStudio::Model::SpaceInfiltrationDesignFlowRate.new(self)
|
111
|
+
infiltration.setName("#{space_name} Door Open Infiltration")
|
112
|
+
infiltration.setSpace(space)
|
113
|
+
infiltration.setDesignFlowRate(infiltration_design_flowrate)
|
114
|
+
infiltration_schedule = self.add_schedule('RetailStripmall INFIL_Door_Opening_SCH')
|
115
|
+
if infiltration_schedule.nil?
|
116
|
+
OpenStudio::logFree(OpenStudio::Error, 'openstudio.model.Model', "Can't find schedule (RetailStripmall INFIL_Door_Opening_SCH).")
|
117
|
+
return false
|
118
|
+
else
|
119
|
+
infiltration.setSchedule(infiltration_schedule)
|
112
120
|
end
|
113
121
|
end
|
114
|
-
|
115
|
-
|
122
|
+
end
|
123
|
+
else
|
124
|
+
# do nothing for the old vintage
|
116
125
|
end
|
117
126
|
|
118
127
|
OpenStudio::logFree(OpenStudio::Info, 'openstudio.model.Model', 'Finished building type specific adjustments')
|
119
128
|
return true
|
120
129
|
end #add hvac
|
121
130
|
|
131
|
+
|
122
132
|
def update_waterheater_loss_coefficient(building_vintage)
|
123
133
|
case building_vintage
|
124
|
-
when '90.1-2004', '90.1-2007', '90.1-2010', '90.1-2013'
|
134
|
+
when '90.1-2004', '90.1-2007', '90.1-2010', '90.1-2013', 'NECB 2011'
|
125
135
|
self.getWaterHeaterMixeds.sort.each do |water_heater|
|
126
136
|
water_heater.setOffCycleLossCoefficienttoAmbientTemperature(1.205980747)
|
127
137
|
water_heater.setOnCycleLossCoefficienttoAmbientTemperature(1.205980747)
|
@@ -4,96 +4,112 @@ class OpenStudio::Model::Model
|
|
4
4
|
|
5
5
|
def define_space_type_map(building_type, building_vintage, climate_zone)
|
6
6
|
|
7
|
+
|
7
8
|
space_type_map = nil
|
8
9
|
|
9
10
|
case building_vintage
|
10
11
|
when 'DOE Ref Pre-1980', 'DOE Ref 1980-2004'
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
12
|
+
space_type_map = {
|
13
|
+
'Office' => ['Offices_ZN_1_FLR_1', 'Offices_ZN_1_FLR_2'],
|
14
|
+
'Lobby' => ['Lobby_ZN_1_FLR_2', 'Lobby_ZN_1_FLR_1'],
|
15
|
+
'Gym' => ['Gym_ZN_1_FLR_1'],
|
16
|
+
'Gym - audience' => ['Aux_Gym_ZN_1_FLR_1'],
|
17
|
+
'Mechanical' => ['Mech_ZN_1_FLR_2', 'Mech_ZN_1_FLR_1'],
|
18
|
+
'Cafeteria' => ['Cafeteria_ZN_1_FLR_1'],
|
19
|
+
'Kitchen' => ['Kitchen_ZN_1_FLR_1'],
|
20
|
+
'Restroom' => ['Bathrooms_ZN_1_FLR_2', 'Bathrooms_ZN_1_FLR_1'],
|
21
|
+
'Auditorium' => ['Auditorium_ZN_1_FLR_1'],
|
22
|
+
'Library' => ['LIBRARY_MEDIA_CENTER_ZN_1_FLR_2'],
|
23
|
+
'Corridor' => ['Corridor_Pod_1_ZN_1_FLR_1', 'Corridor_Pod_3_ZN_1_FLR_2',
|
24
|
+
'Main_Corridor_ZN_1_FLR_2', 'Main_Corridor_ZN_1_FLR_1',
|
25
|
+
'Corridor_Pod_3_ZN_1_FLR_1', 'Corridor_Pod_1_ZN_1_FLR_2',
|
26
|
+
'Corridor_Pod_2_ZN_1_FLR_1', 'Corridor_Pod_2_ZN_1_FLR_2'],
|
27
|
+
'Classroom' => [
|
28
|
+
'Mult_Class_2_Pod_2_ZN_1_FLR_2',
|
29
|
+
'Mult_Class_2_Pod_3_ZN_1_FLR_1',
|
30
|
+
'Corner_Class_2_Pod_1_ZN_1_FLR_1',
|
31
|
+
'Mult_Class_2_Pod_1_ZN_1_FLR_2',
|
32
|
+
'Corner_Class_1_Pod_1_ZN_1_FLR_1',
|
33
|
+
'Corner_Class_2_Pod_1_ZN_1_FLR_2',
|
34
|
+
'Corner_Class_1_Pod_2_ZN_1_FLR_2',
|
35
|
+
'Mult_Class_1_Pod_1_ZN_1_FLR_2',
|
36
|
+
'Corner_Class_2_Pod_2_ZN_1_FLR_2',
|
37
|
+
'Mult_Class_2_Pod_2_ZN_1_FLR_1',
|
38
|
+
'Mult_Class_2_Pod_3_ZN_1_FLR_2',
|
39
|
+
'Corner_Class_1_Pod_3_ZN_1_FLR_1',
|
40
|
+
'Mult_Class_1_Pod_1_ZN_1_FLR_1',
|
41
|
+
'Mult_Class_1_Pod_2_ZN_1_FLR_2',
|
42
|
+
'Mult_Class_1_Pod_2_ZN_1_FLR_1',
|
43
|
+
'Mult_Class_2_Pod_1_ZN_1_FLR_1',
|
44
|
+
'Mult_Class_1_Pod_3_ZN_1_FLR_1',
|
45
|
+
'Corner_Class_1_Pod_1_ZN_1_FLR_2',
|
46
|
+
'Corner_Class_1_Pod_2_ZN_1_FLR_1',
|
47
|
+
'Corner_Class_2_Pod_2_ZN_1_FLR_1',
|
48
|
+
'Corner_Class_1_Pod_3_ZN_1_FLR_2',
|
49
|
+
'Mult_Class_1_Pod_3_ZN_1_FLR_2',
|
50
|
+
'Corner_Class_2_Pod_3_ZN_1_FLR_1',
|
51
|
+
'Corner_Class_2_Pod_3_ZN_1_FLR_2'
|
52
|
+
]
|
53
|
+
}
|
54
|
+
when 'NECB 2011'
|
55
|
+
space_type_map ={
|
56
|
+
"Audience - auditorium" => ["Auditorium_ZN_1_FLR_1"],
|
57
|
+
"Gym - play" => ["Aux_Gym_ZN_1_FLR_1", "Gym_ZN_1_FLR_1"],
|
58
|
+
"Washroom" => ["Bathrooms_ZN_1_FLR_1", "Bathrooms_ZN_1_FLR_2"],
|
59
|
+
"Conf./meet./multi-purpose" => ["Cafeteria_ZN_1_FLR_1"],
|
60
|
+
"Classroom/lecture/training" => ["Corner_Class_1_Pod_1_ZN_1_FLR_1", "Corner_Class_1_Pod_1_ZN_1_FLR_2", "Corner_Class_1_Pod_2_ZN_1_FLR_1", "Corner_Class_1_Pod_2_ZN_1_FLR_2", "Corner_Class_1_Pod_3_ZN_1_FLR_1", "Corner_Class_1_Pod_3_ZN_1_FLR_2", "Corner_Class_2_Pod_1_ZN_1_FLR_1", "Corner_Class_2_Pod_1_ZN_1_FLR_2", "Corner_Class_2_Pod_2_ZN_1_FLR_1", "Corner_Class_2_Pod_2_ZN_1_FLR_2", "Corner_Class_2_Pod_3_ZN_1_FLR_1", "Corner_Class_2_Pod_3_ZN_1_FLR_2", "Mult_Class_1_Pod_1_ZN_1_FLR_1", "Mult_Class_1_Pod_1_ZN_1_FLR_2", "Mult_Class_1_Pod_2_ZN_1_FLR_1", "Mult_Class_1_Pod_2_ZN_1_FLR_2", "Mult_Class_1_Pod_3_ZN_1_FLR_1", "Mult_Class_1_Pod_3_ZN_1_FLR_2", "Mult_Class_2_Pod_1_ZN_1_FLR_1", "Mult_Class_2_Pod_1_ZN_1_FLR_2", "Mult_Class_2_Pod_2_ZN_1_FLR_1", "Mult_Class_2_Pod_2_ZN_1_FLR_2", "Mult_Class_2_Pod_3_ZN_1_FLR_1", "Mult_Class_2_Pod_3_ZN_1_FLR_2"],
|
61
|
+
"Corr. >= 2.4m wide" => ["Corridor_Pod_1_ZN_1_FLR_1", "Corridor_Pod_1_ZN_1_FLR_2", "Corridor_Pod_2_ZN_1_FLR_1", "Corridor_Pod_2_ZN_1_FLR_2", "Corridor_Pod_3_ZN_1_FLR_1", "Corridor_Pod_3_ZN_1_FLR_2", "Main_Corridor_ZN_1_FLR_1", "Main_Corridor_ZN_1_FLR_2"],
|
62
|
+
"Food preparation" => ["Kitchen_ZN_1_FLR_1"],
|
63
|
+
"Library - reading" => ["LIBRARY_MEDIA_CENTER_ZN_1_FLR_2"],
|
64
|
+
"Lobby - elevator" => ["Lobby_ZN_1_FLR_1", "Lobby_ZN_1_FLR_2"],
|
65
|
+
"Electrical/Mechanical" => ["Mech_ZN_1_FLR_1", "Mech_ZN_1_FLR_2"],
|
66
|
+
"Office - enclosed" => ["Offices_ZN_1_FLR_1", "Offices_ZN_1_FLR_2"]
|
67
|
+
}
|
53
68
|
else
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
69
|
+
space_type_map = {
|
70
|
+
'Office' => ['Offices_ZN_1_FLR_1', 'Offices_ZN_1_FLR_2'],
|
71
|
+
'Lobby' => ['Lobby_ZN_1_FLR_2', 'Lobby_ZN_1_FLR_1'],
|
72
|
+
'Gym' => ['Gym_ZN_1_FLR_1', 'Aux_Gym_ZN_1_FLR_1'],
|
73
|
+
'Mechanical' => ['Mech_ZN_1_FLR_2', 'Mech_ZN_1_FLR_1'],
|
74
|
+
'Cafeteria' => ['Cafeteria_ZN_1_FLR_1'],
|
75
|
+
'Kitchen' => ['Kitchen_ZN_1_FLR_1'],
|
76
|
+
'Restroom' => ['Bathrooms_ZN_1_FLR_2', 'Bathrooms_ZN_1_FLR_1'],
|
77
|
+
'Auditorium' => ['Auditorium_ZN_1_FLR_1'],
|
78
|
+
'Library' => ['LIBRARY_MEDIA_CENTER_ZN_1_FLR_2'],
|
79
|
+
'Corridor' => ['Corridor_Pod_1_ZN_1_FLR_1', 'Corridor_Pod_3_ZN_1_FLR_2',
|
80
|
+
'Main_Corridor_ZN_1_FLR_2', 'Main_Corridor_ZN_1_FLR_1',
|
81
|
+
'Corridor_Pod_3_ZN_1_FLR_1', 'Corridor_Pod_1_ZN_1_FLR_2',
|
82
|
+
'Corridor_Pod_2_ZN_1_FLR_1', 'Corridor_Pod_2_ZN_1_FLR_2'],
|
83
|
+
'Classroom' => [
|
84
|
+
'Mult_Class_2_Pod_2_ZN_1_FLR_2',
|
85
|
+
'Mult_Class_2_Pod_3_ZN_1_FLR_1',
|
86
|
+
'Corner_Class_2_Pod_1_ZN_1_FLR_1',
|
87
|
+
'Mult_Class_2_Pod_1_ZN_1_FLR_2',
|
88
|
+
'Corner_Class_1_Pod_1_ZN_1_FLR_1',
|
89
|
+
'Corner_Class_2_Pod_1_ZN_1_FLR_2',
|
90
|
+
'Corner_Class_1_Pod_2_ZN_1_FLR_2',
|
91
|
+
'Mult_Class_1_Pod_1_ZN_1_FLR_2',
|
92
|
+
'Corner_Class_2_Pod_2_ZN_1_FLR_2',
|
93
|
+
'Mult_Class_2_Pod_2_ZN_1_FLR_1',
|
94
|
+
'Mult_Class_2_Pod_3_ZN_1_FLR_2',
|
95
|
+
'Corner_Class_1_Pod_3_ZN_1_FLR_1',
|
96
|
+
'Mult_Class_1_Pod_1_ZN_1_FLR_1',
|
97
|
+
'Mult_Class_1_Pod_2_ZN_1_FLR_2',
|
98
|
+
'Mult_Class_1_Pod_2_ZN_1_FLR_1',
|
99
|
+
'Mult_Class_2_Pod_1_ZN_1_FLR_1',
|
100
|
+
'Mult_Class_1_Pod_3_ZN_1_FLR_1',
|
101
|
+
'Corner_Class_1_Pod_1_ZN_1_FLR_2',
|
102
|
+
'Corner_Class_1_Pod_2_ZN_1_FLR_1',
|
103
|
+
'Corner_Class_2_Pod_2_ZN_1_FLR_1',
|
104
|
+
'Corner_Class_1_Pod_3_ZN_1_FLR_2',
|
105
|
+
'Mult_Class_1_Pod_3_ZN_1_FLR_2',
|
106
|
+
'Corner_Class_2_Pod_3_ZN_1_FLR_1',
|
107
|
+
'Corner_Class_2_Pod_3_ZN_1_FLR_2'
|
108
|
+
]
|
109
|
+
}
|
95
110
|
end
|
96
111
|
|
112
|
+
|
97
113
|
return space_type_map
|
98
114
|
|
99
115
|
end
|
@@ -106,297 +122,297 @@ class OpenStudio::Model::Model
|
|
106
122
|
when 'DOE Ref Pre-1980'
|
107
123
|
system_to_space_map = [
|
108
124
|
{
|
109
|
-
|
110
|
-
|
111
|
-
|
125
|
+
'type' => 'CAV',
|
126
|
+
'name' => 'CAV_POD_1',
|
127
|
+
'space_names' =>
|
112
128
|
[
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
129
|
+
'Corner_Class_1_Pod_1_ZN_1_FLR_1',
|
130
|
+
'Corner_Class_1_Pod_1_ZN_1_FLR_2',
|
131
|
+
'Mult_Class_1_Pod_1_ZN_1_FLR_1',
|
132
|
+
'Mult_Class_1_Pod_1_ZN_1_FLR_2',
|
133
|
+
'Corridor_Pod_1_ZN_1_FLR_1',
|
134
|
+
'Corridor_Pod_1_ZN_1_FLR_2',
|
135
|
+
'Corner_Class_2_Pod_1_ZN_1_FLR_1',
|
136
|
+
'Corner_Class_2_Pod_1_ZN_1_FLR_2',
|
137
|
+
'Mult_Class_2_Pod_1_ZN_1_FLR_1',
|
138
|
+
'Mult_Class_2_Pod_1_ZN_1_FLR_2'
|
139
|
+
]
|
124
140
|
},
|
125
141
|
{
|
126
|
-
|
127
|
-
|
128
|
-
|
142
|
+
'type' => 'CAV',
|
143
|
+
'name' => 'CAV_POD_2',
|
144
|
+
'space_names' =>
|
129
145
|
[
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
146
|
+
'Corner_Class_1_Pod_2_ZN_1_FLR_1',
|
147
|
+
'Corner_Class_1_Pod_2_ZN_1_FLR_2',
|
148
|
+
'Mult_Class_1_Pod_2_ZN_1_FLR_1',
|
149
|
+
'Mult_Class_1_Pod_2_ZN_1_FLR_2',
|
150
|
+
'Corridor_Pod_2_ZN_1_FLR_1',
|
151
|
+
'Corridor_Pod_2_ZN_1_FLR_2',
|
152
|
+
'Corner_Class_2_Pod_2_ZN_1_FLR_1',
|
153
|
+
'Corner_Class_2_Pod_2_ZN_1_FLR_2',
|
154
|
+
'Mult_Class_2_Pod_2_ZN_1_FLR_1',
|
155
|
+
'Mult_Class_2_Pod_2_ZN_1_FLR_2'
|
156
|
+
]
|
141
157
|
},
|
142
158
|
{
|
143
|
-
|
144
|
-
|
145
|
-
|
159
|
+
'type' => 'CAV',
|
160
|
+
'name' => 'CAV_POD_3',
|
161
|
+
'space_names' =>
|
146
162
|
[
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
163
|
+
'Corner_Class_1_Pod_3_ZN_1_FLR_1',
|
164
|
+
'Corner_Class_1_Pod_3_ZN_1_FLR_2',
|
165
|
+
'Mult_Class_1_Pod_3_ZN_1_FLR_1',
|
166
|
+
'Mult_Class_1_Pod_3_ZN_1_FLR_2',
|
167
|
+
'Corridor_Pod_3_ZN_1_FLR_1',
|
168
|
+
'Corridor_Pod_3_ZN_1_FLR_2',
|
169
|
+
'Corner_Class_2_Pod_3_ZN_1_FLR_1',
|
170
|
+
'Corner_Class_2_Pod_3_ZN_1_FLR_2',
|
171
|
+
'Mult_Class_2_Pod_3_ZN_1_FLR_1',
|
172
|
+
'Mult_Class_2_Pod_3_ZN_1_FLR_2'
|
173
|
+
]
|
158
174
|
},
|
159
175
|
{
|
160
|
-
|
161
|
-
|
162
|
-
|
176
|
+
'type' => 'CAV',
|
177
|
+
'name' => 'CAV_OTHER',
|
178
|
+
'space_names' =>
|
163
179
|
[
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
180
|
+
'Main_Corridor_ZN_1_FLR_1',
|
181
|
+
'Main_Corridor_ZN_1_FLR_2',
|
182
|
+
'Lobby_ZN_1_FLR_1',
|
183
|
+
'Lobby_ZN_1_FLR_2',
|
184
|
+
'Bathrooms_ZN_1_FLR_1',
|
185
|
+
'Bathrooms_ZN_1_FLR_2',
|
186
|
+
'Offices_ZN_1_FLR_1',
|
187
|
+
'Offices_ZN_1_FLR_2',
|
188
|
+
'LIBRARY_MEDIA_CENTER_ZN_1_FLR_2',
|
189
|
+
'Mech_ZN_1_FLR_1',
|
190
|
+
'Mech_ZN_1_FLR_2'
|
191
|
+
]
|
176
192
|
},
|
177
193
|
{
|
178
|
-
|
179
|
-
|
180
|
-
|
194
|
+
'type' => 'PSZ-AC',
|
195
|
+
'name' => 'PSZ-AC_1-5',
|
196
|
+
'space_names' =>
|
181
197
|
[
|
182
|
-
|
183
|
-
|
198
|
+
'Gym_ZN_1_FLR_1'
|
199
|
+
]
|
184
200
|
},
|
185
201
|
{
|
186
|
-
|
187
|
-
|
188
|
-
|
202
|
+
'type' => 'PSZ-AC',
|
203
|
+
'name' => 'PSZ-AC_2-6',
|
204
|
+
'space_names' =>
|
189
205
|
[
|
190
|
-
|
191
|
-
|
206
|
+
'Aux_Gym_ZN_1_FLR_1'
|
207
|
+
]
|
192
208
|
},
|
193
209
|
{
|
194
|
-
|
195
|
-
|
196
|
-
|
210
|
+
'type' => 'PSZ-AC',
|
211
|
+
'name' => 'PSZ-AC_3-7',
|
212
|
+
'space_names' =>
|
197
213
|
[
|
198
|
-
|
199
|
-
|
214
|
+
'Auditorium_ZN_1_FLR_1'
|
215
|
+
]
|
200
216
|
},
|
201
217
|
{
|
202
|
-
|
203
|
-
|
204
|
-
|
218
|
+
'type' => 'PSZ-AC',
|
219
|
+
'name' => 'PSZ-AC_4-8',
|
220
|
+
'space_names' =>
|
205
221
|
[
|
206
|
-
|
207
|
-
|
222
|
+
'Kitchen_ZN_1_FLR_1'
|
223
|
+
]
|
208
224
|
},
|
209
225
|
{
|
210
|
-
|
211
|
-
|
212
|
-
|
226
|
+
'type' => 'PSZ-AC',
|
227
|
+
'name' => 'PSZ-AC_5-9',
|
228
|
+
'space_names' =>
|
213
229
|
[
|
214
|
-
|
215
|
-
|
230
|
+
'Cafeteria_ZN_1_FLR_1'
|
231
|
+
]
|
216
232
|
},
|
217
233
|
{
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
234
|
+
'type' => 'Exhaust Fan',
|
235
|
+
'name' => 'Kitchen Exhaust Fan',
|
236
|
+
'availability_sch_name' => 'SchoolSecondary Kitchen_Exhaust_SCH',
|
237
|
+
'flow_rate' => OpenStudio.convert(5400,'cfm','m^3/s').get,
|
238
|
+
'flow_fraction_schedule_name' => 'SchoolSecondary Kitchen_Exhaust_SCH_DCV',
|
239
|
+
'balanced_exhaust_fraction_schedule_name' => 'SchoolSecondary Kitchen Exhaust Fan Balanced Exhaust Fraction Schedule',
|
240
|
+
'space_names' =>
|
225
241
|
[
|
226
|
-
|
227
|
-
|
242
|
+
'Kitchen_ZN_1_FLR_1'
|
243
|
+
]
|
228
244
|
},
|
229
245
|
{
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
246
|
+
'type' => 'Exhaust Fan',
|
247
|
+
'name' => 'Bathrooms_ZN_1_FLR_1',
|
248
|
+
'availability_sch_name' => 'SchoolSecondary Hours_of_operation',
|
249
|
+
'flow_rate' => OpenStudio.convert(600,'cfm','m^3/s').get,
|
250
|
+
'space_names' =>
|
235
251
|
[
|
236
|
-
|
237
|
-
|
252
|
+
'Bathrooms_ZN_1_FLR_1'
|
253
|
+
]
|
238
254
|
},
|
239
255
|
{
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
256
|
+
'type' => 'Exhaust Fan',
|
257
|
+
'name' => 'Bathrooms_ZN_1_FLR_2',
|
258
|
+
'availability_sch_name' => 'SchoolSecondary Hours_of_operation',
|
259
|
+
'flow_rate' => OpenStudio.convert(600,'cfm','m^3/s').get,
|
260
|
+
'space_names' =>
|
245
261
|
[
|
246
|
-
|
247
|
-
|
262
|
+
'Bathrooms_ZN_1_FLR_2'
|
263
|
+
]
|
248
264
|
},
|
249
265
|
{
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
266
|
+
'type' => 'Refrigeration',
|
267
|
+
'case_type' => 'Walkin Freezer',
|
268
|
+
'cooling_capacity_per_length' => 734.0,
|
269
|
+
'length' => 7.32,
|
270
|
+
'evaporator_fan_pwr_per_length' => 68.3,
|
271
|
+
'lighting_per_length' => 33.0,
|
272
|
+
'lighting_sch_name' => 'SchoolSecondary BLDG_LIGHT_SCH',
|
273
|
+
'defrost_pwr_per_length' => 410.0,
|
274
|
+
'restocking_sch_name' => 'SchoolSecondary Kitchen_ZN_1_FLR_1_Case:1_WALKINFREEZER_WalkInStockingSched',
|
275
|
+
'cop' => 1.5,
|
276
|
+
'cop_f_of_t_curve_name' => 'RACK1_RackCOPfTCurve',
|
277
|
+
'condenser_fan_pwr' => 750.0,
|
278
|
+
'condenser_fan_pwr_curve_name' => 'RACK1_RackCondFanCurve2',
|
279
|
+
'space_names' =>
|
264
280
|
[
|
265
|
-
|
266
|
-
|
281
|
+
'Kitchen_ZN_1_FLR_1'
|
282
|
+
]
|
267
283
|
},
|
268
284
|
{
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
285
|
+
'type' => 'Refrigeration',
|
286
|
+
'case_type' => 'Display Case',
|
287
|
+
'cooling_capacity_per_length' => 734.0,
|
288
|
+
'length' => 7.32,
|
289
|
+
'evaporator_fan_pwr_per_length' => 55.0,
|
290
|
+
'lighting_per_length' => 33.0,
|
291
|
+
'lighting_sch_name' => 'SchoolSecondary BLDG_LIGHT_SCH',
|
292
|
+
'defrost_pwr_per_length' => 0.0,
|
293
|
+
'restocking_sch_name' => 'SchoolSecondary Kitchen_ZN_1_FLR_1_Case:1_WALKINFREEZER_WalkInStockingSched',
|
294
|
+
'cop' => 3.0,
|
295
|
+
'cop_f_of_t_curve_name' => 'RACK2_RackCOPfTCurve',
|
296
|
+
'condenser_fan_pwr' => 750.0,
|
297
|
+
'condenser_fan_pwr_curve_name' => 'RACK1_RackCondFanCurve2',
|
298
|
+
'space_names' =>
|
283
299
|
[
|
284
|
-
|
285
|
-
|
300
|
+
'Kitchen_ZN_1_FLR_1'
|
301
|
+
]
|
286
302
|
}
|
287
303
|
]
|
288
304
|
else
|
289
305
|
system_to_space_map = [
|
290
|
-
|
306
|
+
{
|
291
307
|
'type' => 'VAV',
|
292
308
|
'name' => 'VAV_POD_1',
|
293
309
|
'space_names' =>
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
310
|
+
[
|
311
|
+
'Corner_Class_1_Pod_1_ZN_1_FLR_1',
|
312
|
+
'Corner_Class_1_Pod_1_ZN_1_FLR_2',
|
313
|
+
'Mult_Class_1_Pod_1_ZN_1_FLR_1',
|
314
|
+
'Mult_Class_1_Pod_1_ZN_1_FLR_2',
|
315
|
+
'Corridor_Pod_1_ZN_1_FLR_1',
|
316
|
+
'Corridor_Pod_1_ZN_1_FLR_2',
|
317
|
+
'Corner_Class_2_Pod_1_ZN_1_FLR_1',
|
318
|
+
'Corner_Class_2_Pod_1_ZN_1_FLR_2',
|
319
|
+
'Mult_Class_2_Pod_1_ZN_1_FLR_1',
|
320
|
+
'Mult_Class_2_Pod_1_ZN_1_FLR_2'
|
305
321
|
]
|
306
|
-
|
307
|
-
|
322
|
+
},
|
323
|
+
{
|
308
324
|
'type' => 'VAV',
|
309
325
|
'name' => 'VAV_POD_2',
|
310
326
|
'space_names' =>
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
327
|
+
[
|
328
|
+
'Corner_Class_1_Pod_2_ZN_1_FLR_1',
|
329
|
+
'Corner_Class_1_Pod_2_ZN_1_FLR_2',
|
330
|
+
'Mult_Class_1_Pod_2_ZN_1_FLR_1',
|
331
|
+
'Mult_Class_1_Pod_2_ZN_1_FLR_2',
|
332
|
+
'Corridor_Pod_2_ZN_1_FLR_1',
|
333
|
+
'Corridor_Pod_2_ZN_1_FLR_2',
|
334
|
+
'Corner_Class_2_Pod_2_ZN_1_FLR_1',
|
335
|
+
'Corner_Class_2_Pod_2_ZN_1_FLR_2',
|
336
|
+
'Mult_Class_2_Pod_2_ZN_1_FLR_1',
|
337
|
+
'Mult_Class_2_Pod_2_ZN_1_FLR_2'
|
322
338
|
]
|
323
|
-
|
324
|
-
|
339
|
+
},
|
340
|
+
{
|
325
341
|
'type' => 'VAV',
|
326
342
|
'name' => 'VAV_POD_3',
|
327
343
|
'space_names' =>
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
344
|
+
[
|
345
|
+
'Corner_Class_1_Pod_3_ZN_1_FLR_1',
|
346
|
+
'Corner_Class_1_Pod_3_ZN_1_FLR_2',
|
347
|
+
'Mult_Class_1_Pod_3_ZN_1_FLR_1',
|
348
|
+
'Mult_Class_1_Pod_3_ZN_1_FLR_2',
|
349
|
+
'Corridor_Pod_3_ZN_1_FLR_1',
|
350
|
+
'Corridor_Pod_3_ZN_1_FLR_2',
|
351
|
+
'Corner_Class_2_Pod_3_ZN_1_FLR_1',
|
352
|
+
'Corner_Class_2_Pod_3_ZN_1_FLR_2',
|
353
|
+
'Mult_Class_2_Pod_3_ZN_1_FLR_1',
|
354
|
+
'Mult_Class_2_Pod_3_ZN_1_FLR_2'
|
339
355
|
]
|
340
|
-
|
341
|
-
|
356
|
+
},
|
357
|
+
{
|
342
358
|
'type' => 'VAV',
|
343
359
|
'name' => 'VAV_OTHER',
|
344
360
|
'space_names' =>
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
361
|
+
[
|
362
|
+
'Main_Corridor_ZN_1_FLR_1',
|
363
|
+
'Main_Corridor_ZN_1_FLR_2',
|
364
|
+
'Lobby_ZN_1_FLR_1',
|
365
|
+
'Lobby_ZN_1_FLR_2',
|
366
|
+
'Bathrooms_ZN_1_FLR_1',
|
367
|
+
'Bathrooms_ZN_1_FLR_2',
|
368
|
+
'Offices_ZN_1_FLR_1',
|
369
|
+
'Offices_ZN_1_FLR_2',
|
370
|
+
'LIBRARY_MEDIA_CENTER_ZN_1_FLR_2',
|
371
|
+
'Mech_ZN_1_FLR_1',
|
372
|
+
'Mech_ZN_1_FLR_2'
|
357
373
|
]
|
358
|
-
|
359
|
-
|
374
|
+
},
|
375
|
+
{
|
360
376
|
'type' => 'PSZ-AC',
|
361
377
|
'name' => 'PSZ-AC_1-5',
|
362
378
|
'space_names' =>
|
363
|
-
|
364
|
-
|
379
|
+
[
|
380
|
+
'Gym_ZN_1_FLR_1'
|
365
381
|
]
|
366
|
-
|
367
|
-
|
382
|
+
},
|
383
|
+
{
|
368
384
|
'type' => 'PSZ-AC',
|
369
385
|
'name' => 'PSZ-AC_2-6',
|
370
386
|
'space_names' =>
|
371
|
-
|
372
|
-
|
387
|
+
[
|
388
|
+
'Aux_Gym_ZN_1_FLR_1'
|
373
389
|
]
|
374
|
-
|
375
|
-
|
390
|
+
},
|
391
|
+
{
|
376
392
|
'type' => 'PSZ-AC',
|
377
393
|
'name' => 'PSZ-AC_3-7',
|
378
394
|
'space_names' =>
|
379
|
-
|
380
|
-
|
395
|
+
[
|
396
|
+
'Auditorium_ZN_1_FLR_1'
|
381
397
|
]
|
382
|
-
|
383
|
-
|
398
|
+
},
|
399
|
+
{
|
384
400
|
'type' => 'PSZ-AC',
|
385
401
|
'name' => 'PSZ-AC_4-8',
|
386
402
|
'space_names' =>
|
387
|
-
|
388
|
-
|
403
|
+
[
|
404
|
+
'Kitchen_ZN_1_FLR_1'
|
389
405
|
]
|
390
|
-
|
391
|
-
|
406
|
+
},
|
407
|
+
{
|
392
408
|
'type' => 'PSZ-AC',
|
393
409
|
'name' => 'PSZ-AC_5-9',
|
394
410
|
'space_names' =>
|
395
|
-
|
396
|
-
|
411
|
+
[
|
412
|
+
'Cafeteria_ZN_1_FLR_1'
|
397
413
|
]
|
398
|
-
|
399
|
-
|
414
|
+
},
|
415
|
+
{
|
400
416
|
'type' => 'Exhaust Fan',
|
401
417
|
'name' => 'Kitchen Exhaust Fan',
|
402
418
|
'availability_sch_name' => 'SchoolSecondary Kitchen_Exhaust_SCH',
|
@@ -404,31 +420,31 @@ class OpenStudio::Model::Model
|
|
404
420
|
'flow_fraction_schedule_name' => 'SchoolSecondary Kitchen_Exhaust_SCH_DCV',
|
405
421
|
'balanced_exhaust_fraction_schedule_name' => 'SchoolSecondary Kitchen Exhaust Fan Balanced Exhaust Fraction Schedule',
|
406
422
|
'space_names' =>
|
407
|
-
|
408
|
-
|
423
|
+
[
|
424
|
+
'Kitchen_ZN_1_FLR_1'
|
409
425
|
]
|
410
|
-
|
411
|
-
|
426
|
+
},
|
427
|
+
{
|
412
428
|
'type' => 'Exhaust Fan',
|
413
429
|
'name' => 'Bathrooms_ZN_1_FLR_1',
|
414
430
|
'availability_sch_name' => 'SchoolSecondary Hours_of_operation',
|
415
431
|
'flow_rate' => OpenStudio.convert(600,'cfm','m^3/s').get,
|
416
432
|
'space_names' =>
|
417
|
-
|
418
|
-
|
433
|
+
[
|
434
|
+
'Bathrooms_ZN_1_FLR_1'
|
419
435
|
]
|
420
|
-
|
421
|
-
|
436
|
+
},
|
437
|
+
{
|
422
438
|
'type' => 'Exhaust Fan',
|
423
439
|
'name' => 'Bathrooms_ZN_1_FLR_2',
|
424
440
|
'availability_sch_name' => 'SchoolSecondary Hours_of_operation',
|
425
441
|
'flow_rate' => OpenStudio.convert(600,'cfm','m^3/s').get,
|
426
442
|
'space_names' =>
|
427
|
-
|
428
|
-
|
443
|
+
[
|
444
|
+
'Bathrooms_ZN_1_FLR_2'
|
429
445
|
]
|
430
|
-
|
431
|
-
|
446
|
+
},
|
447
|
+
{
|
432
448
|
'type' => 'Refrigeration',
|
433
449
|
'case_type' => 'Walkin Freezer',
|
434
450
|
'cooling_capacity_per_length' => 734.0,
|
@@ -443,11 +459,11 @@ class OpenStudio::Model::Model
|
|
443
459
|
'condenser_fan_pwr' => 750.0,
|
444
460
|
'condenser_fan_pwr_curve_name' => 'RACK1_RackCondFanCurve2',
|
445
461
|
'space_names' =>
|
446
|
-
|
447
|
-
|
462
|
+
[
|
463
|
+
'Kitchen_ZN_1_FLR_1'
|
448
464
|
]
|
449
|
-
|
450
|
-
|
465
|
+
},
|
466
|
+
{
|
451
467
|
'type' => 'Refrigeration',
|
452
468
|
'case_type' => 'Display Case',
|
453
469
|
'cooling_capacity_per_length' => 734.0,
|
@@ -462,11 +478,11 @@ class OpenStudio::Model::Model
|
|
462
478
|
'condenser_fan_pwr' => 750.0,
|
463
479
|
'condenser_fan_pwr_curve_name' => 'RACK1_RackCondFanCurve2',
|
464
480
|
'space_names' =>
|
465
|
-
|
466
|
-
|
481
|
+
[
|
482
|
+
'Kitchen_ZN_1_FLR_1'
|
467
483
|
]
|
468
|
-
|
469
|
-
|
484
|
+
}
|
485
|
+
]
|
470
486
|
end
|
471
487
|
|
472
488
|
return system_to_space_map
|
@@ -489,6 +505,7 @@ class OpenStudio::Model::Model
|
|
489
505
|
prototype_input['elevator_fan_schedule'],
|
490
506
|
building_type)
|
491
507
|
end
|
508
|
+
|
492
509
|
|
493
510
|
end
|
494
511
|
|