urbanopt-cli 0.1.0

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.
@@ -0,0 +1,257 @@
1
+ #*********************************************************************************
2
+ # URBANopt, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other
3
+ # contributors. All rights reserved.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without modification,
6
+ # are permitted provided that the following conditions are met:
7
+ #
8
+ # Redistributions of source code must retain the above copyright notice, this list
9
+ # of conditions and the following disclaimer.
10
+ #
11
+ # Redistributions in binary form must reproduce the above copyright notice, this
12
+ # list of conditions and the following disclaimer in the documentation and/or other
13
+ # materials provided with the distribution.
14
+ #
15
+ # Neither the name of the copyright holder nor the names of its contributors may be
16
+ # used to endorse or promote products derived from this software without specific
17
+ # prior written permission.
18
+ #
19
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20
+ # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21
+ # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22
+ # IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23
+ # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24
+ # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26
+ # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
27
+ # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
28
+ # OF THE POSSIBILITY OF SUCH DAMAGE.
29
+ #*********************************************************************************
30
+
31
+ require 'urbanopt/scenario'
32
+ require 'openstudio/common_measures'
33
+ require 'openstudio/model_articulation'
34
+
35
+ require 'json'
36
+
37
+ module URBANopt
38
+ module Scenario
39
+ class BaselineMapper < SimulationMapperBase
40
+
41
+ # class level variables
42
+ @@instance_lock = Mutex.new
43
+ @@osw = nil
44
+ @@geometry = nil
45
+
46
+ def initialize()
47
+
48
+ # do initialization of class variables in thread safe way
49
+ @@instance_lock.synchronize do
50
+ if @@osw.nil?
51
+
52
+ # load the OSW for this class
53
+ osw_path = File.join(File.dirname(__FILE__), 'base_workflow.osw')
54
+ File.open(osw_path, 'r') do |file|
55
+ @@osw = JSON.parse(file.read, symbolize_names: true)
56
+ end
57
+
58
+ # add any paths local to the project
59
+ @@osw[:file_paths] << File.join(File.dirname(__FILE__), '../weather/')
60
+
61
+ # configures OSW with extension gem paths for measures and files, all extension gems must be
62
+ # required before this
63
+ @@osw = OpenStudio::Extension.configure_osw(@@osw)
64
+ end
65
+ end
66
+ end
67
+
68
+ def create_osw(scenario, features, feature_names)
69
+
70
+ if features.size != 1
71
+ raise "TestMapper1 currently cannot simulate more than one feature"
72
+ end
73
+ feature = features[0]
74
+ feature_id = feature.id
75
+ feature_type = feature.type
76
+ feature_name = feature.name
77
+ if feature_names.size == 1
78
+ feature_name = feature_names[0]
79
+ end
80
+
81
+ if feature_type == 'Building'
82
+
83
+ building_type_1 = feature.building_type
84
+
85
+ case building_type_1
86
+ when 'Multifamily (5 or more units)'
87
+ building_type_1 = 'MidriseApartment'
88
+ when 'Multifamily (2 to 4 units)'
89
+ building_type_1 = 'MidriseApartment'
90
+ when 'Single-Family'
91
+ building_type_1 = 'MidriseApartment'
92
+ when 'Office'
93
+ building_type_1 = 'MediumOffice'
94
+ when 'Outpatient health care'
95
+ building_type_1 = 'Outpatient'
96
+ when 'Inpatient health care'
97
+ building_type_1 = 'Hospital'
98
+ when 'Lodging'
99
+ building_type_1 = 'LargeHotel'
100
+ when 'Food service'
101
+ building_type_1 = 'FullServiceRestaurant'
102
+ when 'Strip shopping mall'
103
+ building_type_1 = 'RetailStripmall'
104
+ when 'Retail other than mall'
105
+ building_type_1 = 'RetailStandalone'
106
+ when 'Education'
107
+ building_type_1 = 'SecondarySchool'
108
+ when 'Nursing'
109
+ building_type_1 = 'MidriseApartment'
110
+ when 'Mixed use'
111
+ mixed_type_1 = feature.mixed_type_1
112
+
113
+ mixed_type_2 = feature.mixed_type_2
114
+ mixed_type_2_percentage = feature.mixed_type_2_percentage
115
+ mixed_type_2_fract_bldg_area = mixed_type_2_percentage*0.01
116
+
117
+ mixed_type_3 = feature.mixed_type_3
118
+ mixed_type_3_percentage = feature.mixed_type_3_percentage
119
+ mixed_type_3_fract_bldg_area = mixed_type_3_percentage*0.01
120
+
121
+ mixed_type_4 = feature.mixed_type_4
122
+ mixed_type_4_percentage = feature.mixed_type_4_percentage
123
+ mixed_type_4_fract_bldg_area = mixed_type_4_percentage*0.01
124
+
125
+ mixed_use_types = []
126
+ mixed_use_types << mixed_type_1
127
+ mixed_use_types << mixed_type_2
128
+ mixed_use_types << mixed_type_3
129
+ mixed_use_types << mixed_type_4
130
+
131
+ openstudio_mixed_use_types = []
132
+
133
+ mixed_use_types.each do |mixed_use_type|
134
+
135
+ case mixed_use_type
136
+ when 'Multifamily (5 or more units)'
137
+ mixed_use_type = 'MidriseApartment'
138
+ when 'Multifamily (2 to 4 units)'
139
+ mixed_use_type = 'MidriseApartment'
140
+ when 'Single-Family'
141
+ mixed_use_type = 'MidriseApartment'
142
+ when 'Office'
143
+ mixed_use_type = 'MediumOffice'
144
+ when 'Outpatient health care'
145
+ mixed_use_type = 'Outpatient'
146
+ when 'Inpatient health care'
147
+ mixed_use_type = 'Hospital'
148
+ when 'Lodging'
149
+ mixed_use_type = 'LargeHotel'
150
+ when 'Food service'
151
+ mixed_use_type = 'FullServiceRestaurant'
152
+ when 'Strip shopping mall'
153
+ mixed_use_type = 'RetailStripmall'
154
+ when 'Retail other than mall'
155
+ mixed_use_type = 'RetailStandalone'
156
+ when 'Education'
157
+ mixed_use_type = 'SecondarySchool'
158
+ when 'Nursing'
159
+ mixed_use_type = 'MidriseApartment'
160
+ end
161
+
162
+ openstudio_mixed_use_types << mixed_use_type
163
+ end
164
+
165
+ openstudio_mixed_type_1 = openstudio_mixed_use_types[0]
166
+ openstudio_mixed_type_2 = openstudio_mixed_use_types[1]
167
+ openstudio_mixed_type_3 = openstudio_mixed_use_types[2]
168
+ openstudio_mixed_type_4 = openstudio_mixed_use_types[3]
169
+
170
+ end
171
+
172
+ footprint_area = feature.footprint_area
173
+ floor_height = 10
174
+ number_of_stories = feature.number_of_stories
175
+
176
+ # default values
177
+ number_of_stories_above_ground = number_of_stories
178
+ number_of_stories_below_ground = 0
179
+ begin
180
+ number_of_stories_above_ground = feature.number_of_stories_above_ground
181
+ number_of_stories_below_ground = number_of_stories - number_of_stories_above_ground
182
+ rescue
183
+ end
184
+ #template = feature.template
185
+ end
186
+
187
+ # default value for system_type
188
+ system_type = "Inferred"
189
+ begin
190
+ system_type = feature.system_type
191
+ rescue
192
+ end
193
+
194
+ # deep clone of @@osw before we configure it
195
+ osw = Marshal.load(Marshal.dump(@@osw))
196
+
197
+ # now we have the feature, we can look up its properties and set arguments in the OSW
198
+ osw[:name] = feature_name
199
+ osw[:description] = feature_name
200
+
201
+ # create a bar building, will have spaces tagged with individual space types given the input building types
202
+ OpenStudio::Extension.set_measure_argument(osw, 'create_bar_from_building_type_ratios', 'single_floor_area', footprint_area)
203
+ OpenStudio::Extension.set_measure_argument(osw, 'create_bar_from_building_type_ratios', 'floor_height', floor_height)
204
+ OpenStudio::Extension.set_measure_argument(osw, 'create_bar_from_building_type_ratios', 'num_stories_above_grade', number_of_stories_above_ground)
205
+ OpenStudio::Extension.set_measure_argument(osw, 'create_bar_from_building_type_ratios', 'num_stories_below_grade', number_of_stories_below_ground)
206
+
207
+ OpenStudio::Extension.set_measure_argument(osw, 'create_bar_from_building_type_ratios', 'bldg_type_a', building_type_1)
208
+
209
+ if building_type_1 == 'Mixed use'
210
+
211
+ OpenStudio::Extension.set_measure_argument(osw, 'create_bar_from_building_type_ratios', 'bldg_type_a', openstudio_mixed_type_1)
212
+
213
+ OpenStudio::Extension.set_measure_argument(osw, 'create_bar_from_building_type_ratios', 'bldg_type_b', openstudio_mixed_type_2)
214
+
215
+ OpenStudio::Extension.set_measure_argument(osw, 'create_bar_from_building_type_ratios', 'bldg_type_b_fract_bldg_area', mixed_type_2_fract_bldg_area)
216
+
217
+ OpenStudio::Extension.set_measure_argument(osw, 'create_bar_from_building_type_ratios', 'bldg_type_c', openstudio_mixed_type_3)
218
+
219
+ OpenStudio::Extension.set_measure_argument(osw, 'create_bar_from_building_type_ratios', 'bldg_type_c_fract_bldg_area', mixed_type_3_fract_bldg_area)
220
+
221
+ OpenStudio::Extension.set_measure_argument(osw, 'create_bar_from_building_type_ratios', 'bldg_type_d', openstudio_mixed_type_4)
222
+
223
+ OpenStudio::Extension.set_measure_argument(osw, 'create_bar_from_building_type_ratios', 'bldg_type_d_fract_bldg_area', mixed_type_4_fract_bldg_area)
224
+
225
+ end
226
+
227
+ # calling create typical building the first time will create space types
228
+ OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'add_hvac', false, 'create_typical_building_from_model 1')
229
+
230
+ # create a blended space type for each story
231
+ OpenStudio::Extension.set_measure_argument(osw,
232
+ 'blended_space_type_from_model', 'blend_method', 'Building Story')
233
+
234
+ # create geometry for the desired feature, this will reuse blended space types in the model for each story and remove the bar geometry
235
+ OpenStudio::Extension.set_measure_argument(osw, 'urban_geometry_creation', 'geojson_file', scenario.feature_file.path)
236
+ OpenStudio::Extension.set_measure_argument(osw, 'urban_geometry_creation', 'feature_id', feature_id)
237
+ OpenStudio::Extension.set_measure_argument(osw, 'urban_geometry_creation', 'surrounding_buildings', 'ShadingOnly')
238
+
239
+ if building_type_1 == 'MidriseApartment'
240
+ OpenStudio::Extension.set_measure_argument(osw, 'IncreaseInsulationRValueForExteriorWalls', '__SKIP__', true)
241
+ OpenStudio::Extension.set_measure_argument(osw, 'IncreaseInsulationRValueForExteriorWalls', 'r_value', 10)
242
+ end
243
+
244
+ # call create typical building a second time, do not touch space types, only add hvac
245
+ OpenStudio::Extension.set_measure_argument(osw, 'create_typical_building_from_model', 'system_type', system_type, 'create_typical_building_from_model 2')
246
+
247
+ # call the default feature reporting measure
248
+ OpenStudio::Extension.set_measure_argument(osw, 'default_feature_reports', 'feature_id', feature_id)
249
+ OpenStudio::Extension.set_measure_argument(osw, 'default_feature_reports', 'feature_name', feature_name)
250
+ OpenStudio::Extension.set_measure_argument(osw, 'default_feature_reports', 'feature_type', feature_type)
251
+
252
+ return osw
253
+ end
254
+
255
+ end
256
+ end
257
+ end
@@ -0,0 +1,62 @@
1
+ #*********************************************************************************
2
+ # URBANopt, Copyright (c) 2019-2020, Alliance for Sustainable Energy, LLC, and other
3
+ # contributors. All rights reserved.
4
+ #
5
+ # Redistribution and use in source and binary forms, with or without modification,
6
+ # are permitted provided that the following conditions are met:
7
+ #
8
+ # Redistributions of source code must retain the above copyright notice, this list
9
+ # of conditions and the following disclaimer.
10
+ #
11
+ # Redistributions in binary form must reproduce the above copyright notice, this
12
+ # list of conditions and the following disclaimer in the documentation and/or other
13
+ # materials provided with the distribution.
14
+ #
15
+ # Neither the name of the copyright holder nor the names of its contributors may be
16
+ # used to endorse or promote products derived from this software without specific
17
+ # prior written permission.
18
+ #
19
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20
+ # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21
+ # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22
+ # IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23
+ # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24
+ # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25
+ # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26
+ # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
27
+ # OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
28
+ # OF THE POSSIBILITY OF SUCH DAMAGE.
29
+ #*********************************************************************************
30
+
31
+ require 'urbanopt/scenario'
32
+ require 'openstudio/common_measures'
33
+ require 'openstudio/model_articulation'
34
+
35
+ require_relative 'Baseline'
36
+
37
+ require 'json'
38
+
39
+ module URBANopt
40
+ module Scenario
41
+ class HighEfficiencyMapper < BaselineMapper
42
+
43
+ def create_osw(scenario, features, feature_names)
44
+
45
+ osw = super(scenario, features, feature_names)
46
+
47
+ OpenStudio::Extension.set_measure_argument(osw, 'IncreaseInsulationRValueForExteriorWalls', '__SKIP__', false)
48
+ OpenStudio::Extension.set_measure_argument(osw, 'IncreaseInsulationRValueForExteriorWalls', 'r_value', 20)
49
+
50
+ OpenStudio::Extension.set_measure_argument(osw, 'ReduceElectricEquipmentLoadsByPercentage', '__SKIP__', false)
51
+ OpenStudio::Extension.set_measure_argument(osw, 'ReduceElectricEquipmentLoadsByPercentage', 'elecequip_power_reduction_percent', 20)
52
+
53
+ OpenStudio::Extension.set_measure_argument(osw, 'ReduceLightingLoadsByPercentage', '__SKIP__', false)
54
+ OpenStudio::Extension.set_measure_argument(osw, 'ReduceLightingLoadsByPercentage', 'lighting_power_reduction_percent', 10)
55
+
56
+
57
+ return osw
58
+ end
59
+
60
+ end
61
+ end
62
+ end
@@ -0,0 +1,111 @@
1
+ {
2
+ "seed_file": null,
3
+ "weather_file": null,
4
+ "measure_paths": [],
5
+ "file_paths": [],
6
+ "run_directory": null,
7
+ "steps": [
8
+
9
+ {
10
+ "measure_dir_name": "set_run_period",
11
+ "arguments": {
12
+ "timesteps_per_hour": 1,
13
+ "begin_date": "2019-06-01",
14
+ "end_date": "2019-08-01"
15
+ }
16
+ },{
17
+ "measure_dir_name": "ChangeBuildingLocation",
18
+ "arguments": {
19
+ "weather_file_name": "USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw",
20
+ "climate_zone": "6A"
21
+ }
22
+ },{
23
+ "measure_dir_name": "create_bar_from_building_type_ratios",
24
+ "arguments": {
25
+ "bldg_type_a": null,
26
+ "bldg_type_a_num_units": 0,
27
+ "bldg_type_b": "SmallOffice",
28
+ "bldg_type_b_fract_bldg_area": 0,
29
+ "bldg_type_b_num_units": 0,
30
+ "bldg_type_c": "SmallOffice",
31
+ "bldg_type_c_fract_bldg_area": 0,
32
+ "bldg_type_c_num_units": 0,
33
+ "bldg_type_d": "SmallOffice",
34
+ "bldg_type_d_fract_bldg_area": 0,
35
+ "bldg_type_d_num_units": 0,
36
+ "single_floor_area": null,
37
+ "floor_height": 0,
38
+ "num_stories_above_grade": null,
39
+ "num_stories_below_grade": null,
40
+ "building_rotation": 0,
41
+ "template": "90.1-2004",
42
+ "ns_to_ew_ratio": 0,
43
+ "wwr": 0,
44
+ "party_wall_fraction": 0,
45
+ "story_multiplier": "None",
46
+ "bar_division_method": "Multiple Space Types - Individual Stories Sliced"
47
+ }
48
+ },{
49
+ "name": "create_typical_building_from_model 1",
50
+ "measure_dir_name": "create_typical_building_from_model",
51
+ "arguments": {
52
+ "add_hvac": false
53
+ }
54
+ },{
55
+ "measure_dir_name": "blended_space_type_from_model",
56
+ "arguments": {
57
+ "blend_method": "Building Story"
58
+ }
59
+ },{
60
+ "measure_dir_name": "urban_geometry_creation",
61
+ "arguments": {
62
+ "geojson_file": "exportGeo.json",
63
+ "feature_id": "5",
64
+ "surrounding_buildings": "None"
65
+ }
66
+ },{
67
+ "name": "create_typical_building_from_model 2",
68
+ "measure_dir_name": "create_typical_building_from_model",
69
+ "arguments": {
70
+ "template": "90.1-2004",
71
+ "add_constructions": false,
72
+ "add_space_type_loads": false,
73
+ "add_elevators": false,
74
+ "add_exterior_lights": false,
75
+ "add_exhaust": false,
76
+ "add_swh": false,
77
+ "remove_objects": false,
78
+ "system_type": "Inferred",
79
+ "add_hvac": true,
80
+ "use_upstream_args": false
81
+ }
82
+ },{
83
+ "measure_dir_name": "IncreaseInsulationRValueForExteriorWalls",
84
+ "arguments": {
85
+ "__SKIP__": true,
86
+ "r_value": 10
87
+ }
88
+ },{
89
+ "measure_dir_name": "ReduceElectricEquipmentLoadsByPercentage",
90
+ "arguments": {
91
+ "__SKIP__": true,
92
+ "elecequip_power_reduction_percent": 20
93
+ }
94
+ },{
95
+ "measure_dir_name": "ReduceLightingLoadsByPercentage",
96
+ "arguments": {
97
+ "__SKIP__": true,
98
+ "lighting_power_reduction_percent": 30
99
+ }
100
+ },{
101
+ "measure_dir_name": "default_feature_reports",
102
+ "arguments": {
103
+ "feature_id": null,
104
+ "feature_name": null,
105
+ "feature_type": null
106
+ }
107
+ }
108
+ ],
109
+ "name": null,
110
+ "description": null
111
+ }
@@ -0,0 +1,536 @@
1
+ ! The following Location and Design Day data are produced as possible from the indicated data source.
2
+ ! Wind Speeds follow the indicated design conditions rather than traditional values (6.7 m/s heating, 3.35 m/s cooling)
3
+ ! No special attempts at re-creating or determining missing data parts (e.g. Wind speed or direction)
4
+ ! are done. Therefore, you should look at the data and fill in any incorrect values as you desire.
5
+
6
+ Site:Location,
7
+ Buffalo Niagara Intl Ap_NY_USA Design_Conditions, !- Location Name
8
+ 42.93, !- Latitude {N+ S-}
9
+ -78.73, !- Longitude {W- E+}
10
+ -5.00, !- Time Zone Relative to GMT {GMT+/-}
11
+ 215.00; !- Elevation {m}
12
+
13
+ ! WMO=725280 Time Zone=NAE: (GMT-05:00) Eastern Time (US & Canada)
14
+ ! Data Source=ASHRAE 2009 Annual Design Conditions
15
+ RunPeriodControl:DaylightSavingTime,
16
+ 2nd Sunday in March, !- StartDate
17
+ 2nd Sunday in November; !- EndDate
18
+
19
+ ! Using Design Conditions from "Climate Design Data 2009 ASHRAE Handbook"
20
+ ! Buffalo Niagara Intl Ap_NY_USA Extreme Annual Wind Speeds, 1%=12.6m/s, 2.5%=11.1m/s, 5%=9.6m/s
21
+ ! Buffalo Niagara Intl Ap_NY_USA Extreme Annual Temperatures, Max Drybulb=-19.5�C Min Drybulb=32.7�C
22
+
23
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Heating Design Conditions Wind Speed=5.1m/s Wind Dir=270
24
+ ! Coldest Month=JAN
25
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Heating 99.6%, MaxDB=-16.3�C
26
+ SizingPeriod:DesignDay,
27
+ Buffalo Niagara Intl Ap Ann Htg 99.6% Condns DB, !- Name
28
+ 1, !- Month
29
+ 21, !- Day of Month
30
+ WinterDesignDay,!- Day Type
31
+ -16.3, !- Maximum Dry-Bulb Temperature {C}
32
+ 0.0, !- Daily Dry-Bulb Temperature Range {C}
33
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
34
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
35
+ Wetbulb, !- Humidity Condition Type
36
+ -16.3, !- Wetbulb at Maximum Dry-Bulb {C}
37
+ , !- Humidity Indicating Day Schedule Name
38
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
39
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
40
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
41
+ 98769., !- Barometric Pressure {Pa}
42
+ 5.1, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
43
+ 270, !- Wind Direction {Degrees; N=0, S=180}
44
+ No, !- Rain {Yes/No}
45
+ No, !- Snow on ground {Yes/No}
46
+ No, !- Daylight Savings Time Indicator
47
+ ASHRAEClearSky, !- Solar Model Indicator
48
+ , !- Beam Solar Day Schedule Name
49
+ , !- Diffuse Solar Day Schedule Name
50
+ , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
51
+ , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
52
+ 0.00; !- Clearness {0.0 to 1.1}
53
+
54
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Heating 99%, MaxDB=-14.1�C
55
+ SizingPeriod:DesignDay,
56
+ Buffalo Niagara Intl Ap Ann Htg 99% Condns DB, !- Name
57
+ 1, !- Month
58
+ 21, !- Day of Month
59
+ WinterDesignDay,!- Day Type
60
+ -14.1, !- Maximum Dry-Bulb Temperature {C}
61
+ 0.0, !- Daily Dry-Bulb Temperature Range {C}
62
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
63
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
64
+ Wetbulb, !- Humidity Condition Type
65
+ -14.1, !- Wetbulb at Maximum Dry-Bulb {C}
66
+ , !- Humidity Indicating Day Schedule Name
67
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
68
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
69
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
70
+ 98769., !- Barometric Pressure {Pa}
71
+ 5.1, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
72
+ 270, !- Wind Direction {Degrees; N=0, S=180}
73
+ No, !- Rain {Yes/No}
74
+ No, !- Snow on ground {Yes/No}
75
+ No, !- Daylight Savings Time Indicator
76
+ ASHRAEClearSky, !- Solar Model Indicator
77
+ , !- Beam Solar Day Schedule Name
78
+ , !- Diffuse Solar Day Schedule Name
79
+ , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
80
+ , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
81
+ 0.00; !- Clearness {0.0 to 1.1}
82
+
83
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Humidification 99.6% Design Conditions DP=>MCDB, DP=-20.4�C
84
+ SizingPeriod:DesignDay,
85
+ Buffalo Niagara Intl Ap Ann Hum_n 99.6% Condns DP=>MCDB, !- Name
86
+ 1, !- Month
87
+ 21, !- Day of Month
88
+ WinterDesignDay,!- Day Type
89
+ -15.5, !- Maximum Dry-Bulb Temperature {C}
90
+ 0.0, !- Daily Dry-Bulb Temperature Range {C}
91
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
92
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
93
+ Dewpoint, !- Humidity Condition Type
94
+ -20.4, !- Dewpoint at Maximum Dry-Bulb {C}
95
+ , !- Humidity Indicating Day Schedule Name
96
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
97
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
98
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
99
+ 98769., !- Barometric Pressure {Pa}
100
+ 5.1, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
101
+ 270, !- Wind Direction {Degrees; N=0, S=180}
102
+ No, !- Rain {Yes/No}
103
+ No, !- Snow on ground {Yes/No}
104
+ No, !- Daylight Savings Time Indicator
105
+ ASHRAEClearSky, !- Solar Model Indicator
106
+ , !- Beam Solar Day Schedule Name
107
+ , !- Diffuse Solar Day Schedule Name
108
+ , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
109
+ , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
110
+ 0.00; !- Clearness {0.0 to 1.1}
111
+
112
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Humidification 99% Design Conditions DP=>MCDB, DP=-18.3�C
113
+ SizingPeriod:DesignDay,
114
+ Buffalo Niagara Intl Ap Ann Hum_n 99% Condns DP=>MCDB, !- Name
115
+ 1, !- Month
116
+ 21, !- Day of Month
117
+ WinterDesignDay,!- Day Type
118
+ -13.2, !- Maximum Dry-Bulb Temperature {C}
119
+ 0.0, !- Daily Dry-Bulb Temperature Range {C}
120
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
121
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
122
+ Dewpoint, !- Humidity Condition Type
123
+ -18.3, !- Dewpoint at Maximum Dry-Bulb {C}
124
+ , !- Humidity Indicating Day Schedule Name
125
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
126
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
127
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
128
+ 98769., !- Barometric Pressure {Pa}
129
+ 5.1, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
130
+ 270, !- Wind Direction {Degrees; N=0, S=180}
131
+ No, !- Rain {Yes/No}
132
+ No, !- Snow on ground {Yes/No}
133
+ No, !- Daylight Savings Time Indicator
134
+ ASHRAEClearSky, !- Solar Model Indicator
135
+ , !- Beam Solar Day Schedule Name
136
+ , !- Diffuse Solar Day Schedule Name
137
+ , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
138
+ , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
139
+ 0.00; !- Clearness {0.0 to 1.1}
140
+
141
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Heating Wind 99.6% Design Conditions WS=>MCDB, WS=15.7m/s
142
+ SizingPeriod:DesignDay,
143
+ Buffalo Niagara Intl Ap Ann Htg Wind 99.6% Condns WS=>MCDB, !- Name
144
+ 1, !- Month
145
+ 21, !- Day of Month
146
+ WinterDesignDay,!- Day Type
147
+ -2.3, !- Maximum Dry-Bulb Temperature {C}
148
+ 0.0, !- Daily Dry-Bulb Temperature Range {C}
149
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
150
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
151
+ Wetbulb, !- Humidity Condition Type
152
+ -2.3, !- Wetbulb at Maximum Dry-Bulb {C}
153
+ , !- Humidity Indicating Day Schedule Name
154
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
155
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
156
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
157
+ 98769., !- Barometric Pressure {Pa}
158
+ 15.7, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
159
+ 270, !- Wind Direction {Degrees; N=0, S=180}
160
+ No, !- Rain {Yes/No}
161
+ No, !- Snow on ground {Yes/No}
162
+ No, !- Daylight Savings Time Indicator
163
+ ASHRAEClearSky, !- Solar Model Indicator
164
+ , !- Beam Solar Day Schedule Name
165
+ , !- Diffuse Solar Day Schedule Name
166
+ , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
167
+ , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
168
+ 0.00; !- Clearness {0.0 to 1.1}
169
+
170
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Heating Wind 99% Design Conditions WS=>MCDB, WS=14.6m/s
171
+ SizingPeriod:DesignDay,
172
+ Buffalo Niagara Intl Ap Ann Htg Wind 99% Condns WS=>MCDB, !- Name
173
+ 1, !- Month
174
+ 21, !- Day of Month
175
+ WinterDesignDay,!- Day Type
176
+ -2.9, !- Maximum Dry-Bulb Temperature {C}
177
+ 0.0, !- Daily Dry-Bulb Temperature Range {C}
178
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
179
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
180
+ Wetbulb, !- Humidity Condition Type
181
+ -2.9, !- Wetbulb at Maximum Dry-Bulb {C}
182
+ , !- Humidity Indicating Day Schedule Name
183
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
184
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
185
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
186
+ 98769., !- Barometric Pressure {Pa}
187
+ 14.6, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
188
+ 270, !- Wind Direction {Degrees; N=0, S=180}
189
+ No, !- Rain {Yes/No}
190
+ No, !- Snow on ground {Yes/No}
191
+ No, !- Daylight Savings Time Indicator
192
+ ASHRAEClearSky, !- Solar Model Indicator
193
+ , !- Beam Solar Day Schedule Name
194
+ , !- Diffuse Solar Day Schedule Name
195
+ , !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
196
+ , !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
197
+ 0.00; !- Clearness {0.0 to 1.1}
198
+
199
+ ! Buffalo Niagara Intl Ap Annual Cooling Design Conditions Wind Speed=5.7m/s Wind Dir=240
200
+ ! Hottest Month=JUL
201
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Cooling (DB=>MWB) .4%, MaxDB=30.3�C MWB=21.8�C
202
+ SizingPeriod:DesignDay,
203
+ Buffalo Niagara Intl Ap Ann Clg .4% Condns DB=>MWB, !- Name
204
+ 7, !- Month
205
+ 21, !- Day of Month
206
+ SummerDesignDay,!- Day Type
207
+ 30.3, !- Maximum Dry-Bulb Temperature {C}
208
+ 9.3, !- Daily Dry-Bulb Temperature Range {C}
209
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
210
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
211
+ Wetbulb, !- Humidity Condition Type
212
+ 21.8, !- Wetbulb at Maximum Dry-Bulb {C}
213
+ , !- Humidity Indicating Day Schedule Name
214
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
215
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
216
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
217
+ 98769., !- Barometric Pressure {Pa}
218
+ 5.7, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
219
+ 240, !- Wind Direction {Degrees; N=0, S=180}
220
+ No, !- Rain {Yes/No}
221
+ No, !- Snow on ground {Yes/No}
222
+ No, !- Daylight Savings Time Indicator
223
+ ASHRAETau, !- Solar Model Indicator
224
+ , !- Beam Solar Day Schedule Name
225
+ , !- Diffuse Solar Day Schedule Name
226
+ 0.462, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
227
+ 2.001; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
228
+
229
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Cooling (DB=>MWB) 1%, MaxDB=28.9�C MWB=21.1�C
230
+ SizingPeriod:DesignDay,
231
+ Buffalo Niagara Intl Ap Ann Clg 1% Condns DB=>MWB, !- Name
232
+ 7, !- Month
233
+ 21, !- Day of Month
234
+ SummerDesignDay,!- Day Type
235
+ 28.9, !- Maximum Dry-Bulb Temperature {C}
236
+ 9.3, !- Daily Dry-Bulb Temperature Range {C}
237
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
238
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
239
+ Wetbulb, !- Humidity Condition Type
240
+ 21.1, !- Wetbulb at Maximum Dry-Bulb {C}
241
+ , !- Humidity Indicating Day Schedule Name
242
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
243
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
244
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
245
+ 98769., !- Barometric Pressure {Pa}
246
+ 5.7, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
247
+ 240, !- Wind Direction {Degrees; N=0, S=180}
248
+ No, !- Rain {Yes/No}
249
+ No, !- Snow on ground {Yes/No}
250
+ No, !- Daylight Savings Time Indicator
251
+ ASHRAETau, !- Solar Model Indicator
252
+ , !- Beam Solar Day Schedule Name
253
+ , !- Diffuse Solar Day Schedule Name
254
+ 0.462, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
255
+ 2.001; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
256
+
257
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Cooling (DB=>MWB) 2%, MaxDB=27.6�C MWB=20.5�C
258
+ SizingPeriod:DesignDay,
259
+ Buffalo Niagara Intl Ap Ann Clg 2% Condns DB=>MWB, !- Name
260
+ 7, !- Month
261
+ 21, !- Day of Month
262
+ SummerDesignDay,!- Day Type
263
+ 27.6, !- Maximum Dry-Bulb Temperature {C}
264
+ 9.3, !- Daily Dry-Bulb Temperature Range {C}
265
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
266
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
267
+ Wetbulb, !- Humidity Condition Type
268
+ 20.5, !- Wetbulb at Maximum Dry-Bulb {C}
269
+ , !- Humidity Indicating Day Schedule Name
270
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
271
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
272
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
273
+ 98769., !- Barometric Pressure {Pa}
274
+ 5.7, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
275
+ 240, !- Wind Direction {Degrees; N=0, S=180}
276
+ No, !- Rain {Yes/No}
277
+ No, !- Snow on ground {Yes/No}
278
+ No, !- Daylight Savings Time Indicator
279
+ ASHRAETau, !- Solar Model Indicator
280
+ , !- Beam Solar Day Schedule Name
281
+ , !- Diffuse Solar Day Schedule Name
282
+ 0.462, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
283
+ 2.001; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
284
+
285
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Cooling (WB=>MDB) .4%, MDB=27.8�C WB=23.8�C
286
+ SizingPeriod:DesignDay,
287
+ Buffalo Niagara Intl Ap Ann Clg .4% Condns WB=>MDB, !- Name
288
+ 7, !- Month
289
+ 21, !- Day of Month
290
+ SummerDesignDay,!- Day Type
291
+ 27.8, !- Maximum Dry-Bulb Temperature {C}
292
+ 9.3, !- Daily Dry-Bulb Temperature Range {C}
293
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
294
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
295
+ Wetbulb, !- Humidity Condition Type
296
+ 23.8, !- Wetbulb at Maximum Dry-Bulb {C}
297
+ , !- Humidity Indicating Day Schedule Name
298
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
299
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
300
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
301
+ 98769., !- Barometric Pressure {Pa}
302
+ 5.7, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
303
+ 240, !- Wind Direction {Degrees; N=0, S=180}
304
+ No, !- Rain {Yes/No}
305
+ No, !- Snow on ground {Yes/No}
306
+ No, !- Daylight Savings Time Indicator
307
+ ASHRAETau, !- Solar Model Indicator
308
+ , !- Beam Solar Day Schedule Name
309
+ , !- Diffuse Solar Day Schedule Name
310
+ 0.462, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
311
+ 2.001; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
312
+
313
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Cooling (WB=>MDB) 1%, MDB=26.7�C WB=22.9�C
314
+ SizingPeriod:DesignDay,
315
+ Buffalo Niagara Intl Ap Ann Clg 1% Condns WB=>MDB, !- Name
316
+ 7, !- Month
317
+ 21, !- Day of Month
318
+ SummerDesignDay,!- Day Type
319
+ 26.7, !- Maximum Dry-Bulb Temperature {C}
320
+ 9.3, !- Daily Dry-Bulb Temperature Range {C}
321
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
322
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
323
+ Wetbulb, !- Humidity Condition Type
324
+ 22.9, !- Wetbulb at Maximum Dry-Bulb {C}
325
+ , !- Humidity Indicating Day Schedule Name
326
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
327
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
328
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
329
+ 98769., !- Barometric Pressure {Pa}
330
+ 5.7, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
331
+ 240, !- Wind Direction {Degrees; N=0, S=180}
332
+ No, !- Rain {Yes/No}
333
+ No, !- Snow on ground {Yes/No}
334
+ No, !- Daylight Savings Time Indicator
335
+ ASHRAETau, !- Solar Model Indicator
336
+ , !- Beam Solar Day Schedule Name
337
+ , !- Diffuse Solar Day Schedule Name
338
+ 0.462, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
339
+ 2.001; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
340
+
341
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Cooling (WB=>MDB) 2%, MDB=25.7�C WB=21.9�C
342
+ SizingPeriod:DesignDay,
343
+ Buffalo Niagara Intl Ap Ann Clg 2% Condns WB=>MDB, !- Name
344
+ 7, !- Month
345
+ 21, !- Day of Month
346
+ SummerDesignDay,!- Day Type
347
+ 25.7, !- Maximum Dry-Bulb Temperature {C}
348
+ 9.3, !- Daily Dry-Bulb Temperature Range {C}
349
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
350
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
351
+ Wetbulb, !- Humidity Condition Type
352
+ 21.9, !- Wetbulb at Maximum Dry-Bulb {C}
353
+ , !- Humidity Indicating Day Schedule Name
354
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
355
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
356
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
357
+ 98769., !- Barometric Pressure {Pa}
358
+ 5.7, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
359
+ 240, !- Wind Direction {Degrees; N=0, S=180}
360
+ No, !- Rain {Yes/No}
361
+ No, !- Snow on ground {Yes/No}
362
+ No, !- Daylight Savings Time Indicator
363
+ ASHRAETau, !- Solar Model Indicator
364
+ , !- Beam Solar Day Schedule Name
365
+ , !- Diffuse Solar Day Schedule Name
366
+ 0.462, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
367
+ 2.001; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
368
+
369
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Cooling (DP=>MDB) .4%, MDB=26.2�C DP=22.4�C HR=0.0176
370
+ SizingPeriod:DesignDay,
371
+ Buffalo Niagara Intl Ap Ann Clg .4% Condns DP=>MDB, !- Name
372
+ 7, !- Month
373
+ 21, !- Day of Month
374
+ SummerDesignDay,!- Day Type
375
+ 26.2, !- Maximum Dry-Bulb Temperature {C}
376
+ 9.3, !- Daily Dry-Bulb Temperature Range {C}
377
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
378
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
379
+ Dewpoint, !- Humidity Condition Type
380
+ 22.4, !- Dewpoint at Maximum Dry-Bulb {C}
381
+ , !- Humidity Indicating Day Schedule Name
382
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
383
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
384
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
385
+ 98769., !- Barometric Pressure {Pa}
386
+ 5.7, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
387
+ 240, !- Wind Direction {Degrees; N=0, S=180}
388
+ No, !- Rain {Yes/No}
389
+ No, !- Snow on ground {Yes/No}
390
+ No, !- Daylight Savings Time Indicator
391
+ ASHRAETau, !- Solar Model Indicator
392
+ , !- Beam Solar Day Schedule Name
393
+ , !- Diffuse Solar Day Schedule Name
394
+ 0.462, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
395
+ 2.001; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
396
+
397
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Cooling (DP=>MDB) 1%, MDB=25.4�C DP=21.5�C HR=0.0166
398
+ SizingPeriod:DesignDay,
399
+ Buffalo Niagara Intl Ap Ann Clg 1% Condns DP=>MDB, !- Name
400
+ 7, !- Month
401
+ 21, !- Day of Month
402
+ SummerDesignDay,!- Day Type
403
+ 25.4, !- Maximum Dry-Bulb Temperature {C}
404
+ 9.3, !- Daily Dry-Bulb Temperature Range {C}
405
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
406
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
407
+ Dewpoint, !- Humidity Condition Type
408
+ 21.5, !- Dewpoint at Maximum Dry-Bulb {C}
409
+ , !- Humidity Indicating Day Schedule Name
410
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
411
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
412
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
413
+ 98769., !- Barometric Pressure {Pa}
414
+ 5.7, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
415
+ 240, !- Wind Direction {Degrees; N=0, S=180}
416
+ No, !- Rain {Yes/No}
417
+ No, !- Snow on ground {Yes/No}
418
+ No, !- Daylight Savings Time Indicator
419
+ ASHRAETau, !- Solar Model Indicator
420
+ , !- Beam Solar Day Schedule Name
421
+ , !- Diffuse Solar Day Schedule Name
422
+ 0.462, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
423
+ 2.001; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
424
+
425
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Cooling (DP=>MDB) 2%, MDB=24.5�C DP=20.6�C HR=0.0157
426
+ SizingPeriod:DesignDay,
427
+ Buffalo Niagara Intl Ap Ann Clg 2% Condns DP=>MDB, !- Name
428
+ 7, !- Month
429
+ 21, !- Day of Month
430
+ SummerDesignDay,!- Day Type
431
+ 24.5, !- Maximum Dry-Bulb Temperature {C}
432
+ 9.3, !- Daily Dry-Bulb Temperature Range {C}
433
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
434
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
435
+ Dewpoint, !- Humidity Condition Type
436
+ 20.6, !- Dewpoint at Maximum Dry-Bulb {C}
437
+ , !- Humidity Indicating Day Schedule Name
438
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
439
+ , !- Enthalpy at Maximum Dry-Bulb {J/kg}
440
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
441
+ 98769., !- Barometric Pressure {Pa}
442
+ 5.7, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
443
+ 240, !- Wind Direction {Degrees; N=0, S=180}
444
+ No, !- Rain {Yes/No}
445
+ No, !- Snow on ground {Yes/No}
446
+ No, !- Daylight Savings Time Indicator
447
+ ASHRAETau, !- Solar Model Indicator
448
+ , !- Beam Solar Day Schedule Name
449
+ , !- Diffuse Solar Day Schedule Name
450
+ 0.462, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
451
+ 2.001; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
452
+
453
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Cooling (Enthalpy=>MDB) .4%, MDB=27.9�C Enthalpy=72100.0J/kg
454
+ SizingPeriod:DesignDay,
455
+ Buffalo Niagara Intl Ap Ann Clg .4% Condns Enth=>MDB, !- Name
456
+ 7, !- Month
457
+ 21, !- Day of Month
458
+ SummerDesignDay,!- Day Type
459
+ 27.9, !- Maximum Dry-Bulb Temperature {C}
460
+ 9.3, !- Daily Dry-Bulb Temperature Range {C}
461
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
462
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
463
+ Enthalpy, !- Humidity Condition Type
464
+ , !- Wetbulb or Dewpoint at Maximum Dry-Bulb
465
+ , !- Humidity Indicating Day Schedule Name
466
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
467
+ 72100.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
468
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
469
+ 98769., !- Barometric Pressure {Pa}
470
+ 5.7, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
471
+ 240, !- Wind Direction {Degrees; N=0, S=180}
472
+ No, !- Rain {Yes/No}
473
+ No, !- Snow on ground {Yes/No}
474
+ No, !- Daylight Savings Time Indicator
475
+ ASHRAETau, !- Solar Model Indicator
476
+ , !- Beam Solar Day Schedule Name
477
+ , !- Diffuse Solar Day Schedule Name
478
+ 0.462, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
479
+ 2.001; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
480
+
481
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Cooling (Enthalpy=>MDB) 1%, MDB=26.9�C Enthalpy=68500.0J/kg
482
+ SizingPeriod:DesignDay,
483
+ Buffalo Niagara Intl Ap Ann Clg 1% Condns Enth=>MDB, !- Name
484
+ 7, !- Month
485
+ 21, !- Day of Month
486
+ SummerDesignDay,!- Day Type
487
+ 26.9, !- Maximum Dry-Bulb Temperature {C}
488
+ 9.3, !- Daily Dry-Bulb Temperature Range {C}
489
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
490
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
491
+ Enthalpy, !- Humidity Condition Type
492
+ , !- Wetbulb or Dewpoint at Maximum Dry-Bulb
493
+ , !- Humidity Indicating Day Schedule Name
494
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
495
+ 68500.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
496
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
497
+ 98769., !- Barometric Pressure {Pa}
498
+ 5.7, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
499
+ 240, !- Wind Direction {Degrees; N=0, S=180}
500
+ No, !- Rain {Yes/No}
501
+ No, !- Snow on ground {Yes/No}
502
+ No, !- Daylight Savings Time Indicator
503
+ ASHRAETau, !- Solar Model Indicator
504
+ , !- Beam Solar Day Schedule Name
505
+ , !- Diffuse Solar Day Schedule Name
506
+ 0.462, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
507
+ 2.001; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
508
+
509
+ ! Buffalo Niagara Intl Ap_NY_USA Annual Cooling (Enthalpy=>MDB) 2%, MDB=25.7�C Enthalpy=65200.0J/kg
510
+ SizingPeriod:DesignDay,
511
+ Buffalo Niagara Intl Ap Ann Clg 2% Condns Enth=>MDB, !- Name
512
+ 7, !- Month
513
+ 21, !- Day of Month
514
+ SummerDesignDay,!- Day Type
515
+ 25.7, !- Maximum Dry-Bulb Temperature {C}
516
+ 9.3, !- Daily Dry-Bulb Temperature Range {C}
517
+ DefaultMultipliers, !- Dry-Bulb Temperature Range Modifier Type
518
+ , !- Dry-Bulb Temperature Range Modifier Schedule Name
519
+ Enthalpy, !- Humidity Condition Type
520
+ , !- Wetbulb or Dewpoint at Maximum Dry-Bulb
521
+ , !- Humidity Indicating Day Schedule Name
522
+ , !- Humidity Ratio at Maximum Dry-Bulb {kgWater/kgDryAir}
523
+ 65200.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
524
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
525
+ 98769., !- Barometric Pressure {Pa}
526
+ 5.7, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
527
+ 240, !- Wind Direction {Degrees; N=0, S=180}
528
+ No, !- Rain {Yes/No}
529
+ No, !- Snow on ground {Yes/No}
530
+ No, !- Daylight Savings Time Indicator
531
+ ASHRAETau, !- Solar Model Indicator
532
+ , !- Beam Solar Day Schedule Name
533
+ , !- Diffuse Solar Day Schedule Name
534
+ 0.462, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
535
+ 2.001; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
536
+