openstudio-extension 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +29 -26
  3. data/.rspec +3 -3
  4. data/.rubocop.yml +10 -9
  5. data/CHANGELOG.md +16 -0
  6. data/Gemfile +6 -6
  7. data/Jenkinsfile +10 -10
  8. data/README.md +251 -250
  9. data/Rakefile +119 -119
  10. data/bin/console +14 -14
  11. data/bin/setup +8 -8
  12. data/doc_templates/LICENSE.md +26 -26
  13. data/doc_templates/README.md.erb +41 -41
  14. data/doc_templates/copyright_erb.txt +35 -35
  15. data/doc_templates/copyright_js.txt +3 -3
  16. data/doc_templates/copyright_ruby.txt +33 -33
  17. data/init_templates/README.md +37 -37
  18. data/init_templates/gemspec.txt +32 -32
  19. data/init_templates/openstudio_module.rb +50 -50
  20. data/init_templates/spec.rb +47 -47
  21. data/init_templates/spec_helper.rb +49 -49
  22. data/init_templates/template_gemfile.txt +17 -17
  23. data/init_templates/template_rakefile.txt +15 -15
  24. data/init_templates/version.rb +40 -40
  25. data/lib/files/openstudio-extension-gem-test.ddy +536 -536
  26. data/lib/files/openstudio-extension-gem-test.epw +8768 -8768
  27. data/lib/files/openstudio-extension-gem-test.stat +554 -554
  28. data/lib/measures/openstudio_extension_test_measure/LICENSE.md +26 -26
  29. data/lib/measures/openstudio_extension_test_measure/README.md +26 -26
  30. data/lib/measures/openstudio_extension_test_measure/README.md.erb +41 -41
  31. data/lib/measures/openstudio_extension_test_measure/measure.rb +72 -72
  32. data/lib/measures/openstudio_extension_test_measure/measure.xml +83 -83
  33. data/lib/measures/openstudio_extension_test_measure/resources/os_lib_helper_methods.rb +399 -399
  34. data/lib/measures/openstudio_extension_test_measure/tests/{OpenStudioExtensionTestMeasure_Test.rb → openstudio_extension_test_measure_test.rb} +74 -75
  35. data/lib/openstudio-extension.rb +1 -1
  36. data/lib/openstudio/extension.rb +234 -229
  37. data/lib/openstudio/extension/core/CreateResults.rb +886 -886
  38. data/lib/openstudio/extension/core/check_air_sys_temps.rb +190 -190
  39. data/lib/openstudio/extension/core/check_calibration.rb +155 -155
  40. data/lib/openstudio/extension/core/check_cond_zns.rb +84 -84
  41. data/lib/openstudio/extension/core/check_domestic_hot_water.rb +334 -334
  42. data/lib/openstudio/extension/core/check_envelope_conductance.rb +453 -453
  43. data/lib/openstudio/extension/core/check_eui_by_end_use.rb +162 -162
  44. data/lib/openstudio/extension/core/check_eui_reasonableness.rb +135 -135
  45. data/lib/openstudio/extension/core/check_fan_pwr.rb +98 -98
  46. data/lib/openstudio/extension/core/check_internal_loads.rb +393 -393
  47. data/lib/openstudio/extension/core/check_mech_sys_capacity.rb +226 -226
  48. data/lib/openstudio/extension/core/check_mech_sys_efficiency.rb +326 -326
  49. data/lib/openstudio/extension/core/check_mech_sys_part_load_eff.rb +464 -464
  50. data/lib/openstudio/extension/core/check_mech_sys_type.rb +139 -139
  51. data/lib/openstudio/extension/core/check_part_loads.rb +451 -451
  52. data/lib/openstudio/extension/core/check_placeholder.rb +75 -75
  53. data/lib/openstudio/extension/core/check_plant_cap.rb +123 -123
  54. data/lib/openstudio/extension/core/check_plant_temps.rb +159 -159
  55. data/lib/openstudio/extension/core/check_plenum_loads.rb +87 -87
  56. data/lib/openstudio/extension/core/check_pump_pwr.rb +108 -108
  57. data/lib/openstudio/extension/core/check_sch_coord.rb +241 -241
  58. data/lib/openstudio/extension/core/check_schedules.rb +311 -311
  59. data/lib/openstudio/extension/core/check_simultaneous_heating_and_cooling.rb +158 -158
  60. data/lib/openstudio/extension/core/check_supply_air_and_thermostat_temp_difference.rb +148 -148
  61. data/lib/openstudio/extension/core/check_weather_files.rb +132 -132
  62. data/lib/openstudio/extension/core/deer_vintages.rb +311 -311
  63. data/lib/openstudio/extension/core/os_lib_aedg_measures.rb +491 -491
  64. data/lib/openstudio/extension/core/os_lib_cofee.rb +258 -258
  65. data/lib/openstudio/extension/core/os_lib_constructions.rb +378 -378
  66. data/lib/openstudio/extension/core/os_lib_geometry.rb +1022 -1022
  67. data/lib/openstudio/extension/core/os_lib_helper_methods.rb +399 -399
  68. data/lib/openstudio/extension/core/os_lib_hvac.rb +2171 -2171
  69. data/lib/openstudio/extension/core/os_lib_lighting_and_equipment.rb +214 -214
  70. data/lib/openstudio/extension/core/os_lib_model_generation.rb +817 -817
  71. data/lib/openstudio/extension/core/os_lib_model_simplification.rb +1049 -1049
  72. data/lib/openstudio/extension/core/os_lib_outdoorair_and_infiltration.rb +165 -165
  73. data/lib/openstudio/extension/core/os_lib_reporting.rb +4651 -4651
  74. data/lib/openstudio/extension/core/os_lib_reporting_qaqc.rb +200 -200
  75. data/lib/openstudio/extension/core/os_lib_schedules.rb +963 -963
  76. data/lib/openstudio/extension/rake_task.rb +159 -149
  77. data/lib/openstudio/extension/runner.rb +667 -644
  78. data/lib/openstudio/extension/runner_config.rb +114 -0
  79. data/lib/openstudio/extension/version.rb +40 -40
  80. data/openstudio-extension.gemspec +34 -33
  81. metadata +39 -37
@@ -1,17 +1,17 @@
1
- source "http://rubygems.org"
2
-
3
- # Specify your gem's dependencies
4
- gemspec
5
-
6
- if File.exists?('../OpenStudio-extension-gem')
7
- # gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop'
8
- gem 'openstudio-extension', path: '../OpenStudio-extension-gem'
9
- else
10
- gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop'
11
- end
12
-
13
- gem 'openstudio_measure_tester', '= 0.1.7' # This includes the dependencies for running unit tests, coverage, and rubocop
14
- #gem 'openstudio_measure_tester', :github => 'NREL/OpenStudio-measure-tester-gem', :ref => '273d1f1a5c739312688ea605ef4a5b6e7325332c'
15
-
16
- # simplecov has an unneccesary dependency on native json gem, use fork that does not require this
17
- gem 'simplecov', github: 'NREL/simplecov'
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies
4
+ gemspec
5
+
6
+ if File.exists?('../OpenStudio-extension-gem')
7
+ # gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop'
8
+ gem 'openstudio-extension', path: '../OpenStudio-extension-gem'
9
+ else
10
+ gem 'openstudio-extension', github: 'NREL/OpenStudio-extension-gem', branch: 'develop'
11
+ end
12
+
13
+ gem 'openstudio_measure_tester', '= 0.1.7' # This includes the dependencies for running unit tests, coverage, and rubocop
14
+ #gem 'openstudio_measure_tester', :github => 'NREL/OpenStudio-measure-tester-gem', :ref => '273d1f1a5c739312688ea605ef4a5b6e7325332c'
15
+
16
+ # simplecov has an unneccesary dependency on native json gem, use fork that does not require this
17
+ gem 'simplecov', github: 'NREL/simplecov'
@@ -1,15 +1,15 @@
1
- require 'bundler/gem_tasks'
2
- require 'rspec/core/rake_task'
3
-
4
- RSpec::Core::RakeTask.new(:spec)
5
-
6
- require 'rubocop/rake_task'
7
- RuboCop::RakeTask.new
8
-
9
- # Load in the rake tasks from the base openstudio-extension gem
10
- require 'openstudio/extension/rake_task'
11
- require 'openstudio/GEM_NAME_UNDERSCORES'
12
- os_extension = OpenStudio::Extension::RakeTask.new
13
- os_extension.set_extension_class(OpenStudio::GEM_CLASS_NAME::GEM_CLASS_NAME)
14
-
15
- task default: :spec
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ require 'rubocop/rake_task'
7
+ RuboCop::RakeTask.new
8
+
9
+ # Load in the rake tasks from the base openstudio-extension gem
10
+ require 'openstudio/extension/rake_task'
11
+ require 'openstudio/GEM_NAME_UNDERSCORES'
12
+ os_extension = OpenStudio::Extension::RakeTask.new
13
+ os_extension.set_extension_class(OpenStudio::GEM_CLASS_NAME::GEM_CLASS_NAME)
14
+
15
+ task default: :spec
@@ -1,40 +1,40 @@
1
- # *******************************************************************************
2
- # OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC.
3
- # All rights reserved.
4
- # Redistribution and use in source and binary forms, with or without
5
- # modification, are permitted provided that the following conditions are met:
6
- #
7
- # (1) Redistributions of source code must retain the above copyright notice,
8
- # this list of conditions and the following disclaimer.
9
- #
10
- # (2) Redistributions in binary form must reproduce the above copyright notice,
11
- # this list of conditions and the following disclaimer in the documentation
12
- # and/or other materials provided with the distribution.
13
- #
14
- # (3) Neither the name of the copyright holder nor the names of any contributors
15
- # may be used to endorse or promote products derived from this software without
16
- # specific prior written permission from the respective party.
17
- #
18
- # (4) Other than as required in clauses (1) and (2), distributions in any form
19
- # of modifications or other derivative works may not use the "OpenStudio"
20
- # trademark, "OS", "os", or any other confusingly similar designation without
21
- # specific prior written permission from Alliance for Sustainable Energy, LLC.
22
- #
23
- # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
24
- # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
25
- # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26
- # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
27
- # UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
28
- # THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29
- # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
30
- # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31
- # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
32
- # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33
- # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
- # *******************************************************************************
35
-
36
- module OpenStudio
37
- module GEM_CLASS_NAME
38
- VERSION = '0.0.1'.freeze
39
- end
40
- end
1
+ # *******************************************************************************
2
+ # OpenStudio(R), Copyright (c) 2008-2019, Alliance for Sustainable Energy, LLC.
3
+ # All rights reserved.
4
+ # Redistribution and use in source and binary forms, with or without
5
+ # modification, are permitted provided that the following conditions are met:
6
+ #
7
+ # (1) Redistributions of source code must retain the above copyright notice,
8
+ # this list of conditions and the following disclaimer.
9
+ #
10
+ # (2) Redistributions in binary form must reproduce the above copyright notice,
11
+ # this list of conditions and the following disclaimer in the documentation
12
+ # and/or other materials provided with the distribution.
13
+ #
14
+ # (3) Neither the name of the copyright holder nor the names of any contributors
15
+ # may be used to endorse or promote products derived from this software without
16
+ # specific prior written permission from the respective party.
17
+ #
18
+ # (4) Other than as required in clauses (1) and (2), distributions in any form
19
+ # of modifications or other derivative works may not use the "OpenStudio"
20
+ # trademark, "OS", "os", or any other confusingly similar designation without
21
+ # specific prior written permission from Alliance for Sustainable Energy, LLC.
22
+ #
23
+ # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) AND ANY CONTRIBUTORS
24
+ # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
25
+ # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26
+ # ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S), ANY CONTRIBUTORS, THE
27
+ # UNITED STATES GOVERNMENT, OR THE UNITED STATES DEPARTMENT OF ENERGY, NOR ANY OF
28
+ # THEIR EMPLOYEES, BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
29
+ # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
30
+ # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31
+ # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
32
+ # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33
+ # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
+ # *******************************************************************************
35
+
36
+ module OpenStudio
37
+ module GEM_CLASS_NAME
38
+ VERSION = '0.0.1'.freeze
39
+ end
40
+ end
@@ -1,536 +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
- Aurora Buckley Field Angb_CO_USA Design_Conditions, !- Location Name
8
- 39.72, !- Latitude {N+ S-}
9
- -104.75, !- Longitude {W- E+}
10
- -7.00, !- Time Zone Relative to GMT {GMT+/-}
11
- 1726.00; !- Elevation {m}
12
-
13
- ! WMO=724695 Time Zone=NAM: (GMT-07:00) Mountain 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
- ! Aurora Buckley Field Angb_CO_USA Extreme Annual Wind Speeds, 1%=10.5m/s, 2.5%=8.7m/s, 5%=7.5m/s
21
- ! Aurora Buckley Field Angb_CO_USA Extreme Annual Temperatures, Max Drybulb=-22.3�C Min Drybulb=36.9�C
22
-
23
- ! Aurora Buckley Field Angb_CO_USA Annual Heating Design Conditions Wind Speed=2.5m/s Wind Dir=180
24
- ! Coldest Month=DEC
25
- ! Aurora Buckley Field Angb_CO_USA Annual Heating 99.6%, MaxDB=-17.9�C
26
- SizingPeriod:DesignDay,
27
- Aurora Buckley Field Angb Ann Htg 99.6% Condns DB, !- Name
28
- 12, !- Month
29
- 21, !- Day of Month
30
- WinterDesignDay,!- Day Type
31
- -17.9, !- 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
- -17.9, !- 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
- 82237., !- Barometric Pressure {Pa}
42
- 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
43
- 180, !- 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
- ! Aurora Buckley Field Angb_CO_USA Annual Heating 99%, MaxDB=-14.1�C
55
- SizingPeriod:DesignDay,
56
- Aurora Buckley Field Angb Ann Htg 99% Condns DB, !- Name
57
- 12, !- 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
- 82237., !- Barometric Pressure {Pa}
71
- 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
72
- 180, !- 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
- ! Aurora Buckley Field Angb_CO_USA Annual Humidification 99.6% Design Conditions DP=>MCDB, DP=-22.6�C
84
- SizingPeriod:DesignDay,
85
- Aurora Buckley Field Angb Ann Hum_n 99.6% Condns DP=>MCDB, !- Name
86
- 12, !- Month
87
- 21, !- Day of Month
88
- WinterDesignDay,!- Day Type
89
- -14.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
- -22.6, !- 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
- 82237., !- Barometric Pressure {Pa}
100
- 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
101
- 180, !- 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
- ! Aurora Buckley Field Angb_CO_USA Annual Humidification 99% Design Conditions DP=>MCDB, DP=-19�C
113
- SizingPeriod:DesignDay,
114
- Aurora Buckley Field Angb Ann Hum_n 99% Condns DP=>MCDB, !- Name
115
- 12, !- Month
116
- 21, !- Day of Month
117
- WinterDesignDay,!- Day Type
118
- -8.8, !- 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
- -19, !- 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
- 82237., !- Barometric Pressure {Pa}
129
- 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
130
- 180, !- 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
- ! Aurora Buckley Field Angb_CO_USA Annual Heating Wind 99.6% Design Conditions WS=>MCDB, WS=11.9m/s
142
- SizingPeriod:DesignDay,
143
- Aurora Buckley Field Angb Ann Htg Wind 99.6% Condns WS=>MCDB, !- Name
144
- 12, !- Month
145
- 21, !- Day of Month
146
- WinterDesignDay,!- Day Type
147
- 2, !- 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, !- 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
- 82237., !- Barometric Pressure {Pa}
158
- 11.9, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
159
- 180, !- 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
- ! Aurora Buckley Field Angb_CO_USA Annual Heating Wind 99% Design Conditions WS=>MCDB, WS=10.3m/s
171
- SizingPeriod:DesignDay,
172
- Aurora Buckley Field Angb Ann Htg Wind 99% Condns WS=>MCDB, !- Name
173
- 12, !- Month
174
- 21, !- Day of Month
175
- WinterDesignDay,!- Day Type
176
- 2.7, !- 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.7, !- 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
- 82237., !- Barometric Pressure {Pa}
187
- 10.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
188
- 180, !- 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
- ! Aurora Buckley Field Angb Annual Cooling Design Conditions Wind Speed=3.6m/s Wind Dir=30
200
- ! Hottest Month=JUL
201
- ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DB=>MWB) .4%, MaxDB=33.9�C MWB=15�C
202
- SizingPeriod:DesignDay,
203
- Aurora Buckley Field Angb Ann Clg .4% Condns DB=>MWB, !- Name
204
- 7, !- Month
205
- 21, !- Day of Month
206
- SummerDesignDay,!- Day Type
207
- 33.9, !- Maximum Dry-Bulb Temperature {C}
208
- 14.8, !- 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
- 15, !- 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
- 82237., !- Barometric Pressure {Pa}
218
- 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
219
- 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
227
- 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
228
-
229
- ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DB=>MWB) 1%, MaxDB=32.4�C MWB=14.9�C
230
- SizingPeriod:DesignDay,
231
- Aurora Buckley Field Angb Ann Clg 1% Condns DB=>MWB, !- Name
232
- 7, !- Month
233
- 21, !- Day of Month
234
- SummerDesignDay,!- Day Type
235
- 32.4, !- Maximum Dry-Bulb Temperature {C}
236
- 14.8, !- 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
- 14.9, !- 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
- 82237., !- Barometric Pressure {Pa}
246
- 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
247
- 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
255
- 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
256
-
257
- ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DB=>MWB) 2%, MaxDB=31�C MWB=14.8�C
258
- SizingPeriod:DesignDay,
259
- Aurora Buckley Field Angb Ann Clg 2% Condns DB=>MWB, !- Name
260
- 7, !- Month
261
- 21, !- Day of Month
262
- SummerDesignDay,!- Day Type
263
- 31, !- Maximum Dry-Bulb Temperature {C}
264
- 14.8, !- 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
- 14.8, !- 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
- 82237., !- Barometric Pressure {Pa}
274
- 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
275
- 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
283
- 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
284
-
285
- ! Aurora Buckley Field Angb_CO_USA Annual Cooling (WB=>MDB) .4%, MDB=26.3�C WB=17.9�C
286
- SizingPeriod:DesignDay,
287
- Aurora Buckley Field Angb Ann Clg .4% Condns WB=>MDB, !- Name
288
- 7, !- Month
289
- 21, !- Day of Month
290
- SummerDesignDay,!- Day Type
291
- 26.3, !- Maximum Dry-Bulb Temperature {C}
292
- 14.8, !- 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
- 17.9, !- 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
- 82237., !- Barometric Pressure {Pa}
302
- 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
303
- 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
311
- 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
312
-
313
- ! Aurora Buckley Field Angb_CO_USA Annual Cooling (WB=>MDB) 1%, MDB=25.8�C WB=17.1�C
314
- SizingPeriod:DesignDay,
315
- Aurora Buckley Field Angb Ann Clg 1% Condns WB=>MDB, !- Name
316
- 7, !- Month
317
- 21, !- Day of Month
318
- SummerDesignDay,!- Day Type
319
- 25.8, !- Maximum Dry-Bulb Temperature {C}
320
- 14.8, !- 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
- 17.1, !- 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
- 82237., !- Barometric Pressure {Pa}
330
- 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
331
- 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
339
- 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
340
-
341
- ! Aurora Buckley Field Angb_CO_USA Annual Cooling (WB=>MDB) 2%, MDB=25.3�C WB=16.5�C
342
- SizingPeriod:DesignDay,
343
- Aurora Buckley Field Angb Ann Clg 2% Condns WB=>MDB, !- Name
344
- 7, !- Month
345
- 21, !- Day of Month
346
- SummerDesignDay,!- Day Type
347
- 25.3, !- Maximum Dry-Bulb Temperature {C}
348
- 14.8, !- 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
- 16.5, !- 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
- 82237., !- Barometric Pressure {Pa}
358
- 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
359
- 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
367
- 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
368
-
369
- ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DP=>MDB) .4%, MDB=19.3�C DP=15.9�C HR=0.0139
370
- SizingPeriod:DesignDay,
371
- Aurora Buckley Field Angb Ann Clg .4% Condns DP=>MDB, !- Name
372
- 7, !- Month
373
- 21, !- Day of Month
374
- SummerDesignDay,!- Day Type
375
- 19.3, !- Maximum Dry-Bulb Temperature {C}
376
- 14.8, !- 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
- 15.9, !- 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
- 82237., !- Barometric Pressure {Pa}
386
- 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
387
- 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
395
- 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
396
-
397
- ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DP=>MDB) 1%, MDB=19.1�C DP=14.7�C HR=0.0129
398
- SizingPeriod:DesignDay,
399
- Aurora Buckley Field Angb Ann Clg 1% Condns DP=>MDB, !- Name
400
- 7, !- Month
401
- 21, !- Day of Month
402
- SummerDesignDay,!- Day Type
403
- 19.1, !- Maximum Dry-Bulb Temperature {C}
404
- 14.8, !- 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
- 14.7, !- 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
- 82237., !- Barometric Pressure {Pa}
414
- 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
415
- 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
423
- 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
424
-
425
- ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DP=>MDB) 2%, MDB=19.1�C DP=13.7�C HR=0.0121
426
- SizingPeriod:DesignDay,
427
- Aurora Buckley Field Angb Ann Clg 2% Condns DP=>MDB, !- Name
428
- 7, !- Month
429
- 21, !- Day of Month
430
- SummerDesignDay,!- Day Type
431
- 19.1, !- Maximum Dry-Bulb Temperature {C}
432
- 14.8, !- 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
- 13.7, !- 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
- 82237., !- Barometric Pressure {Pa}
442
- 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
443
- 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
451
- 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
452
-
453
- ! Aurora Buckley Field Angb_CO_USA Annual Cooling (Enthalpy=>MDB) .4%, MDB=26�C Enthalpy=57000.0J/kg
454
- SizingPeriod:DesignDay,
455
- Aurora Buckley Field Angb Ann Clg .4% Condns Enth=>MDB, !- Name
456
- 7, !- Month
457
- 21, !- Day of Month
458
- SummerDesignDay,!- Day Type
459
- 26, !- Maximum Dry-Bulb Temperature {C}
460
- 14.8, !- 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
- 57000.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
468
- , !- Daily Wet-Bulb Temperature Range {deltaC}
469
- 82237., !- Barometric Pressure {Pa}
470
- 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
471
- 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
479
- 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
480
-
481
- ! Aurora Buckley Field Angb_CO_USA Annual Cooling (Enthalpy=>MDB) 1%, MDB=25.7�C Enthalpy=54500.0J/kg
482
- SizingPeriod:DesignDay,
483
- Aurora Buckley Field Angb Ann Clg 1% Condns Enth=>MDB, !- Name
484
- 7, !- Month
485
- 21, !- Day of Month
486
- SummerDesignDay,!- Day Type
487
- 25.7, !- Maximum Dry-Bulb Temperature {C}
488
- 14.8, !- 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
- 54500.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
496
- , !- Daily Wet-Bulb Temperature Range {deltaC}
497
- 82237., !- Barometric Pressure {Pa}
498
- 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
499
- 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
507
- 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
508
-
509
- ! Aurora Buckley Field Angb_CO_USA Annual Cooling (Enthalpy=>MDB) 2%, MDB=25.3�C Enthalpy=52300.0J/kg
510
- SizingPeriod:DesignDay,
511
- Aurora Buckley Field Angb Ann Clg 2% Condns Enth=>MDB, !- Name
512
- 7, !- Month
513
- 21, !- Day of Month
514
- SummerDesignDay,!- Day Type
515
- 25.3, !- Maximum Dry-Bulb Temperature {C}
516
- 14.8, !- 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
- 52300.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
524
- , !- Daily Wet-Bulb Temperature Range {deltaC}
525
- 82237., !- Barometric Pressure {Pa}
526
- 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
527
- 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
535
- 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
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
+ Aurora Buckley Field Angb_CO_USA Design_Conditions, !- Location Name
8
+ 39.72, !- Latitude {N+ S-}
9
+ -104.75, !- Longitude {W- E+}
10
+ -7.00, !- Time Zone Relative to GMT {GMT+/-}
11
+ 1726.00; !- Elevation {m}
12
+
13
+ ! WMO=724695 Time Zone=NAM: (GMT-07:00) Mountain 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
+ ! Aurora Buckley Field Angb_CO_USA Extreme Annual Wind Speeds, 1%=10.5m/s, 2.5%=8.7m/s, 5%=7.5m/s
21
+ ! Aurora Buckley Field Angb_CO_USA Extreme Annual Temperatures, Max Drybulb=-22.3�C Min Drybulb=36.9�C
22
+
23
+ ! Aurora Buckley Field Angb_CO_USA Annual Heating Design Conditions Wind Speed=2.5m/s Wind Dir=180
24
+ ! Coldest Month=DEC
25
+ ! Aurora Buckley Field Angb_CO_USA Annual Heating 99.6%, MaxDB=-17.9�C
26
+ SizingPeriod:DesignDay,
27
+ Aurora Buckley Field Angb Ann Htg 99.6% Condns DB, !- Name
28
+ 12, !- Month
29
+ 21, !- Day of Month
30
+ WinterDesignDay,!- Day Type
31
+ -17.9, !- 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
+ -17.9, !- 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
+ 82237., !- Barometric Pressure {Pa}
42
+ 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
43
+ 180, !- 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
+ ! Aurora Buckley Field Angb_CO_USA Annual Heating 99%, MaxDB=-14.1�C
55
+ SizingPeriod:DesignDay,
56
+ Aurora Buckley Field Angb Ann Htg 99% Condns DB, !- Name
57
+ 12, !- 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
+ 82237., !- Barometric Pressure {Pa}
71
+ 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
72
+ 180, !- 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
+ ! Aurora Buckley Field Angb_CO_USA Annual Humidification 99.6% Design Conditions DP=>MCDB, DP=-22.6�C
84
+ SizingPeriod:DesignDay,
85
+ Aurora Buckley Field Angb Ann Hum_n 99.6% Condns DP=>MCDB, !- Name
86
+ 12, !- Month
87
+ 21, !- Day of Month
88
+ WinterDesignDay,!- Day Type
89
+ -14.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
+ -22.6, !- 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
+ 82237., !- Barometric Pressure {Pa}
100
+ 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
101
+ 180, !- 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
+ ! Aurora Buckley Field Angb_CO_USA Annual Humidification 99% Design Conditions DP=>MCDB, DP=-19�C
113
+ SizingPeriod:DesignDay,
114
+ Aurora Buckley Field Angb Ann Hum_n 99% Condns DP=>MCDB, !- Name
115
+ 12, !- Month
116
+ 21, !- Day of Month
117
+ WinterDesignDay,!- Day Type
118
+ -8.8, !- 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
+ -19, !- 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
+ 82237., !- Barometric Pressure {Pa}
129
+ 2.5, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
130
+ 180, !- 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
+ ! Aurora Buckley Field Angb_CO_USA Annual Heating Wind 99.6% Design Conditions WS=>MCDB, WS=11.9m/s
142
+ SizingPeriod:DesignDay,
143
+ Aurora Buckley Field Angb Ann Htg Wind 99.6% Condns WS=>MCDB, !- Name
144
+ 12, !- Month
145
+ 21, !- Day of Month
146
+ WinterDesignDay,!- Day Type
147
+ 2, !- 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, !- 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
+ 82237., !- Barometric Pressure {Pa}
158
+ 11.9, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
159
+ 180, !- 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
+ ! Aurora Buckley Field Angb_CO_USA Annual Heating Wind 99% Design Conditions WS=>MCDB, WS=10.3m/s
171
+ SizingPeriod:DesignDay,
172
+ Aurora Buckley Field Angb Ann Htg Wind 99% Condns WS=>MCDB, !- Name
173
+ 12, !- Month
174
+ 21, !- Day of Month
175
+ WinterDesignDay,!- Day Type
176
+ 2.7, !- 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.7, !- 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
+ 82237., !- Barometric Pressure {Pa}
187
+ 10.3, !- Wind Speed {m/s} design conditions vs. traditional 6.71 m/s (15 mph)
188
+ 180, !- 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
+ ! Aurora Buckley Field Angb Annual Cooling Design Conditions Wind Speed=3.6m/s Wind Dir=30
200
+ ! Hottest Month=JUL
201
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DB=>MWB) .4%, MaxDB=33.9�C MWB=15�C
202
+ SizingPeriod:DesignDay,
203
+ Aurora Buckley Field Angb Ann Clg .4% Condns DB=>MWB, !- Name
204
+ 7, !- Month
205
+ 21, !- Day of Month
206
+ SummerDesignDay,!- Day Type
207
+ 33.9, !- Maximum Dry-Bulb Temperature {C}
208
+ 14.8, !- 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
+ 15, !- 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
+ 82237., !- Barometric Pressure {Pa}
218
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
219
+ 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
227
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
228
+
229
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DB=>MWB) 1%, MaxDB=32.4�C MWB=14.9�C
230
+ SizingPeriod:DesignDay,
231
+ Aurora Buckley Field Angb Ann Clg 1% Condns DB=>MWB, !- Name
232
+ 7, !- Month
233
+ 21, !- Day of Month
234
+ SummerDesignDay,!- Day Type
235
+ 32.4, !- Maximum Dry-Bulb Temperature {C}
236
+ 14.8, !- 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
+ 14.9, !- 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
+ 82237., !- Barometric Pressure {Pa}
246
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
247
+ 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
255
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
256
+
257
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DB=>MWB) 2%, MaxDB=31�C MWB=14.8�C
258
+ SizingPeriod:DesignDay,
259
+ Aurora Buckley Field Angb Ann Clg 2% Condns DB=>MWB, !- Name
260
+ 7, !- Month
261
+ 21, !- Day of Month
262
+ SummerDesignDay,!- Day Type
263
+ 31, !- Maximum Dry-Bulb Temperature {C}
264
+ 14.8, !- 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
+ 14.8, !- 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
+ 82237., !- Barometric Pressure {Pa}
274
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
275
+ 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
283
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
284
+
285
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (WB=>MDB) .4%, MDB=26.3�C WB=17.9�C
286
+ SizingPeriod:DesignDay,
287
+ Aurora Buckley Field Angb Ann Clg .4% Condns WB=>MDB, !- Name
288
+ 7, !- Month
289
+ 21, !- Day of Month
290
+ SummerDesignDay,!- Day Type
291
+ 26.3, !- Maximum Dry-Bulb Temperature {C}
292
+ 14.8, !- 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
+ 17.9, !- 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
+ 82237., !- Barometric Pressure {Pa}
302
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
303
+ 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
311
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
312
+
313
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (WB=>MDB) 1%, MDB=25.8�C WB=17.1�C
314
+ SizingPeriod:DesignDay,
315
+ Aurora Buckley Field Angb Ann Clg 1% Condns WB=>MDB, !- Name
316
+ 7, !- Month
317
+ 21, !- Day of Month
318
+ SummerDesignDay,!- Day Type
319
+ 25.8, !- Maximum Dry-Bulb Temperature {C}
320
+ 14.8, !- 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
+ 17.1, !- 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
+ 82237., !- Barometric Pressure {Pa}
330
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
331
+ 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
339
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
340
+
341
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (WB=>MDB) 2%, MDB=25.3�C WB=16.5�C
342
+ SizingPeriod:DesignDay,
343
+ Aurora Buckley Field Angb Ann Clg 2% Condns WB=>MDB, !- Name
344
+ 7, !- Month
345
+ 21, !- Day of Month
346
+ SummerDesignDay,!- Day Type
347
+ 25.3, !- Maximum Dry-Bulb Temperature {C}
348
+ 14.8, !- 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
+ 16.5, !- 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
+ 82237., !- Barometric Pressure {Pa}
358
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
359
+ 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
367
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
368
+
369
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DP=>MDB) .4%, MDB=19.3�C DP=15.9�C HR=0.0139
370
+ SizingPeriod:DesignDay,
371
+ Aurora Buckley Field Angb Ann Clg .4% Condns DP=>MDB, !- Name
372
+ 7, !- Month
373
+ 21, !- Day of Month
374
+ SummerDesignDay,!- Day Type
375
+ 19.3, !- Maximum Dry-Bulb Temperature {C}
376
+ 14.8, !- 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
+ 15.9, !- 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
+ 82237., !- Barometric Pressure {Pa}
386
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
387
+ 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
395
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
396
+
397
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DP=>MDB) 1%, MDB=19.1�C DP=14.7�C HR=0.0129
398
+ SizingPeriod:DesignDay,
399
+ Aurora Buckley Field Angb Ann Clg 1% Condns DP=>MDB, !- Name
400
+ 7, !- Month
401
+ 21, !- Day of Month
402
+ SummerDesignDay,!- Day Type
403
+ 19.1, !- Maximum Dry-Bulb Temperature {C}
404
+ 14.8, !- 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
+ 14.7, !- 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
+ 82237., !- Barometric Pressure {Pa}
414
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
415
+ 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
423
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
424
+
425
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (DP=>MDB) 2%, MDB=19.1�C DP=13.7�C HR=0.0121
426
+ SizingPeriod:DesignDay,
427
+ Aurora Buckley Field Angb Ann Clg 2% Condns DP=>MDB, !- Name
428
+ 7, !- Month
429
+ 21, !- Day of Month
430
+ SummerDesignDay,!- Day Type
431
+ 19.1, !- Maximum Dry-Bulb Temperature {C}
432
+ 14.8, !- 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
+ 13.7, !- 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
+ 82237., !- Barometric Pressure {Pa}
442
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
443
+ 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
451
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
452
+
453
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (Enthalpy=>MDB) .4%, MDB=26�C Enthalpy=57000.0J/kg
454
+ SizingPeriod:DesignDay,
455
+ Aurora Buckley Field Angb Ann Clg .4% Condns Enth=>MDB, !- Name
456
+ 7, !- Month
457
+ 21, !- Day of Month
458
+ SummerDesignDay,!- Day Type
459
+ 26, !- Maximum Dry-Bulb Temperature {C}
460
+ 14.8, !- 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
+ 57000.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
468
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
469
+ 82237., !- Barometric Pressure {Pa}
470
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
471
+ 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
479
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
480
+
481
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (Enthalpy=>MDB) 1%, MDB=25.7�C Enthalpy=54500.0J/kg
482
+ SizingPeriod:DesignDay,
483
+ Aurora Buckley Field Angb Ann Clg 1% Condns Enth=>MDB, !- Name
484
+ 7, !- Month
485
+ 21, !- Day of Month
486
+ SummerDesignDay,!- Day Type
487
+ 25.7, !- Maximum Dry-Bulb Temperature {C}
488
+ 14.8, !- 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
+ 54500.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
496
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
497
+ 82237., !- Barometric Pressure {Pa}
498
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
499
+ 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
507
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
508
+
509
+ ! Aurora Buckley Field Angb_CO_USA Annual Cooling (Enthalpy=>MDB) 2%, MDB=25.3�C Enthalpy=52300.0J/kg
510
+ SizingPeriod:DesignDay,
511
+ Aurora Buckley Field Angb Ann Clg 2% Condns Enth=>MDB, !- Name
512
+ 7, !- Month
513
+ 21, !- Day of Month
514
+ SummerDesignDay,!- Day Type
515
+ 25.3, !- Maximum Dry-Bulb Temperature {C}
516
+ 14.8, !- 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
+ 52300.0, !- Enthalpy at Maximum Dry-Bulb {J/kg}
524
+ , !- Daily Wet-Bulb Temperature Range {deltaC}
525
+ 82237., !- Barometric Pressure {Pa}
526
+ 3.6, !- Wind Speed {m/s} design conditions vs. traditional 3.35 m/s (7mph)
527
+ 30, !- 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.423, !- ASHRAE Clear Sky Optical Depth for Beam Irradiance (taub)
535
+ 2.020; !- ASHRAE Clear Sky Optical Depth for Diffuse Irradiance (taud)
536
+