urbanopt-cli 0.5.1 → 0.6.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (907) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +2 -2
  3. data/CHANGELOG.md +43 -1
  4. data/CMakeLists.txt +14 -14
  5. data/FindOpenStudioSDK.cmake +11 -6
  6. data/Gemfile +11 -5
  7. data/LICENSE.md +11 -1
  8. data/Rakefile +16 -6
  9. data/example_files/Gemfile +8 -8
  10. data/example_files/example_project_combined.json +100 -5
  11. data/example_files/example_project_with_streets.json +826 -0
  12. data/example_files/mappers/Baseline.rb +107 -59
  13. data/example_files/mappers/CreateBar.rb +17 -7
  14. data/example_files/mappers/EvCharging.rb +20 -10
  15. data/example_files/mappers/Floorspace.rb +17 -7
  16. data/example_files/mappers/HighEfficiency.rb +20 -8
  17. data/example_files/mappers/HighEfficiencyCreateBar.rb +19 -8
  18. data/example_files/mappers/HighEfficiencyFloorspace.rb +19 -8
  19. data/example_files/mappers/ThermalStorage.rb +16 -6
  20. data/example_files/measures/BuildResidentialModel/measure.rb +249 -134
  21. data/example_files/reopt/base_assumptions.json +2 -2
  22. data/example_files/reopt/multiPV_assumptions.json +4 -3
  23. data/example_files/residential/clothes_dryer.tsv +7 -7
  24. data/example_files/residential/clothes_washer.tsv +1 -1
  25. data/example_files/residential/cooling_system.tsv +42 -22
  26. data/example_files/residential/dishwasher.tsv +1 -1
  27. data/example_files/residential/exhaust.tsv +3 -0
  28. data/example_files/residential/heat_pump.tsv +62 -40
  29. data/example_files/resources/hpxml-measures/.github/pull_request_template.md +2 -1
  30. data/example_files/resources/hpxml-measures/.github/workflows/config.yml +116 -0
  31. data/example_files/resources/hpxml-measures/.gitignore +1 -8
  32. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +746 -1236
  33. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +1550 -1215
  34. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/constants.rb +0 -8
  35. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb +432 -343
  36. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules.rb +134 -91
  37. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_config.json +388 -0
  38. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_config.md +43 -0
  39. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_weekday_state_and_monthly_schedule_shift.csv +613 -0
  40. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_weekend_state_and_monthly_schedule_shift.csv +613 -0
  41. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-coal.osw +36 -60
  42. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-portable.osw +35 -59
  43. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-whole-home.osw +35 -59
  44. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier.osw +35 -59
  45. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-gas.osw +36 -60
  46. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-modified.osw +36 -60
  47. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-none.osw +41 -65
  48. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-oil.osw +36 -60
  49. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-propane.osw +36 -60
  50. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-wood.osw +36 -60
  51. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-flat.osw +36 -60
  52. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-radiant-barrier.osw +36 -60
  53. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-unvented-insulated-roof.osw +36 -60
  54. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-vented.osw +36 -60
  55. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-boiler-only-baseboard.osw +341 -0
  56. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-boiler-only-fan-coil.osw +341 -0
  57. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent-preconditioning.osw +39 -63
  58. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent.osw +39 -63
  59. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-pv.osw +39 -63
  60. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-water-heater.osw +39 -63
  61. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily.osw +39 -63
  62. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-single-family-attached.osw +36 -60
  63. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless-outside.osw +36 -61
  64. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless.osw +36 -61
  65. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-dwhr.osw +36 -60
  66. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-outside.osw +36 -61
  67. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-standbyloss.osw +36 -61
  68. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-with-solar-fraction.osw +36 -61
  69. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect.osw +36 -61
  70. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-electric.osw +36 -60
  71. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-gas.osw +36 -60
  72. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-hpwh.osw +36 -60
  73. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-indirect.osw +36 -61
  74. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-low-flow-fixtures.osw +36 -60
  75. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-none.osw +37 -61
  76. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-demand.osw +36 -60
  77. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-manual.osw +36 -60
  78. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-nocontrol.osw +36 -60
  79. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-temperature.osw +36 -60
  80. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-timer.osw +36 -60
  81. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-evacuated-tube.osw +36 -60
  82. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-flat-plate.osw +36 -60
  83. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-ics.osw +36 -60
  84. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-fraction.osw +36 -60
  85. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-indirect-flat-plate.osw +36 -60
  86. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-thermosyphon-flat-plate.osw +36 -60
  87. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-coal.osw +36 -60
  88. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-elec-uef.osw +36 -60
  89. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-outside.osw +36 -60
  90. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-uef.osw +36 -60
  91. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas.osw +36 -60
  92. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-outside.osw +36 -60
  93. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-uef.osw +36 -60
  94. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar-fraction.osw +36 -60
  95. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar.osw +36 -60
  96. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump.osw +36 -60
  97. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-oil.osw +36 -60
  98. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-wood.osw +36 -60
  99. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-outside.osw +36 -60
  100. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-uef.osw +36 -60
  101. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric.osw +36 -60
  102. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-uef.osw +36 -60
  103. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar-fraction.osw +36 -60
  104. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar.osw +36 -60
  105. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas.osw +36 -60
  106. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-propane.osw +36 -60
  107. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories-garage.osw +36 -60
  108. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories.osw +36 -60
  109. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-1.osw +36 -60
  110. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-2.osw +36 -60
  111. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-4.osw +36 -60
  112. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-5.osw +36 -60
  113. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-garage.osw +36 -60
  114. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-ach-house-pressure.osw +36 -60
  115. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm-house-pressure.osw +36 -60
  116. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm50.osw +36 -60
  117. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-flue.osw +36 -60
  118. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-natural-ach.osw +37 -61
  119. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-overhangs.osw +37 -61
  120. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-windows-none.osw +36 -60
  121. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-ambient.osw +36 -60
  122. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-conditioned-basement-slab-insulation.osw +36 -60
  123. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-slab.osw +36 -60
  124. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-assembly-r.osw +35 -59
  125. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-wall-insulation.osw +35 -59
  126. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement.osw +35 -59
  127. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unvented-crawlspace.osw +35 -59
  128. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-vented-crawlspace.osw +35 -59
  129. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.osw +337 -0
  130. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed-heating-only.osw +337 -0
  131. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed.osw +36 -61
  132. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-2-speed.osw +36 -60
  133. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-var-speed.osw +36 -60
  134. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-coal-only.osw +36 -60
  135. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-elec-only.osw +36 -60
  136. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-central-ac-1-speed.osw +36 -61
  137. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-only.osw +36 -61
  138. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-oil-only.osw +36 -60
  139. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-propane-only.osw +36 -60
  140. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-wood-only.osw +36 -60
  141. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-1-speed.osw +36 -61
  142. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-2-speed.osw +36 -60
  143. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-var-speed.osw +36 -60
  144. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.osw +36 -62
  145. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.osw +35 -60
  146. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.osw +35 -60
  147. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.osw +35 -59
  148. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.osw +35 -59
  149. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-mini-split-heat-pump-ducted.osw +36 -61
  150. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ducts-leakage-percent.osw +36 -60
  151. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-elec-resistance-only.osw +36 -60
  152. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-furnace-gas.osw +36 -60
  153. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only-ducted.osw +37 -61
  154. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only.osw +36 -61
  155. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fireplace-wood-only.osw +36 -61
  156. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fixed-heater-gas-only.osw +37 -62
  157. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-floor-furnace-propane-only.osw +36 -61
  158. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-coal-only.osw +337 -0
  159. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-elec-central-ac-1-speed.osw +36 -60
  160. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-elec-only.osw +36 -60
  161. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-2-speed.osw +36 -60
  162. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-var-speed.osw +36 -60
  163. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-only.osw +36 -61
  164. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-room-ac.osw +36 -60
  165. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-oil-only.osw +36 -60
  166. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-propane-only.osw +36 -60
  167. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-wood-only.osw +36 -60
  168. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump-cooling-only.osw +336 -0
  169. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump-heating-only.osw +336 -0
  170. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump.osw +36 -62
  171. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{extra-plug-loads-additional-multipliers.osw → base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.osw} +41 -63
  172. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.osw +339 -0
  173. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.osw +339 -0
  174. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.osw +339 -0
  175. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.osw +340 -0
  176. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.osw +340 -0
  177. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.osw +340 -0
  178. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-only.osw +338 -0
  179. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-ground-to-air-heat-pump.osw +338 -0
  180. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.osw +338 -0
  181. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-mini-split-heat-pump-ducted.osw +339 -0
  182. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.osw +338 -0
  183. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.osw +340 -0
  184. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-air-conditioner-only-ducted.osw +36 -61
  185. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-air-conditioner-only-ductless.osw +36 -61
  186. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-cooling-only.osw +36 -61
  187. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-heating-only.osw +36 -61
  188. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted.osw +37 -62
  189. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ductless.osw +37 -62
  190. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-none.osw +36 -60
  191. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-portable-heater-gas-only.osw +37 -62
  192. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-programmable-thermostat-detailed.osw +337 -0
  193. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-room-ac-only-33percent.osw +36 -60
  194. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-room-ac-only.osw +36 -60
  195. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-setpoints.osw +36 -60
  196. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-oil-only.osw +36 -61
  197. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-wood-pellets-only.osw +36 -61
  198. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-undersized.osw +36 -60
  199. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-wall-furnace-elec-only.osw +36 -61
  200. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-ceiling-fans.osw +36 -60
  201. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-detailed.osw +36 -60
  202. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-AMY-2012.osw +36 -60
  203. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-baltimore-md.osw +45 -69
  204. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-dallas-tx.osw +36 -60
  205. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-duluth-mn.osw +49 -73
  206. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-helena-mt.osw +337 -0
  207. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{base-appliances-dehumidifier-50percent.osw → base-location-honolulu-hi.osw} +39 -63
  208. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-miami-fl.osw +36 -60
  209. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-phoenix-az.osw +337 -0
  210. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-portland-or.osw +337 -0
  211. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-balanced.osw +36 -60
  212. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-bath-kitchen-fans.osw +44 -70
  213. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis-evap-cooler-only-ducted.osw +37 -61
  214. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis.osw +36 -60
  215. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv-atre-asre.osw +36 -60
  216. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv.osw +36 -60
  217. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-exhaust-rated-flow-rate.osw +337 -0
  218. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-exhaust.osw +36 -60
  219. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv-asre.osw +36 -60
  220. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv.osw +36 -60
  221. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-supply.osw +36 -60
  222. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-whole-house-fan.osw +36 -60
  223. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-defaults.osw +34 -58
  224. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon.osw +34 -58
  225. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon2.osw +34 -58
  226. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-neighbor-shading.osw +36 -60
  227. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-shielding-of-home.osw +337 -0
  228. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-usage-multiplier.osw +35 -59
  229. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-pv.osw +36 -60
  230. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{extra-vacancy-6-months.osw → base-schedules-stochastic-vacant.osw} +39 -63
  231. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-stochastic.osw +36 -60
  232. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-user-specified.osw +36 -60
  233. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-calendar-year-custom.osw +36 -60
  234. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-custom.osw +36 -60
  235. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-disabled.osw +36 -60
  236. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-runperiod-1-month.osw +36 -60
  237. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-timestep-10-mins.osw +36 -60
  238. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base.osw +36 -60
  239. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +60 -57
  240. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-auto.osw +36 -60
  241. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-double-exterior.osw +341 -0
  242. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-double-loaded-interior.osw +341 -0
  243. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-eaves.osw +341 -0
  244. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-single-exterior-front.osw +341 -0
  245. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-double-loaded-interior.osw +341 -0
  246. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-bottom-double-loaded-interior.osw +341 -0
  247. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-bottom.osw +341 -0
  248. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-middle-double-loaded-interior.osw +341 -0
  249. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-middle.osw +341 -0
  250. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-top-double-loaded-interior.osw +341 -0
  251. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-top.osw +341 -0
  252. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-bottom-double-loaded-interior.osw +341 -0
  253. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-bottom.osw +341 -0
  254. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-middle-double-loaded-interior.osw +341 -0
  255. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-middle.osw +341 -0
  256. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-top-double-loaded-interior.osw +341 -0
  257. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-top.osw +341 -0
  258. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-bottom-double-loaded-interior.osw +341 -0
  259. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-bottom.osw +341 -0
  260. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-middle-double-loaded-interior.osw +341 -0
  261. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-middle.osw +341 -0
  262. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-top-double-loaded-interior.osw +341 -0
  263. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-top.osw +341 -0
  264. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab.osw +341 -0
  265. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-double-loaded-interior.osw +341 -0
  266. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom-double-loaded-interior.osw +341 -0
  267. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom.osw +341 -0
  268. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-middle-double-loaded-interior.osw +341 -0
  269. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-middle.osw +341 -0
  270. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-top-double-loaded-interior.osw +341 -0
  271. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-top.osw +341 -0
  272. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom-double-loaded-interior.osw +341 -0
  273. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom.osw +341 -0
  274. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle-double-loaded-interior.osw +341 -0
  275. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle.osw +341 -0
  276. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-top-double-loaded-interior.osw +341 -0
  277. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-top.osw +341 -0
  278. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom-double-loaded-interior.osw +341 -0
  279. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom.osw +341 -0
  280. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-middle-double-loaded-interior.osw +341 -0
  281. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-middle.osw +341 -0
  282. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-top-double-loaded-interior.osw +341 -0
  283. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-top.osw +341 -0
  284. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace.osw +341 -0
  285. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-double-loaded-interior.osw +341 -0
  286. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-bottom-double-loaded-interior.osw +341 -0
  287. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-bottom.osw +341 -0
  288. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-middle-double-loaded-interior.osw +341 -0
  289. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-middle.osw +341 -0
  290. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-top-double-loaded-interior.osw +341 -0
  291. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-top.osw +341 -0
  292. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom-double-loaded-interior.osw +341 -0
  293. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom.osw +341 -0
  294. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-middle-double-loaded-interior.osw +341 -0
  295. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-middle.osw +341 -0
  296. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-top-double-loaded-interior.osw +341 -0
  297. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-top.osw +341 -0
  298. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-bottom-double-loaded-interior.osw +341 -0
  299. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-bottom.osw +341 -0
  300. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-middle-double-loaded-interior.osw +341 -0
  301. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-middle.osw +341 -0
  302. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-top-double-loaded-interior.osw +341 -0
  303. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-top.osw +341 -0
  304. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace.osw +341 -0
  305. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-gable.osw +339 -0
  306. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-hip.osw +339 -0
  307. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-flat.osw +339 -0
  308. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-double-exterior.osw +339 -0
  309. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-double-loaded-interior.osw +339 -0
  310. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-single-exterior-front.osw +339 -0
  311. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab-middle.osw +339 -0
  312. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab-right.osw +339 -0
  313. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab.osw +339 -0
  314. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement-middle.osw +339 -0
  315. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement-right.osw +339 -0
  316. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement.osw +339 -0
  317. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace-middle.osw +339 -0
  318. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace-right.osw +339 -0
  319. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace.osw +339 -0
  320. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace-middle.osw +339 -0
  321. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace-right.osw +339 -0
  322. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace.osw +339 -0
  323. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-dhw-solar-latitude.osw +36 -60
  324. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-atticroof-conditioned-eaves-gable.osw +337 -0
  325. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-atticroof-conditioned-eaves-hip.osw +337 -0
  326. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-garage-atticroof-conditioned.osw +337 -0
  327. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-garage-partially-protruded.osw +36 -60
  328. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-windows-shading.osw +339 -0
  329. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-gas-hot-tub-heater-with-zero-kwh.osw +337 -0
  330. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-gas-pool-heater-with-zero-kwh.osw +337 -0
  331. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-pv-roofpitch.osw +36 -60
  332. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-schedules-random-seed.osw +36 -60
  333. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-boiler-to-heat-pump.osw +336 -0
  334. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-boiler-to-heating-system.osw +337 -0
  335. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-fireplace-to-heat-pump.osw +337 -0
  336. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{extra-second-heating-system-fireplace.osw → extra-second-heating-system-fireplace-to-heating-system.osw} +38 -62
  337. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-portable-heater-to-heat-pump.osw +337 -0
  338. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{extra-second-heating-system-portable-heater.osw → extra-second-heating-system-portable-heater-to-heating-system.osw} +36 -60
  339. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-refrigerator.osw +36 -60
  340. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-clothes-washer-kwh.osw +337 -0
  341. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-dishwasher-kwh.osw +337 -0
  342. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-extra-refrigerator-kwh.osw +337 -0
  343. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-freezer-kwh.osw +337 -0
  344. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-refrigerator-kwh.osw +337 -0
  345. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-attic-with-floor-insulation.osw +39 -63
  346. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-attic-with-one-floor-above-grade.osw +337 -0
  347. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-basement-with-ceiling-insulation.osw +36 -60
  348. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/cooling-system-and-heat-pump.osw +36 -60
  349. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/dhw-indirect-without-boiler.osw +36 -60
  350. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/ducts-location-and-areas-not-same-type.osw +36 -60
  351. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/foundation-wall-insulation-greater-than-height.osw +337 -0
  352. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/heating-system-and-heat-pump.osw +36 -60
  353. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-crawlspace-zero-foundation-height.osw +39 -63
  354. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-slab-non-zero-foundation-height.osw +39 -63
  355. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-no-building-orientation.osw +38 -62
  356. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-fuel-loads.osw +36 -60
  357. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-other-plug-loads.osw +337 -0
  358. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/{multipliers-without-plug-loads.osw → multipliers-without-tv-plug-loads.osw} +40 -64
  359. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-vehicle-plug-loads.osw +337 -0
  360. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-well-pump-plug-loads.osw +337 -0
  361. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-electric-heat-pump-water-heater.osw +36 -60
  362. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-ceiling-fan-quantity.osw +36 -60
  363. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-geometry-num-bathrooms.osw +36 -60
  364. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-but-no-primary-heating.osw +337 -0
  365. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-serves-majority-heat.osw +36 -60
  366. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-serves-total-heat-load.osw +337 -0
  367. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-attached-ambient.osw +36 -60
  368. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-attached-no-building-orientation.osw +36 -60
  369. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-finished-basement-zero-foundation-height.osw +36 -60
  370. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-slab-non-zero-foundation-height.osw +36 -60
  371. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-with-shared-system.osw +337 -0
  372. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/slab-non-zero-foundation-height-above-grade.osw +36 -60
  373. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unconditioned-basement-with-wall-and-ceiling-insulation.osw +36 -60
  374. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-attic-with-floor-and-roof-insulation.osw +36 -60
  375. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-crawlspace-with-wall-and-ceiling-insulation.osw +36 -60
  376. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-attic-with-floor-and-roof-insulation.osw +38 -62
  377. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-crawlspace-with-wall-and-ceiling-insulation.osw +36 -60
  378. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/zero-number-of-bedrooms.osw +337 -0
  379. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/schedules/vacant.csv +8761 -0
  380. data/example_files/resources/hpxml-measures/Changelog.md +249 -0
  381. data/example_files/resources/hpxml-measures/Gemfile +3 -4
  382. data/example_files/resources/hpxml-measures/Gemfile.lock +27 -32
  383. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb +318 -1283
  384. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +167 -121
  385. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/BaseElements.xsd +7 -97
  386. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/EPvalidator.xml +600 -203
  387. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLDataTypes.xsd +21 -28
  388. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLvalidator.xml +114 -22
  389. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb +112 -177
  390. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb +16 -180
  391. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb +543 -94
  392. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/energyplus.rb +1 -0
  393. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/generator.rb +4 -7
  394. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb +410 -14
  395. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +27 -25
  396. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +782 -460
  397. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +455 -107
  398. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb +1466 -1403
  399. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +1391 -1467
  400. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb +2 -1
  401. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb +20 -7
  402. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb +85 -13
  403. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/minitest_helper.rb +4 -26
  404. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb +14 -33
  405. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb +3 -4
  406. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +43 -7
  407. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb +24 -7
  408. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb +2 -0
  409. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb +2 -2
  410. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb +4 -4
  411. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb +32 -30
  412. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb +6 -29
  413. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +523 -635
  414. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb +151 -0
  415. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb +3 -1
  416. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb +4 -2
  417. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +297 -7
  418. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +0 -1
  419. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb +3 -1
  420. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb +3 -1
  421. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb +3 -1
  422. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb +3 -1
  423. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb +3 -1
  424. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +26 -3
  425. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb +3 -1
  426. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/util.rb +26 -0
  427. data/example_files/resources/hpxml-measures/README.md +4 -5
  428. data/example_files/resources/hpxml-measures/Rakefile +1 -2
  429. data/example_files/resources/hpxml-measures/SimulationOutputReport/measure.rb +140 -47
  430. data/example_files/resources/hpxml-measures/SimulationOutputReport/measure.xml +351 -495
  431. data/example_files/resources/hpxml-measures/SimulationOutputReport/tests/output_report_test.rb +260 -189
  432. data/example_files/resources/hpxml-measures/docs/source/conf.py +4 -1
  433. data/example_files/resources/hpxml-measures/docs/source/getting_started.rst +3 -3
  434. data/example_files/resources/hpxml-measures/docs/source/intro.rst +4 -105
  435. data/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst +538 -396
  436. data/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst +158 -130
  437. data/example_files/resources/hpxml-measures/tasks.rb +1497 -736
  438. data/example_files/resources/hpxml-measures/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3-cache.csv +35 -0
  439. data/example_files/resources/hpxml-measures/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw +8768 -0
  440. data/example_files/resources/hpxml-measures/weather/USA_CO_Denver.Intl.AP.725650_TMY3-cache.csv +10 -10
  441. data/example_files/resources/hpxml-measures/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3-cache.csv +35 -0
  442. data/example_files/resources/hpxml-measures/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3.epw +8768 -0
  443. data/example_files/resources/hpxml-measures/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3-cache.csv +35 -0
  444. data/example_files/resources/hpxml-measures/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3.epw +8768 -0
  445. data/example_files/resources/hpxml-measures/weather/USA_OR_Portland.Intl.AP.726980_TMY3-cache.csv +35 -0
  446. data/example_files/resources/hpxml-measures/weather/USA_OR_Portland.Intl.AP.726980_TMY3.epw +8768 -0
  447. data/example_files/resources/hpxml-measures/workflow/run_simulation.rb +36 -5
  448. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +4 -3
  449. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +5 -3
  450. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +5 -3
  451. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +535 -0
  452. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +5 -3
  453. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +4 -3
  454. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +4 -3
  455. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml +4 -2
  456. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +4 -3
  457. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +4 -3
  458. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +4 -3
  459. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +4 -3
  460. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +6 -5
  461. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +4 -3
  462. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +4 -3
  463. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +4 -3
  464. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +4 -3
  465. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml +4 -3
  466. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml +4 -3
  467. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml +4 -3
  468. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml +4 -3
  469. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml +4 -3
  470. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml +0 -1
  471. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml +4 -4
  472. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml +3 -5
  473. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml +28 -18
  474. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml +28 -18
  475. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml +0 -1
  476. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml +4 -4
  477. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml +3 -5
  478. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml +3 -5
  479. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml +23 -11
  480. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml +0 -1
  481. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml +4 -4
  482. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml +3 -5
  483. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml +23 -12
  484. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml +23 -12
  485. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml +4 -3
  486. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +6 -6
  487. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml +4 -3
  488. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml +8 -5
  489. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml +4 -3
  490. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml +4 -3
  491. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml +4 -3
  492. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml +4 -3
  493. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml +4 -3
  494. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml +4 -3
  495. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached.xml +17 -4
  496. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +1 -2
  497. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +1 -2
  498. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +3 -2
  499. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +564 -564
  500. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +4 -3
  501. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +3 -5
  502. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +3 -2
  503. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +3 -5
  504. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +4 -3
  505. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +1 -2
  506. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +1 -2
  507. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +1 -2
  508. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +1 -2
  509. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +1 -2
  510. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +4 -3
  511. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +4 -3
  512. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +4 -3
  513. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +1 -2
  514. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +4 -3
  515. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +1 -2
  516. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml +4 -2
  517. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +4 -3
  518. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +4 -3
  519. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +4 -3
  520. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +4 -3
  521. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +4 -3
  522. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +4 -3
  523. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +4 -3
  524. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +4 -3
  525. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +4 -3
  526. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +4 -3
  527. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +4 -3
  528. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +4 -3
  529. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +4 -3
  530. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +4 -3
  531. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +4 -3
  532. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +4 -3
  533. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +4 -3
  534. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +4 -3
  535. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +4 -3
  536. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +4 -3
  537. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +4 -3
  538. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +4 -3
  539. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +4 -3
  540. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +4 -3
  541. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +4 -3
  542. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +4 -3
  543. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +4 -3
  544. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +4 -3
  545. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +4 -3
  546. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +4 -3
  547. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +4 -3
  548. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +5 -4
  549. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +4 -3
  550. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +4 -3
  551. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +4 -3
  552. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +4 -3
  553. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +4 -3
  554. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +4 -3
  555. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +4 -3
  556. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +4 -3
  557. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +4 -3
  558. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +4 -3
  559. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +5 -4
  560. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +9 -3
  561. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml +4 -3
  562. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml +601 -0
  563. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +6 -5
  564. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +4 -3
  565. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces.xml +22 -21
  566. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces2.xml +2475 -0
  567. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +4 -3
  568. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +4 -3
  569. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-enclosure-windows-interior-shading.xml → base-enclosure-windows-shading.xml} +577 -561
  570. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +4 -3
  571. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml +644 -0
  572. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +4 -3
  573. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +4 -3
  574. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-interior-insulation.xml +4 -3
  575. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +6 -5
  576. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +4 -3
  577. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +5 -4
  578. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +5 -4
  579. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +4 -3
  580. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +5 -4
  581. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +4 -3
  582. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +4 -3
  583. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +4 -3
  584. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +556 -0
  585. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +562 -0
  586. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +6 -8
  587. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +6 -5
  588. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +6 -5
  589. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml +553 -0
  590. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml +558 -0
  591. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize-manual-s-oversize-allowances.xml → base-hvac-autosize-air-to-air-heat-pump-1-speed-manual-s-oversize-allowances.xml} +2 -4
  592. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed.xml +558 -0
  593. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-2-speed-autosize-manual-s-oversize-allowances.xml → base-hvac-autosize-air-to-air-heat-pump-2-speed-manual-s-oversize-allowances.xml} +560 -559
  594. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-2-speed-autosize.xml → base-hvac-autosize-air-to-air-heat-pump-2-speed.xml} +557 -556
  595. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-var-speed-autosize-manual-s-oversize-allowances.xml → base-hvac-autosize-air-to-air-heat-pump-var-speed-manual-s-oversize-allowances.xml} +560 -559
  596. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-var-speed-autosize.xml → base-hvac-autosize-air-to-air-heat-pump-var-speed.xml} +557 -556
  597. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-boiler-elec-only-autosize.xml → base-hvac-autosize-boiler-elec-only.xml} +517 -518
  598. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-boiler-gas-central-ac-1-speed-autosize.xml → base-hvac-autosize-boiler-gas-central-ac-1-speed.xml} +569 -569
  599. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-boiler-gas-only-autosize.xml → base-hvac-autosize-boiler-gas-only.xml} +518 -519
  600. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-central-ac-only-1-speed-autosize.xml → base-hvac-autosize-central-ac-only-1-speed.xml} +2 -4
  601. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-central-ac-only-2-speed-autosize.xml → base-hvac-autosize-central-ac-only-2-speed.xml} +547 -546
  602. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-central-ac-only-var-speed-autosize.xml → base-hvac-autosize-central-ac-only-var-speed.xml} +547 -546
  603. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-central-ac-plus-air-to-air-heat-pump-heating-autosize.xml → base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml} +2 -7
  604. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-autosize.xml → base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed.xml} +2 -4
  605. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-dual-fuel-mini-split-heat-pump-ducted-autosize.xml → base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml} +2 -4
  606. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-elec-resistance-only-autosize.xml → base-hvac-autosize-elec-resistance-only.xml} +508 -509
  607. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-evap-cooler-furnace-gas-autosize.xml → base-hvac-autosize-evap-cooler-furnace-gas.xml} +553 -552
  608. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-floor-furnace-propane-only-autosize.xml → base-hvac-autosize-floor-furnace-propane-only.xml} +511 -512
  609. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-furnace-elec-only-autosize.xml → base-hvac-autosize-furnace-elec-only.xml} +547 -546
  610. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-furnace-gas-central-ac-2-speed-autosize.xml → base-hvac-autosize-furnace-gas-central-ac-2-speed.xml} +560 -559
  611. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-furnace-gas-central-ac-var-speed-autosize.xml → base-hvac-autosize-furnace-gas-central-ac-var-speed.xml} +560 -559
  612. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml +548 -0
  613. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-furnace-gas-room-ac-autosize.xml → base-hvac-autosize-furnace-gas-room-ac.xml} +558 -557
  614. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +555 -0
  615. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +560 -0
  616. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-ground-to-air-heat-pump-autosize-manual-s-oversize-allowances.xml → base-hvac-autosize-ground-to-air-heat-pump-manual-s-oversize-allowances.xml} +562 -562
  617. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-ground-to-air-heat-pump-autosize.xml → base-hvac-autosize-ground-to-air-heat-pump.xml} +559 -559
  618. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml +547 -0
  619. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-cooling-only-autosize.xml → base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml} +2 -4
  620. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-heating-only-autosize.xml → base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml} +2 -4
  621. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-autosize-manual-s-oversize-allowances.xml → base-hvac-autosize-mini-split-heat-pump-ducted-manual-s-oversize-allowances.xml} +2 -4
  622. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted.xml +557 -0
  623. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-room-ac-only-autosize.xml → base-hvac-autosize-room-ac-only.xml} +507 -508
  624. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-stove-oil-only-autosize.xml → base-hvac-autosize-stove-oil-only.xml} +511 -512
  625. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-wall-furnace-elec-only-autosize.xml → base-hvac-autosize-wall-furnace-elec-only.xml} +511 -512
  626. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-autosize.xml → base-hvac-autosize.xml} +560 -559
  627. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +1 -2
  628. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +1 -2
  629. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +4 -4
  630. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +1 -2
  631. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +1 -2
  632. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +1 -2
  633. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +1 -2
  634. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +3 -5
  635. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +3 -2
  636. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +3 -2
  637. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +7 -12
  638. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +2 -3
  639. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml +5 -7
  640. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +5 -7
  641. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +5 -4
  642. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +5 -4
  643. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +5 -7
  644. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +4 -3
  645. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +1 -2
  646. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +4 -2
  647. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +11 -1
  648. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml +1 -4
  649. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml +512 -513
  650. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml +512 -563
  651. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +512 -513
  652. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml +548 -547
  653. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +4 -3
  654. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +3 -2
  655. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +4 -3
  656. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +4 -3
  657. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +548 -550
  658. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +4 -3
  659. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +3 -2
  660. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +3 -2
  661. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +3 -2
  662. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +4 -5
  663. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +557 -0
  664. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +563 -0
  665. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +562 -562
  666. data/example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/slab-zero-exposed-perimeter.xml → base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.xml} +568 -561
  667. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize.xml → base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.xml} +566 -559
  668. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.xml +567 -0
  669. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.xml +567 -0
  670. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-misc-shelter-coefficient.xml → base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.xml} +571 -564
  671. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.xml +572 -0
  672. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.xml +572 -0
  673. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-furnace-gas-only-autosize.xml → base-hvac-install-quality-all-furnace-gas-only.xml} +552 -549
  674. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-ground-to-air-heat-pump.xml +566 -0
  675. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-mini-split-air-conditioner-only-ducted-autosize.xml → base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.xml} +552 -548
  676. data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-autosize.xml → base-hvac-install-quality-all-mini-split-heat-pump-ducted.xml} +565 -558
  677. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-blower-efficiency-furnace-gas-central-ac-1-speed.xml +569 -0
  678. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.xml +566 -0
  679. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.xml +570 -0
  680. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +3 -5
  681. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +1 -5
  682. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +3 -5
  683. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +5 -7
  684. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +6 -8
  685. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +3 -7
  686. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +920 -913
  687. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml +0 -1
  688. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml +512 -563
  689. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat-detailed.xml +7 -6
  690. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat.xml +4 -3
  691. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +1 -2
  692. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +1 -2
  693. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +4 -3
  694. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml +512 -513
  695. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +512 -513
  696. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml +4 -3
  697. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +4 -3
  698. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +512 -513
  699. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml +4 -3
  700. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-detailed.xml +4 -3
  701. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml +4 -3
  702. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +4 -3
  703. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +37 -25
  704. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +4 -3
  705. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +37 -25
  706. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml +563 -0
  707. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml +517 -0
  708. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +4 -3
  709. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml +517 -0
  710. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml +577 -0
  711. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +4 -3
  712. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +4 -3
  713. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +2 -3
  714. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +11 -1
  715. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +4 -3
  716. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +4 -3
  717. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +4 -3
  718. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +4 -3
  719. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +4 -3
  720. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +4 -3
  721. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +4 -3
  722. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +32 -29
  723. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +4 -3
  724. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +4 -3
  725. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml +4 -2
  726. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml +5 -4
  727. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml +8 -3
  728. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml +12 -3
  729. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +4 -3
  730. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +4 -3
  731. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml +564 -0
  732. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +8 -3
  733. data/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml +1657 -0
  734. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml +4 -3
  735. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic-vacant.xml +564 -0
  736. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic.xml +4 -3
  737. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-user-specified.xml +4 -3
  738. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +4 -3
  739. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +4 -3
  740. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +4 -3
  741. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +4 -3
  742. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +4 -3
  743. data/example_files/resources/hpxml-measures/workflow/sample_files/base.xml +4 -3
  744. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/boiler-invalid-afue.xml +519 -0
  745. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/cfis-with-hydronic-distribution.xml +1 -2
  746. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-dryer-location.xml +4 -3
  747. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-washer-location.xml +4 -3
  748. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/cooking-range-location.xml +4 -3
  749. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-appliances-dehumidifier-50percent.xml → invalid_files/dehumidifier-fraction-served.xml} +534 -523
  750. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dehumidifier-setpoints.xml +535 -0
  751. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-frac-load-served.xml +1 -2
  752. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-ef-tank.xml +4 -3
  753. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-uef-tank-heat-pump.xml +4 -3
  754. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dishwasher-location.xml +4 -3
  755. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-cfm25.xml +563 -0
  756. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-percent.xml +563 -0
  757. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location-unconditioned-space.xml +4 -3
  758. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location.xml +4 -3
  759. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duplicate-id.xml +4 -3
  760. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-attic-missing-roof.xml +4 -3
  761. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-exterior-foundation-wall.xml +5 -4
  762. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-slab.xml +5 -4
  763. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa.xml +7 -6
  764. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa2.xml +448 -0
  765. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-exterior-wall.xml +4 -3
  766. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-roof-ceiling.xml +4 -3
  767. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-slab.xml +4 -3
  768. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-ceiling-roof.xml +4 -3
  769. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-exterior-wall.xml +4 -3
  770. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-floor-slab.xml +14 -60
  771. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-fuel-load.xml +760 -0
  772. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-plug-load.xml +759 -0
  773. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-fuel-load.xml +761 -0
  774. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-plug-load.xml +759 -0
  775. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/furnace-invalid-afue.xml +563 -0
  776. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/generator-number-of-bedrooms-served.xml +460 -0
  777. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/generator-output-greater-than-consumption.xml +579 -0
  778. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/heat-pump-mixed-fixed-and-autosize-capacities.xml +3 -5
  779. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-cooling.xml +920 -913
  780. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-heating.xml +920 -913
  781. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-return-duct-leakage-missing.xml +3 -7
  782. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-cooling.xml +3 -4
  783. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-heating.xml +3 -4
  784. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-frac-load-served.xml +920 -913
  785. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-inconsistent-fan-powers.xml +4 -3
  786. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-invalid-distribution-system-type.xml +4 -3
  787. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-shared-negative-seer-eq.xml +407 -0
  788. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-assembly-effective-rvalue.xml +563 -0
  789. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-boolean.xml +4 -3
  790. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-float.xml +4 -3
  791. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-integer.xml +4 -3
  792. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-daylight-saving.xml +4 -3
  793. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-distribution-cfa-served.xml +5 -4
  794. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-epw-filepath.xml +4 -3
  795. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-facility-type-equipment.xml +4 -3
  796. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-facility-type-surfaces.xml +4 -3
  797. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-foundation-wall-properties.xml +574 -0
  798. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-id.xml +591 -0
  799. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-id2.xml +591 -0
  800. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-infiltration-volume.xml +563 -0
  801. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-input-parameters.xml +4 -3
  802. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-neighbor-shading-azimuth.xml +4 -3
  803. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-bedrooms-served.xml +465 -0
  804. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-conditioned-floors.xml +563 -0
  805. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-units-served.xml +451 -0
  806. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-relatedhvac-desuperheater.xml +3 -5
  807. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-relatedhvac-dhw-indirect.xml +1 -2
  808. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-runperiod.xml +4 -3
  809. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-schema-version.xml +4 -3
  810. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-shared-vent-in-unit-flowrate.xml +473 -0
  811. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-timestep.xml +4 -3
  812. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-window-height.xml +9 -3
  813. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/lighting-fractions.xml +4 -3
  814. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-duct-location.xml +916 -909
  815. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-elements.xml +4 -3
  816. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-appliance.xml +4 -3
  817. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-duct.xml +4 -3
  818. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-surface.xml +15 -4
  819. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-water-heater.xml +4 -3
  820. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-without-building-id.xml +1657 -0
  821. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-wrong-building-id.xml +1657 -0
  822. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-ideal-air.xml → invalid_files/multiple-shared-cooling-systems.xml} +431 -498
  823. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-shared-heating-systems.xml +434 -0
  824. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/net-area-negative-roof.xml +5 -4
  825. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/net-area-negative-wall.xml +4 -3
  826. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/num-bedrooms-exceeds-limit.xml +4 -3
  827. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/orphaned-hvac-distribution.xml +3 -2
  828. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerator-location.xml +4 -3
  829. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-multiple-primary.xml +4 -3
  830. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-no-primary.xml +4 -3
  831. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-desuperheater.xml +3 -5
  832. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-dhw-indirect.xml +1 -2
  833. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-fraction-one.xml +571 -0
  834. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-combi-tankless.xml +1 -2
  835. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-desuperheater.xml +3 -5
  836. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-dhw-indirect.xml +1 -2
  837. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-cfis.xml +4 -3
  838. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-door.xml +4 -3
  839. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-hvac-distribution.xml +4 -3
  840. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-clothes-washer-water-heater.xml +4 -3
  841. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-dishwasher-water-heater.xml +4 -3
  842. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-skylight.xml +6 -5
  843. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-solar-thermal-system.xml +4 -3
  844. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-window.xml +4 -3
  845. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location-other.xml +4 -3
  846. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location.xml +4 -3
  847. data/example_files/resources/hpxml-measures/workflow/template.osw +5 -1
  848. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml +0 -3
  849. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml +0 -3
  850. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml +0 -3
  851. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml +0 -3
  852. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml +0 -3
  853. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml +0 -3
  854. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml +0 -3
  855. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml +0 -3
  856. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml +0 -3
  857. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml +0 -3
  858. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml +0 -3
  859. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml +0 -3
  860. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml +0 -3
  861. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml +0 -3
  862. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml +0 -3
  863. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml +0 -3
  864. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml +0 -3
  865. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml +0 -3
  866. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml +0 -3
  867. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml +0 -3
  868. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml +0 -3
  869. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml +0 -3
  870. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml +0 -3
  871. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml +0 -3
  872. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml +0 -3
  873. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml +0 -3
  874. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results.csv +294 -0
  875. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_ashrae_140.csv +27 -0
  876. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_hvac_sizing.csv +294 -0
  877. data/example_files/resources/hpxml-measures/workflow/tests/compare.rb +130 -0
  878. data/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb +324 -382
  879. data/example_files/{measures/BuildResidentialModel/resources → resources}/measure-info.json +0 -0
  880. data/example_files/{measures/BuildResidentialModel/resources → resources}/meta_measure.rb +53 -44
  881. data/example_files/visualization/input_visualization_feature.html +13 -14
  882. data/example_files/visualization/input_visualization_scenario.html +14 -9
  883. data/lib/uo_cli.rb +293 -60
  884. data/lib/uo_cli/version.rb +17 -7
  885. data/requirements.txt +2 -0
  886. data/scripts/setup-env-gitbash.sh +4 -4
  887. data/scripts/setup-env-unix.sh +4 -4
  888. data/scripts/setup-env.bat +3 -3
  889. data/scripts/setup-env.ps1 +3 -3
  890. data/uo_cli.gemspec +10 -7
  891. metadata +320 -82
  892. data/example_files/measures/ResidentialGeometryCreateMultifamily/measure.rb +0 -1005
  893. data/example_files/measures/ResidentialGeometryCreateMultifamily/measure.xml +0 -326
  894. data/example_files/measures/ResidentialGeometryCreateMultifamily/tests/create_residential_multifamily_geometry_test.rb +0 -477
  895. data/example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/measure.rb +0 -1039
  896. data/example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/measure.xml +0 -393
  897. data/example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/tests/create_residential_single_family_attached_geometry_test.rb +0 -456
  898. data/example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/measure.rb +0 -979
  899. data/example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/measure.xml +0 -388
  900. data/example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/tests/create_residential_single_family_detached_geometry_test.rb +0 -704
  901. data/example_files/resources/hpxml-measures/.circleci/config.yml +0 -20
  902. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/location.rb +0 -24
  903. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_config.yml +0 -74
  904. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-hvac-programmable-thermostat.osw +0 -369
  905. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_constructions.rb +0 -109
  906. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple2.xml +0 -835
  907. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/heat-pump-mixed-fixed-and-autosize-capacities2.xml +0 -563
@@ -90,7 +90,10 @@ html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
90
90
  html_static_path = ['nstatic/']
91
91
 
92
92
  def setup(app):
93
- app.add_css_file("stylesheet.css")
93
+ try:
94
+ app.add_css_file("stylesheet.css")
95
+ except:
96
+ app.add_stylesheet("stylesheet.css")
94
97
 
95
98
  # Custom sidebar templates, must be a dictionary that maps document names
96
99
  # to template names.
@@ -6,7 +6,7 @@ Setup
6
6
 
7
7
  To get started:
8
8
 
9
- #. Download `OpenStudio 3.1.0 <https://github.com/NREL/OpenStudio/releases/tag/v3.1.0>`_ and install the Command Line Interface/EnergyPlus components, or use the `nrel/openstudio docker image <https://hub.docker.com/r/nrel/openstudio>`_.
9
+ #. Download `OpenStudio 3.2.0 <https://github.com/NREL/OpenStudio/releases/tag/v3.2.0>`_ and install the Command Line Interface/EnergyPlus components, or use the `nrel/openstudio docker image <https://hub.docker.com/r/nrel/openstudio>`_.
10
10
  #. Download the `latest release <https://github.com/NREL/OpenStudio-HPXML/releases>`_.
11
11
 
12
12
  Running
@@ -49,9 +49,9 @@ By default it will be found at the same location as the OSW file.
49
49
  Outputs
50
50
  ~~~~~~~
51
51
 
52
- In addition to the standard EnergyPlus outputs found in the run directory, a variety of high-level annual outputs are conveniently reported in the resulting ``run/results_annual.csv`` file.
52
+ In addition to the standard EnergyPlus outputs found in the run directory, a variety of high-level annual outputs are conveniently reported in the resulting ``run/results_annual.csv`` (or ``run/results_annual.json``) file.
53
53
 
54
54
  Timeseries outputs can also be requested using either the Basic or Advanced approaches.
55
- When requested, timeseries outputs will be found in the ``run/results_timeseries.csv`` file.
55
+ When requested, timeseries outputs will be found in the ``run/results_timeseries.csv`` (or ``run/results_timeseries.json``) file.
56
56
 
57
57
  See :ref:`workflow_outputs` for a description of all available outputs available.
@@ -10,109 +10,6 @@ The three OpenStudio measures used by the workflow are:
10
10
  #. ``HPXMLtoOpenStudio``: A measure that translates an HPXML file to an OpenStudio model.
11
11
  #. ``SimulationOutputReport``: A reporting measure that generates a variety of annual/timeseries outputs for a residential HPXML-based model.
12
12
 
13
- Modeling Capabilities
14
- ---------------------
15
- The OpenStudio-HPXML workflow can accommodate the following building features/technologies:
16
-
17
- - Enclosure
18
-
19
- - Attics
20
-
21
- - Vented
22
- - Unvented
23
- - Conditioned
24
- - Radiant Barriers
25
-
26
- - Foundations
27
-
28
- - Slab
29
- - Unconditioned Basement
30
- - Conditioned Basement
31
- - Vented Crawlspace
32
- - Unvented Crawlspace
33
- - Ambient
34
-
35
- - Garages
36
- - Windows & Overhangs
37
- - Skylights
38
- - Doors
39
-
40
- - HVAC
41
-
42
- - Heating Systems
43
-
44
- - Electric Resistance
45
- - Central/Wall/Floor Furnaces
46
- - Stoves, Portable/Fixed Heaters
47
- - Boilers
48
- - Fireplaces
49
-
50
- - Cooling Systems
51
-
52
- - Central/Room Air Conditioners
53
- - Evaporative Coolers
54
- - Mini Split Air Conditioners
55
- - Chillers
56
- - Cooling Towers
57
-
58
- - Heat Pumps
59
-
60
- - Air Source Heat Pumps
61
- - Mini Split Heat Pumps
62
- - Ground Source Heat Pumps
63
- - Dual-Fuel Heat Pumps
64
- - Water Loop Heat Pumps
65
-
66
- - Thermostat Setpoints
67
- - Ducts
68
-
69
- - Water Heating
70
-
71
- - Water Heaters
72
-
73
- - Storage Tank
74
- - Instantaneous Tankless
75
- - Heat Pump Water Heater
76
- - Indirect Water Heater (Combination Boiler)
77
- - Tankless Coil (Combination Boiler)
78
-
79
- - Solar Hot Water
80
- - Desuperheaters
81
- - Hot Water Distribution
82
-
83
- - Recirculation
84
-
85
- - Drain Water Heat Recovery
86
- - Hot Water Fixtures
87
-
88
- - Mechanical Ventilation
89
-
90
- - Exhaust Only
91
- - Supply Only
92
- - Balanced
93
- - Energy Recovery Ventilator
94
- - Heat Recovery Ventilator
95
- - Central Fan Integrated Supply
96
- - Shared Systems w/ Recirculation and/or Preconditioning
97
-
98
- - Kitchen/Bath Fans
99
- - Whole House Fan
100
- - Photovoltaics
101
- - Generators
102
- - Appliances
103
-
104
- - Clothes Washer
105
- - Clothes Dryer
106
- - Dishwasher
107
- - Refrigerator
108
- - Cooking Range/Oven
109
-
110
- - Dehumidifiers
111
- - Lighting
112
- - Ceiling Fans
113
- - Pool/Hot Tub
114
- - Plug/Fuel Loads
115
-
116
13
  Scope (Dwelling Units)
117
14
  ----------------------
118
15
 
@@ -147,9 +44,11 @@ End-to-end simulations typically run in 3-10 seconds, depending on complexity, c
147
44
 
148
45
  There are additional ways that software developers using this workflow can reduce runtime:
149
46
 
150
- - Run on Linux/Mac platform, which is significantly faster by taking advantage of the POSIX fork call.
151
- - Do not use the ``--hourly`` flag unless hourly output is required. If required, limit requests to hourly variables of interest.
47
+ - Run on Linux/Mac platform, which is significantly faster than Windows.
152
48
  - Run on computing environments with 1) fast CPUs, 2) sufficient memory, and 3) enough processors to allow all simulations to run in parallel.
49
+ - Limit requests for timeseries output (e.g., ``--hourly``, ``--daily``, ``--timestep`` arguments) and limit the number of output variables requested.
50
+ - Avoid using the ``--add-component-loads`` argument if heating/cooling component loads are not of interest.
51
+ - Use the ``--skip-validation`` argument if the HPXML input file has already been validated against the Schema & Schematron documents.
153
52
 
154
53
  License
155
54
  -------
@@ -43,11 +43,10 @@ HPXML files submitted to OpenStudio-HPXML should undergo a two step validation p
43
43
  Input Defaults
44
44
  **************
45
45
 
46
- An increasing number of elements in the HPXML file are being made optional with "smart" defaults.
46
+ A large number of elements in the HPXML file are optional and can be defaulted.
47
47
  Default values, equations, and logic are described throughout this documentation.
48
48
 
49
- Most defaults can also be seen by using the ``debug`` argument/flag when running the workflow on an actual HPXML file.
50
- This will create a new HPXML file (``in.xml`` in the run directory) where additional fields are populated for inspection.
49
+ Defaults can also be seen in the ``in.xml`` file generated in the run directory, where additional fields are populated for inspection.
51
50
 
52
51
  For example, suppose a HPXML file has a window defined as follows:
53
52
 
@@ -74,18 +73,18 @@ In the ``in.xml`` file, the window would have additional elements like so:
74
73
  <SHGC>0.45</SHGC>
75
74
  <InteriorShading>
76
75
  <SystemIdentifier id='WindowInteriorShading'/>
77
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
78
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
76
+ <SummerShadingCoefficient dataSource='software'>0.7</SummerShadingCoefficient>
77
+ <WinterShadingCoefficient dataSource='software'>0.85</WinterShadingCoefficient>
79
78
  </InteriorShading>
80
- <FractionOperable>0.67</FractionOperable>
79
+ <FractionOperable dataSource='software'>0.67</FractionOperable>
81
80
  <AttachedToWall idref='Wall'/>
82
81
  </Window>
83
82
 
84
83
  .. note::
85
84
 
86
- The OpenStudio-HPXML workflow generally treats missing HPXML objects differently than missing properties.
87
- For example, if there is a ``Window`` with no ``Overhangs`` object defined, the window will be interpreted as having no overhangs and modeled this way.
88
- On the other hand, if there is a ``Window`` element with no ``FractionOperable`` property defined, it is assumed that the operable property of the window is unknown and will be defaulted in the model according to :ref:`windowinputs`.
85
+ The OpenStudio-HPXML workflow generally treats missing elements differently than missing values.
86
+ For example, if there is a ``Window`` with no ``Overhangs`` element defined, the window will be interpreted as having no overhangs and modeled this way.
87
+ On the other hand, if there is a ``Window`` with no ``FractionOperable`` value defined, it is assumed that the operable property of the window is unknown and will be defaulted in the model according to :ref:`windowinputs`.
89
88
 
90
89
  HPXML Software Info
91
90
  -------------------
@@ -101,10 +100,10 @@ EnergyPlus simulation controls are entered in ``/HPXML/SoftwareInfo/extension/Si
101
100
  Element Type Units Constraints Required Default Description
102
101
  ================================== ======== ======= ============= ======== =========================== =====================================
103
102
  ``Timestep`` integer minutes Divisor of 60 No 60 (1 hour) Timestep
104
- ``BeginMonth`` integer 1-12 [#]_ No 1 (January) Run period start date
105
- ``BeginDayOfMonth`` integer 1-31 No 1 Run period start date
106
- ``EndMonth`` integer 1-12 No 12 (December) Run period end date
107
- ``EndDayOfMonth`` integer 1-31 No Run period end date
103
+ ``BeginMonth`` integer 1 - 12 [#]_ No 1 (January) Run period start date
104
+ ``BeginDayOfMonth`` integer 1 - 31 No 1 Run period start date
105
+ ``EndMonth`` integer 1 - 12 No 12 (December) Run period end date
106
+ ``EndDayOfMonth`` integer 1 - 31 No Run period end date
108
107
  ``CalendarYear`` integer > 1600 No 2007 (for TMY weather) [#]_ Calendar year (for start day of week)
109
108
  ``DaylightSaving/Enabled`` boolean No true Daylight savings enabled?
110
109
  ================================== ======== ======= ============= ======== =========================== =====================================
@@ -114,12 +113,12 @@ EnergyPlus simulation controls are entered in ``/HPXML/SoftwareInfo/extension/Si
114
113
 
115
114
  If daylight saving is enabled, additional information is specified in ``DaylightSaving``.
116
115
 
117
- ====================================== ======== ===== ============= ======== ============================= ===========
118
- Element Type Units Constraints Required Default Description
119
- ====================================== ======== ===== ============= ======== ============================= ===========
120
- ``BeginMonth`` and ``BeginDayOfMonth`` integer 1-12 and 1-31 No EPW else 3/12 (March 12) [#]_ Start date
121
- ``EndMonth`` and ``EndDayOfMonth`` integer 1-12 and 1-31 No EPW else 11/5 (November 5) End date
122
- ====================================== ======== ===== ============= ======== ============================= ===========
116
+ ====================================== ======== ===== ================= ======== ============================= ===========
117
+ Element Type Units Constraints Required Default Description
118
+ ====================================== ======== ===== ================= ======== ============================= ===========
119
+ ``BeginMonth`` and ``BeginDayOfMonth`` integer 1 - 12 and 1 - 31 No EPW else 3/12 (March 12) [#]_ Start date
120
+ ``EndMonth`` and ``EndDayOfMonth`` integer 1 - 12 and 1 - 31 No EPW else 11/5 (November 5) End date
121
+ ====================================== ======== ===== ================= ======== ============================= ===========
123
122
 
124
123
  .. [#] Daylight savings dates will be defined according to the EPW weather file header; if not available, fallback default values listed above will be used.
125
124
 
@@ -152,25 +151,19 @@ Building site information is entered in ``/HPXML/Building/BuildingDetails/Buildi
152
151
  Element Type Units Constraints Required Default Notes
153
152
  ================================ ======== ===== =========== ======== ======== ============================================================
154
153
  ``SiteType`` string See [#]_ No suburban Terrain type for infiltration model
155
- ``extension/ShelterCoefficient`` double 0-1 No 0.5 [#]_ Nearby buildings, trees, obstructions for infiltration model
154
+ ``ShieldingofHome`` string See [#]_ No normal Presence of nearby buildings, trees, obstructions for infiltration model
156
155
  ``extension/Neighbors`` element >= 0 No <none> Presence of neighboring buildings for solar shading
157
156
  ================================ ======== ===== =========== ======== ======== ============================================================
158
157
 
159
158
  .. [#] SiteType choices are "rural", "suburban", or "urban".
160
- .. [#] ShelterCoefficient values are described as follows:
161
-
162
- - **1.0**: No obstructions or local shielding;
163
- - **0.9**: Light local shielding with few obstructions within two building heights;
164
- - **0.7**: Local shielding with many large obstructions within two building heights;
165
- - **0.5**: Heavily shielded, many large obstructions within one building height;
166
- - **0.3**: Complete shielding with large buildings immediately adjacent.
159
+ .. [#] ShieldingofHome choices are "normal", "exposed", or "well-shielded".
167
160
 
168
161
  For each neighboring building defined, additional information is entered in a ``extension/Neighbors/NeighborBuilding``.
169
162
 
170
163
  ============ ======== ======= =========== ======== ======== =============================================
171
164
  Element Type Units Constraints Required Default Notes
172
165
  ============ ======== ======= =========== ======== ======== =============================================
173
- ``Azimuth`` integer deg 0-359 Yes Direction of neighbors (clockwise from North)
166
+ ``Azimuth`` integer deg 0 - 359 Yes Direction of neighbors (clockwise from North)
174
167
  ``Distance`` double ft > 0 Yes Distance of neighbor from the dwelling unit
175
168
  ``Height`` double ft > 0 No See [#]_ Height of neighbor
176
169
  ============ ======== ======= =========== ======== ======== =============================================
@@ -196,20 +189,21 @@ HPXML Building Construction
196
189
 
197
190
  Building construction is entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction``.
198
191
 
199
- ========================================================= ======== ========= =========== ======== ======== =======================================================================
200
- Element Type Units Constraints Required Default Notes
201
- ========================================================= ======== ========= =========== ======== ======== =======================================================================
202
- ``ResidentialFacilityType`` string See [#]_ Yes Type of dwelling unit
203
- ``NumberofConditionedFloors`` double > 0 Yes Number of conditioned floors (including a basement)
204
- ``NumberofConditionedFloorsAboveGrade`` double > 0 Yes Number of conditioned floors above grade (including a walkout basement)
205
- ``NumberofBedrooms`` integer > 0 Yes Number of bedrooms [#]_
206
- ``NumberofBathrooms`` integer > 0 No See [#]_ Number of bathrooms
207
- ``ConditionedFloorArea`` double ft2 > 0 Yes Floor area within conditioned space boundary
208
- ``ConditionedBuildingVolume`` or ``AverageCeilingHeight`` double ft3 or ft > 0 No See [#]_ Volume/ceiling height within conditioned space boundary
209
- ``extension/HasFlueOrChimney`` boolean No See [#]_ Presence of flue or chimney for infiltration model
210
- ========================================================= ======== ========= =========== ======== ======== =======================================================================
192
+ ========================================================= ======== ========= ================================= ======== ======== =======================================================================
193
+ Element Type Units Constraints Required Default Notes
194
+ ========================================================= ======== ========= ================================= ======== ======== =======================================================================
195
+ ``ResidentialFacilityType`` string See [#]_ Yes Type of dwelling unit
196
+ ``NumberofConditionedFloors`` double > 0 Yes Number of conditioned floors (including a basement)
197
+ ``NumberofConditionedFloorsAboveGrade`` double > 0, <= NumberofConditionedFloors Yes Number of conditioned floors above grade (including a walkout basement)
198
+ ``NumberofBedrooms`` integer > 0 [#]_ Yes Number of bedrooms [#]_
199
+ ``NumberofBathrooms`` integer > 0 No See [#]_ Number of bathrooms
200
+ ``ConditionedFloorArea`` double ft2 > 0 Yes Floor area within conditioned space boundary
201
+ ``ConditionedBuildingVolume`` or ``AverageCeilingHeight`` double ft3 or ft > 0 No See [#]_ Volume/ceiling height within conditioned space boundary
202
+ ``extension/HasFlueOrChimney`` boolean No See [#]_ Presence of flue or chimney for infiltration model
203
+ ========================================================= ======== ========= ================================= ======== ======== =======================================================================
211
204
 
212
205
  .. [#] ResidentialFacilityType choices are "single-family detached", "single-family attached", "apartment unit", or "manufactured home".
206
+ .. [#] NumberofBedrooms must also be <= (ConditionedFloorArea-120)/70.
213
207
  .. [#] NumberofBedrooms is currently used to determine usage of plug loads, appliances, hot water, etc.
214
208
  .. [#] If NumberofBathrooms not provided, calculated as NumberofBedrooms/2 + 0.5 based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_.
215
209
  .. [#] If neither ConditionedBuildingVolume nor AverageCeilingHeight provided, AverageCeilingHeight defaults to 8.0.
@@ -263,18 +257,19 @@ HPXML Air Infiltration
263
257
 
264
258
  Building air leakage is entered in ``/HPXML/Building/BuildingDetails/Enclosure/AirInfiltration/AirInfiltrationMeasurement``.
265
259
 
266
- ==================================== ====== ===== =========== ========= ================= ========================================================
267
- Element Type Units Constraints Required Default Notes
268
- ==================================== ====== ===== =========== ========= ================= ========================================================
269
- ``SystemIdentifier`` id Yes Unique identifier
270
- ``BuildingAirLeakage/UnitofMeasure`` string See [#]_ Yes Units for air leakage
271
- ``HousePressure`` double Pa > 0 See [#]_ House pressure with respect to outside, typically ~50 Pa
272
- ``BuildingAirLeakage/AirLeakage`` double > 0 Yes Value for air leakage
273
- ``InfiltrationVolume`` double ft3 > 0 No ConditionedVolume Volume associated with the air leakage measurement
274
- ==================================== ====== ===== =========== ========= ================= ========================================================
260
+ ==================================== ====== ===== ================================= ========= ========================= ===============================================
261
+ Element Type Units Constraints Required Default Notes
262
+ ==================================== ====== ===== ================================= ========= ========================= ===============================================
263
+ ``SystemIdentifier`` id Yes Unique identifier
264
+ ``BuildingAirLeakage/UnitofMeasure`` string See [#]_ Yes Units for air leakage
265
+ ``HousePressure`` double Pa > 0 See [#]_ House pressure with respect to outside [#]_
266
+ ``BuildingAirLeakage/AirLeakage`` double > 0 Yes Value for air leakage
267
+ ``InfiltrationVolume`` double ft3 > 0, >= ConditionedBuildingVolume No ConditionedBuildingVolume Volume associated with infiltration measurement
268
+ ==================================== ====== ===== ================================= ========= ========================= ===============================================
275
269
 
276
270
  .. [#] UnitofMeasure choices are "ACH" (air changes per hour at user-specified pressure), "CFM" (cubic feet per minute at user-specified pressure), or "ACHnatural" (natural air changes per hour).
277
271
  .. [#] HousePressure only required if BuildingAirLeakage/UnitofMeasure is not "ACHnatural".
272
+ .. [#] HousePressure typical value is 50 Pa.
278
273
 
279
274
  HPXML Attics
280
275
  ************
@@ -313,22 +308,22 @@ Each pitched or flat roof surface that is exposed to ambient conditions is enter
313
308
 
314
309
  For a multifamily building where the dwelling unit has another dwelling unit above it, the surface between the two dwelling units should be considered a ``FrameFloor`` and not a ``Roof``.
315
310
 
316
- ====================================== ================ ============ =============== ========= ============================== ==================================
317
- Element Type Units Constraints Required Default Notes
318
- ====================================== ================ ============ =============== ========= ============================== ==================================
319
- ``SystemIdentifier`` id Yes Unique identifier
320
- ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type
321
- ``Area`` double ft2 > 0 Yes Gross area (including skylights)
322
- ``Azimuth`` integer deg 0-359 No See [#]_ Azimuth (clockwise from North)
323
- ``RoofType`` string See [#]_ No asphalt or fiberglass shingles Roof type
324
- ``SolarAbsorptance`` or ``RoofColor`` double or string 0-1 or See [#]_ Yes See [#]_ Solar absorptance or color
325
- ``Emittance`` double 0-1 No 0.90 Emittance
326
- ``Pitch`` integer ?:12 >= 0 Yes Pitch
327
- ``RadiantBarrier`` boolean No false Presence of radiant barrier
328
- ``RadiantBarrier/RadiantBarrierGrade`` integer 1-3 See [#]_ Radiant barrier installation grade
329
- ``Insulation/SystemIdentifier`` id Yes Unique identifier
330
- ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_
331
- ====================================== ================ ============ =============== ========= ============================== ==================================
311
+ ====================================== ================ ============ ================= ========= ============================== ==================================
312
+ Element Type Units Constraints Required Default Notes
313
+ ====================================== ================ ============ ================= ========= ============================== ==================================
314
+ ``SystemIdentifier`` id Yes Unique identifier
315
+ ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type
316
+ ``Area`` double ft2 > 0 Yes Gross area (including skylights)
317
+ ``Azimuth`` integer deg 0 - 359 No See [#]_ Azimuth (clockwise from North)
318
+ ``RoofType`` string See [#]_ No asphalt or fiberglass shingles Roof type
319
+ ``SolarAbsorptance`` or ``RoofColor`` double or string 0 - 1 or See [#]_ Yes See [#]_ Solar absorptance or color
320
+ ``Emittance`` double 0 - 1 No 0.90 Emittance
321
+ ``Pitch`` integer ?:12 >= 0 Yes Pitch
322
+ ``RadiantBarrier`` boolean No false Presence of radiant barrier
323
+ ``RadiantBarrierGrade`` integer 1 - 3 See [#]_ Radiant barrier installation grade
324
+ ``Insulation/SystemIdentifier`` id Yes Unique identifier
325
+ ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_
326
+ ====================================== ================ ============ ================= ========= ============================== ==================================
332
327
 
333
328
  .. [#] InteriorAdjacentTo choices are "attic - vented", "attic - unvented", "living space", or "garage".
334
329
  See :ref:`hpxmllocations` for descriptions.
@@ -350,20 +345,20 @@ HPXML Rim Joists
350
345
 
351
346
  Each rim joist surface (i.e., the perimeter of floor joists typically found between stories of a building or on top of a foundation wall) is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/RimJoists/RimJoist``.
352
347
 
353
- ====================================== ================ ============ =============== ======== =========== ==============================
354
- Element Type Units Constraints Required Default Notes
355
- ====================================== ================ ============ =============== ======== =========== ==============================
356
- ``SystemIdentifier`` id Yes Unique identifier
357
- ``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type
358
- ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type
359
- ``Area`` double ft2 > 0 Yes Gross area
360
- ``Azimuth`` integer deg 0-359 No See [#]_ Azimuth (clockwise from North)
361
- ``Siding`` string See [#]_ No wood siding Siding material
362
- ``SolarAbsorptance`` or ``Color`` double or string 0-1 or See [#]_ Yes See [#]_ Solar absorptance or color
363
- ``Emittance`` double 0-1 No 0.90 Emittance
364
- ``Insulation/SystemIdentifier`` id Yes Unique identifier
365
- ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_
366
- ====================================== ================ ============ =============== ======== =========== ==============================
348
+ ====================================== ================ ============ ================= ======== =========== ==============================
349
+ Element Type Units Constraints Required Default Notes
350
+ ====================================== ================ ============ ================= ======== =========== ==============================
351
+ ``SystemIdentifier`` id Yes Unique identifier
352
+ ``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type
353
+ ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type
354
+ ``Area`` double ft2 > 0 Yes Gross area
355
+ ``Azimuth`` integer deg 0 - 359 No See [#]_ Azimuth (clockwise from North)
356
+ ``Siding`` string See [#]_ No wood siding Siding material
357
+ ``SolarAbsorptance`` or ``Color`` double or string 0 - 1 or See [#]_ Yes See [#]_ Solar absorptance or color
358
+ ``Emittance`` double 0 - 1 No 0.90 Emittance
359
+ ``Insulation/SystemIdentifier`` id Yes Unique identifier
360
+ ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_
361
+ ====================================== ================ ============ ================= ======== =========== ==============================
367
362
 
368
363
  .. [#] ExteriorAdjacentTo choices are "outside", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space".
369
364
  See :ref:`hpxmllocations` for descriptions.
@@ -387,21 +382,21 @@ HPXML Walls
387
382
 
388
383
  Each wall that has no contact with the ground and bounds a space type is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Walls/Wall``.
389
384
 
390
- ====================================== ================ ============ =============== ============= =========== ====================================
391
- Element Type Units Constraints Required Default Notes
392
- ====================================== ================ ============ =============== ============= =========== ====================================
393
- ``SystemIdentifier`` id Yes Unique identifier
394
- ``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type
395
- ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type
396
- ``WallType`` element 1 [#]_ Yes Wall type (for thermal mass)
397
- ``Area`` double ft2 > 0 Yes Gross area (including doors/windows)
398
- ``Azimuth`` integer deg 0-359 No See [#]_ Azimuth (clockwise from North)
399
- ``Siding`` string See [#]_ No wood siding Siding material
400
- ``SolarAbsorptance`` or ``Color`` double or string 0-1 or See [#]_ Yes See [#]_ Solar absorptance or color
401
- ``Emittance`` double 0-1 No 0.90 Emittance
402
- ``Insulation/SystemIdentifier`` id Yes Unique identifier
403
- ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_
404
- ====================================== ================ ============ =============== ============= =========== ====================================
385
+ ====================================== ================ ============ ================= ============= =========== ====================================
386
+ Element Type Units Constraints Required Default Notes
387
+ ====================================== ================ ============ ================= ============= =========== ====================================
388
+ ``SystemIdentifier`` id Yes Unique identifier
389
+ ``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type
390
+ ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type
391
+ ``WallType`` element 1 [#]_ Yes Wall type (for thermal mass)
392
+ ``Area`` double ft2 > 0 Yes Gross area (including doors/windows)
393
+ ``Azimuth`` integer deg 0 - 359 No See [#]_ Azimuth (clockwise from North)
394
+ ``Siding`` string See [#]_ No wood siding Siding material
395
+ ``SolarAbsorptance`` or ``Color`` double or string 0 - 1 or See [#]_ Yes See [#]_ Solar absorptance or color
396
+ ``Emittance`` double 0 - 1 No 0.90 Emittance
397
+ ``Insulation/SystemIdentifier`` id Yes Unique identifier
398
+ ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_
399
+ ====================================== ================ ============ ================= ============= =========== ====================================
405
400
 
406
401
  .. [#] ExteriorAdjacentTo choices are "outside", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space".
407
402
  See :ref:`hpxmllocations` for descriptions.
@@ -436,12 +431,12 @@ Other walls (e.g., wood framed walls) that are connected to a below-grade space
436
431
  ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type
437
432
  ``Height`` double ft > 0 Yes Total height
438
433
  ``Area`` double ft2 > 0 Yes Gross area (including doors/windows)
439
- ``Azimuth`` integer deg 0-359 No See [#]_ Azimuth (clockwise from North)
434
+ ``Azimuth`` integer deg 0 - 359 No See [#]_ Azimuth (clockwise from North)
440
435
  ``Thickness`` double inches > 0 No 8.0 Thickness excluding interior framing
441
- ``DepthBelowGrade`` double ft >= 0 Yes Depth below grade [#]_
436
+ ``DepthBelowGrade`` double ft 0 - Height Yes Depth below grade [#]_
442
437
  ``Insulation/SystemIdentifier`` id Yes Unique identifier
443
- ``Insulation/Layer[InstallationType="continuous - interior"]`` element 0-1 See [#]_ Interior insulation layer
444
- ``Insulation/Layer[InstallationType="continuous - exterior"]`` element 0-1 See [#]_ Exterior insulation layer
438
+ ``Insulation/Layer[InstallationType="continuous - interior"]`` element 0 - 1 See [#]_ Interior insulation layer
439
+ ``Insulation/Layer[InstallationType="continuous - exterior"]`` element 0 - 1 See [#]_ Exterior insulation layer
445
440
  ``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 See [#]_ Assembly R-value [#]_
446
441
  ============================================================== ======== ============ =========== ========= ======== ====================================
447
442
 
@@ -463,13 +458,13 @@ Other walls (e.g., wood framed walls) that are connected to a below-grade space
463
458
 
464
459
  If insulation layers are provided, additional information is entered in each ``FoundationWall/Insulation/Layer``.
465
460
 
466
- ========================================== ======== ============ =========== ======== ======= ======================================================================
467
- Element Type Units Constraints Required Default Notes
468
- ========================================== ======== ============ =========== ======== ======= ======================================================================
469
- ``NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of the foundation wall insulation; use zero if no insulation
470
- ``extension/DistanceToTopOfInsulation`` double ft >= 0 Yes Vertical distance from top of foundation wall to top of insulation
471
- ``extension/DistanceToBottomOfInsulation`` double ft >= 0 Yes Vertical distance from top of foundation wall to bottom of insulation
472
- ========================================== ======== ============ =========== ======== ======= ======================================================================
461
+ ========================================== ======== ============ ================================== ======== ======= =====================================================================
462
+ Element Type Units Constraints Required Default Notes
463
+ ========================================== ======== ============ ================================== ======== ======= =====================================================================
464
+ ``NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of the foundation wall insulation; use zero if no insulation
465
+ ``extension/DistanceToTopOfInsulation`` double ft >= 0 Yes Vertical distance from top of foundation wall to top of insulation
466
+ ``extension/DistanceToBottomOfInsulation`` double ft DistanceToTopOfInsulation - Height Yes Vertical distance from top of foundation wall to bottom of insulation
467
+ ========================================== ======== ============ ================================== ======== ======= =====================================================================
473
468
 
474
469
  HPXML Frame Floors
475
470
  ******************
@@ -515,7 +510,7 @@ Each space type that borders the ground (i.e., basements, crawlspaces, garages,
515
510
  ``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type
516
511
  ``Area`` double ft2 > 0 Yes Gross area
517
512
  ``Thickness`` double inches >= 0 No See [#]_ Thickness [#]_
518
- ``ExposedPerimeter`` double ft > 0 Yes Perimeter exposed to ambient conditions [#]_
513
+ ``ExposedPerimeter`` double ft >= 0 Yes Perimeter exposed to ambient conditions [#]_
519
514
  ``PerimeterInsulationDepth`` double ft >= 0 Yes Depth from grade to bottom of vertical insulation
520
515
  ``UnderSlabInsulationWidth`` double ft >= 0 See [#]_ Width from slab edge inward of horizontal insulation
521
516
  ``UnderSlabInsulationSpansEntireSlab`` boolean See [#]_ Whether horizontal insulation spans entire slab
@@ -524,7 +519,7 @@ Each space type that borders the ground (i.e., basements, crawlspaces, garages,
524
519
  ``PerimeterInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of vertical insulation
525
520
  ``UnderSlabInsulation/SystemIdentifier`` id Yes Unique identifier
526
521
  ``UnderSlabInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of horizontal insulation
527
- ``extension/CarpetFraction`` double frac 0-1 No See [#]_ Fraction of slab covered by carpet
522
+ ``extension/CarpetFraction`` double frac 0 - 1 No See [#]_ Fraction of slab covered by carpet
528
523
  ``extension/CarpetRValue`` double F-ft2-hr/Btu >= 0 No See [#]_ Carpet R-value
529
524
  =========================================== ======== ============ =========== ========= ======== ====================================================
530
525
 
@@ -548,23 +543,25 @@ HPXML Windows
548
543
 
549
544
  Each window or glass door area is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Windows/Window``.
550
545
 
551
- ============================================ ======== ============ =========== ======== ========= ==============================================
546
+ ============================================ ======== ============ =========== ======== ========= =============================================================
552
547
  Element Type Units Constraints Required Default Notes
553
- ============================================ ======== ============ =========== ======== ========= ==============================================
548
+ ============================================ ======== ============ =========== ======== ========= =============================================================
554
549
  ``SystemIdentifier`` id Yes Unique identifier
555
550
  ``Area`` double ft2 > 0 Yes Total area
556
- ``Azimuth`` integer deg 0-359 Yes Azimuth (clockwise from North)
551
+ ``Azimuth`` integer deg 0 - 359 Yes Azimuth (clockwise from North)
557
552
  ``UFactor`` double Btu/F-ft2-hr > 0 Yes Full-assembly NFRC U-factor
558
- ``SHGC`` double 0-1 Yes Full-assembly NFRC solar heat gain coefficient
559
- ``InteriorShading/SummerShadingCoefficient`` double frac 0-1 No 0.70 [#]_ Summer interior shading coefficient
560
- ``InteriorShading/WinterShadingCoefficient`` double frac 0-1 No 0.85 [#]_ Winter interior shading coefficient
561
- ``Overhangs`` element 0-1 No <none> Presence of overhangs (including roof eaves)
562
- ``FractionOperable`` double frac 0-1 No 0.67 Operable fraction [#]_
553
+ ``SHGC`` double 0 - 1 Yes Full-assembly NFRC solar heat gain coefficient
554
+ ``ExteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior summer shading coefficient (1=transparent, 0=opaque)
555
+ ``ExteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior winter shading coefficient (1=transparent, 0=opaque)
556
+ ``InteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 0.70 [#]_ Interior summer shading coefficient (1=transparent, 0=opaque)
557
+ ``InteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 0.85 [#]_ Interior winter shading coefficient (1=transparent, 0=opaque)
558
+ ``Overhangs`` element 0 - 1 No <none> Presence of overhangs (including roof eaves)
559
+ ``FractionOperable`` double frac 0 - 1 No 0.67 Operable fraction [#]_
563
560
  ``AttachedToWall`` idref See [#]_ Yes ID of attached wall
564
- ============================================ ======== ============ =========== ======== ========= ==============================================
561
+ ============================================ ======== ============ =========== ======== ========= =============================================================
565
562
 
566
- .. [#] SummerShadingCoefficient default value indicates 30% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
567
- .. [#] WinterShadingCoefficient default value indicates 15% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
563
+ .. [#] InteriorShading/SummerShadingCoefficient default value indicates 30% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
564
+ .. [#] InteriorShading/WinterShadingCoefficient default value indicates 15% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
568
565
  .. [#] FractionOperable reflects whether the windows are operable (can be opened), not how they are used by the occupants.
569
566
  If a ``Window`` represents a single window, the value should be 0 or 1.
570
567
  If a ``Window`` represents multiple windows (e.g., 4), the value should be between 0 and 1 (e.g., 0, 0.25, 0.5, 0.75, or 1).
@@ -573,13 +570,13 @@ Each window or glass door area is entered as an ``/HPXML/Building/BuildingDetail
573
570
 
574
571
  If overhangs are specified, additional information is entered in ``Overhangs``.
575
572
 
576
- ============================ ======== ====== =========== ======== ======= ========================================================
577
- Element Type Units Constraints Required Default Notes
578
- ============================ ======== ====== =========== ======== ======= ========================================================
579
- ``Depth`` double inches > 0 Yes Depth of overhang
580
- ``DistanceToTopOfWindow`` double ft >= 0 Yes Vertical distance from overhang to top of window
581
- ``DistanceToBottomOfWindow`` double ft >= 0 Yes Vertical distance from overhang to bottom of window [#]_
582
- ============================ ======== ====== =========== ======== ======= ========================================================
573
+ ============================ ======== ====== ======================= ======== ======= ========================================================
574
+ Element Type Units Constraints Required Default Notes
575
+ ============================ ======== ====== ======================= ======== ======= ========================================================
576
+ ``Depth`` double inches >= 0 Yes Depth of overhang
577
+ ``DistanceToTopOfWindow`` double ft >= 0 Yes Vertical distance from overhang to top of window
578
+ ``DistanceToBottomOfWindow`` double ft > DistanceToTopOfWindow Yes Vertical distance from overhang to bottom of window [#]_
579
+ ============================ ======== ====== ======================= ======== ======= ========================================================
583
580
 
584
581
  .. [#] The difference between DistanceToBottomOfWindow and DistanceToTopOfWindow defines the height of the window.
585
582
 
@@ -588,21 +585,21 @@ HPXML Skylights
588
585
 
589
586
  Each skylight is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Skylights/Skylight``.
590
587
 
591
- ============================================ ======== ============ =========== ======== ========= ==============================================
592
- Element Type Units Constraints Required Default Notes
593
- ============================================ ======== ============ =========== ======== ========= ==============================================
594
- ``SystemIdentifier`` id Yes Unique identifier
595
- ``Area`` double ft2 > 0 Yes Total area
596
- ``Azimuth`` integer deg 0-359 Yes Azimuth (clockwise from North)
597
- ``UFactor`` double Btu/F-ft2-hr > 0 Yes Full-assembly NFRC U-factor
598
- ``SHGC`` double 0-1 Yes Full-assembly NFRC solar heat gain coefficient
599
- ``InteriorShading/SummerShadingCoefficient`` double frac 0-1 No 1.0 [#]_ Summer interior shading coefficient
600
- ``InteriorShading/WinterShadingCoefficient`` double frac 0-1 No 1.0 [#]_ Winter interior shading coefficient
601
- ``AttachedToRoof`` idref See [#]_ Yes ID of attached roof
602
- ============================================ ======== ============ =========== ======== ========= ==============================================
603
-
604
- .. [#] SummerShadingCoefficient default value indicates 0% reduction in solar heat gain.
605
- .. [#] WinterShadingCoefficient default value indicates 0% reduction in solar heat gain.
588
+ ============================================ ======== ============ =========== ======== ========== =============================================================
589
+ Element Type Units Constraints Required Default Notes
590
+ ============================================ ======== ============ =========== ======== ========== =============================================================
591
+ ``SystemIdentifier`` id Yes Unique identifier
592
+ ``Area`` double ft2 > 0 Yes Total area
593
+ ``Azimuth`` integer deg 0 - 359 Yes Azimuth (clockwise from North)
594
+ ``UFactor`` double Btu/F-ft2-hr > 0 Yes Full-assembly NFRC U-factor
595
+ ``SHGC`` double 0 - 1 Yes Full-assembly NFRC solar heat gain coefficient
596
+ ``ExteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior summer shading coefficient (1=transparent, 0=opaque)
597
+ ``ExteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior winter shading coefficient (1=transparent, 0=opaque)
598
+ ``InteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Interior summer shading coefficient (1=transparent, 0=opaque)
599
+ ``InteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 1.00 Interior winter shading coefficient (1=transparent, 0=opaque)
600
+ ``AttachedToRoof`` idref See [#]_ Yes ID of attached roof
601
+ ============================================ ======== ============ =========== ======== ========== =============================================================
602
+
606
603
  .. [#] AttachedToRoof must reference a ``Roof``.
607
604
 
608
605
  HPXML Doors
@@ -616,7 +613,7 @@ Each opaque door is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Do
616
613
  ``SystemIdentifier`` id Yes Unique identifier
617
614
  ``AttachedToWall`` idref See [#]_ Yes ID of attached wall
618
615
  ``Area`` double ft2 > 0 Yes Total area
619
- ``Azimuth`` integer deg 0-359 Yes Azimuth (clockwise from North)
616
+ ``Azimuth`` integer deg 0 - 359 Yes Azimuth (clockwise from North)
620
617
  ``RValue`` double F-ft2-hr/Btu > 0 Yes R-value
621
618
  ============================================ ======== ============ =========== ======== ========= ==============================
622
619
 
@@ -632,23 +629,22 @@ The dwelling unit's systems are entered in ``/HPXML/Building/BuildingDetails/Sys
632
629
  HPXML Heating Systems
633
630
  *********************
634
631
 
635
- Each heating system (other than heat pumps) is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``.
632
+ Each heating system (other than a heat pump) is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``.
636
633
 
637
634
  ================================= ======== ====== =========== ======== ========= ===============================
638
635
  Element Type Units Constraints Required Default Notes
639
636
  ================================= ======== ====== =========== ======== ========= ===============================
640
637
  ``SystemIdentifier`` id Yes Unique identifier
641
638
  ``HeatingSystemType`` element 1 [#]_ Yes Type of heating system
642
- ``FractionHeatLoadServed`` double frac 0-1 [#]_ Yes Fraction of heating load served
643
639
  ``HeatingSystemFuel`` string See [#]_ Yes Fuel type
644
640
  ``HeatingCapacity`` double Btu/hr >= 0 No autosized Input heating capacity
641
+ ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
645
642
  ================================= ======== ====== =========== ======== ========= ===============================
646
643
 
647
644
  .. [#] HeatingSystemType child element choices are ``ElectricResistance``, ``Furnace``, ``WallFurnace``, ``FloorFurnace``, ``Boiler``, ``Stove``, ``PortableHeater``, ``FixedHeater``, or ``Fireplace``.
648
- .. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1.
649
- For example, the dwelling unit could have a boiler heating system and a heat pump with values of 0.4 (40%) and 0.6 (60%), respectively.
650
645
  .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets".
651
646
  For ``ElectricResistance``, "electricity" is required.
647
+ .. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1.
652
648
 
653
649
  Electric Resistance
654
650
  ~~~~~~~~~~~~~~~~~~~
@@ -658,7 +654,7 @@ If electric resistance heating is specified, additional information is entered i
658
654
  ================================================== ====== ===== =========== ======== ======= ==========
659
655
  Element Type Units Constraints Required Default Notes
660
656
  ================================================== ====== ===== =========== ======== ======= ==========
661
- ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0-1 Yes Efficiency
657
+ ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency
662
658
  ================================================== ====== ===== =========== ======== ======= ==========
663
659
 
664
660
  Furnace
@@ -666,16 +662,20 @@ Furnace
666
662
 
667
663
  If a furnace is specified, additional information is entered in ``HeatingSystem``.
668
664
 
669
- =============================================== ====== ===== =========== ======== ========= ==================================
665
+ =============================================== ====== ===== =========== ======== ========= ================================================
670
666
  Element Type Units Constraints Required Default Notes
671
- =============================================== ====== ===== =========== ======== ========= ==================================
667
+ =============================================== ====== ===== =========== ======== ========= ================================================
672
668
  ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
673
- ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0-1 Yes Rated efficiency
674
- ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency
675
- =============================================== ====== ===== =========== ======== ========= ==================================
669
+ ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency
670
+ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Fan power [#]_
671
+ ``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_
672
+ =============================================== ====== ===== =========== ======== ========= ================================================
676
673
 
677
- .. [#] HVACDistribution type must be AirDistribution or DSE.
678
- .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.5 W/cfm if AFUE <= 0.9, else 0.375 W/cfm.
674
+ .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity" or "gravity") or DSE.
675
+ .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0 W/cfm if gravity distribution system, else 0.5 W/cfm if AFUE <= 0.9, else 0.375 W/cfm.
676
+ .. [#] If there is a cooling system attached to the DistributionSystem, the heating and cooling systems cannot have different values for FanPowerWattsPerCFM.
677
+ .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
678
+ See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
679
679
 
680
680
  Wall/Floor Furnace
681
681
  ~~~~~~~~~~~~~~~~~~
@@ -685,10 +685,12 @@ If a wall furnace or floor furnace is specified, additional information is enter
685
685
  =============================================== ====== ===== =========== ======== ======= ===================
686
686
  Element Type Units Constraints Required Default Notes
687
687
  =============================================== ====== ===== =========== ======== ======= ===================
688
- ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0-1 Yes Rated efficiency
689
- ``extension/FanPowerWatts`` double W >= 0 No 0 Installed fan power
688
+ ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency
689
+ ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power
690
690
  =============================================== ====== ===== =========== ======== ======= ===================
691
691
 
692
+ .. _hvac_heating_boiler:
693
+
692
694
  Boiler
693
695
  ~~~~~~
694
696
 
@@ -699,28 +701,43 @@ If a boiler is specified, additional information is entered in ``HeatingSystem``
699
701
  ========================================================================== ======== ====== =========== ======== ======== =========================================
700
702
  ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units
701
703
  ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
702
- ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0-1 Yes Rated efficiency
703
- ``ElectricAuxiliaryEnergy`` double kWh/yr >= 0 No [#]_ See [#]_ Electric auxiliary energy
704
- ``extension/WaterLoopHeatPump/AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 See [#]_ COP of the attached water loop heat pump
704
+ ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency
705
705
  ========================================================================== ======== ====== =========== ======== ======== =========================================
706
706
 
707
- .. [#] HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", or "radiant ceiling") or DSE for in-unit boilers, and HydronicDistribution (type: "radiator", "baseboard", "radiant floor", or "radiant ceiling") or HydronicAndAirDistribution (type: "fan coil" or "water loop heat pump") for shared boilers.
708
- .. [#] | For shared boilers, ElectricAuxiliaryEnergy can alternatively be calculated as follows per `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_:
709
- | EAE = (SP / N_dweq + aux_in) * HLH
710
- | where
711
- | SP = Shared pump power [W] provided as ``extension/SharedLoopWatts``,
712
- | N_dweq = Number of units served by the shared system provided as ``NumberofUnitsServed``,
713
- | aux_in = In-unit fan coil power [W] provided as ``extension/FanCoilWatts``,
714
- | HLH = Annual heating load hours.
715
- .. [#] If ElectricAuxiliaryEnergy not provided (nor calculated for shared boilers), defaults as follows per `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
707
+ .. [#] For in-unit boilers, HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop") or DSE.
708
+ For shared boilers, HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop") or AirDistribution (type: "fan coil").
709
+ If the shared boiler has "water loop" distribution, a :ref:`hvac_heatpump_wlhp` must also be specified.
710
+
711
+ If an in-unit boiler if specified, additional information is entered in ``HeatingSystem``.
712
+
713
+ =========================== ======== ====== =========== ======== ======== =========================
714
+ Element Type Units Constraints Required Default Notes
715
+ =========================== ======== ====== =========== ======== ======== =========================
716
+ ``ElectricAuxiliaryEnergy`` double kWh/yr >= 0 No See [#]_ Electric auxiliary energy
717
+ =========================== ======== ====== =========== ======== ======== =========================
718
+
719
+ .. [#] If ElectricAuxiliaryEnergy not provided, defaults as follows:
720
+
721
+ - **Oil boiler**: 330 kWh/yr
722
+ - **Gas boiler**: 170 kWh/yr
716
723
 
717
- - **Oil boiler**: 330
718
- - **Gas boiler (in-unit)**: 170
719
- - **Gas boiler (shared, w/ baseboard)**: 220
720
- - **Gas boiler (shared, w/ water loop heat pump)**: 265
721
- - **Gas boiler (shared, w/ fan coil)**: 438
724
+ If instead a shared boiler is specified, additional information is entered in ``HeatingSystem``.
722
725
 
723
- .. [#] Water loop heat pump (WLHP) heating COP only required if a shared boiler connected to a water loop heat pump.
726
+ ============================================================ ======== =========== =========== ======== ======== =========================
727
+ Element Type Units Constraints Required Default Notes
728
+ ============================================================ ======== =========== =========== ======== ======== =========================
729
+ ``NumberofUnitsServed`` integer > 1 Yes Number of dwelling units served
730
+ ``ElectricAuxiliaryEnergy`` or ``extension/SharedLoopWatts`` double kWh/yr or W >= 0 No See [#]_ Electric auxiliary energy or shared loop power
731
+ ``ElectricAuxiliaryEnergy`` or ``extension/FanCoilWatts`` double kWh/yr or W >= 0 No [#]_ Electric auxiliary energy or fan coil power
732
+ ============================================================ ======== =========== =========== ======== ======== =========================
733
+
734
+ .. [#] If ElectricAuxiliaryEnergy nor SharedLoopWatts provided, defaults as follows:
735
+
736
+ - **Shared boiler w/ baseboard**: 220 kWh/yr
737
+ - **Shared boiler w/ water loop heat pump**: 265 kWh/yr
738
+ - **Shared boiler w/ fan coil**: 438 kWh/yr
739
+
740
+ .. [#] FanCoilWatts only used if boiler connected to fan coil and SharedLoopWatts provided.
724
741
 
725
742
  Stove
726
743
  ~~~~~
@@ -730,8 +747,8 @@ If a stove is specified, additional information is entered in ``HeatingSystem``.
730
747
  ================================================== ====== ===== =========== ======== ========= ===================
731
748
  Element Type Units Constraints Required Default Notes
732
749
  ================================================== ====== ===== =========== ======== ========= ===================
733
- ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0-1 Yes Efficiency
734
- ``extension/FanPowerWatts`` double W >= 0 No 40 Installed fan power
750
+ ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency
751
+ ``extension/FanPowerWatts`` double W >= 0 No 40 Fan power
735
752
  ================================================== ====== ===== =========== ======== ========= ===================
736
753
 
737
754
  Portable/Fixed Heater
@@ -742,8 +759,8 @@ If a portable heater or fixed heater is specified, additional information is ent
742
759
  ================================================== ====== ===== =========== ======== ========= ===================
743
760
  Element Type Units Constraints Required Default Notes
744
761
  ================================================== ====== ===== =========== ======== ========= ===================
745
- ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0-1 Yes Efficiency
746
- ``extension/FanPowerWatts`` double W >= 0 No 0 Installed fan power
762
+ ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency
763
+ ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power
747
764
  ================================================== ====== ===== =========== ======== ========= ===================
748
765
 
749
766
  Fireplace
@@ -754,8 +771,8 @@ If a fireplace is specified, additional information is entered in ``HeatingSyste
754
771
  ================================================== ====== ===== =========== ======== ========= ===================
755
772
  Element Type Units Constraints Required Default Notes
756
773
  ================================================== ====== ===== =========== ======== ========= ===================
757
- ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0-1 Yes Efficiency
758
- ``extension/FanPowerWatts`` double W >= 0 No 0 Installed fan power
774
+ ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency
775
+ ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power
759
776
  ================================================== ====== ===== =========== ======== ========= ===================
760
777
 
761
778
  .. _hvac_cooling:
@@ -763,7 +780,7 @@ If a fireplace is specified, additional information is entered in ``HeatingSyste
763
780
  HPXML Cooling Systems
764
781
  *********************
765
782
 
766
- Each cooling system (other than heat pumps) is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem``.
783
+ Each cooling system (other than a heat pump) is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem``.
767
784
 
768
785
  ========================== ======== ====== =========== ======== ======= ===============================
769
786
  Element Type Units Constraints Required Default Notes
@@ -771,34 +788,40 @@ Each cooling system (other than heat pumps) is entered as an ``/HPXML/Building/B
771
788
  ``SystemIdentifier`` id Yes Unique identifier
772
789
  ``CoolingSystemType`` string See [#]_ Yes Type of cooling system
773
790
  ``CoolingSystemFuel`` string See [#]_ Yes Fuel type
774
- ``FractionCoolLoadServed`` double frac 0-1 [#]_ Yes Fraction of cooling load served
791
+ ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
775
792
  ========================== ======== ====== =========== ======== ======= ===============================
776
793
 
777
794
  .. [#] CoolingSystemType choices are "central air conditioner", "room air conditioner", "evaporative cooler", "mini-split", "chiller", or "cooling tower".
778
795
  .. [#] CoolingSystemFuel only choice is "electricity".
779
796
  .. [#] The sum of all ``FractionCoolLoadServed`` (across both CoolingSystems and HeatPumps) must be less than or equal to 1.
780
- For example, the dwelling unit could have two room air conditioners with values of 0.1 (10%) and 0.2 (20%), respectively, with the rest of the home (70%) uncooled.
781
797
 
782
798
  Central Air Conditioner
783
799
  ~~~~~~~~~~~~~~~~~~~~~~~
784
800
 
785
801
  If a central air conditioner is specified, additional information is entered in ``CoolingSystem``.
786
802
 
787
- =============================================== ======== ====== =========== ======== ========= ==================================
803
+ =============================================== ======== ====== =========== ======== ========= ================================================
788
804
  Element Type Units Constraints Required Default Notes
789
- =============================================== ======== ====== =========== ======== ========= ==================================
805
+ =============================================== ======== ====== =========== ======== ========= ================================================
790
806
  ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
791
807
  ``AnnualCoolingEfficiency[Units="SEER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency
792
808
  ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
793
- ``SensibleHeatFraction`` double frac 0-1 No Sensible heat fraction
809
+ ``SensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction
794
810
  ``CompressorType`` string See [#]_ No See [#]_ Type of compressor
795
- ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency
796
- =============================================== ======== ====== =========== ======== ========= ==================================
811
+ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Fan power [#]_
812
+ ``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_
813
+ ``extension/ChargeDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed charges [#]_
814
+ =============================================== ======== ====== =========== ======== ========= ================================================
797
815
 
798
- .. [#] HVACDistribution type must be AirDistribution or DSE.
816
+ .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE.
799
817
  .. [#] CompressorType choices are "single stage", "two stage", or "variable speed".
800
818
  .. [#] If CompressorType not provided, defaults to "single stage" if SEER <= 15, else "two stage" if SEER <= 21, else "variable speed".
801
819
  .. [#] If FanPowerWattsPerCFM not provided, defaults to using attached furnace W/cfm if available, else 0.5 W/cfm if SEER <= 13.5, else 0.375 W/cfm.
820
+ .. [#] If there is a heating system attached to the DistributionSystem, the heating and cooling systems cannot have different values for FanPowerWattsPerCFM.
821
+ .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
822
+ See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
823
+ .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect.
824
+ See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
802
825
 
803
826
  Room Air Conditioner
804
827
  ~~~~~~~~~~~~~~~~~~~~
@@ -810,7 +833,7 @@ If a room air conditioner is specified, additional information is entered in ``C
810
833
  ============================================== ======== ====== =========== ======== ========= ======================
811
834
  ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency
812
835
  ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
813
- ``SensibleHeatFraction`` double frac 0-1 No Sensible heat fraction
836
+ ``SensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction
814
837
  ============================================== ======== ====== =========== ======== ========= ======================
815
838
 
816
839
  Evaporative Cooler
@@ -822,28 +845,43 @@ If an evaporative cooler is specified, additional information is entered in ``Co
822
845
  Element Type Units Constraints Required Default Notes
823
846
  ================================= ======== ====== =========== ======== ========= ==================================
824
847
  ``DistributionSystem`` idref See [#]_ No ID of attached distribution system
825
- ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency
848
+ ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
826
849
  ================================= ======== ====== =========== ======== ========= ==================================
827
850
 
828
- .. [#] HVACDistribution type must be AirDistribution or DSE.
829
- .. [#] If FanPowerWattsPerCFM not provided, defaults to MIN(2.79 * cfm^-0.29, 0.6) W/cfm.
851
+ .. [#] If provided, HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE.
830
852
 
831
853
  Mini-Split
832
854
  ~~~~~~~~~~
833
855
 
834
856
  If a mini-split is specified, additional information is entered in ``CoolingSystem``.
835
857
 
836
- ================================= ======== ====== =========== ======== ========= ==================================
858
+ =============================================== ======== ====== =========== ======== ========= ===============================================
859
+ Element Type Units Constraints Required Default Notes
860
+ =============================================== ======== ====== =========== ======== ========= ===============================================
861
+ ``DistributionSystem`` idref See [#]_ No ID of attached distribution system
862
+ ``AnnualCoolingEfficiency[Units="SEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency
863
+ ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
864
+ ``SensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction
865
+ ``extension/ChargeDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed charges [#]_
866
+ =============================================== ======== ====== =========== ======== ========= ===============================================
867
+
868
+ .. [#] If provided, HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE.
869
+ .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect.
870
+ See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
871
+
872
+ If a ducted mini-split is specified (i.e., a ``DistributionSystem`` has been entered), additional information is entered in ``CoolingSystem``.
873
+
874
+ ================================= ======== ====== =========== ======== ========= ===============================================
837
875
  Element Type Units Constraints Required Default Notes
838
- ================================= ======== ====== =========== ======== ========= ==================================
839
- ``DistributionSystem`` idref See [#]_ No ID of attached distribution system
840
- ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
841
- ``SensibleHeatFraction`` double frac 0-1 No Sensible heat fraction
842
- ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency
843
- ================================= ======== ====== =========== ======== ========= ==================================
876
+ ================================= ======== ====== =========== ======== ========= ===============================================
877
+ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No 0.18 Fan power
878
+ ``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_
879
+ ================================= ======== ====== =========== ======== ========= ===============================================
880
+
881
+ .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
882
+ See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
844
883
 
845
- .. [#] HVACDistribution type must be AirDistribution or DSE.
846
- .. [#] If FanPowerWattsPerCFM not provided, defaults to 0.07 W/cfm if ductless, else 0.18 W/cfm.
884
+ .. _hvac_cooling_chiller:
847
885
 
848
886
  Chiller
849
887
  ~~~~~~~
@@ -860,23 +898,22 @@ If a chiller is specified, additional information is entered in ``CoolingSystem`
860
898
  ``AnnualCoolingEfficiency[Units="kW/ton"]/Value`` double kW/ton > 0 Yes Rated efficiency
861
899
  ``extension/SharedLoopWatts`` double W >= 0 Yes Pumping and fan power serving the system
862
900
  ``extension/FanCoilWatts`` double W >= 0 See [#]_ Fan coil power
863
- ``extension/WaterLoopHeatPump/CoolingCapacity`` double Btu/hr > 0 See [#]_ Water loop heat pump cooling capacity
864
- ``extension/WaterLoopHeatPump/AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 See [#]_ Water loop heat pump efficiency
865
901
  ========================================================================== ======== ====== =========== ======== ========= =========================================
866
902
 
867
- .. [#] HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", or "radiant ceiling") or HydronicAndAirDistribution (type: "fan coil" or "water loop heat pump").
868
- .. [#] FanCoilWatts only required if chiller connected to a fan coil.
869
- .. [#] WLHP CoolingCapacity only required if chiller connected to a water loop heat pump.
870
- .. [#] WLHP Cooling EER only required if chiller connected to a water loop heat pump.
871
-
872
- .. note::
903
+ .. [#] HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop") or AirDistribution (type: "fan coil").
904
+ If the chiller has "water loop" distribution, a :ref:`hvac_heatpump_wlhp` must also be specified.
905
+ .. [#] FanCoilWatts only required if chiller connected to fan coil.
873
906
 
874
- Chillers are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
907
+ .. note::
875
908
 
876
- Cooling Tower w/ WLHP
877
- ~~~~~~~~~~~~~~~~~~~~~
909
+ Chillers are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
878
910
 
879
- If a cooling tower w/ water loop heat pump (WLHP) is specified, additional information is entered in ``CoolingSystem``.
911
+ .. _hvac_cooling_tower:
912
+
913
+ Cooling Tower
914
+ ~~~~~~~~~~~~~
915
+
916
+ If a cooling tower is specified, additional information is entered in ``CoolingSystem``.
880
917
 
881
918
  ========================================================================== ======== ====== =========== ======== ========= =========================================
882
919
  Element Type Units Constraints Required Default Notes
@@ -885,15 +922,14 @@ If a cooling tower w/ water loop heat pump (WLHP) is specified, additional infor
885
922
  ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
886
923
  ``NumberofUnitsServed`` integer > 1 Yes Number of dwelling units served
887
924
  ``extension/SharedLoopWatts`` double W >= 0 Yes Pumping and fan power serving the system
888
- ``extension/WaterLoopHeatPump/CoolingCapacity`` double Btu/hr > 0 Yes Water loop heat pump cooling capacity
889
- ``extension/WaterLoopHeatPump/AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 Yes Water loop heat pump efficiency
890
925
  ========================================================================== ======== ====== =========== ======== ========= =========================================
891
926
 
892
- .. [#] HVACDistribution type must be HydronicAndAirDistribution (type: "water loop heat pump").
893
-
894
- .. note::
927
+ .. [#] HVACDistribution type must be HydronicDistribution (type: "water loop").
928
+ A :ref:`hvac_heatpump_wlhp` must also be specified.
895
929
 
896
- Cooling towers w/ WLHPs are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
930
+ .. note::
931
+
932
+ Cooling towers w/ water loop heat pumps are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
897
933
 
898
934
  .. _hvac_heatpump:
899
935
 
@@ -908,28 +944,19 @@ Each heat pump is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/H
908
944
  ``SystemIdentifier`` id Yes Unique identifier
909
945
  ``HeatPumpType`` string See [#]_ Yes Type of heat pump
910
946
  ``HeatPumpFuel`` string See [#]_ Yes Fuel type
911
- ``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating capacity (excluding any backup heating)
912
- ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
913
- ``CoolingSensibleHeatFraction`` double frac 0-1 No Sensible heat fraction
914
947
  ``BackupSystemFuel`` string See [#]_ No Fuel type of backup heating, if present
915
- ``FractionHeatLoadServed`` double frac 0-1 [#]_ Yes Fraction of heating load served
916
- ``FractionCoolLoadServed`` double frac 0-1 [#]_ Yes Fraction of cooling load served
917
948
  ================================= ======== ====== =========== ======== ========= ===============================================
918
949
 
919
- .. [#] HeatPumpType choices are "air-to-air", "mini-split", or "ground-to-air".
950
+ .. [#] HeatPumpType choices are "air-to-air", "mini-split", "ground-to-air", or "water-loop-to-air".
920
951
  .. [#] HeatPumpFuel only choice is "electricity".
921
952
  .. [#] BackupSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets".
922
- .. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1.
923
- For example, the dwelling unit could have a heat pump and a boiler heating system with values of 0.4 (40%) and 0.6 (60%), respectively.
924
- .. [#] The sum of all ``FractionCoolLoadServed`` (across both CoolingSystems and HeatPumps) must be less than or equal to 1.
925
- For example, the dwelling unit could have two mini-split heat pumps with values of 0.1 (10%) and 0.2 (20%), respectively, with the rest of the home (70%) uncooled.
926
953
 
927
954
  If a backup system fuel is provided, additional information is entered in ``HeatPump``.
928
955
 
929
956
  ======================================================================== ======== ====== =========== ======== ========= ==========================================
930
957
  Element Type Units Constraints Required Default Notes
931
958
  ======================================================================== ======== ====== =========== ======== ========= ==========================================
932
- ``BackupAnnualHeatingEfficiency[Units="Percent" or Units="AFUE"]/Value`` double frac 0-1 Yes Backup heating efficiency
959
+ ``BackupAnnualHeatingEfficiency[Units="Percent" or Units="AFUE"]/Value`` double frac 0 - 1 Yes Backup heating efficiency
933
960
  ``BackupHeatingCapacity`` double Btu/hr >= 0 No autosized Backup heating capacity
934
961
  ``BackupHeatingSwitchoverTemperature`` double F No <none> Backup heating switchover temperature [#]_
935
962
  ======================================================================== ======== ====== =========== ======== ========= ==========================================
@@ -937,31 +964,39 @@ If a backup system fuel is provided, additional information is entered in ``Heat
937
964
  .. [#] Provide BackupHeatingSwitchoverTemperature for, e.g., a dual-fuel heat pump, in which there is a discrete outdoor temperature when the heat pump stops operating and the backup heating system starts operating.
938
965
  If not provided, the backup heating system will operate as needed when the heat pump has insufficient capacity.
939
966
 
940
- .. note::
941
-
942
- Water loop heat pumps in multifamily buildings should not be entered as a HeatPump.
943
- Rather, enter them as a :ref:`hvac_heating` (shared boiler) and/or :ref:`hvac_cooling` (shared chiller or cooling tower).
944
-
945
967
  Air-to-Air Heat Pump
946
968
  ~~~~~~~~~~~~~~~~~~~~
947
969
 
948
970
  If an air-to-air heat pump is specified, additional information is entered in ``HeatPump``.
949
971
 
950
- =============================================== ======== ====== =========== ======== ========= =====================================
972
+ =============================================== ======== ====== =========== ======== ========= ================================================
951
973
  Element Type Units Constraints Required Default Notes
952
- =============================================== ======== ====== =========== ======== ========= =====================================
974
+ =============================================== ======== ====== =========== ======== ========= ================================================
953
975
  ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
954
976
  ``CompressorType`` string See [#]_ No See [#]_ Type of compressor
977
+ ``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating capacity (excluding any backup heating)
978
+ ``HeatingCapacity17F`` double Btu/hr >= 0 No Heating capacity at 17F, if available
979
+ ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
980
+ ``CoolingSensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction
981
+ ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
982
+ ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
955
983
  ``AnnualCoolingEfficiency[Units="SEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency
956
984
  ``AnnualHeatingEfficiency[Units="HSPF"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency
957
- ``HeatingCapacity17F`` double Btu/hr >= 0 No Heating capacity at 17F, if available
958
- ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency
959
- =============================================== ======== ====== =========== ======== ========= =====================================
985
+ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Fan power
986
+ ``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_
987
+ ``extension/ChargeDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed charges [#]_
988
+ =============================================== ======== ====== =========== ======== ========= ================================================
960
989
 
961
- .. [#] HVACDistribution type must be AirDistribution or DSE.
990
+ .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE.
962
991
  .. [#] CompressorType choices are "single stage", "two stage", or "variable speed".
963
992
  .. [#] If CompressorType not provided, defaults to "single stage" if SEER <= 15, else "two stage" if SEER <= 21, else "variable speed".
993
+ .. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1.
994
+ .. [#] The sum of all ``FractionCoolLoadServed`` (across both CoolingSystems and HeatPumps) must be less than or equal to 1.
964
995
  .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.5 W/cfm if HSPF <= 8.75, else 0.375 W/cfm.
996
+ .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
997
+ See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
998
+ .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect.
999
+ See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
965
1000
 
966
1001
  Mini-Split Heat Pump
967
1002
  ~~~~~~~~~~~~~~~~~~~~
@@ -972,14 +1007,34 @@ If a mini-split heat pump is specified, additional information is entered in ``H
972
1007
  Element Type Units Constraints Required Default Notes
973
1008
  =============================================== ======== ====== =========== ======== ========= ==============================================
974
1009
  ``DistributionSystem`` idref See [#]_ No ID of attached distribution system, if present
1010
+ ``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating capacity (excluding any backup heating)
1011
+ ``HeatingCapacity17F`` double Btu/hr >= 0 No Heating capacity at 17F, if available
1012
+ ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
1013
+ ``CoolingSensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction
1014
+ ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1015
+ ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
975
1016
  ``AnnualCoolingEfficiency[Units="SEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency
976
1017
  ``AnnualHeatingEfficiency[Units="HSPF"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency
977
- ``HeatingCapacity17F`` double Btu/hr >= 0 No Heating capacity at 17F, if available
978
- ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency
1018
+ ``extension/ChargeDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed charges [#]_
979
1019
  =============================================== ======== ====== =========== ======== ========= ==============================================
980
1020
 
981
- .. [#] HVACDistribution type must be AirDistribution or DSE.
982
- .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.07 W/cfm if ductless, else 0.18 W/cfm.
1021
+ .. [#] If provided, HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE.
1022
+ .. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1.
1023
+ .. [#] The sum of all ``FractionCoolLoadServed`` (across both CoolingSystems and HeatPumps) must be less than or equal to 1.
1024
+ .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect.
1025
+ See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
1026
+
1027
+ If a ducted mini-split is specified (i.e., a ``DistributionSystem`` has been entered), additional information is entered in ``HeatPump``.
1028
+
1029
+ ================================= ======== ====== =========== ======== ========= ===============================================
1030
+ Element Type Units Constraints Required Default Notes
1031
+ ================================= ======== ====== =========== ======== ========= ===============================================
1032
+ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No 0.18 Fan power
1033
+ ``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_
1034
+ ================================= ======== ====== =========== ======== ========= ===============================================
1035
+
1036
+ .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
1037
+ See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
983
1038
 
984
1039
  Ground-to-Air Heat Pump
985
1040
  ~~~~~~~~~~~~~~~~~~~~~~~
@@ -989,23 +1044,65 @@ If a ground-to-air heat pump is specified, additional information is entered in
989
1044
  =============================================== ======== ====== =========== ======== ========= ==============================================
990
1045
  Element Type Units Constraints Required Default Notes
991
1046
  =============================================== ======== ====== =========== ======== ========= ==============================================
992
- ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units [#]_
1047
+ ``IsSharedSystem`` boolean No false Whether it has a shared hydronic circulation loop [#]_
993
1048
  ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
1049
+ ``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating capacity (excluding any backup heating)
1050
+ ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
1051
+ ``CoolingSensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction
1052
+ ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1053
+ ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
994
1054
  ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency
995
1055
  ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency
996
- ``extension/PumpPowerWattsPerTon`` double W/ton >= 0 No See [#]_ Installed pump efficiency
997
- ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency
998
- ``NumberofUnitsServed`` integer > 1 See [#]_ Number of dwelling units served
1056
+ ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served
1057
+ ``extension/PumpPowerWattsPerTon`` double W/ton >= 0 No See [#]_ Pump power [#]_
999
1058
  ``extension/SharedLoopWatts`` double W >= 0 See [#]_ Shared pump power [#]_
1059
+ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Fan power
1060
+ ``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_
1061
+ ``extension/ChargeDefectRatio`` double frac 0.0 [#]_ No 0.0 Deviation between design/installed charges [#]_
1000
1062
  =============================================== ======== ====== =========== ======== ========= ==============================================
1001
1063
 
1002
1064
  .. [#] IsSharedSystem should be true if the SFA/MF building has multiple ground source heat pumps connected to a shared hydronic circulation loop.
1003
- .. [#] HVACDistribution type must be AirDistribution or DSE.
1004
- .. [#] If PumpPowerWattsPerTon not provided, defaults to 30 W/ton of cooling capacity per `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_ for a closed loop system.
1005
- .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.5 W/cfm if COP <= 8.75/3.2, else 0.375 W/cfm.
1006
- .. [#] NumberofUnitsServed only required if IsSharedSystem is true.
1065
+ .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE.
1066
+ .. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1.
1067
+ .. [#] The sum of all ``FractionCoolLoadServed`` (across both CoolingSystems and HeatPumps) must be less than or equal to 1.
1068
+ .. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1.
1069
+ .. [#] If PumpPowerWattsPerTon not provided, defaults to 30 W/ton per `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_ for a closed loop system.
1070
+ .. [#] Pump power is calculated using PumpPowerWattsPerTon and the cooling capacity in tons, unless the system only provides heating, in which case the heating capacity in tons is used instead.
1071
+ Any pump power that is shared by multiple dwelling units should be included in SharedLoopWatts, *not* PumpPowerWattsPerTon, so that shared loop pump power attributed to the dwelling unit is calculated.
1007
1072
  .. [#] SharedLoopWatts only required if IsSharedSystem is true.
1008
1073
  .. [#] Shared loop pump power attributed to the dwelling unit is calculated as SharedLoopWatts / NumberofUnitsServed.
1074
+ .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.5 W/cfm if COP <= 8.75/3.2, else 0.375 W/cfm.
1075
+ .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
1076
+ See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
1077
+ .. [#] ChargeDefectRatio currently constrained to zero for ground-to-air heat pumps due to an EnergyPlus limitation; this constraint will be relaxed in the future.
1078
+ .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect.
1079
+ See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
1080
+
1081
+ .. _hvac_heatpump_wlhp:
1082
+
1083
+ Water-Loop-to-Air Heat Pump
1084
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
1085
+
1086
+ If a water-loop-to-air heat pump is specified, additional information is entered in ``HeatPump``.
1087
+
1088
+ =============================================== ======== ====== =========== ======== ========= ==============================================
1089
+ Element Type Units Constraints Required Default Notes
1090
+ =============================================== ======== ====== =========== ======== ========= ==============================================
1091
+ ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
1092
+ ``HeatingCapacity`` double Btu/hr > 0 No autosized Heating capacity
1093
+ ``CoolingCapacity`` double Btu/hr > 0 See [#]_ Cooling capacity
1094
+ ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 See [#]_ Rated cooling efficiency
1095
+ ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 See [#]_ Rated heating efficiency
1096
+ =============================================== ======== ====== =========== ======== ========= ==============================================
1097
+
1098
+ .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE.
1099
+ .. [#] CoolingCapacity required if there is a shared chiller or cooling tower with water loop distribution.
1100
+ .. [#] AnnualCoolingEfficiency required if there is a shared chiller or cooling tower with water loop distribution.
1101
+ .. [#] AnnualHeatingEfficiency required if there is a shared boiler with water loop distribution.
1102
+
1103
+ .. note::
1104
+
1105
+ If a water loop heat pump is specified, there must be at least one shared heating system (i.e., :ref:`hvac_heating_boiler`) and/or one shared cooling system (i.e., :ref:`hvac_cooling_chiller` or :ref:`hvac_cooling_tower`) specified with water loop distribution.
1009
1106
 
1010
1107
  .. _hvac_control:
1011
1108
 
@@ -1044,7 +1141,7 @@ If there is a heating temperature setback, additional information is entered in
1044
1141
  ===================================== ======== ======== =========== ======== ========= =========================================
1045
1142
  ``SetbackTempHeatingSeason`` double F Yes Heating setback temperature
1046
1143
  ``TotalSetbackHoursperWeekHeating`` integer hrs/week > 0 Yes Hours/week of heating temperature setback
1047
- ``extension/SetbackStartHourHeating`` integer 0-23 No 23 (11pm) Daily setback start hour
1144
+ ``extension/SetbackStartHourHeating`` integer 0 - 23 No 23 (11pm) Daily setback start hour
1048
1145
  ===================================== ======== ======== =========== ======== ========= =========================================
1049
1146
 
1050
1147
  If there is a cooling temperature setup, additional information is entered in ``HVACControl``.
@@ -1054,7 +1151,7 @@ If there is a cooling temperature setup, additional information is entered in ``
1054
1151
  ===================================== ======== ======== =========== ======== ========= =========================================
1055
1152
  ``SetupTempCoolingSeason`` double F Yes Cooling setup temperature
1056
1153
  ``TotalSetupHoursperWeekCooling`` integer hrs/week > 0 Yes Hours/week of cooling temperature setup
1057
- ``extension/SetupStartHourCooling`` integer 0-23 No 9 (9am) Daily setup start hour
1154
+ ``extension/SetupStartHourCooling`` integer 0 - 23 No 9 (9am) Daily setup start hour
1058
1155
  ===================================== ======== ======== =========== ======== ========= =========================================
1059
1156
 
1060
1157
  Detailed Inputs
@@ -1084,8 +1181,8 @@ Each separate HVAC distribution system is entered as a ``/HPXML/Building/Buildin
1084
1181
  ``ConditionedFloorAreaServed`` double ft2 > 0 See [#]_ Conditioned floor area served
1085
1182
  ============================== ======= ======= =========== ======== ========= =============================
1086
1183
 
1087
- .. [#] DistributionSystemType child element choices are ``AirDistribution``, ``HydronicDistribution``, ``HydronicAndAirDistribution``, or ``Other=DSE``.
1088
- .. [#] ConditionedFloorAreaServed is required for AirDistribution and HydronicAndAir types.
1184
+ .. [#] DistributionSystemType child element choices are ``AirDistribution``, ``HydronicDistribution``, or ``Other=DSE``.
1185
+ .. [#] ConditionedFloorAreaServed required only when DistributionSystemType is AirDistribution and ``AirDistribution/Ducts`` are present.
1089
1186
 
1090
1187
  .. note::
1091
1188
 
@@ -1100,34 +1197,38 @@ Air Distribution
1100
1197
 
1101
1198
  To define an air distribution system, additional information is entered in ``HVACDistribution/DistributionSystemType/AirDistribution``.
1102
1199
 
1103
- =========================== ======= ======= =========== ======== ========= ===========================================
1104
- Element Type Units Constraints Required Default Notes
1105
- =========================== ======= ======= =========== ======== ========= ===========================================
1106
- ``DuctLeakageMeasurement`` element >= 0 No <none> Presence of supply/return duct leakage [#]_
1107
- ``Ducts`` element >= 0 No <none> Presence of supply/return ducts [#]_
1108
- ``NumberofReturnRegisters`` integer >= 0 No See [#]_ Number of return registers
1109
- =========================== ======= ======= =========== ======== ========= ===========================================
1200
+ ============================================= ======= ======= =========== ======== ========= ==========================
1201
+ Element Type Units Constraints Required Default Notes
1202
+ ============================================= ======= ======= =========== ======== ========= ==========================
1203
+ ``AirDistributionType`` string See [#]_ Yes Type of air distribution
1204
+ ``DuctLeakageMeasurement[DuctType="supply"]`` element 1 See [#]_ Supply duct leakage value
1205
+ ``DuctLeakageMeasurement[DuctType="return"]`` element 1 See [#]_ Return duct leakage value
1206
+ ``Ducts`` element >= 0 No Supply/return ducts [#]_
1207
+ ``NumberofReturnRegisters`` integer >= 0 No See [#]_ Number of return registers
1208
+ ============================================= ======= ======= =========== ======== ========= ==========================
1110
1209
 
1111
- .. [#] Provide one DuctLeakageMeasurement element for any supply ducts and one for any return ducts.
1112
- .. [#] Provide one or more Ducts elements for any supply ducts and one or more for any return ducts.
1113
- .. [#] If NumberofReturnRegisters not provided, defaults to one return register per conditioned floor per `ASHRAE Standard 152 <https://www.energy.gov/eere/buildings/downloads/ashrae-standard-152-spreadsheet>`_, rounded up to the nearest integer if needed.
1210
+ .. [#] AirDistributionType choices are "regular velocity", "gravity", or "fan coil" and are further restricted based on attached HVAC system type (e.g., only "regular velocity" or "gravity" for a furnace, only "fan coil" for a shared boiler, etc.).
1211
+ .. [#] Supply duct leakage required if AirDistributionType is "regular velocity" or "gravity" and optional if AirDistributionType is "fan coil".
1212
+ .. [#] Return duct leakage required if AirDistributionType is "regular velocity" or "gravity" and optional if AirDistributionType is "fan coil".
1213
+ .. [#] Provide a Ducts element for each supply duct and each return duct.
1214
+ .. [#] If NumberofReturnRegisters not provided and ``AirDistribution/Ducts`` are present, defaults to one return register per conditioned floor per `ASHRAE Standard 152 <https://www.energy.gov/eere/buildings/downloads/ashrae-standard-152-spreadsheet>`_, rounded up to the nearest integer if needed.
1114
1215
 
1115
- If there is supply or return duct leakage, additional information is entered in a ``DuctLeakageMeasurement``.
1216
+ Additional information is entered in each ``DuctLeakageMeasurement``.
1116
1217
 
1117
1218
  ================================ ======= ======= =========== ======== ========= =========================================================
1118
1219
  Element Type Units Constraints Required Default Notes
1119
1220
  ================================ ======= ======= =========== ======== ========= =========================================================
1120
- ``DuctType`` string See [#]_ Yes Supply or return ducts
1121
1221
  ``DuctLeakage/Units`` string See [#]_ Yes Duct leakage units
1122
- ``DuctLeakage/Value`` double >= 0 Yes Duct leakage value
1222
+ ``DuctLeakage/Value`` double >= 0 [#]_ Yes Duct leakage value [#]_
1123
1223
  ``DuctLeakage/TotalOrToOutside`` string See [#]_ Yes Type of duct leakage (outside conditioned space vs total)
1124
1224
  ================================ ======= ======= =========== ======== ========= =========================================================
1125
1225
 
1126
- .. [#] DuctType choices are "supply" or "return".
1127
1226
  .. [#] Units choices are "CFM25" or "Percent".
1227
+ .. [#] Value also must be < 1 if Units is Percent.
1228
+ .. [#] If the HVAC system has no return ducts (e.g., a ducted evaporative cooler), use zero for the Value.
1128
1229
  .. [#] TotalOrToOutside only choice is "to outside".
1129
1230
 
1130
- If there are supply or return ducts, additional information is entered in a ``Ducts``.
1231
+ Additional information is entered in each ``Ducts``.
1131
1232
 
1132
1233
  ======================== ======= ============ =========== ======== ========= ===============================
1133
1234
  Element Type Units Constraints Required Default Notes
@@ -1166,21 +1267,6 @@ To define a hydronic distribution system, additional information is entered in `
1166
1267
 
1167
1268
  .. [#] HydronicDistributionType choices are "radiator", "baseboard", "radiant floor", or "radiant ceiling".
1168
1269
 
1169
- Hydronic And Air Distribution
1170
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1171
-
1172
- To define an air and hydronic distribution system, additional information is entered in ``HVACDistribution/DistributionSystemType/HydronicAndAirDistribution``.
1173
-
1174
- ================================== ======= ======= =========== ======== ========= ============================================
1175
- Element Type Units Constraints Required Default Notes
1176
- ================================== ======= ======= =========== ======== ========= ============================================
1177
- ``HydronicAndAirDistributionType`` string See [#]_ Yes Type of hydronic and air distribution system
1178
- ================================== ======= ======= =========== ======== ========= ============================================
1179
-
1180
- .. [#] HydronicAndAirDistributionType choices are "fan coil" or "water loop heat pump".
1181
-
1182
- In addition, if the system is ducted, all of the elements from the :ref:`air_distribution` Section can be entered in this ``HydronicAndAirDistribution`` element too (e.g., ``DuctLeakageMeasurement`` and ``Ducts``).
1183
-
1184
1270
  Distribution System Efficiency (DSE)
1185
1271
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1186
1272
 
@@ -1194,8 +1280,8 @@ To define a DSE system, additional information is entered in ``HVACDistribution`
1194
1280
  ============================================= ======= ======= =========== ======== ========= ===================================================
1195
1281
  Element Type Units Constraints Required Default Notes
1196
1282
  ============================================= ======= ======= =========== ======== ========= ===================================================
1197
- ``AnnualHeatingDistributionSystemEfficiency`` double frac 0-1 Yes Seasonal distribution system efficiency for heating
1198
- ``AnnualCoolingDistributionSystemEfficiency`` double frac 0-1 Yes Seasonal distribution system efficiency for cooling
1283
+ ``AnnualHeatingDistributionSystemEfficiency`` double frac 0 - 1 Yes Seasonal distribution system efficiency for heating
1284
+ ``AnnualCoolingDistributionSystemEfficiency`` double frac 0 - 1 Yes Seasonal distribution system efficiency for cooling
1199
1285
  ============================================= ======= ======= =========== ======== ========= ===================================================
1200
1286
 
1201
1287
  DSE values can be calculated from `ASHRAE Standard 152 <https://www.energy.gov/eere/buildings/downloads/ashrae-standard-152-spreadsheet>`_.
@@ -1203,7 +1289,8 @@ To define a DSE system, additional information is entered in ``HVACDistribution`
1203
1289
  HPXML Whole Ventilation Fan
1204
1290
  ***************************
1205
1291
 
1206
- Each mechanical ventilation systems that provide ventilation to the whole dwelling unit is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``.
1292
+ Each mechanical ventilation system that provides ventilation to the whole dwelling unit is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``.
1293
+ If not entered, the simulation will not include mechanical ventilation.
1207
1294
 
1208
1295
  ======================================= ======== ======= =========== ======== ========= =========================================
1209
1296
  Element Type Units Constraints Required Default Notes
@@ -1213,7 +1300,7 @@ Each mechanical ventilation systems that provide ventilation to the whole dwelli
1213
1300
  ``IsSharedSystem`` boolean See [#]_ No false Whether it serves multiple dwelling units
1214
1301
  ``FanType`` string See [#]_ Yes Type of ventilation system
1215
1302
  ``TestedFlowRate`` or ``RatedFlowRate`` double cfm >= 0 Yes Flow rate [#]_
1216
- ``HoursInOperation`` double hrs/day 0-24 No See [#]_ Hours per day of operation
1303
+ ``HoursInOperation`` double hrs/day 0 - 24 No See [#]_ Hours per day of operation
1217
1304
  ``FanPower`` double W >= 0 Yes Fan power
1218
1305
  ======================================= ======== ======= =========== ======== ========= =========================================
1219
1306
 
@@ -1237,23 +1324,23 @@ Heat Recovery Ventilator
1237
1324
 
1238
1325
  If a heat recovery ventilator system is specified, additional information is entered in ``VentilationFan``.
1239
1326
 
1240
- ======================================================================== ====== ===== =========== ======== ======= ============================
1327
+ ======================================================================== ====== ===== =========== ======== ======= =======================================
1241
1328
  Element Type Units Constraints Required Default Notes
1242
- ======================================================================== ====== ===== =========== ======== ======= ============================
1243
- ``SensibleRecoveryEfficiency`` or ``AdjustedSensibleRecoveryEfficiency`` double frac 0-1 Yes Sensible recovery efficiency
1244
- ======================================================================== ====== ===== =========== ======== ======= ============================
1329
+ ======================================================================== ====== ===== =========== ======== ======= =======================================
1330
+ ``SensibleRecoveryEfficiency`` or ``AdjustedSensibleRecoveryEfficiency`` double frac 0 - 1 Yes (Adjusted) Sensible recovery efficiency
1331
+ ======================================================================== ====== ===== =========== ======== ======= =======================================
1245
1332
 
1246
1333
  Energy Recovery Ventilator
1247
1334
  ~~~~~~~~~~~~~~~~~~~~~~~~~~
1248
1335
 
1249
1336
  If an energy recovery ventilator system is specified, additional information is entered in ``VentilationFan``.
1250
1337
 
1251
- ======================================================================== ====== ===== =========== ======== ======= ============================
1338
+ ======================================================================== ====== ===== =========== ======== ======= =======================================
1252
1339
  Element Type Units Constraints Required Default Notes
1253
- ======================================================================== ====== ===== =========== ======== ======= ============================
1254
- ``TotalRecoveryEfficiency`` or ``AdjustedTotalRecoveryEfficiency`` double frac 0-1 Yes Total recovery efficiency
1255
- ``SensibleRecoveryEfficiency`` or ``AdjustedSensibleRecoveryEfficiency`` double frac 0-1 Yes Sensible recovery efficiency
1256
- ======================================================================== ====== ===== =========== ======== ======= ============================
1340
+ ======================================================================== ====== ===== =========== ======== ======= =======================================
1341
+ ``TotalRecoveryEfficiency`` or ``AdjustedTotalRecoveryEfficiency`` double frac 0 - 1 Yes (Adjusted) Total recovery efficiency
1342
+ ``SensibleRecoveryEfficiency`` or ``AdjustedSensibleRecoveryEfficiency`` double frac 0 - 1 Yes (Adjusted) Sensible recovery efficiency
1343
+ ======================================================================== ====== ===== =========== ======== ======= =======================================
1257
1344
 
1258
1345
  Central Fan Integrated Supply
1259
1346
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -1276,14 +1363,15 @@ If the specified system is a shared system (i.e., serving multiple dwelling unit
1276
1363
  ============================ ======= ===== =========== ======== ======= ====================================================
1277
1364
  Element Type Units Constraints Required Default Notes
1278
1365
  ============================ ======= ===== =========== ======== ======= ====================================================
1279
- ``FractionRecirculation`` double frac 0-1 Yes Fraction of supply air that is recirculated [#]_
1280
- ``extension/InUnitFlowRate`` double cfm >= 0 Yes Flow rate delivered to the dwelling unit
1281
- ``extension/PreHeating`` element 0-1 No <none> Supply air preconditioned by heating equipment? [#]_
1282
- ``extension/PreCooling`` element 0-1 No <none> Supply air preconditioned by cooling equipment? [#]_
1366
+ ``FractionRecirculation`` double frac 0 - 1 Yes Fraction of supply air that is recirculated [#]_
1367
+ ``extension/InUnitFlowRate`` double cfm >= 0 [#]_ Yes Flow rate delivered to the dwelling unit
1368
+ ``extension/PreHeating`` element 0 - 1 No <none> Supply air preconditioned by heating equipment? [#]_
1369
+ ``extension/PreCooling`` element 0 - 1 No <none> Supply air preconditioned by cooling equipment? [#]_
1283
1370
  ============================ ======= ===== =========== ======== ======= ====================================================
1284
1371
 
1285
1372
  .. [#] 1-FractionRecirculation is assumed to be the fraction of supply air that is provided from outside.
1286
1373
  The value must be 0 for exhaust only systems.
1374
+ .. [#] InUnitFlowRate must also be < TestedFlowRate (or RatedFlowRate).
1287
1375
  .. [#] PreHeating not allowed for exhaust only systems.
1288
1376
  .. [#] PreCooling not allowed for exhaust only systems.
1289
1377
 
@@ -1294,7 +1382,7 @@ If pre-heating is specified, additional information is entered in ``extension/Pr
1294
1382
  ============================================== ======= ===== =========== ======== ======= ====================================================================
1295
1383
  ``Fuel`` string See [#]_ Yes Pre-heating equipment fuel type
1296
1384
  ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Pre-heating equipment annual COP
1297
- ``FractionVentilationHeatLoadServed`` double frac 0-1 Yes Fraction of ventilation heating load served by pre-heating equipment
1385
+ ``FractionVentilationHeatLoadServed`` double frac 0 - 1 Yes Fraction of ventilation heating load served by pre-heating equipment
1298
1386
  ============================================== ======= ===== =========== ======== ======= ====================================================================
1299
1387
 
1300
1388
  .. [#] Fuel choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "electricity", "wood", or "wood pellets".
@@ -1306,7 +1394,7 @@ If pre-cooling is specified, additional information is entered in ``extension/Pr
1306
1394
  ============================================== ======= ===== =========== ======== ======= ====================================================================
1307
1395
  ``Fuel`` string See [#]_ Yes Pre-cooling equipment fuel type
1308
1396
  ``AnnualCoolingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Pre-cooling equipment annual COP
1309
- ``FractionVentilationCoolLoadServed`` double frac 0-1 Yes Fraction of ventilation cooling load served by pre-cooling equipment
1397
+ ``FractionVentilationCoolLoadServed`` double frac 0 - 1 Yes Fraction of ventilation cooling load served by pre-cooling equipment
1310
1398
  ============================================== ======= ===== =========== ======== ======= ====================================================================
1311
1399
 
1312
1400
  .. [#] Fuel only choice is "electricity".
@@ -1315,6 +1403,7 @@ HPXML Local Ventilation Fan
1315
1403
  ***************************
1316
1404
 
1317
1405
  Each kitchen range fan or bathroom fan that provides local ventilation is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``.
1406
+ If not entered, the simulation will not include kitchen/bathroom fans.
1318
1407
 
1319
1408
  =========================== ======= ======= =========== ======== ======== =============================
1320
1409
  Element Type Units Constraints Required Default Notes
@@ -1323,10 +1412,10 @@ Each kitchen range fan or bathroom fan that provides local ventilation is entere
1323
1412
  ``UsedForLocalVentilation`` boolean true Yes Must be set to true
1324
1413
  ``Quantity`` integer >= 0 No See [#]_ Number of identical fans
1325
1414
  ``RatedFlowRate`` double cfm >= 0 No See [#]_ Flow rate
1326
- ``HoursInOperation`` double hrs/day 0-24 No See [#]_ Hours per day of operation
1415
+ ``HoursInOperation`` double hrs/day 0 - 24 No See [#]_ Hours per day of operation
1327
1416
  ``FanLocation`` string See [#]_ Yes Location of the fan
1328
1417
  ``FanPower`` double W >= 0 No See [#]_ Fan power
1329
- ``extension/StartHour`` integer 0-23 No See [#]_ Daily start hour of operation
1418
+ ``extension/StartHour`` integer 0 - 23 No See [#]_ Daily start hour of operation
1330
1419
  =========================== ======= ======= =========== ======== ======== =============================
1331
1420
 
1332
1421
  .. [#] If Quantity not provided, defaults to 1 for kitchen fans and NumberofBathrooms for bath fans based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_.
@@ -1339,7 +1428,8 @@ Each kitchen range fan or bathroom fan that provides local ventilation is entere
1339
1428
  HPXML Whole House Fan
1340
1429
  *********************
1341
1430
 
1342
- Each whole house fans that provides cooling load reduction is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``.
1431
+ Each whole house fan that provides cooling load reduction is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``.
1432
+ If not entered, the simulation will not include whole house fans.
1343
1433
 
1344
1434
  ======================================= ======= ======= =========== ======== ======== ==========================
1345
1435
  Element Type Units Constraints Required Default Notes
@@ -1358,6 +1448,7 @@ HPXML Water Heating Systems
1358
1448
  ***************************
1359
1449
 
1360
1450
  Each water heater is entered as a ``/HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem``.
1451
+ If not entered, the simulation will not include water heating.
1361
1452
 
1362
1453
  ========================= ======= ======= =========== ======== ======== ================================================================
1363
1454
  Element Type Units Constraints Required Default Notes
@@ -1366,10 +1457,10 @@ Each water heater is entered as a ``/HPXML/Building/BuildingDetails/Systems/Wate
1366
1457
  ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units or shared laundry room
1367
1458
  ``WaterHeaterType`` string See [#]_ Yes Type of water heater
1368
1459
  ``Location`` string See [#]_ No See [#]_ Water heater location
1369
- ``FractionDHWLoadServed`` double frac 0-1 [#]_ Yes Fraction of hot water load served [#]_
1460
+ ``FractionDHWLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of hot water load served [#]_
1370
1461
  ``HotWaterTemperature`` double F > 0 No 125 Water heater setpoint
1371
1462
  ``UsesDesuperheater`` boolean No false Presence of desuperheater?
1372
- ``NumberofUnitsServed`` integer > 1 See [#]_ Number of dwelling units served directly or indirectly
1463
+ ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served directly or indirectly
1373
1464
  ========================= ======= ======= =========== ======== ======== ================================================================
1374
1465
 
1375
1466
  .. [#] WaterHeaterType choices are "storage water heater", "instantaneous water heater", "heat pump water heater", "space-heating boiler with storage tank", or "space-heating boiler with tankless coil".
@@ -1383,7 +1474,7 @@ Each water heater is entered as a ``/HPXML/Building/BuildingDetails/Systems/Wate
1383
1474
  .. [#] The sum of all ``FractionDHWLoadServed`` (across all WaterHeatingSystems) must equal to 1.
1384
1475
  .. [#] FractionDHWLoadServed represents only the fraction of the hot water load associated with the hot water **fixtures**.
1385
1476
  Additional hot water load from clothes washers/dishwashers will be automatically assigned to the appropriate water heater(s).
1386
- .. [#] NumberofUnitsServed only required if IsSharedSystem is true.
1477
+ .. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1.
1387
1478
 
1388
1479
  Conventional Storage
1389
1480
  ~~~~~~~~~~~~~~~~~~~~
@@ -1398,7 +1489,7 @@ If a conventional storage water heater is specified, additional information is e
1398
1489
  ``HeatingCapacity`` double Btuh > 0 No See [#]_ Heating capacity
1399
1490
  ``UniformEnergyFactor`` or ``EnergyFactor`` double frac < 1 Yes EnergyGuide label rated efficiency
1400
1491
  ``FirstHourRating`` double gal/hr > 0 See [#]_ EnergyGuide label first hour rating
1401
- ``RecoveryEfficiency`` double frac 0-1 No See [#]_ Recovery efficiency
1492
+ ``RecoveryEfficiency`` double frac 0 - 1 No See [#]_ Recovery efficiency
1402
1493
  ``WaterHeaterInsulation/Jacket/JacketRValue`` double F-ft2-hr/Btu >= 0 No 0 R-value of additional tank insulation wrap
1403
1494
  ============================================= ======= ============ =========== ======== ======== ==========================================
1404
1495
 
@@ -1409,8 +1500,8 @@ If a conventional storage water heater is specified, additional information is e
1409
1500
  .. [#] If RecoveryEfficiency not provided, defaults as follows based on a regression analysis of `AHRI certified water heaters <https://www.ahridirectory.org/NewSearch?programId=24&searchTypeId=3>`_:
1410
1501
 
1411
1502
  - **Electric**: 0.98
1412
- - **Non-electric, EnergyFactor <= 0.75**: 0.778114 * EnergyFactor + 0.276679
1413
- - **Non-electric, EnergyFactor > 0.75**: 0.252117 * EnergyFactor + 0.607997
1503
+ - **Non-electric, EnergyFactor < 0.75**: 0.252 * EnergyFactor + 0.608
1504
+ - **Non-electric, EnergyFactor >= 0.75**: 0.561 * EnergyFactor + 0.439
1414
1505
 
1415
1506
  Tankless
1416
1507
  ~~~~~~~~
@@ -1500,8 +1591,8 @@ If any water heating systems are provided, a single hot water distribution syste
1500
1591
  ``SystemIdentifier`` id Yes Unique identifier
1501
1592
  ``SystemType`` element 1 [#]_ Yes Type of in-unit distribution system serving the dwelling unit
1502
1593
  ``PipeInsulation/PipeRValue`` double F-ft2-hr/Btu >= 0 No 0.0 Pipe insulation R-value
1503
- ``DrainWaterHeatRecovery`` element 0-1 No <none> Presence of drain water heat recovery device
1504
- ``extension/SharedRecirculation`` element 0-1 [#]_ No <none> Presence of shared recirculation system serving multiple dwelling units
1594
+ ``DrainWaterHeatRecovery`` element 0 - 1 No <none> Presence of drain water heat recovery device
1595
+ ``extension/SharedRecirculation`` element 0 - 1 [#]_ No <none> Presence of shared recirculation system serving multiple dwelling units
1505
1596
  ================================= ======= ============ =========== ======== ======== =======================================================================
1506
1597
 
1507
1598
  .. [#] SystemType child element choices are ``Standard`` and ``Recirculation``.
@@ -1583,7 +1674,7 @@ If a drain water heat recovery (DWHR) device is specified, additional informatio
1583
1674
  ======================= ======= ===== =========== ======== ======== =========================================
1584
1675
  ``FacilitiesConnected`` string See [#]_ Yes Specifies which facilities are connected
1585
1676
  ``EqualFlow`` boolean Yes Specifies how the DHWR is configured [#]_
1586
- ``Efficiency`` double frac 0-1 Yes Efficiency according to CSA 55.1
1677
+ ``Efficiency`` double frac 0 - 1 Yes Efficiency according to CSA 55.1
1587
1678
  ======================= ======= ===== =========== ======== ======== =========================================
1588
1679
 
1589
1680
  .. [#] FacilitiesConnected choices are "one" or "all".
@@ -1614,6 +1705,7 @@ HPXML Solar Thermal
1614
1705
  *******************
1615
1706
 
1616
1707
  A single solar hot water system can be entered as a ``/HPXML/Building/BuildingDetails/Systems/SolarThermal/SolarThermalSystem``.
1708
+ If not entered, the simulation will not include solar hot water.
1617
1709
 
1618
1710
  ==================== ======= ===== =========== ======== ======== ============================
1619
1711
  Element Type Units Constraints Required Default Notes
@@ -1634,7 +1726,7 @@ To define a simple solar hot water system, additional information is entered in
1634
1726
  ================= ======= ===== =========== ======== ======== ======================
1635
1727
  Element Type Units Constraints Required Default Notes
1636
1728
  ================= ======= ===== =========== ======== ======== ======================
1637
- ``SolarFraction`` double frac 0-1 Yes Solar fraction [#]_
1729
+ ``SolarFraction`` double frac 0 - 1 Yes Solar fraction [#]_
1638
1730
  ``ConnectedTo`` idref See [#]_ No [#]_ <none> Connected water heater
1639
1731
  ================= ======= ===== =========== ======== ======== ======================
1640
1732
 
@@ -1655,9 +1747,9 @@ To define a detailed solar hot water system, additional information is entered i
1655
1747
  ``CollectorArea`` double ft2 > 0 Yes Area
1656
1748
  ``CollectorLoopType`` string See [#]_ Yes Loop type
1657
1749
  ``CollectorType`` string See [#]_ Yes System type
1658
- ``CollectorAzimuth`` integer deg 0-359 Yes Azimuth (clockwise from North)
1659
- ``CollectorTilt`` double deg 0-90 Yes Tilt relative to horizontal
1660
- ``CollectorRatedOpticalEfficiency`` double frac 0-1 Yes Rated optical efficiency [#]_
1750
+ ``CollectorAzimuth`` integer deg 0 - 359 Yes Azimuth (clockwise from North)
1751
+ ``CollectorTilt`` double deg 0 - 90 Yes Tilt relative to horizontal
1752
+ ``CollectorRatedOpticalEfficiency`` double frac 0 - 1 Yes Rated optical efficiency [#]_
1661
1753
  ``CollectorRatedThermalLosses`` double Btu/hr-ft2-R > 0 Yes Rated thermal losses [#]_
1662
1754
  ``StorageVolume`` double gal > 0 No See [#]_ Hot water storage volume
1663
1755
  ``ConnectedTo`` idref See [#]_ Yes Connected water heater
@@ -1674,24 +1766,25 @@ HPXML Photovoltaics
1674
1766
  *******************
1675
1767
 
1676
1768
  Each solar electric photovoltaic (PV) system is entered as a ``/HPXML/Building/BuildingDetails/Systems/Photovoltaics/PVSystem``.
1769
+ If not entered, the simulation will not include photovoltaics.
1677
1770
 
1678
1771
  Many of the inputs are adopted from the `PVWatts model <https://pvwatts.nrel.gov>`_.
1679
1772
 
1680
- ======================================================= ================= ========= ============= ======== ======== ============================================
1681
- Element Type Units Constraints Required Default Notes
1682
- ======================================================= ================= ========= ============= ======== ======== ============================================
1683
- ``SystemIdentifier`` id Yes Unique identifier
1684
- ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units
1685
- ``Location`` string See [#]_ No roof Mounting location
1686
- ``ModuleType`` string See [#]_ No standard Type of module
1687
- ``Tracking`` string See [#]_ No fixed Type of tracking
1688
- ``ArrayAzimuth`` integer deg 0-359 Yes Direction panels face (clockwise from North)
1689
- ``ArrayTilt`` double deg 0-90 Yes Tilt relative to horizontal
1690
- ``MaxPowerOutput`` double W >= 0 Yes Peak power
1691
- ``InverterEfficiency`` double frac 0-1 No 0.96 Inverter efficiency
1692
- ``SystemLossesFraction`` or ``YearModulesManufactured`` double or integer frac or # 0-1 or > 1600 No 0.14 System losses [#]_
1693
- ``extension/NumberofBedroomsServed`` integer > 1 See [#]_ Number of bedrooms served
1694
- ======================================================= ================= ========= ============= ======== ======== ============================================
1773
+ ======================================================= ================= ========= =============== ======== ======== ============================================
1774
+ Element Type Units Constraints Required Default Notes
1775
+ ======================================================= ================= ========= =============== ======== ======== ============================================
1776
+ ``SystemIdentifier`` id Yes Unique identifier
1777
+ ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units
1778
+ ``Location`` string See [#]_ No roof Mounting location
1779
+ ``ModuleType`` string See [#]_ No standard Type of module
1780
+ ``Tracking`` string See [#]_ No fixed Type of tracking
1781
+ ``ArrayAzimuth`` integer deg 0 - 359 Yes Direction panels face (clockwise from North)
1782
+ ``ArrayTilt`` double deg 0 - 90 Yes Tilt relative to horizontal
1783
+ ``MaxPowerOutput`` double W >= 0 Yes Peak power
1784
+ ``InverterEfficiency`` double frac 0 - 1 No 0.96 Inverter efficiency
1785
+ ``SystemLossesFraction`` or ``YearModulesManufactured`` double or integer frac or # 0 - 1 or > 1600 No 0.14 System losses [#]_
1786
+ ``extension/NumberofBedroomsServed`` integer > 1 See [#]_ Number of bedrooms served
1787
+ ======================================================= ================= ========= =============== ======== ======== ============================================
1695
1788
 
1696
1789
  .. [#] Location choices are "ground" or "roof" mounted.
1697
1790
  .. [#] ModuleType choices are "standard", "premium", or "thin film".
@@ -1699,13 +1792,14 @@ Many of the inputs are adopted from the `PVWatts model <https://pvwatts.nrel.gov
1699
1792
  .. [#] System losses due to soiling, shading, snow, mismatch, wiring, degradation, etc.
1700
1793
  If YearModulesManufactured provided but not SystemLossesFraction, system losses calculated as:
1701
1794
  SystemLossesFraction = 1.0 - (1.0 - 0.14) * (1.0 - (1.0 - 0.995^(CurrentYear - YearModulesManufactured))).
1702
- .. [#] NumberofBedroomsServed only required if IsSharedSystem is true.
1795
+ .. [#] NumberofBedroomsServed only required if IsSharedSystem is true, in which case it must be > NumberofBedrooms.
1703
1796
  PV generation will be apportioned to the dwelling unit using its number of bedrooms divided by the total number of bedrooms served by the PV system.
1704
1797
 
1705
1798
  HPXML Generators
1706
1799
  ****************
1707
1800
 
1708
1801
  Each generator that provides on-site power is entered as a ``/HPXML/Building/BuildingDetails/Systems/extension/Generators/Generator``.
1802
+ If not entered, the simulation will not include generators.
1709
1803
 
1710
1804
  ========================== ======= ======= =========== ======== ======= ============================================
1711
1805
  Element Type Units Constraints Required Default Notes
@@ -1714,12 +1808,13 @@ Each generator that provides on-site power is entered as a ``/HPXML/Building/Bui
1714
1808
  ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units
1715
1809
  ``FuelType`` string See [#]_ Yes Fuel type
1716
1810
  ``AnnualConsumptionkBtu`` double kBtu/yr > 0 Yes Annual fuel consumed
1717
- ``AnnualOutputkWh`` double kWh/yr > 0 Yes Annual electricity produced
1811
+ ``AnnualOutputkWh`` double kWh/yr > 0 [#]_ Yes Annual electricity produced
1718
1812
  ``NumberofBedroomsServed`` integer > 1 See [#]_ Number of bedrooms served
1719
1813
  ========================== ======= ======= =========== ======== ======= ============================================
1720
1814
 
1721
- .. [#] FuelType choices are "natural gas" or "propane".
1722
- .. [#] NumberofBedroomsServed only required if IsSharedSystem is true.
1815
+ .. [#] FuelType choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "wood", or "wood pellets".
1816
+ .. [#] AnnualOutputkWh must also be < AnnualConsumptionkBtu*3.412 (i.e., the generator must consume more energy than it produces).
1817
+ .. [#] NumberofBedroomsServed only required if IsSharedSystem is true, in which case it must be > NumberofBedrooms.
1723
1818
  Annual consumption and annual production will be apportioned to the dwelling unit using its number of bedrooms divided by the total number of bedrooms served by the generator.
1724
1819
 
1725
1820
  .. note::
@@ -1735,6 +1830,7 @@ HPXML Clothes Washer
1735
1830
  ********************
1736
1831
 
1737
1832
  A single clothes washer can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/ClothesWasher``.
1833
+ If not entered, the simulation will not include a clothes washer.
1738
1834
 
1739
1835
  ============================================================== ======= =========== =========== ======== ============ ==============================================
1740
1836
  Element Type Units Constraints Required Default Notes
@@ -1775,11 +1871,14 @@ If IntegratedModifiedEnergyFactor or ModifiedEnergyFactor is provided, a complet
1775
1871
  ``LabelUsage`` double cyc/wk > 0 Yes EnergyGuide label number of cycles
1776
1872
  ``Capacity`` double ft3 > 0 Yes Clothes dryer volume
1777
1873
  ================================ ======= ======= =========== ============ ======= ====================================
1778
-
1874
+
1875
+ Clothes washer energy use and hot water use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 Addendum A <https://www.resnet.us/wp-content/uploads/ANSI_RESNET_ICC-301-2019-Addendum-A-2019_7.16.20-1.pdf>`_.
1876
+
1779
1877
  HPXML Clothes Dryer
1780
1878
  *******************
1781
1879
 
1782
1880
  A single clothes dryer can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/ClothesDryer``.
1881
+ If not entered, the simulation will not include a clothes dryer.
1783
1882
 
1784
1883
  ============================================ ======= ====== =========== ======== ============ ==============================================
1785
1884
  Element Type Units Constraints Required Default Notes
@@ -1799,27 +1898,19 @@ A single clothes dryer can be entered as a ``/HPXML/Building/BuildingDetails/App
1799
1898
  See :ref:`hpxmllocations` for descriptions.
1800
1899
  .. [#] FuelType choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "electricity", "wood", or "wood pellets".
1801
1900
  .. [#] If neither CombinedEnergyFactor nor EnergyFactor provided, the following default values representing a standard clothes dryer from 2006 will be used:
1802
- CombinedEnergyFactor = 3.01,
1803
- ControlType = timer.
1901
+ CombinedEnergyFactor = 3.01.
1804
1902
  .. [#] If EnergyFactor (EF) provided instead of CombinedEnergyFactor (CEF), it will be converted using the following equation based on the `Interpretation on ANSI/RESNET/ICC 301-2014 Clothes Dryer CEF <https://www.resnet.us/wp-content/uploads/No.-301-2014-10-Section-4.2.2.5.2.8-Clothes-Dryer-CEF-Rating.pdf>`_:
1805
1903
  CEF = EF / 1.15.
1806
1904
  .. [#] VentedFlowRate only required if IsVented is true.
1807
1905
  .. [#] VentedFlowRate default based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_.
1808
1906
 
1809
- If the CombinedEnergyFactor or EnergyFactor is provided, a complete set of EnergyGuide label information is entered in ``ClothesDryer``.
1810
-
1811
- =============== ======= ======= =========== ======== ======= ================
1812
- Element Type Units Constraints Required Default Notes
1813
- =============== ======= ======= =========== ======== ======= ================
1814
- ``ControlType`` string See [#]_ Yes Type of controls
1815
- =============== ======= ======= =========== ======== ======= ================
1816
-
1817
- .. [#] ControlType choices are "timer" or "moisture".
1907
+ Clothes dryer energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 Addendum A <https://www.resnet.us/wp-content/uploads/ANSI_RESNET_ICC-301-2019-Addendum-A-2019_7.16.20-1.pdf>`_.
1818
1908
 
1819
1909
  HPXML Dishwasher
1820
1910
  ****************
1821
1911
 
1822
1912
  A single dishwasher can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Dishwasher``.
1913
+ If not entered, the simulation will not include a dishwasher.
1823
1914
 
1824
1915
  ============================================ ======= =========== =========== ======== ============ ==============================================
1825
1916
  Element Type Units Constraints Required Default Notes
@@ -1859,10 +1950,13 @@ If the RatedAnnualkWh or EnergyFactor is provided, a complete set of EnergyGuide
1859
1950
  ``PlaceSettingCapacity`` integer # > 0 Yes Number of place settings
1860
1951
  ======================== ======= ======= =========== ======== ======= ==================================
1861
1952
 
1953
+ Dishwasher energy use and hot water use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 Addendum A <https://www.resnet.us/wp-content/uploads/ANSI_RESNET_ICC-301-2019-Addendum-A-2019_7.16.20-1.pdf>`_.
1954
+
1862
1955
  HPXML Refrigerators
1863
1956
  *******************
1864
1957
 
1865
1958
  Each refrigerator can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Refrigerator``.
1959
+ If not entered, the simulation will not include a refrigerator.
1866
1960
 
1867
1961
  ===================================================== ======= ====== =========== ======== ======== ======================================
1868
1962
  Element Type Units Constraints Required Default Notes
@@ -1891,6 +1985,7 @@ HPXML Freezers
1891
1985
  **************
1892
1986
 
1893
1987
  Each standalone freezer can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Freezer``.
1988
+ If not entered, the simulation will not include a standalone freezer.
1894
1989
 
1895
1990
  ===================================================== ====== ====== =========== ======== ========== ======================================
1896
1991
  Element Type Units Constraints Required Default Notes
@@ -1914,25 +2009,36 @@ Each standalone freezer can be entered as a ``/HPXML/Building/BuildingDetails/Ap
1914
2009
  HPXML Dehumidifier
1915
2010
  ******************
1916
2011
 
1917
- A single dehumidifier can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Dehumidifier``.
2012
+ Each dehumidifier can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Dehumidifier``.
2013
+ If not entered, the simulation will not include a dehumidifier.
1918
2014
 
1919
2015
  ============================================== ========== ========== =========== ======== ======= ========================================
1920
2016
  Element Type Units Constraints Required Default Notes
1921
2017
  ============================================== ========== ========== =========== ======== ======= ========================================
1922
2018
  ``SystemIdentifier`` id Yes Unique identifier
1923
2019
  ``Type`` string See [#]_ Yes Type of dehumidifier
2020
+ ``Location`` string See [#]_ Yes Location of dehumidifier
1924
2021
  ``Capacity`` double pints/day > 0 Yes Dehumidification capacity
1925
2022
  ``IntegratedEnergyFactor`` or ``EnergyFactor`` double liters/kWh > 0 Yes Rated efficiency
1926
- ``DehumidistatSetpoint`` double frac 0-1 Yes Relative humidity setpoint
1927
- ``FractionDehumidificationLoadServed`` double frac 0-1 Yes Fraction of dehumidification load served
2023
+ ``DehumidistatSetpoint`` double frac 0 - 1 [#]_ Yes Relative humidity setpoint
2024
+ ``FractionDehumidificationLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of dehumidification load served
1928
2025
  ============================================== ========== ========== =========== ======== ======= ========================================
1929
2026
 
1930
2027
  .. [#] Type choices are "portable" or "whole-home".
2028
+ .. [#] Location only choice is "living space".
2029
+ .. [#] If multiple dehumidifiers are entered, they must all have the same setpoint or an error will be generated.
2030
+ .. [#] The sum of all ``FractionDehumidificationLoadServed`` (across all Dehumidifiers) must be less than or equal to 1.
2031
+
2032
+ .. note::
2033
+
2034
+ Dehumidifiers are currently modeled as located within conditioned space; the model is not suited for a dehumidifier in, e.g., a wet unconditioned basement or crawlspace.
2035
+ Therefore the dehumidifier Location is currently restricted to "living space".
1931
2036
 
1932
2037
  HPXML Cooking Range/Oven
1933
2038
  ************************
1934
2039
 
1935
2040
  A single cooking range can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/CookingRange``.
2041
+ If not entered, the simulation will not include a cooking range/oven.
1936
2042
 
1937
2043
  ======================================== ======= ====== =========== ======== ============ ======================================
1938
2044
  Element Type Units Constraints Required Default Notes
@@ -1962,6 +2068,8 @@ If a cooking range is specified, a single oven is also entered as a ``/HPXML/Bui
1962
2068
  ``IsConvection`` boolean No false Convection oven?
1963
2069
  ==================== ======= ====== =========== ======== ======= ================
1964
2070
 
2071
+ Cooking range/oven energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
2072
+
1965
2073
  HPXML Lighting & Ceiling Fans
1966
2074
  -----------------------------
1967
2075
 
@@ -1970,7 +2078,7 @@ Lighting and ceiling fans are entered in ``/HPXML/Building/BuildingDetails/Light
1970
2078
  HPXML Lighting
1971
2079
  **************
1972
2080
 
1973
- If the building has lighting, nine ``/HPXML/Building/BuildingDetails/Lighting/LightingGroup`` elements must be provided, each of which is the combination of:
2081
+ Nine ``/HPXML/Building/BuildingDetails/Lighting/LightingGroup`` elements must be provided, each of which is the combination of:
1974
2082
 
1975
2083
  - ``LightingType``: 'LightEmittingDiode', 'CompactFluorescent', and 'FluorescentTube'
1976
2084
  - ``Location``: 'interior', 'garage', and 'exterior'
@@ -1983,7 +2091,7 @@ Information is entered in each ``LightingGroup``.
1983
2091
  ``SystemIdentifier`` id Yes Unique identifier
1984
2092
  ``LightingType`` element 1 [#]_ Yes Lighting type
1985
2093
  ``Location`` string See [#]_ Yes See [#]_
1986
- ``FractionofUnitsInLocation`` double frac 0-1 [#]_ Yes Fraction of light fixtures in the location with the specified lighting type
2094
+ ``FractionofUnitsInLocation`` double frac 0 - 1 [#]_ Yes Fraction of light fixtures in the location with the specified lighting type
1987
2095
  ============================= ======= ====== =========== ======== ======= ===========================================================================
1988
2096
 
1989
2097
  .. [#] LightingType child element choices are ``LightEmittingDiode``, ``CompactFluorescent``, or ``FluorescentTube``.
@@ -2009,7 +2117,7 @@ Additional information is entered in ``Lighting``.
2009
2117
  ``extension/ExteriorWeekdayScheduleFractions`` array No See [#]_ 24 comma-separated exterior weekday fractions
2010
2118
  ``extension/ExteriorWeekendScheduleFractions`` array No 24 comma-separated exterior weekend fractions
2011
2119
  ``extension/ExteriorMonthlyScheduleMultipliers`` array No 12 comma-separated exterior monthly multipliers
2012
- ``extension/ExteriorHolidayLighting`` element 0-1 No <none> Presence of additional holiday lighting?
2120
+ ``extension/ExteriorHolidayLighting`` element 0 - 1 No <none> Presence of additional holiday lighting?
2013
2121
  ================================================ ======= ====== =========== ======== ======== ===============================================
2014
2122
 
2015
2123
  .. [#] If *interior* schedule values not provided, they will be calculated using Lighting Calculation Option 2 (location-dependent lighting profile) of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_.
@@ -2022,10 +2130,10 @@ If exterior holiday lighting is specified, additional information is entered in
2022
2130
  Element Type Units Constraints Required Default Notes
2023
2131
  =============================== ======= ======= =========== ======== ============= ============================================
2024
2132
  ``Load[Units="kWh/day"]/Value`` double kWh/day >= 0 No See [#]_ Holiday lighting energy use per day
2025
- ``PeriodBeginMonth`` integer 1-12 No 11 (November) Holiday lighting start date
2026
- ``PeriodBeginDayOfMonth`` integer 1-31 No 24 Holiday lighting start date
2027
- ``PeriodEndMonth`` integer 1-12 No 1 (January) Holiday lighting end date
2028
- ``PeriodEndDayOfMonth`` integer 1-31 No 6 Holiday lighting end date
2133
+ ``PeriodBeginMonth`` integer 1 - 12 No 11 (November) Holiday lighting start date
2134
+ ``PeriodBeginDayOfMonth`` integer 1 - 31 No 24 Holiday lighting start date
2135
+ ``PeriodEndMonth`` integer 1 - 12 No 1 (January) Holiday lighting end date
2136
+ ``PeriodEndDayOfMonth`` integer 1 - 31 No 6 Holiday lighting end date
2029
2137
  ``WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated holiday weekday fractions
2030
2138
  ``WeekendScheduleFractions`` array No 24 comma-separated holiday weekend fractions
2031
2139
  =============================== ======= ======= =========== ======== ============= ============================================
@@ -2033,10 +2141,13 @@ If exterior holiday lighting is specified, additional information is entered in
2033
2141
  .. [#] If Value not provided, defaults to 1.1 for single-family detached and 0.55 for others.
2034
2142
  .. [#] If WeekdayScheduleFractions not provided, defaults to "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019".
2035
2143
 
2144
+ Interior, exterior, and garage lighting energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
2145
+
2036
2146
  HPXML Ceiling Fans
2037
2147
  ******************
2038
2148
 
2039
2149
  Each ceiling fan is entered as a ``/HPXML/Building/BuildingDetails/Lighting/CeilingFan``.
2150
+ If not entered, the simulation will not include a ceiling fan.
2040
2151
 
2041
2152
  ========================================= ======= ======= =========== ======== ======== ==============================
2042
2153
  Element Type Units Constraints Required Default Notes
@@ -2049,6 +2160,8 @@ Each ceiling fan is entered as a ``/HPXML/Building/BuildingDetails/Lighting/Ceil
2049
2160
  .. [#] If Efficiency not provided, defaults to 3000 / 42.6 based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
2050
2161
  .. [#] If Quantity not provided, defaults to NumberofBedrooms + 1 based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
2051
2162
 
2163
+ Ceiling fan energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
2164
+
2052
2165
  .. note::
2053
2166
 
2054
2167
  A reduced cooling setpoint can be specified for summer months when ceiling fans are operating.
@@ -2061,22 +2174,29 @@ HPXML Pools
2061
2174
  ***********
2062
2175
 
2063
2176
  A single pool can be entered as a ``/HPXML/Building/BuildingDetails/Pools/Pool``.
2177
+ If not entered, the simulation will not include a pool.
2064
2178
 
2065
2179
  ==================== ======= ====== =========== ======== ============ =================
2066
2180
  Element Type Units Constraints Required Default Notes
2067
2181
  ==================== ======= ====== =========== ======== ============ =================
2068
2182
  ``SystemIdentifier`` id Yes Unique identifier
2183
+ ``Type`` string See [#]_ Yes Pool type
2069
2184
  ==================== ======= ====== =========== ======== ============ =================
2070
2185
 
2186
+ .. [#] Type choices are "in ground", "on ground", "above ground", "other", "unknown", or "none".
2187
+ If "none" is entered, the simulation will not include a pool.
2188
+
2071
2189
  Pool Pump
2072
2190
  ~~~~~~~~~
2073
2191
 
2074
- If a pool is specified, a single pool pump must be entered as a ``Pool/PoolPumps/PoolPump``.
2192
+ If a pool is specified, a single pool pump can be entered as a ``Pool/PoolPumps/PoolPump``.
2193
+ If not entered, the simulation will not include a pool heater.
2075
2194
 
2076
2195
  ======================================== ======= ====== =========== ======== ============ ======================================
2077
2196
  Element Type Units Constraints Required Default Notes
2078
2197
  ======================================== ======= ====== =========== ======== ============ ======================================
2079
2198
  ``SystemIdentifier`` id Yes Unique identifier
2199
+ ``Type`` string See [#]_ Yes Pool pump type
2080
2200
  ``Load[Units="kWh/year"]/Value`` double kWh/yr >= 0 No See [#]_ Pool pump energy use
2081
2201
  ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on pool pump energy use
2082
2202
  ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions
@@ -2084,6 +2204,8 @@ If a pool is specified, a single pool pump must be entered as a ``Pool/PoolPumps
2084
2204
  ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers
2085
2205
  ======================================== ======= ====== =========== ======== ============ ======================================
2086
2206
 
2207
+ .. [#] Type choices are "single speed", "multi speed", "variable speed", "variable flow", "other", "unknown", or "none".
2208
+ If "none" is entered, the simulation will not include a pool pump.
2087
2209
  .. [#] If Value not provided, defaults based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_: 158.5 / 0.070 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.35 * ConditionedFloorArea / 1920).
2088
2210
  .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided, default values from Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used: "0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003".
2089
2211
  .. [#] If MonthlyScheduleMultipliers not provided, default values from Figure 24 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154".
@@ -2092,6 +2214,7 @@ Pool Heater
2092
2214
  ~~~~~~~~~~~
2093
2215
 
2094
2216
  If a pool is specified, a pool heater can be entered as a ``Pool/Heater``.
2217
+ If not entered, the simulation will not include a pool heater.
2095
2218
 
2096
2219
  ====================================================== ======= ================== =========== ======== ======== ======================================
2097
2220
  Element Type Units Constraints Required Default Notes
@@ -2105,7 +2228,8 @@ If a pool is specified, a pool heater can be entered as a ``Pool/Heater``.
2105
2228
  ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers
2106
2229
  ====================================================== ======= ================== =========== ======== ======== ======================================
2107
2230
 
2108
- .. [#] Type choices are "gas fired", "electric resistance", or "heat pump".
2231
+ .. [#] Type choices are "none, "gas fired", "electric resistance", or "heat pump".
2232
+ If "none" is entered, the simulation will not include a pool heater.
2109
2233
  .. [#] If Value not provided, defaults as follows:
2110
2234
 
2111
2235
  - **gas fired**: 3.0 / 0.014 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.35 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
@@ -2119,22 +2243,29 @@ HPXML Hot Tubs
2119
2243
  **************
2120
2244
 
2121
2245
  A single hot tub can be entered as a ``/HPXML/Building/BuildingDetails/HotTubs/HotTub``.
2246
+ If not entered, the simulation will not include a hot tub.
2122
2247
 
2123
2248
  ==================== ======= ====== =========== ======== ============ =================
2124
2249
  Element Type Units Constraints Required Default Notes
2125
2250
  ==================== ======= ====== =========== ======== ============ =================
2126
2251
  ``SystemIdentifier`` id Yes Unique identifier
2252
+ ``Type`` string See [#]_ Yes Hot tub type
2127
2253
  ==================== ======= ====== =========== ======== ============ =================
2128
2254
 
2255
+ .. [#] Type choices are "in ground", "on ground", "above ground", "other", "unknown", or "none".
2256
+ If "none" is entered, the simulation will not include a hot tub.
2257
+
2129
2258
  Hot Tub Pump
2130
2259
  ~~~~~~~~~~~~
2131
2260
 
2132
- If a hot tub is specified, a single hot tub pump must be entered as a ``HotTub/HotTubPumps/HotTubPump``.
2261
+ If a hot tub is specified, a single hot tub pump can be entered as a ``HotTub/HotTubPumps/HotTubPump``.
2262
+ If not entered, the simulation will not include a hot tub pump.
2133
2263
 
2134
2264
  ======================================== ======= ====== =========== ======== ============ ======================================
2135
2265
  Element Type Units Constraints Required Default Notes
2136
2266
  ======================================== ======= ====== =========== ======== ============ ======================================
2137
2267
  ``SystemIdentifier`` id Yes Unique identifier
2268
+ ``Type`` string See [#]_ Yes Hot tub pump type
2138
2269
  ``Load[Units="kWh/year"]/Value`` double kWh/yr >= 0 No See [#]_ Hot tub pump energy use
2139
2270
  ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on hot tub pump energy use
2140
2271
  ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions
@@ -2142,6 +2273,8 @@ If a hot tub is specified, a single hot tub pump must be entered as a ``HotTub/H
2142
2273
  ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers
2143
2274
  ======================================== ======= ====== =========== ======== ============ ======================================
2144
2275
 
2276
+ .. [#] Type choices are "single speed", "multi speed", "variable speed", "variable flow", "other", "unknown", or "none".
2277
+ If "none" is entered, the simulation will not include a hot tub pump.
2145
2278
  .. [#] If Value not provided, defaults based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_: 59.5 / 0.059 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.35 * ConditionedFloorArea / 1920).
2146
2279
  .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided, default values from Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used: "0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024".
2147
2280
  .. [#] If MonthlyScheduleMultipliers not provided, default values from Figure 24 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used: "0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921".
@@ -2150,6 +2283,7 @@ Hot Tub Heater
2150
2283
  ~~~~~~~~~~~~~~
2151
2284
 
2152
2285
  If a hot tub is specified, a hot tub heater can be entered as a ``HotTub/Heater``.
2286
+ If not entered, the simulation will not include a hot tub heater.
2153
2287
 
2154
2288
  ====================================================== ======= ================== =========== ======== ======== =======================================
2155
2289
  Element Type Units Constraints Required Default Notes
@@ -2163,7 +2297,8 @@ If a hot tub is specified, a hot tub heater can be entered as a ``HotTub/Heater`
2163
2297
  ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers
2164
2298
  ====================================================== ======= ================== =========== ======== ======== =======================================
2165
2299
 
2166
- .. [#] Type choices are "gas fired", "electric resistance", or "heat pump".
2300
+ .. [#] Type choices are "none, "gas fired", "electric resistance", or "heat pump".
2301
+ If "none" is entered, the simulation will not include a hot tub heater.
2167
2302
  .. [#] If Value not provided, defaults as follows:
2168
2303
 
2169
2304
  - **gas fired [therm/year]**: 0.87 / 0.011 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.35 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
@@ -2182,7 +2317,11 @@ HPXML Plug Loads
2182
2317
  ****************
2183
2318
 
2184
2319
  Each type of plug load can be entered as a ``/HPXML/Building/BuildingDetails/MiscLoads/PlugLoad``.
2185
- It is required that at least a miscellaneous plug load (PlugLoadType="other") is specified to represent all residual plug loads not explicitly captured elsewhere.
2320
+
2321
+ It is required to include miscellaneous plug loads (PlugLoadType="other"), which represents all residual plug loads not explicitly captured elsewhere.
2322
+ It is common to include television plug loads (PlugLoadType="TV other"), which represents all television energy use in the home.
2323
+ It is less common to include the other plug load types, as they are less frequently found in homes.
2324
+ If not entered, the simulation will not include that type of plug load.
2186
2325
 
2187
2326
  ======================================== ======= ====== =========== ======== ======== =============================================================
2188
2327
  Element Type Units Constraints Required Default Notes
@@ -2190,8 +2329,8 @@ It is required that at least a miscellaneous plug load (PlugLoadType="other") is
2190
2329
  ``SystemIdentifier`` id Yes Unique identifier
2191
2330
  ``PlugLoadType`` string See [#]_ Yes Type of plug load
2192
2331
  ``Load[Units="kWh/year"]/Value`` double kWh/yr >= 0 No See [#]_ Annual electricity consumption
2193
- ``extension/FracSensible`` double 0-1 No See [#]_ Fraction that is sensible heat gain to conditioned space [#]_
2194
- ``extension/FracLatent`` double 0-1 No See [#]_ Fraction that is latent heat gain to conditioned space
2332
+ ``extension/FracSensible`` double 0 - 1 No See [#]_ Fraction that is sensible heat gain to conditioned space [#]_
2333
+ ``extension/FracLatent`` double 0 - 1 No See [#]_ Fraction that is latent heat gain to conditioned space
2195
2334
  ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on electricity use
2196
2335
  ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions
2197
2336
  ``extension/WeekendScheduleFractions`` array No See [#]_ 24 comma-separated weekend fractions
@@ -2213,7 +2352,7 @@ It is required that at least a miscellaneous plug load (PlugLoadType="other") is
2213
2352
  - **well pump**: 0.0
2214
2353
  - **electric vehicle charging**: 0.0
2215
2354
 
2216
- .. [#] The remaining fraction (i.e., 1.0 - FracSensible - FracLatent) is assumed to be heat gain outside conditioned space and thus lost.
2355
+ .. [#] The remaining fraction (i.e., 1.0 - FracSensible - FracLatent) must be > 0 and is assumed to be heat gain outside conditioned space and thus lost.
2217
2356
  .. [#] If FracLatent not provided, defaults as:
2218
2357
 
2219
2358
  - **other**: 0.045
@@ -2247,6 +2386,9 @@ HPXML Fuel Loads
2247
2386
 
2248
2387
  Each fuel load can be entered as a ``/HPXML/Building/BuildingDetails/MiscLoads/FuelLoad``.
2249
2388
 
2389
+ It is less common to include fuel load types, as they are less frequently found in homes.
2390
+ If not entered, the simulation will not include that type of fuel load.
2391
+
2250
2392
  ======================================== ======= ======== =========== ======== ======== =============================================================
2251
2393
  Element Type Units Constraints Required Default Notes
2252
2394
  ======================================== ======= ======== =========== ======== ======== =============================================================
@@ -2254,8 +2396,8 @@ Each fuel load can be entered as a ``/HPXML/Building/BuildingDetails/MiscLoads/F
2254
2396
  ``FuelLoadType`` string See [#]_ Yes Type of fuel load
2255
2397
  ``Load[Units="therm/year"]/Value`` double therm/yr >= 0 No See [#]_ Annual fuel consumption
2256
2398
  ``FuelType`` string See [#]_ Yes Fuel type
2257
- ``extension/FracSensible`` double 0-1 No See [#]_ Fraction that is sensible heat gain to conditioned space [#]_
2258
- ``extension/FracLatent`` double 0-1 No See [#]_ Fraction that is latent heat gain to conditioned space
2399
+ ``extension/FracSensible`` double 0 - 1 No See [#]_ Fraction that is sensible heat gain to conditioned space [#]_
2400
+ ``extension/FracLatent`` double 0 - 1 No See [#]_ Fraction that is latent heat gain to conditioned space
2259
2401
  ``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on fuel use
2260
2402
  ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions
2261
2403
  ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions
@@ -2271,7 +2413,7 @@ Each fuel load can be entered as a ``/HPXML/Building/BuildingDetails/MiscLoads/F
2271
2413
 
2272
2414
  .. [#] FuelType choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "wood", or "wood pellets".
2273
2415
  .. [#] If FracSensible not provided, defaults to 0.5 for fireplace and 0.0 for all other types.
2274
- .. [#] The remaining fraction (i.e., 1.0 - FracSensible - FracLatent) is assumed to be heat gain outside conditioned space and thus lost.
2416
+ .. [#] The remaining fraction (i.e., 1.0 - FracSensible - FracLatent) must be > 0 and is assumed to be heat gain outside conditioned space and thus lost.
2275
2417
  .. [#] If FracLatent not provided, defaults to 0.1 for fireplace and 0.0 for all other types.
2276
2418
  .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided, default values from Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used:
2277
2419
 
@@ -2292,28 +2434,28 @@ HPXML Locations
2292
2434
 
2293
2435
  The various locations used in an HPXML file are defined as follows:
2294
2436
 
2295
- ============================== =========================================== ======================================= =============
2296
- Value Description Temperature Building Type
2297
- ============================== =========================================== ======================================= =============
2298
- outside Ambient environment Weather data Any
2299
- ground EnergyPlus calculation Any
2300
- living space Above-grade conditioned floor area EnergyPlus calculation Any
2301
- attic - vented EnergyPlus calculation Any
2302
- attic - unvented EnergyPlus calculation Any
2303
- basement - conditioned Below-grade conditioned floor area EnergyPlus calculation Any
2304
- basement - unconditioned EnergyPlus calculation Any
2305
- crawlspace - vented EnergyPlus calculation Any
2306
- crawlspace - unvented EnergyPlus calculation Any
2307
- garage Single-family garage (not shared parking) EnergyPlus calculation Any
2308
- other housing unit E.g., conditioned adjacent unit or corridor Same as living space SFA/MF only
2309
- other heated space E.g., shared laundry/equipment space Avg of living space/outside; min of 68F SFA/MF only
2310
- other multifamily buffer space E.g., enclosed unconditioned stairwell Avg of living space/outside; min of 50F SFA/MF only
2311
- other non-freezing space E.g., shared parking garage ceiling Floats with outside; minimum of 40F SFA/MF only
2312
- other exterior Water heater outside Weather data Any
2313
- exterior wall Ducts in exterior wall Avg of living space/outside Any
2314
- under slab Ducts under slab (ground) EnergyPlus calculation Any
2315
- roof deck Ducts on roof deck (outside) Weather data Any
2316
- ============================== =========================================== ======================================= =============
2437
+ ============================== ======================================================= ======================================= =============
2438
+ Value Description Temperature Building Type
2439
+ ============================== ======================================================= ======================================= =============
2440
+ outside Ambient environment Weather data Any
2441
+ ground EnergyPlus calculation Any
2442
+ living space Above-grade conditioned floor area EnergyPlus calculation Any
2443
+ attic - vented EnergyPlus calculation Any
2444
+ attic - unvented EnergyPlus calculation Any
2445
+ basement - conditioned Below-grade conditioned floor area EnergyPlus calculation Any
2446
+ basement - unconditioned EnergyPlus calculation Any
2447
+ crawlspace - vented EnergyPlus calculation Any
2448
+ crawlspace - unvented EnergyPlus calculation Any
2449
+ garage Single-family garage (not shared parking) EnergyPlus calculation Any
2450
+ other housing unit E.g., conditioned adjacent unit or conditioned corridor Same as living space SFA/MF only
2451
+ other heated space E.g., shared laundry/equipment space Avg of living space/outside; min of 68F SFA/MF only
2452
+ other multifamily buffer space E.g., enclosed unconditioned stairwell Avg of living space/outside; min of 50F SFA/MF only
2453
+ other non-freezing space E.g., shared parking garage ceiling Floats with outside; minimum of 40F SFA/MF only
2454
+ other exterior Water heater outside Weather data Any
2455
+ exterior wall Ducts in exterior wall Avg of living space/outside Any
2456
+ under slab Ducts under slab (ground) EnergyPlus calculation Any
2457
+ roof deck Ducts on roof deck (outside) Weather data Any
2458
+ ============================== ======================================================= ======================================= =============
2317
2459
 
2318
2460
  Validating & Debugging Errors
2319
2461
  -----------------------------