urbanopt-cli 0.10.0 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (712) hide show
  1. checksums.yaml +4 -4
  2. data/.github/release.yml +24 -0
  3. data/.github/workflows/nightly_ci_build.yml +39 -29
  4. data/.gitignore +1 -0
  5. data/CHANGELOG.md +17 -0
  6. data/CMakeLists.txt +7 -7
  7. data/FindOpenStudioSDK.cmake +8 -8
  8. data/LICENSE.md +8 -35
  9. data/README.md +25 -10
  10. data/example_files/Gemfile +9 -9
  11. data/example_files/example_project_combined.json +6 -2
  12. data/example_files/example_project_with_ghe.json +859 -0
  13. data/example_files/mappers/Baseline.rb +39 -415
  14. data/example_files/mappers/ChilledWaterStorage.rb +1 -1
  15. data/example_files/mappers/CreateBar.rb +1 -1
  16. data/example_files/mappers/EvCharging.rb +1 -1
  17. data/example_files/mappers/FlexibleHotWater.rb +1 -1
  18. data/example_files/mappers/Floorspace.rb +1 -1
  19. data/example_files/mappers/HighEfficiency.rb +1 -1
  20. data/example_files/mappers/HighEfficiencyCreateBar.rb +1 -1
  21. data/example_files/mappers/HighEfficiencyFloorspace.rb +1 -1
  22. data/example_files/mappers/PeakHoursMelsShedding.rb +1 -1
  23. data/example_files/mappers/PeakHoursThermostatAdjust.rb +1 -1
  24. data/example_files/mappers/ThermalStorage.rb +1 -1
  25. data/example_files/mappers/base_workflow.osw +11 -4
  26. data/example_files/mappers/residential/template/util.rb +138 -0
  27. data/example_files/mappers/residential/util.rb +276 -0
  28. data/example_files/measures/BuildResidentialModel/measure.rb +118 -230
  29. data/example_files/measures/BuildResidentialModel/measure.xml +344 -233
  30. data/example_files/measures/BuildResidentialModel/resources/geometry.rb +7 -2
  31. data/example_files/measures/BuildResidentialModel/resources/unit_conversions.rb +5 -0
  32. data/example_files/measures/BuildResidentialModel/resources/util.rb +5 -0
  33. data/example_files/measures/BuildResidentialModel/tests/test_build_residential_model.rb +344 -0
  34. data/example_files/measures/BuildResidentialModel/tests/xml_building/17/feature1.xml +2112 -0
  35. data/example_files/measures/BuildResidentialModel/tests/xml_building/17/feature2.xml +2112 -0
  36. data/example_files/osm_building/7.osm +0 -2
  37. data/example_files/osm_building/8.osm +0 -2
  38. data/example_files/osm_building/9.osm +0 -2
  39. data/example_files/python_deps/dependencies.json +4 -3
  40. data/example_files/resources/hpxml-measures/.gitattributes +3 -0
  41. data/example_files/resources/hpxml-measures/.github/pull_request_template.md +2 -2
  42. data/example_files/resources/hpxml-measures/.github/workflows/add_to_project.yml +17 -0
  43. data/example_files/resources/hpxml-measures/.github/workflows/config.yml +37 -8
  44. data/example_files/resources/hpxml-measures/.gitignore +1 -0
  45. data/example_files/resources/hpxml-measures/.readthedocs.yml +6 -2
  46. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/README.md +5596 -0
  47. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/README.md.erb +41 -0
  48. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +1324 -1035
  49. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +325 -236
  50. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb +119 -152
  51. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{build_residential_hpxml_test.rb → test_build_residential_hpxml.rb} +225 -107
  52. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/README.md +96 -0
  53. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/README.md.erb +41 -0
  54. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb +73 -31
  55. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml +60 -40
  56. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md +48 -23
  57. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/constants.rb +5 -0
  58. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb +6 -12
  59. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/tests/{build_residential_schedule_file_test.rb → test_build_residential_schedule_file.rb} +162 -35
  60. data/example_files/resources/hpxml-measures/Changelog.md +57 -1
  61. data/example_files/resources/hpxml-measures/Gemfile +1 -1
  62. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/README.md +83 -0
  63. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/README.md.erb +41 -0
  64. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb +1081 -878
  65. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +258 -204
  66. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb +205 -178
  67. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/battery.rb +43 -18
  68. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb +37 -112
  69. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb +34 -73
  70. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/Xing_okstate_0664D_13659_Table_A-3.csv +4165 -0
  71. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/unavailable_periods.csv +2 -2
  72. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/energyplus.rb +5 -1
  73. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/generator.rb +13 -7
  74. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb +95 -42
  75. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +132 -108
  76. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +1695 -1267
  77. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +668 -589
  78. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd +304 -553
  79. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +197 -112
  80. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb +1140 -1745
  81. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +412 -325
  82. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb +56 -48
  83. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb +49 -38
  84. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/materials.rb +5 -0
  85. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb +17 -1
  86. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/minitest_helper.rb +5 -0
  87. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb +94 -78
  88. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/output.rb +60 -2
  89. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/psychrometrics.rb +6 -1
  90. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb +11 -5
  91. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-non-stochastic.csv +1 -1
  92. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-30-mins.csv +52561 -0
  93. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_2.csv +8761 -0
  94. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_3.csv +8761 -0
  95. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_4.csv +8761 -0
  96. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_5.csv +8761 -0
  97. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic_6.csv +8761 -0
  98. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +129 -137
  99. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb +12 -21
  100. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb +5 -0
  101. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/util.rb +7 -2
  102. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/utility_bills.rb +6 -1
  103. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb +7 -2
  104. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb +179 -144
  105. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb +129 -71
  106. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb +5 -0
  107. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlvalidator.rb +23 -6
  108. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb +129 -118
  109. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_battery.rb +25 -20
  110. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +2282 -2239
  111. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb +395 -204
  112. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb +12 -7
  113. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb +56 -51
  114. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +369 -230
  115. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +371 -191
  116. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb +27 -20
  117. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb +55 -5
  118. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb +35 -30
  119. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb +13 -8
  120. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb +107 -93
  121. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb +11 -6
  122. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +757 -573
  123. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb +77 -72
  124. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_weather.rb +36 -6
  125. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/util.rb +5 -0
  126. data/example_files/resources/hpxml-measures/README.md +2 -0
  127. data/example_files/resources/hpxml-measures/Rakefile +10 -3
  128. data/example_files/resources/hpxml-measures/ReportSimulationOutput/README.md +787 -0
  129. data/example_files/resources/hpxml-measures/ReportSimulationOutput/README.md.erb +41 -0
  130. data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.rb +730 -418
  131. data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.xml +1215 -9
  132. data/example_files/resources/hpxml-measures/ReportSimulationOutput/tests/{output_report_test.rb → test_report_sim_output.rb} +130 -299
  133. data/example_files/resources/hpxml-measures/ReportUtilityBills/README.md +87 -0
  134. data/example_files/resources/hpxml-measures/ReportUtilityBills/README.md.erb +41 -0
  135. data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.rb +261 -89
  136. data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.xml +179 -94
  137. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/Average_retail_price_of_electricity.csv +68 -68
  138. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv +3 -2
  139. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv +713 -685
  140. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv +716 -688
  141. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/simple_rates/README.md +5 -2
  142. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/util.rb +18 -9
  143. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/test_report_utility_bills.rb +1308 -0
  144. data/example_files/resources/hpxml-measures/docs/requirements.txt +5 -0
  145. data/example_files/resources/hpxml-measures/docs/source/conf.py +1 -2
  146. data/example_files/resources/hpxml-measures/docs/source/intro.rst +3 -20
  147. data/example_files/resources/hpxml-measures/docs/source/usage_instructions.rst +1 -1
  148. data/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst +917 -564
  149. data/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst +79 -42
  150. data/example_files/resources/hpxml-measures/tasks.rb +2305 -2055
  151. data/example_files/resources/hpxml-measures/workflow/hpxml_inputs.json +270 -587
  152. data/example_files/resources/hpxml-measures/workflow/real_homes/house001.xml +559 -557
  153. data/example_files/resources/hpxml-measures/workflow/real_homes/house002.xml +522 -520
  154. data/example_files/resources/hpxml-measures/workflow/real_homes/house003.xml +534 -532
  155. data/example_files/resources/hpxml-measures/workflow/real_homes/house004.xml +547 -545
  156. data/example_files/resources/hpxml-measures/workflow/real_homes/house005.xml +546 -544
  157. data/example_files/resources/hpxml-measures/workflow/real_homes/house006.xml +603 -623
  158. data/example_files/resources/hpxml-measures/workflow/real_homes/house007.xml +613 -633
  159. data/example_files/resources/hpxml-measures/workflow/real_homes/house008.xml +699 -721
  160. data/example_files/resources/hpxml-measures/workflow/real_homes/house009.xml +662 -661
  161. data/example_files/resources/hpxml-measures/workflow/real_homes/house010.xml +657 -677
  162. data/example_files/resources/hpxml-measures/workflow/real_homes/house011.xml +470 -467
  163. data/example_files/resources/hpxml-measures/workflow/real_homes/house012.xml +441 -438
  164. data/example_files/resources/hpxml-measures/workflow/real_homes/house013.xml +468 -465
  165. data/example_files/resources/hpxml-measures/workflow/real_homes/house014.xml +469 -466
  166. data/example_files/resources/hpxml-measures/workflow/real_homes/house015.xml +468 -465
  167. data/example_files/resources/hpxml-measures/workflow/real_homes/house016.xml +717 -714
  168. data/example_files/resources/hpxml-measures/workflow/real_homes/house017.xml +647 -645
  169. data/example_files/resources/hpxml-measures/workflow/real_homes/house018.xml +569 -566
  170. data/example_files/resources/hpxml-measures/workflow/real_homes/house019.xml +602 -599
  171. data/example_files/resources/hpxml-measures/workflow/real_homes/house020.xml +630 -627
  172. data/example_files/resources/hpxml-measures/workflow/real_homes/house021.xml +776 -774
  173. data/example_files/resources/hpxml-measures/workflow/real_homes/house022.xml +670 -667
  174. data/example_files/resources/hpxml-measures/workflow/real_homes/house023.xml +632 -629
  175. data/example_files/resources/hpxml-measures/workflow/real_homes/house024.xml +731 -729
  176. data/example_files/resources/hpxml-measures/workflow/real_homes/house025.xml +672 -669
  177. data/example_files/resources/hpxml-measures/workflow/real_homes/house026.xml +667 -644
  178. data/example_files/resources/hpxml-measures/workflow/real_homes/house027.xml +646 -644
  179. data/example_files/resources/hpxml-measures/workflow/real_homes/house028.xml +690 -688
  180. data/example_files/resources/hpxml-measures/workflow/real_homes/house029.xml +701 -699
  181. data/example_files/resources/hpxml-measures/workflow/real_homes/house030.xml +637 -615
  182. data/example_files/resources/hpxml-measures/workflow/real_homes/house031.xml +690 -688
  183. data/example_files/resources/hpxml-measures/workflow/real_homes/house032.xml +557 -554
  184. data/example_files/resources/hpxml-measures/workflow/real_homes/house033.xml +534 -531
  185. data/example_files/resources/hpxml-measures/workflow/real_homes/house034.xml +636 -635
  186. data/example_files/resources/hpxml-measures/workflow/real_homes/house035.xml +616 -613
  187. data/example_files/resources/hpxml-measures/workflow/real_homes/house036.xml +601 -598
  188. data/example_files/resources/hpxml-measures/workflow/real_homes/house037.xml +581 -578
  189. data/example_files/resources/hpxml-measures/workflow/real_homes/house038.xml +624 -622
  190. data/example_files/resources/hpxml-measures/workflow/real_homes/house039.xml +584 -582
  191. data/example_files/resources/hpxml-measures/workflow/real_homes/house040.xml +631 -629
  192. data/example_files/resources/hpxml-measures/workflow/real_homes/house041.xml +922 -921
  193. data/example_files/resources/hpxml-measures/workflow/real_homes/house042.xml +855 -853
  194. data/example_files/resources/hpxml-measures/workflow/real_homes/house043.xml +739 -737
  195. data/example_files/resources/hpxml-measures/workflow/real_homes/house044.xml +798 -796
  196. data/example_files/resources/hpxml-measures/workflow/real_homes/house045.xml +696 -694
  197. data/example_files/resources/hpxml-measures/workflow/real_homes/house046.xml +487 -483
  198. data/example_files/resources/hpxml-measures/workflow/real_homes/house047.xml +443 -440
  199. data/example_files/resources/hpxml-measures/workflow/real_homes/house048.xml +688 -686
  200. data/example_files/resources/hpxml-measures/workflow/real_homes/house049.xml +722 -720
  201. data/example_files/resources/hpxml-measures/workflow/real_homes/house050.xml +619 -617
  202. data/example_files/resources/hpxml-measures/workflow/run_simulation.rb +13 -20
  203. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +9 -9
  204. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +11 -12
  205. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +11 -12
  206. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +12 -13
  207. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +11 -12
  208. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +9 -9
  209. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +9 -9
  210. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml +4 -4
  211. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +9 -9
  212. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +9 -9
  213. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +9 -9
  214. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +11 -11
  215. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +10 -10
  216. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +9 -9
  217. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +10 -11
  218. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +9 -9
  219. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +8 -8
  220. data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml +571 -569
  221. data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery.xml +9 -9
  222. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml → base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml} +5 -5
  223. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-adjacent-to-multiple.xml → base-bldgtype-mf-unit-adjacent-to-multiple.xml} +17 -17
  224. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml → base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml} +5 -5
  225. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-adjacent-to-other-heated-space.xml → base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml} +5 -5
  226. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml → base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml} +5 -5
  227. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-infil-compartmentalization-test.xml → base-bldgtype-mf-unit-infil-compartmentalization-test.xml} +461 -461
  228. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-residents-1.xml → base-bldgtype-mf-unit-residents-1.xml} +453 -453
  229. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml → base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml} +11 -11
  230. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml → base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml} +11 -11
  231. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml → base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml} +11 -11
  232. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml → base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml} +11 -11
  233. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml → base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml} +11 -11
  234. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-only-baseboard.xml → base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml} +11 -11
  235. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml → base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml} +11 -11
  236. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml → base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml} +11 -11
  237. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml +433 -0
  238. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml → base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml} +11 -11
  239. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml → base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml} +11 -11
  240. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-chiller-only-baseboard.xml → base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml} +11 -11
  241. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml → base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml} +11 -11
  242. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml → base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml} +11 -11
  243. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml → base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml} +11 -11
  244. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml → base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml} +11 -11
  245. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-generator.xml → base-bldgtype-mf-unit-shared-generator.xml} +13 -13
  246. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml → base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml} +13 -13
  247. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml → base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml} +480 -480
  248. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-laundry-room.xml → base-bldgtype-mf-unit-shared-laundry-room.xml} +10 -10
  249. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-mechvent-multiple.xml → base-bldgtype-mf-unit-shared-mechvent-multiple.xml} +15 -15
  250. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-mechvent-preconditioning.xml → base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml} +13 -13
  251. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-mechvent.xml → base-bldgtype-mf-unit-shared-mechvent.xml} +13 -13
  252. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-pv.xml → base-bldgtype-mf-unit-shared-pv.xml} +13 -13
  253. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-water-heater-recirc.xml → base-bldgtype-mf-unit-shared-water-heater-recirc.xml} +13 -13
  254. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-shared-water-heater.xml → base-bldgtype-mf-unit-shared-water-heater.xml} +13 -13
  255. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily.xml → base-bldgtype-mf-unit.xml} +13 -13
  256. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-attached-2stories.xml → base-bldgtype-sfa-unit-2stories.xml} +610 -610
  257. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-attached-atticroof-cathedral.xml → base-bldgtype-sfa-unit-atticroof-cathedral.xml} +558 -558
  258. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-attached-infil-compartmentalization-test.xml → base-bldgtype-sfa-unit-infil-compartmentalization-test.xml} +610 -610
  259. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-attached.xml → base-bldgtype-sfa-unit.xml} +610 -610
  260. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +8 -8
  261. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +9 -9
  262. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +9 -9
  263. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +9 -9
  264. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +9 -9
  265. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +9 -9
  266. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +9 -9
  267. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +9 -9
  268. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +9 -9
  269. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml +507 -505
  270. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +9 -9
  271. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +8 -8
  272. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +9 -9
  273. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +9 -9
  274. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +9 -9
  275. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +9 -9
  276. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +9 -9
  277. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +9 -9
  278. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +9 -9
  279. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +12 -10
  280. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +14 -14
  281. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml +5 -5
  282. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +9 -9
  283. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +9 -9
  284. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +9 -9
  285. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +9 -9
  286. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +9 -9
  287. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +9 -9
  288. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +9 -9
  289. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +9 -9
  290. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +9 -9
  291. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +9 -9
  292. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +9 -9
  293. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +9 -9
  294. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml +12 -10
  295. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +9 -9
  296. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +8 -8
  297. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +9 -9
  298. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +9 -9
  299. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +9 -9
  300. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml +13 -11
  301. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml +9 -9
  302. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +8 -8
  303. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +9 -9
  304. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +9 -9
  305. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +9 -9
  306. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +9 -9
  307. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml +12 -10
  308. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml +9 -9
  309. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +9 -9
  310. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +9 -9
  311. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml +12 -10
  312. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +8 -8
  313. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +9 -9
  314. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +9 -9
  315. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +9 -9
  316. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +9 -9
  317. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +9 -9
  318. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +9 -9
  319. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +9 -9
  320. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +13 -14
  321. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +11 -11
  322. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +9 -9
  323. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +9 -9
  324. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +9 -9
  325. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +9 -9
  326. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml +576 -576
  327. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml +519 -519
  328. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +4 -5
  329. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +9 -9
  330. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +9 -9
  331. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +9 -9
  332. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml +548 -548
  333. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +9 -9
  334. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +9 -9
  335. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml +551 -551
  336. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml +9 -9
  337. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +9 -9
  338. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml +9 -9
  339. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml +9 -9
  340. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml +9 -9
  341. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml +9 -9
  342. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +9 -9
  343. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +10 -11
  344. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml +9 -9
  345. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +19 -19
  346. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml +555 -553
  347. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +9 -9
  348. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml +9 -9
  349. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml +560 -558
  350. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml +9 -9
  351. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml +9 -9
  352. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +10 -10
  353. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml +10 -11
  354. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml +496 -0
  355. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-skirt.xml +496 -0
  356. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +18 -18
  357. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-schedules-simple-power-outage-natvent-unavailable.xml → base-foundation-conditioned-basement-slab-insulation-full.xml} +552 -564
  358. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +9 -9
  359. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml +555 -555
  360. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +8 -8
  361. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +5 -5
  362. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +10 -11
  363. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +4 -4
  364. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +4 -4
  365. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +4 -4
  366. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +4 -4
  367. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +9 -9
  368. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml +558 -0
  369. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +9 -9
  370. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +15 -15
  371. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +9 -9
  372. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml +552 -552
  373. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +9 -9
  374. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +562 -562
  375. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml +557 -557
  376. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +9 -9
  377. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +9 -9
  378. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml +586 -586
  379. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml +9 -9
  380. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +9 -9
  381. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml +9 -9
  382. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml → base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml} +89 -13
  383. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml → base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml} +107 -13
  384. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +9 -9
  385. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml +567 -565
  386. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml +9 -9
  387. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +9 -9
  388. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +9 -9
  389. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +9 -9
  390. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml +512 -512
  391. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +9 -9
  392. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +9 -9
  393. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +9 -9
  394. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +9 -9
  395. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml +536 -536
  396. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +9 -9
  397. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +9 -9
  398. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-central-ac-only-var-speed.xml → base-hvac-central-ac-only-var-speed-detailed-performance.xml} +49 -10
  399. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +9 -9
  400. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +9 -9
  401. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +9 -9
  402. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +559 -559
  403. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +9 -9
  404. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +9 -9
  405. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +9 -9
  406. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +9 -9
  407. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml +11 -12
  408. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml +558 -558
  409. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml +554 -554
  410. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-furnace-gas-room-ac.xml → base-hvac-ducts-defaults.xml} +28 -14
  411. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml +552 -552
  412. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +9 -9
  413. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +9 -9
  414. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +9 -9
  415. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +9 -9
  416. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +9 -9
  417. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml +9 -9
  418. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml +9 -9
  419. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +15 -10
  420. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml +9 -9
  421. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +9 -9
  422. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +9 -9
  423. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +9 -9
  424. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +9 -9
  425. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml +12 -10
  426. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml +541 -541
  427. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +9 -9
  428. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +9 -9
  429. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +9 -9
  430. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +9 -9
  431. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +9 -9
  432. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +9 -9
  433. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +9 -9
  434. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +9 -9
  435. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +9 -9
  436. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +9 -9
  437. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml +9 -9
  438. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml → base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml} +650 -556
  439. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml +9 -9
  440. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +9 -9
  441. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml +9 -9
  442. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml +9 -9
  443. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml +9 -9
  444. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +9 -9
  445. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +9 -9
  446. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +9 -9
  447. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +9 -9
  448. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml → base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml} +50 -49
  449. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +9 -9
  450. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +9 -9
  451. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml → base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml} +109 -14
  452. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +9 -9
  453. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +9 -9
  454. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml +524 -524
  455. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml → base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml} +560 -552
  456. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml +563 -563
  457. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +9 -9
  458. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml → base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml} +108 -60
  459. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml +505 -505
  460. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +9 -9
  461. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +9 -9
  462. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml +10 -11
  463. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +9 -9
  464. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml +504 -504
  465. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml +9 -9
  466. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml +512 -512
  467. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml +9 -9
  468. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +9 -9
  469. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +9 -9
  470. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml +12 -10
  471. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +9 -9
  472. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml +504 -504
  473. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml +517 -517
  474. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml +9 -9
  475. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml +9 -9
  476. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml +9 -9
  477. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +9 -9
  478. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-fixed-heater-gas-only.xml → base-hvac-space-heater-gas-only.xml} +10 -10
  479. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml +9 -9
  480. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +9 -9
  481. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +9 -9
  482. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +9 -9
  483. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml +9 -9
  484. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml +9 -9
  485. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml +531 -528
  486. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml +536 -536
  487. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml +515 -515
  488. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml +9 -9
  489. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +9 -9
  490. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +9 -9
  491. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml +9 -9
  492. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +10 -11
  493. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +4 -4
  494. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml +9 -9
  495. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml +10 -11
  496. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +10 -11
  497. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml +10 -11
  498. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml +9 -9
  499. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +9 -9
  500. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +9 -9
  501. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +9 -9
  502. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +9 -9
  503. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +9 -9
  504. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +576 -576
  505. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml +576 -576
  506. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +9 -9
  507. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +9 -9
  508. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +9 -9
  509. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +9 -9
  510. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +9 -9
  511. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +9 -9
  512. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +9 -9
  513. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +9 -9
  514. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +9 -9
  515. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +9 -9
  516. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml +21 -19
  517. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml +605 -605
  518. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml +587 -587
  519. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml +9 -9
  520. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml +9 -9
  521. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml +3 -3
  522. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml +9 -9
  523. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml +587 -585
  524. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml +584 -584
  525. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml +9 -9
  526. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml +555 -555
  527. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml +26 -26
  528. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml +26 -26
  529. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +9 -9
  530. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml +508 -508
  531. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +9 -9
  532. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml +9 -9
  533. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-schedules-simple-power-outage-natvent-available.xml → base-misc-unit-multiplier.xml} +553 -564
  534. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +26 -26
  535. data/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-mf-units.xml +2755 -0
  536. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-multiple-buildings.xml → base-multiple-sfd-buildings.xml} +31 -22
  537. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml +9 -9
  538. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml +4 -5
  539. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml +597 -597
  540. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml +599 -597
  541. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml +9 -9
  542. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml +615 -613
  543. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml +612 -612
  544. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml +596 -596
  545. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml +9 -9
  546. data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml +559 -559
  547. data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0.xml +555 -555
  548. data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon.xml +616 -616
  549. data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1-misc-loads-large-uncommon2.xml +616 -616
  550. data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-1.xml +547 -547
  551. data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-5.xml +515 -515
  552. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml +14 -12
  553. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-crankcase-heater-40w.xml → base-schedules-detailed-mixed-timesteps-power-outage.xml} +565 -555
  554. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml → base-schedules-detailed-mixed-timesteps.xml} +554 -563
  555. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml +12 -10
  556. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml +566 -564
  557. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml +12 -10
  558. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml +12 -10
  559. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml +12 -10
  560. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml +12 -10
  561. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml +12 -10
  562. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml +619 -619
  563. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml +618 -618
  564. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml +9 -9
  565. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +9 -9
  566. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +9 -9
  567. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +9 -9
  568. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +9 -9
  569. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml +553 -553
  570. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml +12 -10
  571. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml +12 -10
  572. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +9 -9
  573. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml +552 -552
  574. data/example_files/resources/hpxml-measures/workflow/sample_files/base.xml +9 -9
  575. data/example_files/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw +2 -0
  576. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw +2 -0
  577. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy.osw +2 -0
  578. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml.osw +4 -1
  579. data/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Long_Residence.xml +385 -385
  580. data/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Vatilo_Residence.xml +378 -380
  581. data/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Victor_Residence.xml +369 -369
  582. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml +7 -7
  583. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml +7 -7
  584. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml +7 -7
  585. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml +7 -7
  586. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml +7 -7
  587. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml +7 -7
  588. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml +7 -7
  589. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml +7 -7
  590. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml +7 -7
  591. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml +7 -7
  592. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml +7 -7
  593. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml +7 -7
  594. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml +7 -7
  595. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml +7 -7
  596. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml +7 -7
  597. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml +7 -7
  598. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml +7 -7
  599. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml +7 -7
  600. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml +7 -7
  601. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml +7 -7
  602. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml +7 -7
  603. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml +7 -7
  604. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml +7 -8
  605. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml +7 -8
  606. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml +6 -6
  607. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml +6 -6
  608. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_sizing.csv +363 -0
  609. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1.csv +281 -0
  610. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations1_bills.csv +281 -0
  611. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2.csv +141 -0
  612. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_workflow_simulations2_bills.csv +141 -0
  613. data/example_files/resources/hpxml-measures/workflow/tests/compare.py +12 -6
  614. data/example_files/resources/hpxml-measures/workflow/tests/util.rb +1141 -0
  615. data/example_files/weather/USA_CO_Denver.Intl.AP.725650_TMY3.ddy +536 -0
  616. data/example_files/weather/USA_CO_Denver.Intl.AP.725650_TMY3.epw +8768 -0
  617. data/example_files/weather/USA_CO_Denver.Intl.AP.725650_TMY3.stat +554 -0
  618. data/example_files/weather/USA_FL_MacDill.AFB.747880_TMY3.ddy +536 -0
  619. data/example_files/weather/USA_FL_MacDill.AFB.747880_TMY3.epw +8768 -0
  620. data/example_files/weather/USA_FL_MacDill.AFB.747880_TMY3.stat +553 -0
  621. data/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3-cache.csv +35 -0
  622. data/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3.ddy +536 -0
  623. data/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3.epw +8768 -0
  624. data/example_files/weather/USA_GA_Atlanta-Hartsfield-Jackson.Intl.AP.722190_TMY3.stat +553 -0
  625. data/example_files/weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3-cache.csv +35 -0
  626. data/example_files/xml_building/17/README.md +4 -2
  627. data/example_files/xml_building/17/feature.xml +2112 -0
  628. data/lib/uo_cli/version.rb +1 -1
  629. data/lib/uo_cli.rb +110 -17
  630. data/uo_cli.gemspec +6 -8
  631. metadata +130 -177
  632. data/Jenkinsfile +0 -10
  633. data/example_files/base_workflow_res.osw +0 -276
  634. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/utility_bills_test.rb +0 -1226
  635. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil-location-miami-fl.xml +0 -551
  636. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane-location-portland-or.xml +0 -551
  637. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml +0 -544
  638. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml +0 -550
  639. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +0 -552
  640. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +0 -552
  641. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml +0 -552
  642. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +0 -552
  643. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml +0 -552
  644. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml +0 -552
  645. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml +0 -552
  646. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml +0 -569
  647. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml +0 -599
  648. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml +0 -552
  649. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml +0 -506
  650. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml +0 -560
  651. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml +0 -507
  652. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml +0 -536
  653. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml +0 -536
  654. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml +0 -565
  655. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +0 -553
  656. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +0 -553
  657. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +0 -553
  658. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml +0 -497
  659. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml +0 -544
  660. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml +0 -500
  661. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml +0 -536
  662. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml +0 -551
  663. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml +0 -551
  664. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml +0 -536
  665. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +0 -546
  666. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +0 -552
  667. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml +0 -554
  668. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml +0 -554
  669. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml +0 -554
  670. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml +0 -543
  671. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml +0 -549
  672. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml +0 -551
  673. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml +0 -551
  674. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml +0 -519
  675. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml +0 -522
  676. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac-with-heating.xml +0 -503
  677. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac.xml +0 -496
  678. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml +0 -518
  679. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml +0 -518
  680. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml +0 -518
  681. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-only.xml +0 -496
  682. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-heating.xml +0 -503
  683. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml +0 -518
  684. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml +0 -518
  685. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml +0 -518
  686. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml +0 -500
  687. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml +0 -500
  688. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only-pilot-light.xml +0 -506
  689. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml +0 -501
  690. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml +0 -556
  691. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-none.xml +0 -548
  692. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy-year-round.xml +0 -619
  693. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results.csv +0 -475
  694. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_bills.csv +0 -475
  695. data/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb +0 -1313
  696. data/example_files/resources/measure-info.json +0 -26
  697. data/example_files/resources/meta_measure.rb +0 -301
  698. data/example_files/xml_building/17/unit 1.xml +0 -580
  699. data/example_files/xml_building/17/unit 2.xml +0 -553
  700. data/example_files/xml_building/17/unit 3.xml +0 -553
  701. data/example_files/xml_building/17/unit 4.xml +0 -580
  702. /data/example_files/{residential → mappers/residential/template/iecc}/clothes_dryer.tsv +0 -0
  703. /data/example_files/{residential → mappers/residential/template/iecc}/clothes_washer.tsv +0 -0
  704. /data/example_files/{residential → mappers/residential/template/iecc}/cooling_system.tsv +0 -0
  705. /data/example_files/{residential → mappers/residential/template/iecc}/dishwasher.tsv +0 -0
  706. /data/example_files/{residential → mappers/residential/template/iecc}/enclosure.tsv +0 -0
  707. /data/example_files/{residential → mappers/residential/template/iecc}/heat_pump.tsv +0 -0
  708. /data/example_files/{residential → mappers/residential/template/iecc}/heating_system.tsv +0 -0
  709. /data/example_files/{residential → mappers/residential/template/iecc}/mechanical_ventilation.tsv +0 -0
  710. /data/example_files/{residential → mappers/residential/template/iecc}/refrigerator.tsv +0 -0
  711. /data/example_files/{residential → mappers/residential/template/iecc}/water_heater.tsv +0 -0
  712. /data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/{JacksonElectricMemberCorp-ResidentialSeniorCitizenLowIncomeAssistance.json → Detailed Rate.json} +0 -0
@@ -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