openstudio-standards 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (120) hide show
  1. checksums.yaml +4 -4
  2. data/data/standards/OpenStudio_Standards.xlsx +0 -0
  3. data/data/standards/OpenStudio_Standards_boilers.json +62 -4
  4. data/data/standards/OpenStudio_Standards_chillers.json +778 -68
  5. data/data/standards/OpenStudio_Standards_construction_sets.json +52 -93
  6. data/data/standards/OpenStudio_Standards_curve_biquadratics.json +36 -36
  7. data/data/standards/OpenStudio_Standards_curve_quadratics.json +3 -3
  8. data/data/standards/OpenStudio_Standards_heat_pumps.json +840 -0
  9. data/data/standards/OpenStudio_Standards_heat_pumps_heating.json +352 -0
  10. data/data/standards/OpenStudio_Standards_heat_rejection.json +48 -0
  11. data/data/standards/OpenStudio_Standards_motors.json +270 -0
  12. data/data/standards/OpenStudio_Standards_space_types.json +10390 -2824
  13. data/data/standards/OpenStudio_Standards_unitary_acs.json +794 -18
  14. data/data/weather/USA_CO_Boulder-Broomfield-Jefferson.County.AP.724699_TMY3.ddy +538 -0
  15. data/data/weather/USA_CO_Boulder-Broomfield-Jefferson.County.AP.724699_TMY3.epw +8768 -0
  16. data/data/weather/USA_CO_Boulder-Broomfield-Jefferson.County.AP.724699_TMY3.stat +493 -0
  17. data/data/weather/USA_CO_Denver.Intl.AP.725650_TMY3.ddy +536 -0
  18. data/data/weather/USA_CO_Denver.Intl.AP.725650_TMY3.epw +8768 -0
  19. data/data/weather/USA_CO_Denver.Intl.AP.725650_TMY3.stat +554 -0
  20. data/data/weather/USA_CO_Fort.Collins.AWOS.724769_TMY3.ddy +536 -0
  21. data/data/weather/USA_CO_Fort.Collins.AWOS.724769_TMY3.epw +8768 -0
  22. data/data/weather/USA_CO_Fort.Collins.AWOS.724769_TMY3.stat +554 -0
  23. data/data/weather/envelope_info.csv +6 -0
  24. data/lib/openstudio-standards.rb +10 -11
  25. data/lib/openstudio-standards/btap/compliance.rb +251 -969
  26. data/lib/openstudio-standards/btap/envelope.rb +1 -1
  27. data/lib/openstudio-standards/btap/fileio.rb +37 -5
  28. data/lib/openstudio-standards/btap/geometry.rb +27 -17
  29. data/lib/openstudio-standards/btap/hvac.rb +80 -27
  30. data/lib/openstudio-standards/hvac_sizing/{HVACSizing.CoilHeatingDXMultiSpeed.rb → Siz.CoilHeatingDXMultiSpeed.rb} +0 -0
  31. data/lib/openstudio-standards/hvac_sizing/Siz.ControllerOutdoorAir.rb +30 -4
  32. data/lib/openstudio-standards/hvac_sizing/Siz.CoolingTowerTwoSpeed.rb +61 -5
  33. data/lib/openstudio-standards/hvac_sizing/Siz.CoolingTowerVariableSpeed.rb +37 -7
  34. data/lib/openstudio-standards/hvac_sizing/Siz.DistrictCooling.rb +27 -0
  35. data/lib/openstudio-standards/hvac_sizing/Siz.DistrictHeating.rb +27 -0
  36. data/lib/openstudio-standards/hvac_sizing/Siz.HeaderedPumpsConstantSpeed.rb +55 -0
  37. data/lib/openstudio-standards/hvac_sizing/Siz.HeaderedPumpsVariableSpeed.rb +55 -0
  38. data/lib/openstudio-standards/hvac_sizing/Siz.HeatingCoolingFuels.rb +51 -9
  39. data/lib/openstudio-standards/hvac_sizing/Siz.Model.rb +99 -17
  40. data/lib/openstudio-standards/hvac_sizing/Siz.PumpConstantSpeed.rb +1 -1
  41. data/lib/openstudio-standards/hvac_sizing/Siz.ThermalZone.rb +29 -6
  42. data/lib/openstudio-standards/hvac_sizing/Siz.WaterHeaterMixed.rb +16 -0
  43. data/lib/openstudio-standards/prototypes/Prototype.AirTerminalSingleDuctVAVReheat.rb +43 -48
  44. data/lib/openstudio-standards/prototypes/Prototype.ControllerWaterCoil.rb +5 -9
  45. data/lib/openstudio-standards/prototypes/Prototype.Fan.rb +68 -0
  46. data/lib/openstudio-standards/prototypes/Prototype.FanConstantVolume.rb +39 -43
  47. data/lib/openstudio-standards/prototypes/Prototype.FanOnOff.rb +49 -51
  48. data/lib/openstudio-standards/prototypes/Prototype.FanVariableVolume.rb +55 -61
  49. data/lib/openstudio-standards/prototypes/Prototype.FanZoneExhaust.rb +8 -10
  50. data/lib/openstudio-standards/prototypes/Prototype.HeatExchangerAirToAirSensibleAndLatent.rb +15 -20
  51. data/lib/openstudio-standards/prototypes/Prototype.Model.hvac.rb +330 -322
  52. data/lib/openstudio-standards/prototypes/Prototype.Model.rb +501 -446
  53. data/lib/openstudio-standards/prototypes/Prototype.Model.swh.rb +221 -230
  54. data/lib/openstudio-standards/prototypes/Prototype.add_objects.rb +0 -2
  55. data/lib/openstudio-standards/prototypes/Prototype.full_service_restaurant.rb +130 -137
  56. data/lib/openstudio-standards/prototypes/Prototype.high_rise_apartment.rb +374 -291
  57. data/lib/openstudio-standards/prototypes/Prototype.hospital.rb +146 -193
  58. data/lib/openstudio-standards/prototypes/Prototype.hvac_systems.rb +1315 -1113
  59. data/lib/openstudio-standards/prototypes/Prototype.large_hotel.rb +65 -88
  60. data/lib/openstudio-standards/prototypes/Prototype.large_office.rb +101 -156
  61. data/lib/openstudio-standards/prototypes/Prototype.medium_office.rb +46 -96
  62. data/lib/openstudio-standards/prototypes/Prototype.mid_rise_apartment.rb +113 -123
  63. data/lib/openstudio-standards/prototypes/Prototype.outpatient.rb +356 -345
  64. data/lib/openstudio-standards/prototypes/Prototype.primary_school.rb +48 -103
  65. data/lib/openstudio-standards/prototypes/Prototype.quick_service_restaurant.rb +115 -123
  66. data/lib/openstudio-standards/prototypes/Prototype.retail_standalone.rb +30 -39
  67. data/lib/openstudio-standards/prototypes/Prototype.retail_stripmall.rb +32 -45
  68. data/lib/openstudio-standards/prototypes/Prototype.secondary_school.rb +98 -258
  69. data/lib/openstudio-standards/prototypes/Prototype.small_hotel.rb +429 -474
  70. data/lib/openstudio-standards/prototypes/Prototype.small_office.rb +28 -36
  71. data/lib/openstudio-standards/prototypes/Prototype.strip_model.rb +7 -7
  72. data/lib/openstudio-standards/prototypes/Prototype.utilities.rb +172 -146
  73. data/lib/openstudio-standards/prototypes/Prototype.warehouse.rb +46 -53
  74. data/lib/openstudio-standards/standards/Standards.AirLoopHVAC.rb +885 -707
  75. data/lib/openstudio-standards/standards/Standards.AirTerminalSingleDuctParallelPIUReheat.rb +48 -57
  76. data/lib/openstudio-standards/standards/Standards.AirTerminalSingleDuctVAVReheat.rb +24 -31
  77. data/lib/openstudio-standards/standards/Standards.BoilerHotWater.rb +80 -93
  78. data/lib/openstudio-standards/standards/Standards.BuildingStory.rb +69 -0
  79. data/lib/openstudio-standards/standards/Standards.ChillerElectricEIR.rb +60 -72
  80. data/lib/openstudio-standards/standards/Standards.CoilCoolingDXMultiSpeed.rb +104 -108
  81. data/lib/openstudio-standards/standards/Standards.CoilCoolingDXSingleSpeed.rb +190 -198
  82. data/lib/openstudio-standards/standards/Standards.CoilCoolingDXTwoSpeed.rb +134 -146
  83. data/lib/openstudio-standards/standards/Standards.CoilHeatingDXMultiSpeed.rb +56 -60
  84. data/lib/openstudio-standards/standards/Standards.CoilHeatingDXSingleSpeed.rb +151 -161
  85. data/lib/openstudio-standards/standards/Standards.CoilHeatingGasMultiStage.rb +30 -34
  86. data/lib/openstudio-standards/standards/Standards.Construction.rb +116 -132
  87. data/lib/openstudio-standards/standards/Standards.CoolingTower.rb +138 -0
  88. data/lib/openstudio-standards/standards/Standards.CoolingTowerSingleSpeed.rb +11 -0
  89. data/lib/openstudio-standards/standards/Standards.CoolingTowerTwoSpeed.rb +11 -0
  90. data/lib/openstudio-standards/standards/Standards.CoolingTowerVariableSpeed.rb +16 -0
  91. data/lib/openstudio-standards/standards/Standards.Fan.rb +190 -236
  92. data/lib/openstudio-standards/standards/Standards.FanConstantVolume.rb +0 -2
  93. data/lib/openstudio-standards/standards/Standards.FanOnOff.rb +0 -2
  94. data/lib/openstudio-standards/standards/Standards.FanVariableVolume.rb +168 -14
  95. data/lib/openstudio-standards/standards/Standards.FanZoneExhaust.rb +0 -2
  96. data/lib/openstudio-standards/standards/Standards.HeaderedPumpsConstantSpeed.rb +33 -0
  97. data/lib/openstudio-standards/standards/Standards.HeaderedPumpsVariableSpeed.rb +83 -0
  98. data/lib/openstudio-standards/standards/Standards.HeatExchangerSensLat.rb +22 -0
  99. data/lib/openstudio-standards/standards/Standards.Model.rb +2385 -1622
  100. data/lib/openstudio-standards/standards/Standards.PlanarSurface.rb +83 -35
  101. data/lib/openstudio-standards/standards/Standards.PlantLoop.rb +805 -395
  102. data/lib/openstudio-standards/standards/Standards.Pump.rb +139 -119
  103. data/lib/openstudio-standards/standards/Standards.PumpConstantSpeed.rb +0 -2
  104. data/lib/openstudio-standards/standards/Standards.PumpVariableSpeed.rb +16 -15
  105. data/lib/openstudio-standards/standards/Standards.ScheduleCompact.rb +35 -0
  106. data/lib/openstudio-standards/standards/Standards.ScheduleConstant.rb +7 -13
  107. data/lib/openstudio-standards/standards/Standards.ScheduleRuleset.rb +144 -59
  108. data/lib/openstudio-standards/standards/Standards.Space.rb +1509 -1326
  109. data/lib/openstudio-standards/standards/Standards.SpaceType.rb +254 -262
  110. data/lib/openstudio-standards/standards/Standards.SubSurface.rb +105 -105
  111. data/lib/openstudio-standards/standards/Standards.Surface.rb +27 -31
  112. data/lib/openstudio-standards/standards/Standards.ThermalZone.rb +882 -157
  113. data/lib/openstudio-standards/standards/Standards.WaterHeaterMixed.rb +179 -69
  114. data/lib/openstudio-standards/standards/Standards.ZoneHVACComponent.rb +75 -0
  115. data/lib/openstudio-standards/utilities/logging.rb +31 -38
  116. data/lib/openstudio-standards/utilities/simulation.rb +118 -82
  117. data/lib/openstudio-standards/version.rb +1 -1
  118. data/lib/openstudio-standards/weather/Weather.Model.rb +382 -390
  119. data/lib/openstudio-standards/weather/Weather.stat_file.rb +159 -78
  120. metadata +59 -6
@@ -0,0 +1,554 @@
1
+ -EnergyPlus Weather Converter V7.2.0.007
2
+ Statistics for USA_CO_Denver.Intl.AP.725650_TMY3
3
+ Location -- Denver Intl Ap CO USA
4
+ {N 39� 49'} {W 104� 39'} {GMT -7.0 Hours}
5
+ Elevation -- 1650m above sea level
6
+ Standard Pressure at Elevation -- 83011Pa
7
+ Data Source -- TMY3
8
+
9
+ WMO Station 725650
10
+
11
+ - Displaying Design Conditions from "Climate Design Data 2009 ASHRAE Handbook"
12
+ - ASHRAE design conditions are carefully generated from a period of record
13
+ - (typically 30 years) to be representative of that location and to be suitable
14
+ - for use in heating/cooling load calculations.
15
+
16
+ Design Stat ColdestMonth DB996 DB990 DP996 HR_DP996 DB_DP996 DP990 HR_DP990 DB_DP990 WS004c DB_WS004c WS010c DB_WS010c WS_DB996 WD_DB996
17
+ Units {} {�C} {�C} {�C} {} {�C} {�C} {} {�C} {m/s} {�C} {m/s} {�C} {m/s} {deg}
18
+ Heating 12 -17.4 -14 -21.5 0.7 -11.7 -18.9 0.9 -6.9 14.1 1.8 12 2.4 3.3 160
19
+
20
+ Design Stat HottestMonth DBR DB004 WB_DB004 DB010 WB_DB010 DB020 WB_DB020 WB004 DB_WB004 WB010 DB_WB010 WB020 DB_WB020 WS_DB004 WD_DB004 DP004 HR_DP004 DB_DP004 DP010 HR_DP010 DB_DP010 DP020 HR_DP020 DB_DP020 EN004 DB_EN004 EN010 DB_EN010 EN020 DB_EN020 #Hrs_8-4_&_DB-12.8/20.6
21
+ Units {} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {m/s} {deg} {�C} {} {�C} {�C} {} {�C} {�C} {} {�C} {kJ/kg} {�C} {kJ/kg} {�C} {kJ/kg} {�C} {}
22
+ Cooling 7 15.2 34.6 15.7 33.2 15.6 31.8 15.4 18.3 27.3 17.6 27 17 26.5 4.2 80 16 14 19.9 15.2 13.2 19.7 14.1 12.3 19.6 58.3 27 55.9 26.9 53.8 26.3 722
23
+
24
+ Design Stat WS010 WS025 WS050 WBmax DBmin_mean DBmax_mean DBmin_stddev DBmax_stddev DBmin05years DBmax05years DBmin10years DBmax10years DBmin20years DBmax20years DBmin50years DBmax50years
25
+ Units {m/s} {m/s} {m/s} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C} {�C}
26
+ Extremes 11.9 10.4 8.8 20.7 -22.7 37.1 2.8 1.3 -24.7 38 -26.3 38.8 -27.9 39.5 -29.9 40.5
27
+
28
+ - Displaying Monthly Design Conditions "Climate Design Data 2009 ASHRAE Handbook"
29
+ - Monthly Optical Sky Depth Beam (taub) and Diffuse (taud)
30
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
31
+ taub (beam) 0.251 0.276 0.303 0.368 0.382 0.399 0.424 0.399 0.341 0.302 0.267 0.248
32
+ taud (diffuse) 2.579 2.375 2.299 2.046 2.082 2.073 2.012 2.116 2.324 2.427 2.522 2.615
33
+
34
+ taub = Clear Sky Optical Depth for Beam Irradiance
35
+ taud = Clear Sky Optical Depth for Diffuse Irradiance
36
+
37
+ - Monthly Solar Irradiance Wh/m� (noon on 21st of month)
38
+ ib (beam) 943 952 954 904 895 877 851 864 900 907 908 921
39
+ id (diffuse) 78 105 122 165 162 163 172 151 117 98 82 72
40
+
41
+ ib = Clear Sky Noon Beam Normal Irradiance on 21st Day
42
+ id = Clear Sky Noon Diffuse Horizontal Irradiance on 21st Day
43
+
44
+ - Monthly Drybulb and Mean Coincident Wetbulb Temperatures �C
45
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
46
+ Drybulb 0.4% 18.4 19.4 23.3 26.0 31.7 34.6 37.3 35.2 33.6 28.5 22.9 17.8
47
+ Coincident Wetbulb 0.4% 6.1 6.3 8.3 9.5 14.1 15.1 16.1 15.8 15.2 11.9 8.3 6.0
48
+ Drybulb 2.0% 15.1 16.4 20.2 23.7 28.8 32.8 35.5 33.6 31.4 26.4 20.0 14.3
49
+ Coincident Wetbulb 2.0% 4.7 5.3 7.3 9.1 13.1 14.7 15.9 15.7 14.4 11.0 7.4 4.7
50
+ Drybulb 5.0% 12.2 13.4 17.7 21.6 26.5 31.2 33.9 32.1 29.3 23.6 17.1 11.5
51
+ Coincident Wetbulb 5.0% 3.5 3.9 6.3 8.5 12.4 14.6 15.9 15.7 13.6 10.0 6.5 3.3
52
+ Drybulb 10.% 9.2 10.3 14.9 18.9 23.8 29.0 32.4 30.4 27.1 20.5 13.8 8.8
53
+ Coincident Wetbulb 10.% 2.2 2.3 5.2 7.7 11.8 14.4 15.9 15.8 13.1 9.0 5.0 2.1
54
+
55
+ Drybulb 0.4% = 0.4% Monthly Design Drybulb Temperature
56
+ Coincident Wetbulb 0.4% = 0.4% Monthly Mean Coincident Wetbulb Temperature
57
+ Drybulb 2.0% = 2.0% Monthly Design Drybulb Temperature
58
+ Coincident Wetbulb 2.0% = 2.0% Monthly Mean Coincident Wetbulb Temperature
59
+ Drybulb 5.0% = 5.0% Monthly Design Drybulb Temperature
60
+ Coincident Wetbulb 5.0% = 5.0% Monthly Mean Coincident Wetbulb Temperature
61
+ Drybulb 10.% = 10.% Monthly Design Drybulb Temperature
62
+ Coincident Wetbulb 10.% = 10.% Monthly Mean Coincident Wetbulb Temperature
63
+
64
+ - Monthly Drybulb and Wetbulb Daily Ranges delta�C
65
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
66
+ Drybulb 13.2 13.3 14.3 14.0 14.4 15.2 15.2 14.8 15.0 14.3 13.4 12.6
67
+ Drybulb range - DB 5% 16.7 17.5 18.4 18.1 17.9 18.3 17.2 17.1 17.3 18.2 17.6 15.8
68
+ Wetbulb range - DB 5% 9.0 9.2 9.0 8.0 6.7 6.0 5.0 5.0 5.8 7.6 8.7 8.7
69
+
70
+ Drybulb = Mean Daily Dry Bulb Temperature Range
71
+ Drybulb range - DB 5% = Mean Daily Dry Bulb Temperature Range Coincident with 5% Design Dry Bulb Temperature
72
+ Wetbulb range - DB 5% = Mean Daily Wet Bulb Temperature Range Coincident with 5% Design Dry Bulb Temperature
73
+
74
+ - Displaying Heating/Cooling Degree Days/Hours from "Climate Design Data 2009 ASHRAE Handbook"
75
+ - Monthly Standard Heating/Cooling Degree Days/Hours
76
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
77
+ HDD base 10�C 304 262 187 91 19 1 0 0 9 62 191 309
78
+ HDD base 18.3�C 561 493 433 298 149 41 3 5 77 248 427 567
79
+
80
+ CDD base 10�C 2 2 13 43 142 277 427 384 226 76 13 1
81
+ CDD base 18.3�C 0 0 0 1 14 66 171 131 44 4 0 0
82
+
83
+ CDH base 23.3�C 0 0 3 26 268 931 1979 1384 594 102 2 0
84
+ CDH base 26.7�C 0 0 0 2 78 398 1016 615 217 17 0 0
85
+
86
+ - 1606 annual (standard) cooling degree-days (10�C baseline)
87
+ - 1434 annual (standard) heating degree-days (10�C baseline)
88
+
89
+ - 432 annual (standard) cooling degree-days (18.3�C baseline)
90
+ - 3301 annual (standard) heating degree-days (18.3�C baseline)
91
+
92
+ - Monthly Statistics for Dry Bulb temperatures �C
93
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
94
+ Maximum 16.7 18.3 21.1 22.8 30.6 40.0 36.1 34.4 33.9 28.3 21.1 21.1
95
+ Day:Hour 23:14 16:15 25:13 19:14 19:14 26:16 5:15 19:12 3:14 1:15 22:12 1:13
96
+
97
+ Minimum -18.0 -15.6 -6.1 -8.9 0.0 7.2 11.7 11.7 3.9 -1.9 -16.1 -19.4
98
+ Day:Hour 1:01 8:23 17:06 3:03 1:04 9:05 13:05 17:05 28:23 31:24 26:06 31:24
99
+
100
+ Daily Avg 0.8 -0.1 6.1 5.8 15.5 23.1 22.3 22.6 19.2 10.0 2.9 1.4
101
+
102
+ - Maximum Dry Bulb temperature of 40.0�C on Jun 26
103
+ - Minimum Dry Bulb temperature of -19.4�C on Dec 31
104
+
105
+ - Monthly Statistics for Extreme Dry Bulb temperatures �C
106
+ #Days Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
107
+ Max >= 32 15 11 12 3
108
+ Max <= 0 2 1 1 5 4
109
+ Min <= 0 29 25 19 18 1 6 20 28
110
+ Min <=-18 1 1
111
+
112
+ - Monthly Statistics for Dew Point temperatures �C
113
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
114
+ Maximum -2.0 0.6 5.6 8.9 13.3 17.2 17.2 17.2 12.8 9.2 2.2 -1.1
115
+ Day:Hour 27:08 28:21 5:11 28:13 18:20 18:14 20:18 13:14 27:24 4:23 13:23 30:01
116
+
117
+ Minimum -20.6 -20.6 -20.6 -16.1 -13.3 -6.1 -2.2 -4.4 -11.7 -9.4 -18.3 -21.7
118
+ Day:Hour 11:17 1:06 9:12 10:02 12:15 7:11 4:11 19:14 12:14 13:15 26:06 31:24
119
+
120
+ Daily Avg -10.4 -8.9 -7.9 -2.5 3.8 6.6 9.5 8.3 3.0 1.3 -7.0 -9.1
121
+
122
+ - Maximum Dew Point temperature of 17.2�C on Jun 18
123
+ - Minimum Dew Point temperature of -21.7�C on Dec 31
124
+
125
+ - Average Hourly Statistics for Dry Bulb temperatures �C
126
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
127
+ 0:01- 1:00 -2.8 -2.8 2.5 2.7 11.2 17.5 17.6 18.9 14.7 6.7 0.2 -1.7
128
+ 1:01- 2:00 -2.8 -3.3 2.4 2.3 10.9 16.9 17.0 18.4 14.1 6.5 0.3 -2.3
129
+ 2:01- 3:00 -3.0 -3.7 2.0 1.8 10.2 16.0 16.3 17.8 13.7 6.3 0.3 -2.2
130
+ 3:01- 4:00 -3.4 -3.9 1.6 1.4 9.6 15.3 15.8 17.3 13.3 5.6 -0.3 -2.6
131
+ 4:01- 5:00 -3.7 -4.4 1.5 1.2 9.3 14.9 15.4 16.9 12.7 5.5 -0.5 -2.9
132
+ 5:01- 6:00 -3.6 -5.0 1.0 1.1 10.4 17.4 17.2 17.0 12.3 4.9 -0.6 -3.2
133
+ 6:01- 7:00 -3.7 -5.2 1.5 3.1 12.4 19.8 19.5 19.2 14.7 6.1 -0.8 -2.8
134
+ 7:01- 8:00 -2.4 -3.4 4.3 4.8 14.4 22.2 21.8 21.4 17.5 8.1 0.5 -1.9
135
+ 8:01- 9:00 -0.0 -0.9 6.4 6.2 16.0 24.3 24.0 23.4 19.9 10.0 2.8 1.1
136
+ 9:01-10:00 2.5 1.7 8.1 7.6 17.7 26.0 25.8 25.3 22.0 11.9 5.2 3.9
137
+ 10:01-11:00 4.9 3.5 9.9 8.9 19.2 27.5 27.4 27.1 24.0 13.7 6.6 6.2
138
+ 11:01-12:00 6.2 5.3 10.9 9.9 20.3 28.9 28.3 28.2 25.6 15.1 7.7 7.9
139
+ 12:01-13:00 7.2 6.0 11.7 10.7 20.7 29.6 28.6 28.8 26.4 16.1 8.2 8.5
140
+ 13:01-14:00 7.5 6.1 11.9 11.1 21.3 30.2 28.8 28.7 26.8 16.3 8.6 8.5
141
+ 14:01-15:00 7.3 5.9 12.0 10.9 21.1 30.5 28.0 28.5 26.8 16.5 8.4 8.0
142
+ 15:01-16:00 6.3 5.3 11.5 10.7 21.0 29.8 26.9 28.0 26.5 16.0 7.4 6.8
143
+ 16:01-17:00 4.5 3.8 10.5 10.0 20.4 28.9 26.7 27.0 25.1 14.0 4.9 4.2
144
+ 17:01-18:00 2.7 1.8 9.0 8.8 19.1 27.8 25.2 25.5 22.3 11.5 3.4 2.3
145
+ 18:01-19:00 1.2 0.1 7.2 6.6 17.6 25.9 23.7 23.3 19.5 10.0 2.4 1.3
146
+ 19:01-20:00 0.3 -1.1 5.8 5.6 15.6 23.7 22.0 21.7 17.8 9.4 1.5 0.4
147
+ 20:01-21:00 -0.5 -1.5 5.0 4.6 14.6 22.1 20.7 21.1 17.1 8.7 1.3 -0.4
148
+ 21:01-22:00 -1.4 -1.8 4.2 3.9 13.5 20.8 19.9 20.4 16.4 8.0 1.2 -1.1
149
+ 22:01-23:00 -2.1 -1.9 3.5 3.2 12.8 19.8 19.3 19.7 15.6 7.3 0.7 -1.8
150
+ 23:01-24:00 -2.1 -1.9 2.7 2.9 12.3 18.5 18.5 19.2 15.2 6.9 0.3 -1.9
151
+ Max Hour 14 14 15 14 14 15 14 13 14 15 14 14
152
+ Min Hour 5 7 6 6 5 5 5 5 6 6 7 6
153
+
154
+ - Average Hourly Statistics for Dew Point temperatures �C
155
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
156
+ 0:01- 1:00 -10.6 -9.3 -6.7 -2.3 4.5 7.8 10.4 8.8 4.9 1.6 -7.2 -8.9
157
+ 1:01- 2:00 -10.8 -9.5 -6.9 -2.4 4.3 7.9 10.3 8.7 4.7 1.4 -7.1 -9.1
158
+ 2:01- 3:00 -11.2 -9.8 -7.0 -2.7 4.4 7.9 10.2 8.7 4.5 1.4 -7.3 -9.2
159
+ 3:01- 4:00 -11.1 -9.8 -7.2 -3.1 4.4 7.7 10.0 8.7 3.9 1.1 -7.5 -9.7
160
+ 4:01- 5:00 -11.2 -9.9 -7.3 -3.5 4.4 7.6 9.9 8.6 3.9 1.1 -7.6 -9.7
161
+ 5:01- 6:00 -11.3 -10.5 -7.5 -3.5 4.4 7.9 10.1 8.9 4.1 0.8 -8.0 -9.7
162
+ 6:01- 7:00 -11.5 -10.6 -7.2 -2.8 4.1 7.5 10.2 9.2 4.2 1.6 -8.1 -10.0
163
+ 7:01- 8:00 -11.0 -10.3 -7.2 -2.7 4.1 7.0 10.0 9.5 4.3 2.0 -7.4 -9.7
164
+ 8:01- 9:00 -10.6 -10.0 -8.1 -2.9 4.2 6.7 9.8 9.2 3.7 1.9 -6.5 -9.1
165
+ 9:01-10:00 -10.1 -9.8 -8.2 -2.9 3.9 6.0 9.5 8.7 3.2 2.0 -6.4 -9.0
166
+ 10:01-11:00 -9.7 -9.6 -8.6 -3.0 2.9 5.2 8.5 7.9 2.1 1.8 -6.7 -9.2
167
+ 11:01-12:00 -10.0 -9.5 -9.3 -3.1 2.4 4.5 8.1 7.5 1.3 1.6 -6.8 -9.5
168
+ 12:01-13:00 -10.2 -9.4 -9.5 -3.1 2.2 4.5 7.9 6.8 0.2 1.4 -6.9 -9.5
169
+ 13:01-14:00 -10.6 -8.8 -9.8 -3.0 1.9 4.6 7.5 7.0 -0.3 0.7 -7.1 -9.3
170
+ 14:01-15:00 -10.6 -8.6 -10.0 -3.1 1.9 4.3 7.5 6.9 -0.1 0.6 -7.1 -8.8
171
+ 15:01-16:00 -10.3 -7.5 -9.8 -2.8 2.4 4.5 8.1 6.9 0.1 0.4 -6.7 -8.7
172
+ 16:01-17:00 -10.0 -7.5 -9.5 -2.8 2.7 5.3 8.7 7.0 0.8 1.0 -6.4 -8.4
173
+ 17:01-18:00 -10.1 -7.2 -8.9 -2.3 3.4 6.0 9.3 8.0 1.7 1.3 -6.4 -8.3
174
+ 18:01-19:00 -10.1 -7.1 -7.7 -1.7 4.2 6.9 9.7 8.5 2.7 1.4 -6.4 -8.4
175
+ 19:01-20:00 -9.8 -7.3 -7.3 -1.4 4.9 7.4 10.3 8.8 3.7 1.1 -6.5 -8.6
176
+ 20:01-21:00 -9.9 -7.7 -6.9 -1.2 4.9 7.8 10.7 8.7 3.9 1.3 -6.4 -8.7
177
+ 21:01-22:00 -9.8 -8.1 -6.7 -1.3 5.0 8.1 10.5 8.5 4.4 1.2 -6.5 -8.8
178
+ 22:01-23:00 -10.1 -8.3 -6.8 -1.6 4.8 7.7 10.5 8.7 4.5 1.7 -7.1 -8.9
179
+ 23:01-24:00 -10.2 -8.7 -6.5 -1.7 4.9 8.2 10.5 8.8 4.6 1.5 -7.5 -9.2
180
+ Max Hour 11 19 24 21 22 24 21 8 1 10 19 18
181
+ Min Hour 7 7 15 5 14 15 15 13 14 16 7 7
182
+
183
+ - Monthly Statistics for Relative Humidity %
184
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
185
+ Maximum 96 100 96 100 97 100 97 96 100 100 100 100
186
+ Day:Hour 7:05 28:21 5:15 2:07 4:19 17:05 10:05 11:07 25:04 4:06 1:14 5:03
187
+
188
+ Minimum 6 7 6 12 6 6 11 8 5 10 10 9
189
+ Day:Hour 22:14 16:15 9:12 6:17 14:13 26:17 4:17 19:14 12:14 18:14 17:14 2:13
190
+
191
+ Daily Avg 47 54 41 62 53 42 50 45 41 61 52 49
192
+
193
+ - Average Hourly Relative Humidity %
194
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
195
+ 0:01- 1:00 58 62 53 73 68 57 66 55 55 73 60 58
196
+ 1:01- 2:00 57 63 53 73 68 59 67 56 57 73 59 60
197
+ 2:01- 3:00 56 64 54 74 70 63 70 58 57 73 58 59
198
+ 3:01- 4:00 58 65 55 74 73 64 70 59 56 75 59 58
199
+ 4:01- 5:00 58 67 54 73 74 66 72 60 58 75 61 59
200
+ 5:01- 6:00 57 67 55 74 69 58 65 61 60 76 60 60
201
+ 6:01- 7:00 56 67 54 69 60 50 57 55 53 75 59 58
202
+ 7:01- 8:00 53 60 46 63 54 42 49 50 46 68 57 55
203
+ 8:01- 9:00 46 51 38 58 49 37 43 44 40 61 53 47
204
+ 9:01-10:00 41 43 34 53 44 32 38 39 34 56 47 41
205
+ 10:01-11:00 36 39 29 50 39 29 34 33 27 50 42 35
206
+ 11:01-12:00 32 36 26 47 35 26 31 31 23 46 40 31
207
+ 12:01-13:00 31 34 25 45 35 24 30 28 21 43 38 31
208
+ 13:01-14:00 29 36 24 45 33 24 30 29 20 42 36 31
209
+ 14:01-15:00 30 37 23 46 34 24 34 29 21 42 37 34
210
+ 15:01-16:00 32 41 24 46 34 26 37 29 21 42 40 36
211
+ 16:01-17:00 37 46 26 48 36 28 38 32 24 48 48 42
212
+ 17:01-18:00 42 53 29 52 41 31 43 36 30 55 52 47
213
+ 18:01-19:00 46 59 36 60 46 36 46 42 37 60 55 50
214
+ 19:01-20:00 49 63 41 65 54 41 51 47 43 61 58 52
215
+ 20:01-21:00 50 63 44 69 57 44 56 48 45 64 58 54
216
+ 21:01-22:00 54 63 47 71 61 48 58 50 49 66 58 56
217
+ 22:01-23:00 56 62 49 73 63 50 59 53 52 71 58 59
218
+ 23:01-24:00 56 62 53 74 65 55 62 54 54 71 59 58
219
+ Max Hour 5 6 6 4 5 5 5 6 6 6 5 6
220
+ Min Hour 14 13 15 13 14 15 13 13 14 15 14 14
221
+
222
+ - Monthly Indicators for Precipitation/Moisture (kPa)
223
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
224
+ 0.3 0.3 0.3 0.5 0.7 0.9 1.1 1.0 0.6 0.7 0.4 0.3
225
+
226
+ - Monthly Statistics for Wind Chill/Heat Index temperatures �C **
227
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
228
+ Minimum WC -25 -27 -16 -21 -6 8 -3 -12 -30 -20
229
+ Day:Hour 29:02 8:07 29:19 15:04 4:15 9:03 28:23 31:24 26:07 31:22
230
+
231
+ Average WC -6 -6 -2 -4 3 8 3 1 -5 -4
232
+ Avg Del WC 6 4 5 7 3 1 5 5 6 4
233
+ # Hours WC 619 559 504 505 128 1 60 361 573 607
234
+
235
+ Maximum HI 29 31
236
+ Day:Hour 18:11 2:13
237
+
238
+ Average HI 28 28
239
+ Avg Del HI 0 0
240
+ # Hours HI 6 7
241
+
242
+ - **WindChill/HeatIndex Temps -- statistics...only those different from Air Temps
243
+
244
+ - Monthly Wind Direction % {N=0 or 360,E=90,S=180,W=270}
245
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
246
+ North 16 23 15 22 23 20 16 14 12 13 13 20
247
+ NorthEast 5 7 7 7 9 10 10 7 11 8 7 5
248
+ East 6 7 5 7 8 7 7 5 9 10 7 7
249
+ SouthEast 7 11 8 14 11 14 11 7 8 10 9 11
250
+ South 19 28 27 17 27 26 27 16 19 19 16 35
251
+ SouthWest 24 9 13 11 11 11 17 24 19 15 26 8
252
+ West 16 6 11 11 3 4 5 15 15 16 14 3
253
+ NorthWest 7 9 14 11 9 10 6 11 7 8 8 10
254
+
255
+ - Monthly Statistics for Wind Speed m/s
256
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
257
+ Maximum 11.3 15.5 14.4 16.0 13.9 10.3 9.3 20.6 12.4 13.4 12.4 13.9
258
+ Day:Hour 25:16 24:15 19:17 8:09 10:20 20:16 22:14 20:14 14:08 3:14 8:15 19:05
259
+
260
+ Minimum 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
261
+ Day:Hour 1:01 2:05 2:10 3:07 1:07 1:04 3:20 3:18 1:09 2:05 1:20 2:06
262
+
263
+ Daily Avg 3.8 3.5 4.4 5.3 3.8 3.4 3.0 4.5 4.1 3.8 4.2 3.2
264
+
265
+ - Maximum Wind Speed of 20.6 m/s on Aug 20
266
+ - Minimum Wind Speed of 0.0 m/s on Jan 1
267
+
268
+ - Average Hourly Statistics for Wind Speed m/s
269
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
270
+ 0:01- 1:00 4.1 3.0 4.0 4.6 2.8 3.1 2.6 5.2 4.2 3.9 4.5 2.7
271
+ 1:01- 2:00 4.1 2.8 4.3 4.8 2.7 3.0 2.5 4.8 4.2 4.2 4.3 2.7
272
+ 2:01- 3:00 3.9 2.9 4.3 5.1 2.6 2.7 2.4 4.9 4.5 3.7 4.5 3.0
273
+ 3:01- 4:00 4.0 2.8 3.7 5.2 2.6 2.5 2.2 4.4 4.2 3.3 4.6 2.9
274
+ 4:01- 5:00 3.9 2.6 3.3 4.5 2.4 2.3 2.1 4.0 4.1 3.4 4.8 2.8
275
+ 5:01- 6:00 3.5 2.7 3.1 4.6 2.9 2.7 2.3 3.8 4.1 3.2 4.9 2.8
276
+ 6:01- 7:00 3.5 2.8 3.3 4.9 3.0 2.9 2.2 4.3 4.1 3.3 4.6 3.0
277
+ 7:01- 8:00 3.8 3.2 3.4 5.5 3.2 2.8 2.4 4.0 4.4 3.5 4.4 3.1
278
+ 8:01- 9:00 3.8 3.1 3.7 5.7 3.2 3.1 2.5 3.9 3.5 3.2 4.0 3.4
279
+ 9:01-10:00 3.7 3.4 3.8 5.5 3.4 3.2 2.5 3.3 3.3 2.9 4.0 3.6
280
+ 10:01-11:00 3.5 3.9 4.1 5.4 4.1 3.1 2.7 4.0 3.7 3.2 4.1 3.1
281
+ 11:01-12:00 3.3 3.8 5.0 5.9 4.5 3.5 3.2 4.2 3.5 3.4 4.0 3.2
282
+ 12:01-13:00 4.0 4.2 5.3 5.8 5.1 3.3 3.4 3.6 3.5 3.7 4.1 3.5
283
+ 13:01-14:00 4.3 4.7 5.3 6.1 5.2 4.4 3.9 5.2 3.9 4.2 3.9 4.0
284
+ 14:01-15:00 4.0 4.6 5.6 5.8 5.6 4.2 4.4 4.6 3.8 4.7 3.7 5.1
285
+ 15:01-16:00 4.0 4.6 5.4 6.0 5.3 4.7 4.4 5.1 4.7 4.8 3.1 4.3
286
+ 16:01-17:00 3.7 4.7 6.0 5.9 5.8 4.6 4.2 5.8 4.7 4.7 3.6 3.7
287
+ 17:01-18:00 3.8 4.0 6.0 6.3 5.3 4.2 4.2 4.8 4.0 4.1 3.6 3.0
288
+ 18:01-19:00 3.8 4.1 5.0 5.7 4.2 4.3 3.7 4.6 3.9 4.0 3.6 2.6
289
+ 19:01-20:00 3.5 3.4 4.6 5.4 3.9 4.3 2.8 4.7 4.1 4.0 3.9 2.9
290
+ 20:01-21:00 3.7 2.9 4.3 4.8 3.5 3.8 2.8 4.5 4.7 4.0 4.3 3.1
291
+ 21:01-22:00 3.8 3.1 3.7 4.9 3.8 3.8 2.9 4.8 4.7 4.0 5.0 2.6
292
+ 22:01-23:00 3.6 3.2 3.6 4.6 3.1 3.1 3.0 5.3 4.4 3.7 4.7 2.8
293
+ 23:01-24:00 4.2 3.0 4.0 4.4 3.1 3.1 2.6 5.0 4.1 4.2 4.6 2.7
294
+ Max Hour 14 14 17 18 17 16 16 17 22 16 22 15
295
+ Min Hour 12 5 6 24 5 5 5 10 10 10 16 19
296
+
297
+ - Average Hourly Statistics for Wind Direction � {N=0 or 360,E=90,S=180,W=270}
298
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
299
+ 0:01- 1:00 207 190 194 197 178 205 191 200 207 161 199 165
300
+ 1:01- 2:00 198 184 188 198 159 233 179 211 201 179 188 183
301
+ 2:01- 3:00 205 163 223 201 134 226 186 204 202 182 179 175
302
+ 3:01- 4:00 200 200 226 191 175 186 178 201 190 179 189 184
303
+ 4:01- 5:00 214 188 199 179 179 177 174 197 206 175 194 149
304
+ 5:01- 6:00 194 145 174 190 211 211 206 207 206 175 212 174
305
+ 6:01- 7:00 203 183 167 168 161 230 182 242 212 201 199 155
306
+ 7:01- 8:00 192 189 193 225 196 163 180 223 203 183 185 185
307
+ 8:01- 9:00 200 178 205 224 224 150 181 241 202 185 200 169
308
+ 9:01-10:00 218 194 185 181 195 147 139 224 145 171 172 197
309
+ 10:01-11:00 194 189 198 147 173 200 124 128 149 185 170 165
310
+ 11:01-12:00 155 187 197 169 153 174 176 136 135 144 173 179
311
+ 12:01-13:00 162 181 196 161 152 176 163 139 131 146 167 182
312
+ 13:01-14:00 165 175 185 184 139 130 148 160 132 156 160 212
313
+ 14:01-15:00 127 185 213 176 185 172 194 173 149 140 144 220
314
+ 15:01-16:00 116 191 170 165 176 183 164 137 147 149 130 174
315
+ 16:01-17:00 149 187 169 164 150 168 161 157 114 180 182 202
316
+ 17:01-18:00 133 185 186 175 182 160 175 157 138 187 183 208
317
+ 18:01-19:00 180 199 174 159 169 154 160 159 162 175 185 192
318
+ 19:01-20:00 184 175 207 138 190 150 154 176 138 185 170 166
319
+ 20:01-21:00 185 187 191 156 185 140 195 199 168 192 178 165
320
+ 21:01-22:00 196 195 186 139 202 145 169 199 177 176 184 164
321
+ 22:01-23:00 194 202 183 167 193 169 191 192 188 160 182 178
322
+ 23:01-24:00 192 170 185 196 217 209 166 194 197 175 189 172
323
+ Max Hour 10 23 4 8 9 2 6 7 7 7 6 15
324
+ Min Hour 16 6 7 20 3 14 11 11 17 15 16 5
325
+
326
+ - Monthly Statistics for Liquid Precipitation mm
327
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
328
+ Total 0 9 12 101 41 20 89 9 0 5 5 1
329
+ Max Hourly 0 2 3 9 13 13 34 5 0 4 2 1
330
+
331
+ - Monthly Statistics for Albedo
332
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
333
+ Average 0.220 0.220 0.200 0.190 0.200 0.190 0.200 0.190 0.210 0.200 0.200 0.220
334
+
335
+ - Monthly Statistics for Solar Radiation (Direct Normal, Diffuse, Global Horizontal) Wh/m�
336
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
337
+ Direct Avg 4827 4599 5915 4459 5804 7329 6550 6113 6158 5182 3943 4066
338
+
339
+ Direct Max 8300 8650 10874 9918 12067 11119 12109 10621 10041 8390 7547 7546
340
+ Day 22 1 30 7 12 10 14 3 1 10 6 10
341
+
342
+ Diffuse Avg 738 1108 1373 2018 2358 2099 2199 1974 1617 1123 972 695
343
+
344
+ Global Avg 2503 3168 4658 4788 6327 7268 6716 5989 5175 3685 2465 2078
345
+ - Maximum Direct Normal Solar of 12109 Wh/m� on Jul 14
346
+
347
+ - Average Hourly Statistics for Direct Normal Solar Radiation Wh/m�
348
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
349
+ 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0
350
+ 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0
351
+ 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0
352
+ 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0
353
+ 4:01- 5:00 0 0 0 0 7 30 15 0 0 0 0 0
354
+ 5:01- 6:00 0 0 3 34 160 274 250 42 7 0 0 0
355
+ 6:01- 7:00 0 12 157 300 371 420 457 379 381 29 1 0
356
+ 7:01- 8:00 126 224 400 371 443 570 557 509 461 358 130 113
357
+ 8:01- 9:00 406 416 534 382 538 666 626 569 547 503 432 333
358
+ 9:01-10:00 538 482 631 465 537 674 691 596 568 529 416 474
359
+ 10:01-11:00 613 519 663 464 569 690 696 615 577 636 456 538
360
+ 11:01-12:00 655 618 700 449 571 738 663 695 679 649 523 570
361
+ 12:01-13:00 642 574 669 457 568 669 583 636 683 610 531 552
362
+ 13:01-14:00 633 573 616 424 524 621 516 574 598 599 493 602
363
+ 14:01-15:00 572 496 538 366 417 580 441 402 554 537 460 470
364
+ 15:01-16:00 438 415 459 272 407 510 345 371 461 440 406 332
365
+ 16:01-17:00 200 232 342 219 337 421 300 289 414 284 97 80
366
+ 17:01-18:00 5 40 194 205 237 278 266 289 229 7 0 0
367
+ 18:01-19:00 0 0 9 52 116 172 131 146 0 0 0 0
368
+ 19:01-20:00 0 0 0 0 2 19 13 0 0 0 0 0
369
+ 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0
370
+ 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0
371
+ 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0
372
+ 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0
373
+ Max Hour* 12 12 12 10* 12 12 11* 12 13 12 13 14
374
+ Min Hour 1 1 1 1 1 1 1 1 1 1 1 1
375
+
376
+ - Average Hourly Statistics for Diffuse Horizontal Solar Radiation Wh/m�
377
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
378
+ 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0
379
+ 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0
380
+ 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0
381
+ 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0
382
+ 4:01- 5:00 0 0 0 0 1 4 1 0 0 0 0 0
383
+ 5:01- 6:00 0 0 0 1 37 44 31 1 0 0 0 0
384
+ 6:01- 7:00 0 1 18 76 87 77 63 78 57 2 0 0
385
+ 7:01- 8:00 11 32 62 113 144 122 120 113 93 76 45 13
386
+ 8:01- 9:00 47 75 103 167 180 146 134 144 139 111 84 53
387
+ 9:01-10:00 85 103 130 186 214 169 159 180 186 146 121 78
388
+ 10:01-11:00 98 145 148 214 254 197 190 211 211 137 152 97
389
+ 11:01-12:00 114 137 163 244 242 192 223 212 174 136 141 117
390
+ 12:01-13:00 115 175 170 251 262 230 243 220 186 150 135 105
391
+ 13:01-14:00 102 153 173 234 239 221 256 217 185 129 138 95
392
+ 14:01-15:00 84 124 156 204 246 222 223 225 155 121 98 81
393
+ 15:01-16:00 59 97 130 164 191 172 223 174 130 82 53 49
394
+ 16:01-17:00 23 59 84 110 144 148 178 118 81 32 6 7
395
+ 17:01-18:00 0 8 34 51 86 106 105 64 21 0 0 0
396
+ 18:01-19:00 0 0 0 3 30 46 47 15 0 0 0 0
397
+ 19:01-20:00 0 0 0 0 0 3 2 0 0 0 0 0
398
+ 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0
399
+ 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0
400
+ 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0
401
+ 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0
402
+ Max Hour* 13 13 14 13 13 13 14 15 11* 13 11* 12
403
+ Min Hour 1 1 1 1 1 1 1 1 1 1 1 1
404
+
405
+ - Average Hourly Statistics for Global Horizontal Solar Radiation Wh/m�
406
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
407
+ 0:01- 1:00 0 0 0 0 0 0 0 0 0 0 0 0
408
+ 1:01- 2:00 0 0 0 0 0 0 0 0 0 0 0 0
409
+ 2:01- 3:00 0 0 0 0 0 0 0 0 0 0 0 0
410
+ 3:01- 4:00 0 0 0 0 0 0 0 0 0 0 0 0
411
+ 4:01- 5:00 0 0 0 0 1 5 1 0 0 0 0 0
412
+ 5:01- 6:00 0 0 0 2 58 89 64 2 0 0 0 0
413
+ 6:01- 7:00 0 1 33 140 204 223 207 170 119 2 0 0
414
+ 7:01- 8:00 18 57 167 262 364 420 396 331 254 162 62 20
415
+ 8:01- 9:00 125 190 334 383 534 600 545 485 423 314 200 118
416
+ 9:01-10:00 262 306 494 513 638 716 705 620 559 429 282 230
417
+ 10:01-11:00 360 417 602 586 755 820 807 726 644 531 367 316
418
+ 11:01-12:00 429 502 679 627 770 893 846 830 714 562 406 374
419
+ 12:01-13:00 430 519 668 640 787 866 792 787 726 541 399 352
420
+ 13:01-14:00 385 473 604 572 696 781 719 702 623 472 354 333
421
+ 14:01-15:00 290 355 483 460 569 692 579 525 504 372 253 221
422
+ 15:01-16:00 162 238 347 316 451 518 457 401 351 223 131 104
423
+ 16:01-17:00 40 100 188 193 303 367 333 248 210 76 10 11
424
+ 17:01-18:00 0 10 58 90 155 201 195 137 50 1 0 0
425
+ 18:01-19:00 0 0 0 5 43 74 67 26 0 0 0 0
426
+ 19:01-20:00 0 0 0 0 0 4 3 0 0 0 0 0
427
+ 20:01-21:00 0 0 0 0 0 0 0 0 0 0 0 0
428
+ 21:01-22:00 0 0 0 0 0 0 0 0 0 0 0 0
429
+ 22:01-23:00 0 0 0 0 0 0 0 0 0 0 0 0
430
+ 23:01-24:00 0 0 0 0 0 0 0 0 0 0 0 0
431
+ Max Hour 13 13 12 13 13 12 12 12 13 12 12 12
432
+ Min Hour 1 1 1 1 1 1 1 1 1 1 1 1
433
+
434
+ - Average Hourly Statistics for Total Sky Cover %
435
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
436
+ 0:01- 1:00 36 46 50 68 53 34 32 46 33 47 53 39
437
+ 1:01- 2:00 39 45 49 60 47 33 30 39 39 45 56 39
438
+ 2:01- 3:00 36 47 46 59 48 29 24 35 34 43 53 43
439
+ 3:01- 4:00 39 46 43 65 57 36 33 34 34 42 51 42
440
+ 4:01- 5:00 40 46 44 69 60 37 36 39 43 41 51 42
441
+ 5:01- 6:00 37 43 47 74 55 40 29 42 40 46 48 40
442
+ 6:01- 7:00 42 43 46 74 53 40 29 43 42 49 50 49
443
+ 7:01- 8:00 45 46 45 77 55 34 33 42 45 47 50 52
444
+ 8:01- 9:00 43 49 45 77 55 31 34 43 46 45 52 52
445
+ 9:01-10:00 44 48 44 78 55 34 29 51 49 48 53 47
446
+ 10:01-11:00 45 52 44 79 56 37 32 52 49 48 54 45
447
+ 11:01-12:00 41 48 44 85 57 35 42 52 50 52 50 45
448
+ 12:01-13:00 45 54 46 85 60 40 50 56 55 52 51 45
449
+ 13:01-14:00 44 59 50 89 64 46 54 64 54 51 50 41
450
+ 14:01-15:00 45 62 55 88 71 48 56 68 56 55 50 45
451
+ 15:01-16:00 47 67 60 90 71 53 68 70 59 57 50 45
452
+ 16:01-17:00 48 68 61 89 75 55 66 78 64 70 62 46
453
+ 17:01-18:00 41 64 61 88 72 55 66 70 54 54 54 42
454
+ 18:01-19:00 41 58 55 91 68 51 69 66 49 52 54 37
455
+ 19:01-20:00 44 57 57 84 65 50 67 64 45 49 46 35
456
+ 20:01-21:00 48 55 54 80 64 37 50 65 58 53 40 39
457
+ 21:01-22:00 47 57 55 76 55 34 44 66 61 55 46 37
458
+ 22:01-23:00 47 54 49 74 54 36 40 54 54 51 47 42
459
+ 23:01-24:00 45 50 46 71 51 34 38 50 35 46 53 36
460
+ Max Hour 17 17 18 19 17 17 19 17 17 17 17 8
461
+ Min Hour 3 6 4 3 2 3 3 4 1 5 21 20
462
+
463
+ - Average Hourly Statistics for Opaque Sky Cover %
464
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
465
+ 0:01- 1:00 35 41 43 64 49 27 27 38 28 40 48 33
466
+ 1:01- 2:00 35 39 44 56 44 27 23 30 35 38 51 34
467
+ 2:01- 3:00 34 38 38 56 41 24 19 27 29 37 49 36
468
+ 3:01- 4:00 33 39 35 63 45 27 26 26 28 37 46 33
469
+ 4:01- 5:00 33 38 37 66 49 28 26 32 35 36 46 34
470
+ 5:01- 6:00 29 38 38 71 46 33 23 35 37 41 43 34
471
+ 6:01- 7:00 30 36 37 71 41 34 25 37 38 45 44 38
472
+ 7:01- 8:00 30 39 37 75 45 27 27 39 42 44 45 45
473
+ 8:01- 9:00 32 43 36 74 44 26 26 38 41 42 46 44
474
+ 9:01-10:00 32 41 32 74 44 25 24 46 43 45 45 41
475
+ 10:01-11:00 31 43 31 75 45 27 26 47 45 46 46 40
476
+ 11:01-12:00 32 36 30 78 48 25 38 47 47 47 46 39
477
+ 12:01-13:00 33 40 35 80 50 35 45 50 50 48 47 39
478
+ 13:01-14:00 31 42 39 84 52 40 51 55 49 47 44 34
479
+ 14:01-15:00 30 45 43 83 56 42 55 61 50 51 45 38
480
+ 15:01-16:00 32 47 46 85 55 49 63 60 53 53 42 37
481
+ 16:01-17:00 32 53 47 83 59 50 60 72 58 64 56 38
482
+ 17:01-18:00 31 49 42 83 56 52 58 61 47 48 46 34
483
+ 18:01-19:00 34 46 40 86 51 49 59 58 43 46 44 34
484
+ 19:01-20:00 34 47 42 81 55 45 57 56 41 44 38 30
485
+ 20:01-21:00 40 45 44 77 53 33 44 56 55 47 36 35
486
+ 21:01-22:00 41 48 41 73 48 27 38 61 58 51 41 34
487
+ 22:01-23:00 40 46 38 69 49 34 33 44 49 46 41 39
488
+ 23:01-24:00 40 43 37 67 47 29 31 44 31 42 46 34
489
+ Max Hour 22 17 17 19 17 18 16 17 17 17 17 8
490
+ Min Hour 6 12 12 2 7 3 3 4 1 5 21 20
491
+
492
+ - Monthly Calculated "undisturbed" Ground Temperatures** �C
493
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
494
+ 0.5 m 0.4 2.3 6.2 9.8 16.7 20.3 21.3 19.4 15.2 9.9 4.7 1.3
495
+ 2.0 m 3.1 3.6 5.7 8.2 13.5 16.8 18.5 18.1 15.7 12.1 8.0 4.7
496
+ 4.0 m 5.9 5.5 6.5 7.9 11.4 14.0 15.7 16.1 15.0 12.9 10.1 7.6
497
+
498
+ - **These ground temperatures should NOT BE USED in the GroundTemperatures object to compute building floor losses.
499
+ - The temperatures for 0.5 m depth can be used for GroundTemperatures:Surface.
500
+ - The temperatures for 4.0 m depth can be used for GroundTemperatures:Deep.
501
+ - Calculations use a standard soil diffusivity of 2.3225760E-03 {m**2/day}
502
+
503
+ - Heating/Cooling Degree Days/Hours calculated from this weather file.
504
+ - Heating/Cooling Degree Days/Hours from design conditions shown earlier in this report.
505
+ - Monthly Weather File Heating/Cooling Degree Days/Hours
506
+ Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec
507
+ HDD base 10C 286 282 133 143 12 0 0 0 1 51 215 266
508
+ HDD base 18C 534 506 368 365 97 1 6 1 36 250 453 514
509
+
510
+ CDD base 10C 0 0 13 18 182 393 380 391 276 53 2 0
511
+ CDD base 18C 0 0 0 0 19 153 138 144 71 3 0 0
512
+
513
+ CDH base 20C 0 0 4 20 728 3150 2717 2691 1772 206 2 1
514
+ CDH base 23C 0 0 0 0 305 1964 1615 1551 981 68 0 0
515
+ CDH base 27C 0 0 0 0 39 881 632 572 315 3 0 0
516
+
517
+ - 1707 annual (wthr file) cooling degree-days (10�C baseline)
518
+ - 1387 annual (wthr file) heating degree-days (10�C baseline)
519
+
520
+ - 529 annual (wthr file) cooling degree-days (18�C baseline)
521
+ - 3129 annual (wthr file) heating degree-days (18�C baseline)
522
+
523
+ - Climate type "BSk" (K�ppen classification)**
524
+ - Mid-latitude dry semiarid (e.g. Great Plains of USA, lat. 15-60�N)
525
+ - Unbearably hot dry periods in summer, but passive cooling is possible
526
+ - **Note that the K�ppen classification shown here is derived algorithmically from the source weather data.
527
+ - It may not be indicative of the long term climate for this location.
528
+
529
+ - Climate type "5B" (ASHRAE Standard 196-2006 Climate Zone)**
530
+ - Cool - Dry, Probable K�ppen classification=BSk/H, Semiarid Mid Latitude/Highlands
531
+ - **Note that the ASHRAE classification shown here is derived algorithmically from the source weather data.
532
+ - It may not be indicative of the long term climate for this location.
533
+
534
+ - Typical/Extreme Period Determination
535
+
536
+ - Summer is Jun:Aug
537
+ Extreme Summer Week (nearest maximum temperature for summer)
538
+ Extreme Hot Week Period selected: Jun 22:Jun 28, Maximum Temp= 40.00�C, Deviation=|15.304|�C
539
+ Typical Summer Week (nearest average temperature for summer)
540
+ Typical Week Period selected: Jun 8:Jun 14, Average Temp= 22.65�C, Deviation=| 0.200|�C
541
+
542
+ - Winter is Dec:Feb
543
+ Extreme Winter Week (nearest minimum temperature for winter)
544
+ Extreme Cold Week Period selected: Jan 27:Feb 2, Minimum Temp= -19.40�C, Deviation=|14.507|�C
545
+ Typical Winter Week (nearest average temperature for winter)
546
+ Typical Week Period selected: Jan 6:Jan 12, Average Temp= 0.75�C, Deviation=| 0.476|�C
547
+
548
+ - Autumn is Sep:Nov
549
+ Typical Autumn Week (nearest average temperature for autumn)
550
+ Typical Week Period selected: Oct 13:Oct 19, Average Temp= 10.69�C, Deviation=| 0.157|�C
551
+
552
+ - Spring is Mar:May
553
+ Typical Spring Week (nearest average temperature for spring)
554
+ Typical Week Period selected: Apr 26:May 2, Average Temp= 9.18�C, Deviation=| 0.623|�C