urbanopt-cli 0.9.3 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (641) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/{nightly_build.yml → nightly_ci_build.yml} +6 -5
  3. data/CHANGELOG.md +11 -2
  4. data/CMakeLists.txt +7 -7
  5. data/Gemfile +6 -5
  6. data/LICENSE.md +18 -15
  7. data/README.md +2 -1
  8. data/Rakefile +2 -37
  9. data/example_files/Gemfile +8 -8
  10. data/example_files/mappers/Baseline.rb +170 -191
  11. data/example_files/mappers/ChilledWaterStorage.rb +8 -30
  12. data/example_files/mappers/ClassProject.rb +2 -27
  13. data/example_files/mappers/CreateBar.rb +2 -28
  14. data/example_files/mappers/EvCharging.rb +2 -27
  15. data/example_files/mappers/FlexibleHotWater.rb +2 -27
  16. data/example_files/mappers/Floorspace.rb +2 -27
  17. data/example_files/mappers/HighEfficiency.rb +2 -27
  18. data/example_files/mappers/HighEfficiencyCreateBar.rb +2 -27
  19. data/example_files/mappers/HighEfficiencyFloorspace.rb +2 -27
  20. data/example_files/mappers/PeakHoursMelsShedding.rb +4 -27
  21. data/example_files/mappers/PeakHoursThermostatAdjust.rb +4 -27
  22. data/example_files/mappers/ThermalStorage.rb +2 -28
  23. data/example_files/measures/BuildResidentialModel/measure.rb +30 -60
  24. data/example_files/measures/BuildResidentialModel/measure.xml +253 -84
  25. data/example_files/measures/BuildResidentialModel/resources/util.rb +45 -45
  26. data/example_files/python_deps/dependencies.json +3 -3
  27. data/example_files/resources/hpxml-measures/.github/pull_request_template.md +1 -1
  28. data/example_files/resources/hpxml-measures/.github/workflows/config.yml +28 -19
  29. data/example_files/resources/hpxml-measures/.gitignore +0 -997
  30. data/example_files/resources/hpxml-measures/.readthedocs.yml +9 -0
  31. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +476 -230
  32. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +244 -75
  33. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb +42 -15
  34. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +24 -9
  35. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb +11 -33
  36. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml +23 -50
  37. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md +2 -2
  38. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/constants.rb +119 -0
  39. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb +67 -290
  40. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules_config.md +6 -5
  41. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb +78 -349
  42. data/example_files/resources/hpxml-measures/Changelog.md +80 -10
  43. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb +212 -144
  44. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +164 -170
  45. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb +238 -167
  46. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/battery.rb +1 -1
  47. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb +12 -4
  48. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb +36 -6
  49. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/unavailable_periods.csv +33 -0
  50. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/energyplus.rb +1 -0
  51. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb +9 -7
  52. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +79 -61
  53. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +387 -124
  54. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +427 -196
  55. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd +11515 -2
  56. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/README.md +1 -0
  57. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +224 -85
  58. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb +334 -319
  59. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +572 -838
  60. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb +162 -68
  61. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb +4 -20
  62. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb +12 -10
  63. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb +34 -37
  64. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/output.rb +8 -101
  65. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/psychrometrics.rb +31 -40
  66. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb +1 -1
  67. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-non-stochastic.csv +8761 -0
  68. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv +52561 -52561
  69. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv +8761 -8761
  70. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +384 -155
  71. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb +1 -1
  72. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/util.rb +2 -2
  73. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb +2 -2
  74. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb +68 -90
  75. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb +34 -223
  76. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb +1 -1
  77. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlvalidator.rb +16 -4
  78. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb +94 -40
  79. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +765 -302
  80. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb +119 -69
  81. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb +8 -8
  82. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb +1 -1
  83. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +51 -11
  84. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +196 -9
  85. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb +36 -13
  86. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb +3 -3
  87. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb +2 -2
  88. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb +571 -61
  89. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +190 -81
  90. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb +11 -11
  91. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_weather.rb +188 -50
  92. data/example_files/resources/hpxml-measures/README.md +3 -3
  93. data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.rb +659 -815
  94. data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.xml +301 -1112
  95. data/example_files/resources/hpxml-measures/ReportSimulationOutput/tests/output_report_test.rb +605 -350
  96. data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.rb +18 -14
  97. data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.xml +15 -15
  98. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/utility_bills_test.rb +13 -3
  99. data/example_files/resources/hpxml-measures/docs/source/usage_instructions.rst +3 -3
  100. data/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst +894 -596
  101. data/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst +127 -76
  102. data/example_files/resources/hpxml-measures/tasks.rb +185 -2802
  103. data/example_files/resources/hpxml-measures/workflow/hpxml_inputs.json +3401 -0
  104. data/example_files/resources/hpxml-measures/workflow/real_homes/house001.xml +0 -1
  105. data/example_files/resources/hpxml-measures/workflow/real_homes/house002.xml +0 -1
  106. data/example_files/resources/hpxml-measures/workflow/real_homes/house003.xml +0 -1
  107. data/example_files/resources/hpxml-measures/workflow/real_homes/house004.xml +0 -1
  108. data/example_files/resources/hpxml-measures/workflow/real_homes/house005.xml +0 -1
  109. data/example_files/resources/hpxml-measures/workflow/real_homes/house006.xml +1 -3
  110. data/example_files/resources/hpxml-measures/workflow/real_homes/house007.xml +0 -1
  111. data/example_files/resources/hpxml-measures/workflow/real_homes/house008.xml +1 -3
  112. data/example_files/resources/hpxml-measures/workflow/real_homes/house009.xml +0 -1
  113. data/example_files/resources/hpxml-measures/workflow/real_homes/house010.xml +1 -3
  114. data/example_files/resources/hpxml-measures/workflow/real_homes/house011.xml +0 -1
  115. data/example_files/resources/hpxml-measures/workflow/real_homes/house012.xml +0 -1
  116. data/example_files/resources/hpxml-measures/workflow/real_homes/house013.xml +0 -1
  117. data/example_files/resources/hpxml-measures/workflow/real_homes/house014.xml +0 -1
  118. data/example_files/resources/hpxml-measures/workflow/real_homes/house015.xml +0 -1
  119. data/example_files/resources/hpxml-measures/workflow/real_homes/house016.xml +3 -4
  120. data/example_files/resources/hpxml-measures/workflow/real_homes/house017.xml +17 -4
  121. data/example_files/resources/hpxml-measures/workflow/real_homes/house018.xml +2 -3
  122. data/example_files/resources/hpxml-measures/workflow/real_homes/house019.xml +3 -4
  123. data/example_files/resources/hpxml-measures/workflow/real_homes/house020.xml +3 -4
  124. data/example_files/resources/hpxml-measures/workflow/real_homes/house021.xml +4 -5
  125. data/example_files/resources/hpxml-measures/workflow/real_homes/house022.xml +3 -4
  126. data/example_files/resources/hpxml-measures/workflow/real_homes/house023.xml +3 -4
  127. data/example_files/resources/hpxml-measures/workflow/real_homes/house024.xml +3 -4
  128. data/example_files/resources/hpxml-measures/workflow/real_homes/house025.xml +3 -4
  129. data/example_files/resources/hpxml-measures/workflow/real_homes/house026.xml +1 -1
  130. data/example_files/resources/hpxml-measures/workflow/real_homes/house027.xml +1 -1
  131. data/example_files/resources/hpxml-measures/workflow/real_homes/house028.xml +1 -1
  132. data/example_files/resources/hpxml-measures/workflow/real_homes/house029.xml +1 -1
  133. data/example_files/resources/hpxml-measures/workflow/real_homes/house030.xml +0 -1
  134. data/example_files/resources/hpxml-measures/workflow/real_homes/house031.xml +4 -5
  135. data/example_files/resources/hpxml-measures/workflow/real_homes/house032.xml +3 -3
  136. data/example_files/resources/hpxml-measures/workflow/real_homes/house033.xml +3 -3
  137. data/example_files/resources/hpxml-measures/workflow/real_homes/house034.xml +3 -4
  138. data/example_files/resources/hpxml-measures/workflow/real_homes/house035.xml +3 -3
  139. data/example_files/resources/hpxml-measures/workflow/real_homes/house036.xml +3 -4
  140. data/example_files/resources/hpxml-measures/workflow/real_homes/house037.xml +3 -3
  141. data/example_files/resources/hpxml-measures/workflow/real_homes/house038.xml +3 -4
  142. data/example_files/resources/hpxml-measures/workflow/real_homes/house039.xml +3 -3
  143. data/example_files/resources/hpxml-measures/workflow/real_homes/house040.xml +3 -4
  144. data/example_files/resources/hpxml-measures/workflow/real_homes/house041.xml +0 -1
  145. data/example_files/resources/hpxml-measures/workflow/real_homes/house042.xml +0 -1
  146. data/example_files/resources/hpxml-measures/workflow/real_homes/house043.xml +0 -1
  147. data/example_files/resources/hpxml-measures/workflow/real_homes/house044.xml +0 -1
  148. data/example_files/resources/hpxml-measures/workflow/real_homes/house045.xml +0 -1
  149. data/example_files/resources/hpxml-measures/workflow/real_homes/house046.xml +1 -0
  150. data/example_files/resources/hpxml-measures/workflow/real_homes/house047.xml +1 -0
  151. data/example_files/resources/hpxml-measures/workflow/run_simulation.rb +12 -8
  152. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +10 -40
  153. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +10 -40
  154. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +10 -40
  155. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +10 -40
  156. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +10 -40
  157. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +10 -40
  158. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +10 -40
  159. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml +10 -40
  160. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil-location-miami-fl.xml +10 -40
  161. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +10 -40
  162. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane-location-portland-or.xml +10 -40
  163. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +10 -40
  164. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +10 -40
  165. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +10 -40
  166. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +9 -39
  167. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +9 -39
  168. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +10 -40
  169. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +10 -40
  170. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +10 -40
  171. data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml +10 -40
  172. data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery.xml +10 -40
  173. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-single-family-attached-2stories.xml → base-bldgtype-attached-2stories.xml} +610 -639
  174. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-single-family-attached-atticroof-cathedral.xml → base-bldgtype-attached-atticroof-cathedral.xml} +558 -587
  175. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-attached-infil-compartmentalization-test.xml +611 -0
  176. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-single-family-attached.xml → base-bldgtype-attached.xml} +610 -639
  177. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml +10 -39
  178. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml +10 -39
  179. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml +10 -39
  180. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml +10 -39
  181. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml +10 -39
  182. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-infil-compartmentalization-test.xml +462 -0
  183. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-calctype-operational.xml → base-bldgtype-multifamily-residents-1.xml} +453 -480
  184. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml +10 -39
  185. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml +10 -39
  186. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml +10 -39
  187. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml +10 -39
  188. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml +10 -39
  189. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml +10 -39
  190. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml +10 -39
  191. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml +10 -39
  192. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml +10 -39
  193. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml +10 -39
  194. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml +10 -39
  195. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml +10 -39
  196. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml +10 -39
  197. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml +10 -39
  198. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml +10 -39
  199. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml +11 -40
  200. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +10 -39
  201. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml +10 -39
  202. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml +10 -39
  203. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml +10 -39
  204. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml +10 -39
  205. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml +10 -39
  206. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml +15 -40
  207. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml +10 -39
  208. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml +10 -39
  209. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml +10 -39
  210. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +10 -40
  211. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +10 -40
  212. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +10 -40
  213. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +10 -40
  214. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +10 -40
  215. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +10 -40
  216. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +10 -40
  217. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +10 -40
  218. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +10 -40
  219. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml +10 -40
  220. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +10 -40
  221. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +10 -40
  222. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +10 -40
  223. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +10 -40
  224. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +10 -40
  225. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +10 -40
  226. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +10 -40
  227. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +10 -40
  228. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +10 -40
  229. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +10 -40
  230. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +10 -40
  231. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml +10 -40
  232. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +10 -40
  233. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +10 -40
  234. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +10 -40
  235. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +10 -40
  236. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +10 -40
  237. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +10 -40
  238. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +10 -40
  239. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +10 -40
  240. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +10 -40
  241. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +10 -40
  242. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +10 -40
  243. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +10 -40
  244. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml +10 -40
  245. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +10 -40
  246. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +10 -40
  247. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +10 -40
  248. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +10 -40
  249. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +10 -40
  250. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml +10 -40
  251. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml +11 -43
  252. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +10 -40
  253. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +10 -40
  254. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +10 -40
  255. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +10 -40
  256. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +10 -40
  257. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml +10 -40
  258. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml +10 -40
  259. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +10 -40
  260. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +10 -40
  261. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml +10 -40
  262. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +10 -40
  263. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +10 -40
  264. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +10 -40
  265. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +10 -40
  266. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +10 -40
  267. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +10 -40
  268. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +10 -40
  269. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +10 -40
  270. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +19 -25
  271. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +10 -40
  272. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +10 -40
  273. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +10 -40
  274. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +10 -40
  275. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +10 -40
  276. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml +10 -40
  277. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml +10 -40
  278. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +18 -24
  279. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +11 -41
  280. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +11 -41
  281. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +10 -40
  282. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml +549 -0
  283. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +13 -43
  284. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +10 -40
  285. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml +552 -0
  286. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml +10 -40
  287. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +10 -40
  288. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml +17 -47
  289. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml +10 -40
  290. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml +10 -40
  291. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml +10 -40
  292. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +10 -40
  293. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +10 -40
  294. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml +10 -40
  295. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +10 -40
  296. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml +10 -40
  297. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +10 -40
  298. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml +10 -40
  299. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml +559 -0
  300. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml +10 -40
  301. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml +10 -40
  302. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +10 -40
  303. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml +19 -25
  304. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +10 -40
  305. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +10 -40
  306. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml +10 -40
  307. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +10 -40
  308. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +10 -40
  309. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +10 -40
  310. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +10 -40
  311. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +10 -40
  312. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +10 -40
  313. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +10 -40
  314. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +10 -40
  315. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +10 -40
  316. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +10 -40
  317. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml +557 -0
  318. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +16 -41
  319. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml → base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml} +552 -583
  320. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +16 -41
  321. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-air-to-air-heat-pump-1-speed-backup-lockout-temperature.xml → base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml} +562 -586
  322. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml +16 -41
  323. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +16 -41
  324. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +16 -41
  325. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml +587 -0
  326. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml +17 -42
  327. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +16 -41
  328. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml +16 -41
  329. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +16 -41
  330. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml +10 -40
  331. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml +10 -40
  332. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +10 -40
  333. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +10 -40
  334. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml +10 -40
  335. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +10 -40
  336. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml +10 -40
  337. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml +10 -40
  338. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml +10 -40
  339. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml +10 -40
  340. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml +10 -40
  341. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml +10 -40
  342. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml +10 -40
  343. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml +10 -40
  344. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml +10 -40
  345. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml +10 -40
  346. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml +10 -40
  347. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml +10 -40
  348. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml +10 -40
  349. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml +10 -40
  350. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml +10 -40
  351. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +11 -41
  352. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +11 -41
  353. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +11 -41
  354. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml +553 -0
  355. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml +11 -41
  356. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml +10 -40
  357. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml +10 -40
  358. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml +10 -40
  359. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml +10 -40
  360. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml +10 -40
  361. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml +10 -40
  362. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml +10 -40
  363. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml +10 -40
  364. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +10 -40
  365. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +10 -40
  366. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml +10 -40
  367. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml +10 -40
  368. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml +10 -40
  369. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml +10 -40
  370. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml +10 -40
  371. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml +10 -40
  372. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml +10 -40
  373. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml +10 -40
  374. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml +10 -40
  375. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml +519 -0
  376. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml +10 -40
  377. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac-with-heating.xml +10 -40
  378. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac.xml +10 -40
  379. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml +16 -40
  380. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml +16 -40
  381. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml +16 -40
  382. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-only.xml +10 -40
  383. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-heating.xml +10 -40
  384. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml +16 -40
  385. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml +16 -40
  386. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml +16 -40
  387. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml +566 -0
  388. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml +10 -40
  389. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml +10 -40
  390. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml +10 -40
  391. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +10 -40
  392. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +10 -40
  393. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +10 -40
  394. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml +513 -0
  395. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +10 -40
  396. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +10 -40
  397. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +10 -40
  398. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +10 -40
  399. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml +10 -40
  400. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +10 -40
  401. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +10 -40
  402. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +10 -40
  403. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +16 -41
  404. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-crankcase-heater-40w.xml +556 -0
  405. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +10 -40
  406. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +560 -0
  407. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +17 -42
  408. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +17 -42
  409. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +17 -42
  410. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +17 -42
  411. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml +10 -40
  412. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml +10 -40
  413. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml +555 -0
  414. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml +553 -0
  415. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +10 -40
  416. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +10 -40
  417. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +10 -40
  418. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +10 -40
  419. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +10 -40
  420. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml +10 -40
  421. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml +10 -40
  422. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml +10 -40
  423. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only-pilot-light.xml +506 -0
  424. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +10 -40
  425. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml +10 -40
  426. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +10 -40
  427. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +10 -40
  428. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +10 -40
  429. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +10 -40
  430. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml +10 -40
  431. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml +542 -0
  432. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +10 -40
  433. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +10 -40
  434. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +10 -40
  435. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +10 -40
  436. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +10 -40
  437. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +10 -40
  438. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +10 -40
  439. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +10 -40
  440. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +10 -40
  441. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +14 -41
  442. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml +14 -41
  443. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml +14 -41
  444. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +10 -40
  445. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml +10 -40
  446. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml +10 -40
  447. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml +10 -40
  448. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +10 -40
  449. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +10 -40
  450. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +14 -41
  451. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +10 -40
  452. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +10 -40
  453. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +16 -41
  454. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +16 -41
  455. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +16 -41
  456. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml +525 -0
  457. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml +564 -0
  458. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +16 -41
  459. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml +506 -0
  460. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +16 -41
  461. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +10 -40
  462. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml +10 -40
  463. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml +10 -40
  464. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +10 -40
  465. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml +10 -40
  466. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml +10 -40
  467. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml +513 -0
  468. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml +16 -40
  469. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +10 -40
  470. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +10 -40
  471. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml +10 -40
  472. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +10 -40
  473. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml +10 -40
  474. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml +16 -40
  475. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml +10 -40
  476. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml +10 -40
  477. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml +10 -40
  478. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +10 -40
  479. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml +10 -40
  480. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +10 -40
  481. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml +10 -40
  482. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +10 -40
  483. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +10 -40
  484. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml +11 -41
  485. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml +10 -40
  486. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml +529 -0
  487. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml +537 -0
  488. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml +516 -0
  489. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml +1 -7
  490. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +10 -40
  491. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +10 -40
  492. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml +10 -40
  493. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +10 -40
  494. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +10 -40
  495. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml +10 -40
  496. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml +10 -40
  497. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +10 -40
  498. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml +10 -40
  499. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml +10 -40
  500. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +10 -40
  501. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +12 -42
  502. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +10 -40
  503. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +10 -40
  504. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +10 -40
  505. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +10 -40
  506. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml +10 -40
  507. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +10 -40
  508. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +10 -40
  509. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +10 -40
  510. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +10 -40
  511. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +10 -40
  512. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +10 -40
  513. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +10 -40
  514. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +14 -44
  515. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +10 -40
  516. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +10 -40
  517. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml +10 -38
  518. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-none.xml +10 -40
  519. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml +16 -42
  520. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml +16 -42
  521. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml +16 -42
  522. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml +10 -40
  523. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml +14 -37
  524. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml +16 -42
  525. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml +12 -42
  526. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml +12 -42
  527. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml +12 -42
  528. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml +10 -40
  529. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml +10 -38
  530. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml +10 -38
  531. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +10 -40
  532. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml +509 -0
  533. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +10 -40
  534. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml +10 -40
  535. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +10 -41
  536. data/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml +30 -138
  537. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml +16 -42
  538. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml +24 -26
  539. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml +16 -42
  540. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml +16 -42
  541. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml +16 -42
  542. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml +18 -44
  543. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml +18 -44
  544. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml +18 -44
  545. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml +16 -42
  546. data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml +560 -0
  547. data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0.xml +556 -0
  548. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-calctype-operational-misc-loads-large-uncommon.xml → base-residents-1-misc-loads-large-uncommon.xml} +616 -644
  549. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-calctype-operational-misc-loads-large-uncommon2.xml → base-residents-1-misc-loads-large-uncommon2.xml} +616 -644
  550. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-calctype-operational.xml → base-residents-1.xml} +547 -575
  551. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-calctype-operational-misc-defaults.xml → base-residents-5.xml} +515 -539
  552. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml +10 -40
  553. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml +10 -40
  554. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml +565 -0
  555. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-schedules-detailed-occupancy-smooth.xml → base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml} +563 -583
  556. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml +21 -41
  557. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml +10 -40
  558. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml +10 -40
  559. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml +10 -40
  560. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml +10 -40
  561. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage-natvent-available.xml +565 -0
  562. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage-natvent-unavailable.xml +565 -0
  563. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml +620 -0
  564. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy-year-round.xml +619 -0
  565. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml +619 -0
  566. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml +10 -38
  567. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +10 -40
  568. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +10 -40
  569. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +10 -40
  570. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +10 -40
  571. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml +10 -40
  572. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml +10 -40
  573. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml +10 -40
  574. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +10 -40
  575. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml +10 -40
  576. data/example_files/resources/hpxml-measures/workflow/sample_files/base.xml +10 -37
  577. data/example_files/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw +16 -4
  578. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw +16 -3
  579. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy.osw +16 -3
  580. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml.osw +16 -2
  581. data/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Long_Residence.xml +386 -0
  582. data/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Vatilo_Residence.xml +381 -0
  583. data/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Victor_Residence.xml +370 -0
  584. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml +2 -2
  585. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml +2 -5
  586. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml +2 -5
  587. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml +2 -5
  588. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml +2 -5
  589. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml +2 -5
  590. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml +2 -5
  591. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml +2 -5
  592. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml +2 -5
  593. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml +2 -5
  594. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml +2 -5
  595. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml +2 -5
  596. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml +2 -5
  597. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml +2 -5
  598. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml +2 -5
  599. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml +2 -5
  600. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml +2 -12
  601. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml +2 -12
  602. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml +2 -5
  603. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml +2 -5
  604. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml +2 -5
  605. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml +2 -5
  606. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml +2 -5
  607. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml +2 -5
  608. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml +6 -9
  609. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml +6 -9
  610. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results.csv +475 -444
  611. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_bills.csv +475 -444
  612. data/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb +177 -112
  613. data/example_files/resources/meta_measure.rb +2 -27
  614. data/example_files/xml_building/17/README.md +3 -3
  615. data/lib/uo_cli/version.rb +3 -38
  616. data/lib/uo_cli.rb +3 -38
  617. data/uo_cli.gemspec +6 -7
  618. metadata +70 -51
  619. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules_config.json +0 -388
  620. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLBaseElements.xsd +0 -6136
  621. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLDataTypes.xsd +0 -4846
  622. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-smooth.csv +0 -8761
  623. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-vacancy.csv +0 -8761
  624. data/example_files/resources/hpxml-measures/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3-cache.csv +0 -35
  625. data/example_files/resources/hpxml-measures/weather/USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3-cache.csv +0 -35
  626. data/example_files/resources/hpxml-measures/weather/USA_CO_Denver.Intl.AP.725650_TMY3-cache.csv +0 -35
  627. data/example_files/resources/hpxml-measures/weather/USA_DE_Wilmington-New.Castle.County.AP.724089_TMY3-cache.csv +0 -35
  628. data/example_files/resources/hpxml-measures/weather/USA_FL_Miami.Intl.AP.722020_TMY3-cache.csv +0 -35
  629. data/example_files/resources/hpxml-measures/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3-cache.csv +0 -35
  630. data/example_files/resources/hpxml-measures/weather/USA_MD_Baltimore-Washington.Intl.AP.724060_TMY3-cache.csv +0 -35
  631. data/example_files/resources/hpxml-measures/weather/USA_MN_Duluth.Intl.AP.727450_TMY3-cache.csv +0 -35
  632. data/example_files/resources/hpxml-measures/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3-cache.csv +0 -35
  633. data/example_files/resources/hpxml-measures/weather/USA_NC_Charlotte-Douglas.Intl.AP.723140_TMY3-cache.csv +0 -35
  634. data/example_files/resources/hpxml-measures/weather/USA_NJ_Cape.May.County.AP.745966_TMY3-cache.csv +0 -35
  635. data/example_files/resources/hpxml-measures/weather/USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3-cache.csv +0 -35
  636. data/example_files/resources/hpxml-measures/weather/USA_OR_Portland.Intl.AP.726980_TMY3-cache.csv +0 -35
  637. data/example_files/resources/hpxml-measures/weather/USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3-cache.csv +0 -35
  638. data/example_files/resources/hpxml-measures/weather/US_CO_Boulder_AMY_2012-cache.csv +0 -35
  639. data/example_files/resources/hpxml-measures/weather/ZAF_Cape.Town.688160_IWEC-cache.csv +0 -35
  640. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces.xml +0 -2508
  641. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces2.xml +0 -2508
@@ -69,10 +69,10 @@ Default values would be used for the refrigerator energy use, location, and sche
69
69
 
70
70
  These defaults will be reflected in the EnergyPlus simulation results.
71
71
 
72
- .. note::
72
+ .. note::
73
73
 
74
74
  The OpenStudio-HPXML workflow generally treats missing *elements* differently than missing *values*.
75
- For example, if there is no ``Refrigerator`` element defined, the model will proceed without refrigerator energy use.
75
+ For example, if there is no ``Refrigerator`` element defined, the simulation will proceed without refrigerator energy use.
76
76
  On the other hand, if there is a ``Refrigerator`` element but with no values defined (i.e., no ``Location`` or ``RatedAnnualkWh``), it is assumed that a refrigerator exists but its properties are unknown, so they will be defaulted in the model.
77
77
 
78
78
  See :ref:`hpxml_defaults` for information on how default values can be inspected.
@@ -106,6 +106,8 @@ EnergyPlus simulation controls are entered in ``/HPXML/SoftwareInfo/extension/Si
106
106
  Values greater than 1.0 have the effect of smoothing or damping the rate of change in the indoor air temperature from timestep to timestep.
107
107
  This heat capacitance effect is modeled on top of any other individual mass inputs (e.g., furniture mass, partition wall mass, interior drywall, etc.) in the HPXML.
108
108
 
109
+ .. _hvac_sizing_control:
110
+
109
111
  HPXML HVAC Sizing Control
110
112
  *************************
111
113
 
@@ -124,6 +126,52 @@ HVAC equipment sizing controls are entered in ``/HPXML/SoftwareInfo/extension/HV
124
126
  If HeatPumpSizingMethodology is 'HERS', autosized heat pumps have their nominal capacity sized equal to the larger of heating/cooling design loads.
125
127
  If HeatPumpSizingMethodology is 'MaxLoad', autosized heat pumps have their nominal capacity sized based on the larger of heating/cooling design loads, while taking into account the heat pump's reduced capacity at the design temperature.
126
128
 
129
+ If any HVAC equipment is being autosized (i.e., capacities are not provided), additional inputs for ACCA Manual J can be entered in ``/HPXML/SoftwareInfo/extension/HVACSizingControl/ManualJInputs``.
130
+
131
+ ================================= ======== ====== =========== ======== ============ ============================================
132
+ Element Type Units Constraints Required Default Description
133
+ ================================= ======== ====== =========== ======== ============ ============================================
134
+ ``HeatingDesignTemperature`` double F No See [#]_ Heating design temperature
135
+ ``CoolingDesignTemperature`` double F No See [#]_ Cooling design temperature
136
+ ``HeatingSetpoint`` double F No 70 Conditioned space heating setpoint [#]_
137
+ ``CoolingSetpoint`` double F No 75 Conditioned space cooling setpoint [#]_
138
+ ``HumiditySetpoint`` double frac 0 - 1 No See [#]_ Conditioned space relative humidity
139
+ ``InternalLoadsSensible`` double Btu/hr No See [#]_ Sensible internal loads for cooling design load
140
+ ``InternalLoadsLatent`` double Btu/hr No 0 Latent internal loads for cooling design load
141
+ ``NumberofOccupants`` integer No #Beds+1 [#]_ Number of occupants for cooling design load
142
+ ================================= ======== ====== =========== ======== ============ ============================================
143
+
144
+ .. [#] If HeatingDesignTemperature not provided, the 99% heating design temperature is obtained from the DESIGN CONDITIONS header section inside the EPW weather file.
145
+ If not available in the EPW header, it is calculated from the 8760 hourly temperatures in the EPW.
146
+ .. [#] If CoolingDesignTemperature not provided, the 1% cooling design temperature is obtained from the DESIGN CONDITIONS header section inside the EPW weather file.
147
+ If not available in the EPW header, it is calculated from the 8760 hourly temperatures in the EPW.
148
+ .. [#] Any heating setpoint other than 70F is not in compliance with Manual J.
149
+ .. [#] Any cooling setpoint other than 75F is not in compliance with Manual J.
150
+ .. [#] If HumiditySetpoint not provided, defaults to 0.5 unless there is a dehumidifier with a lower setpoint, in which case that value is used.
151
+ .. [#] If InternalLoadsSensible not provided, defaults to 2400 Btu/hr if there is one refrigerator and no freezer, or 3600 Btu/hr if two refrigerators or a freezer.
152
+ This default represents loads that normally occur during the early evening in mid-summer.
153
+ Additional adjustments or custom internal loads can instead be specified here.
154
+ .. [#] If NumberofOccupants not provided, defaults to the number of bedrooms plus one per Manual J.
155
+ Each occupant produces an additional 230 Btu/hr sensible load and 200 Btu/hr latent load.
156
+
157
+ .. _shadingcontrol:
158
+
159
+ HPXML Shading Control
160
+ *********************
161
+
162
+ Shading controls for window and skylight summer/winter shading coefficients are entered in ``/HPXML/SoftwareInfo/extension/ShadingControl``.
163
+ If not provided, summer will be default based on the cooling season defined in the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_, using monthly average temperatures.
164
+ The remainder of the year is winter.
165
+
166
+ ==================================== ======== ======= ============= ======== ======= =====================================
167
+ Element Type Units Constraints Required Default Description
168
+ ==================================== ======== ======= ============= ======== ======= =====================================
169
+ ``SummerBeginMonth`` integer 1 - 12 Yes Summer shading start date
170
+ ``SummerBeginDayOfMonth`` integer 1 - 31 Yes Summer shading start date
171
+ ``SummerEndMonth`` integer 1 - 12 Yes Summer shading end date
172
+ ``SummerEndDayOfMonth`` integer 1 - 31 Yes Summer shading end date
173
+ ==================================== ======== ======= ============= ======== ======= =====================================
174
+
127
175
  HPXML Schedules
128
176
  ***************
129
177
 
@@ -142,48 +190,49 @@ Detailed Schedule Inputs
142
190
  ~~~~~~~~~~~~~~~~~~~~~~~~
143
191
 
144
192
  Detailed schedule inputs allow schedule values for every hour or timestep of the simulation.
145
- They can be smooth schedules, or they can reflect real-world or stochastic occupancy.
193
+ They can be used to reflect real-world or stochastic occupancy.
146
194
 
147
195
  Detailed schedule inputs are provided via one or more CSV file that should be referenced in the HPXML file as ``/HPXML/SoftwareInfo/extension/SchedulesFilePath`` elements.
148
196
  The column names available in the schedule CSV files are:
149
197
 
150
- =============================== ===== ============================================================================== ===================
151
- Column Name Units Description Affected by Vacancy
152
- =============================== ===== ============================================================================== ===================
153
- ``occupants`` frac Occupant heat gain schedule. Yes
154
- ``lighting_interior`` frac Interior lighting energy use schedule. Yes
155
- ``lighting_exterior`` frac Exterior lighting energy use schedule. Yes
156
- ``lighting_garage`` frac Garage lighting energy use schedule. Yes
157
- ``lighting_exterior_holiday`` frac Exterior holiday lighting energy use schedule. Yes
158
- ``cooking_range`` frac Cooking range & oven energy use schedule. Yes
159
- ``refrigerator`` frac Primary refrigerator energy use schedule. No
160
- ``extra_refrigerator`` frac Non-primary refrigerator energy use schedule. No
161
- ``freezer`` frac Freezer energy use schedule. No
162
- ``dishwasher`` frac Dishwasher energy use schedule. Yes
163
- ``clothes_washer`` frac Clothes washer energy use schedule. Yes
164
- ``clothes_dryer`` frac Clothes dryer energy use schedule. Yes
165
- ``ceiling_fan`` frac Ceiling fan energy use schedule. Yes
166
- ``plug_loads_other`` frac Other plug load energy use schedule. Yes
167
- ``plug_loads_tv`` frac Television plug load energy use schedule. Yes
168
- ``plug_loads_vehicle`` frac Electric vehicle plug load energy use schedule. Yes
169
- ``plug_loads_well_pump`` frac Well pump plug load energy use schedule. Yes
170
- ``fuel_loads_grill`` frac Grill fuel load energy use schedule. Yes
171
- ``fuel_loads_lighting`` frac Lighting fuel load energy use schedule. Yes
172
- ``fuel_loads_fireplace`` frac Fireplace fuel load energy use schedule. Yes
173
- ``pool_pump`` frac Pool pump energy use schedule. No
174
- ``pool_heater`` frac Pool heater energy use schedule. No
175
- ``hot_tub_pump`` frac Hot tub pump energy use schedule. No
176
- ``hot_tub_heater`` frac Hot tub heater energy use schedule. No
177
- ``hot_water_dishwasher`` frac Dishwasher hot water use schedule. Yes
178
- ``hot_water_clothes_washer`` frac Clothes washer hot water use schedule. Yes
179
- ``hot_water_fixtures`` frac Fixtures (sinks, showers, baths) hot water use schedule. Yes
180
- ``heating_setpoint`` F Thermostat heating setpoint schedule. No
181
- ``cooling_setpoint`` F Thermostat cooling setpoint schedule. No
182
- ``water_heater_setpoint`` F Water heater setpoint schedule. No
183
- ``water_heater_operating_mode`` 0/1 Heat pump water heater operating mode schedule. 0=standard, 1=heat pump only. No
184
- ``battery`` frac Battery schedule. Positive for charging, negative for discharging. No
185
- ``vacancy`` 0/1 Vacancy schedule. 0=occupied, 1=vacant. Automatically overrides other columns. N/A
186
- =============================== ===== ============================================================================== ===================
198
+ =============================== ===== ================================================================================= ===============================
199
+ Column Name Units Description Can Be Stochastically Generated
200
+ =============================== ===== ================================================================================= ===============================
201
+ ``occupants`` frac Occupant heat gain schedule. Yes
202
+ ``lighting_interior`` frac Interior lighting energy use schedule. Yes
203
+ ``lighting_exterior`` frac Exterior lighting energy use schedule. No
204
+ ``lighting_garage`` frac Garage lighting energy use schedule. Yes
205
+ ``lighting_exterior_holiday`` frac Exterior holiday lighting energy use schedule. No
206
+ ``cooking_range`` frac Cooking range & oven energy use schedule. Yes
207
+ ``refrigerator`` frac Primary refrigerator energy use schedule. No
208
+ ``extra_refrigerator`` frac Non-primary refrigerator energy use schedule. No
209
+ ``freezer`` frac Freezer energy use schedule. No
210
+ ``dishwasher`` frac Dishwasher energy use schedule. Yes
211
+ ``clothes_washer`` frac Clothes washer energy use schedule. Yes
212
+ ``clothes_dryer`` frac Clothes dryer energy use schedule. Yes
213
+ ``ceiling_fan`` frac Ceiling fan energy use schedule. Yes
214
+ ``plug_loads_other`` frac Other plug load energy use schedule. Yes
215
+ ``plug_loads_tv`` frac Television plug load energy use schedule. Yes
216
+ ``plug_loads_vehicle`` frac Electric vehicle plug load energy use schedule. No
217
+ ``plug_loads_well_pump`` frac Well pump plug load energy use schedule. No
218
+ ``fuel_loads_grill`` frac Grill fuel load energy use schedule. No
219
+ ``fuel_loads_lighting`` frac Lighting fuel load energy use schedule. No
220
+ ``fuel_loads_fireplace`` frac Fireplace fuel load energy use schedule. No
221
+ ``pool_pump`` frac Pool pump energy use schedule. No
222
+ ``pool_heater`` frac Pool heater energy use schedule. No
223
+ ``hot_tub_pump`` frac Hot tub pump energy use schedule. No
224
+ ``hot_tub_heater`` frac Hot tub heater energy use schedule. No
225
+ ``hot_water_dishwasher`` frac Dishwasher hot water use schedule. Yes
226
+ ``hot_water_clothes_washer`` frac Clothes washer hot water use schedule. Yes
227
+ ``hot_water_fixtures`` frac Fixtures (sinks, showers, baths) hot water use schedule. Yes
228
+ ``heating_setpoint`` F Thermostat heating setpoint schedule. No
229
+ ``cooling_setpoint`` F Thermostat cooling setpoint schedule. No
230
+ ``water_heater_setpoint`` F Water heater setpoint schedule. No
231
+ ``water_heater_operating_mode`` 0/1 Heat pump water heater operating mode schedule. 0=hyrbid/auto, 1=heat pump only. No
232
+ ``battery`` frac Battery schedule. Positive for charging, negative for discharging. No
233
+ ``vacancy`` 0/1 Vacancy schedule. 0=occupied, 1=vacant. Automatically overrides other columns. N/A
234
+ ``outage`` 0/1 Power outage schedule. 0=power. 1=nopower. Automatically overrides other columns. N/A
235
+ =============================== ===== ================================================================================= ===============================
187
236
 
188
237
  Columns with units of `frac` must be normalized to MAX=1; that is, these schedules only define *when* energy is used, not *how much* energy is used.
189
238
  In other words, the amount of energy or hot water used in each simulation timestep is essentially the schedule value divided by the sum of all schedule values in the column, multiplied by the annual energy or hot water use.
@@ -193,8 +242,8 @@ The schedule file must have a full year of data even if the simulation is not an
193
242
  Frequency of schedule values do not need to match the simulation timestep.
194
243
  For example, hourly schedules can be used with a 10-minute simulation timestep, or 10-minute schedules can be used with an hourly simulation timestep.
195
244
 
196
- A detailed stochastic or smooth occupancy schedule CSV file can also be automatically generated for you; see the :ref:`usage_instructions` for the commands.
197
- Inputs for the schedule generator are entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/BuildingOccupancy/NumberofResidents`` and ``/HPXML/Building/Site/Address/StateCode``.
245
+ A detailed stochastic occupancy schedule CSV file can also be automatically generated for you (see "Can Be Stochastically Generated" above for applicable columns); see the :ref:`usage_instructions` for the commands.
246
+ Inputs for the stochastic schedule generator are entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/BuildingOccupancy/NumberofResidents`` and ``/HPXML/Building/Site/Address/StateCode``.
198
247
  See :ref:`buildingoccupancy` and :ref:`buildingsite` for more information.
199
248
 
200
249
  .. warning::
@@ -208,30 +257,19 @@ If neither simple nor detailed inputs are provided, then schedules are defaulted
208
257
  Default schedules are typically smooth, averaged schedules.
209
258
  These default schedules are described elsewhere in the documentation (e.g., see :ref:`buildingoccupancy` for the default occupant heat gain schedule).
210
259
 
211
- HPXML Occupancy Calculation Type
212
- ********************************
213
-
214
- The occupancy calculation type is entered in ``/HPXML/SoftwareInfo/extension/OccupancyCalculationType``: either "asset" or "operational"; it defaults to "asset".
215
-
216
- If OccupancyCalculationType is "asset", various end uses (e.g., clothes washer) are calculated using number of bedrooms and/or conditioned floor area.
217
-
218
- If OccupancyCalculationType is "operational", end uses based on number of bedrooms are adjusted for the number of occupants using the relationship from `RECS 2015 <https://www.eia.gov/consumption/residential/reports/2015/overview/>`_:
219
-
220
- - single-family detached or manufactured home: NumberofBedrooms = -1.47 + 1.69 * NumberofResidents
221
- - single-family attached or apartment unit: NumberofBedrooms = -0.68 + 1.09 * NumberofResidents
222
-
223
260
  HPXML Emissions Scenarios
224
261
  *************************
225
262
 
226
263
  One or more emissions scenarios can be entered as an ``/HPXML/SoftwareInfo/extension/EmissionsScenarios/EmissionsScenario``.
264
+ If not entered, emissions will not be calculated.
227
265
 
228
- ================================ ======== ===== =========== ======== ======== ============================================================
266
+ ================================ ======== ===== =========== ======== ======== ========================================================
229
267
  Element Type Units Constraints Required Default Notes
230
- ================================ ======== ===== =========== ======== ======== ============================================================
268
+ ================================ ======== ===== =========== ======== ======== ========================================================
231
269
  ``Name`` string Yes Name of the scenario (which shows up in the output file)
232
270
  ``EmissionsType`` string See [#]_ Yes Type of emissions (e.g., CO2e)
233
271
  ``EmissionsFactor`` element >= 1 See [#]_ Emissions factor(s) for a given fuel type
234
- ================================ ======== ===== =========== ======== ======== ============================================================
272
+ ================================ ======== ===== =========== ======== ======== ========================================================
235
273
 
236
274
  .. [#] EmissionsType can be anything. But if certain values are provided (e.g., "CO2e"), then some emissions factors can be defaulted as described further below.
237
275
  .. [#] EmissionsFactor is required for electricity and optional for all non-electric fuel types.
@@ -257,28 +295,28 @@ For each scenario, electricity emissions factors must be entered as an ``/HPXML/
257
295
 
258
296
  If an electricity schedule file is used, additional information can be entered in the ``/HPXML/SoftwareInfo/extension/EmissionsScenarios/EmissionsScenario/EmissionsFactor``.
259
297
 
260
- ================================= ================ ===== =========== ======== ======== ============================================================
298
+ ================================= ================ ===== =========== ======== ======== ==============================================
261
299
  Element Type Units Constraints Required Default Notes
262
- ================================= ================ ===== =========== ======== ======== ============================================================
300
+ ================================= ================ ===== =========== ======== ======== ==============================================
263
301
  ``NumberofHeaderRows`` integer # >= 0 No 0 Number of header rows in the schedule file
264
302
  ``ColumnNumber`` integer # >= 1 No 1 Column number of the data in the schedule file
265
- ================================= ================ ===== =========== ======== ======== ============================================================
303
+ ================================= ================ ===== =========== ======== ======== ==============================================
266
304
 
267
305
  Fuel Emissions
268
306
  ~~~~~~~~~~~~~~
269
307
 
270
308
  For each scenario, fuel emissions factors can be optionally entered as an ``/HPXML/SoftwareInfo/extension/EmissionsScenarios/EmissionsScenario/EmissionsFactor``.
271
309
 
272
- ================================ ======== ===== =========== ======== ======== ============================================================
310
+ ================================ ======== ===== =========== ======== ======== =============================
273
311
  Element Type Units Constraints Required Default Notes
274
- ================================ ======== ===== =========== ======== ======== ============================================================
312
+ ================================ ======== ===== =========== ======== ======== =============================
275
313
  ``FuelType`` string See [#]_ Yes Emissions factor fuel type
276
314
  ``Units`` string See [#]_ Yes Emissions factor units
277
315
  ``Value`` double Yes Emissions factor annual value
278
- ================================ ======== ===== =========== ======== ======== ============================================================
316
+ ================================ ======== ===== =========== ======== ======== =============================
279
317
 
280
318
  .. [#] FuelType choices are "natural gas", "propane", "fuel oil", "coal", "wood", and "wood pellets".
281
- .. [#] Units choices are "lb/MBtu" and "kg/MBtu".
319
+ .. [#] Units choices are "lb/MBtu" and "kg/MBtu" (million Btu).
282
320
 
283
321
  Default Values
284
322
  ~~~~~~~~~~~~~~
@@ -296,7 +334,7 @@ If EmissionsType is "CO2e", "NOx" or "SO2" and a given fuel's emissions factor i
296
334
  wood pellets -- -- --
297
335
  ============ ============== ============= =============
298
336
 
299
- Default values are from *Table 5.1.2(1) National Average Emission Factors for Household Fuels* from *ANSI/RESNET/ICCC 301 Standard for the Calculation and Labeling of the Energy Performance of Dwelling and Sleeping Units using an Energy Rating Index* and include both combustion and pre-combustion (e.g., methane leakage for natural gas) emissions.
337
+ Default values in lb/MBtu (million Btu) are from *Table 5.1.2(1) National Average Emission Factors for Household Fuels* from *ANSI/RESNET/ICCC 301 Standard for the Calculation and Labeling of the Energy Performance of Dwelling and Sleeping Units using an Energy Rating Index* and include both combustion and pre-combustion (e.g., methane leakage for natural gas) emissions.
300
338
 
301
339
  If no default value is available, a warning will be issued.
302
340
 
@@ -304,14 +342,15 @@ HPXML Utility Bill Scenarios
304
342
  ****************************
305
343
 
306
344
  One or more utility bill scenarios can be entered as an ``/HPXML/SoftwareInfo/extension/UtilityBillScenarios/UtilityBillScenario``.
345
+ If not entered, utility bills will not be calculated.
307
346
 
308
- ================================ ======== ===== =========== ======== ======== ============================================================
347
+ ================================ ======== ===== =========== ======== ======== ========================================================
309
348
  Element Type Units Constraints Required Default Notes
310
- ================================ ======== ===== =========== ======== ======== ============================================================
349
+ ================================ ======== ===== =========== ======== ======== ========================================================
311
350
  ``Name`` string Yes Name of the scenario (which shows up in the output file)
312
351
  ``UtilityRate`` element >= 0 Utility rate(s) for a given fuel type
313
352
  ``PVCompensation`` element <= 1 PV compensation information
314
- ================================ ======== ===== =========== ======== ======== ============================================================
353
+ ================================ ======== ===== =========== ======== ======== ========================================================
315
354
 
316
355
  See :ref:`bill_outputs` for a description of how the calculated utility bills appear in the output files.
317
356
 
@@ -325,13 +364,13 @@ Electricity rates can be entered using Simple inputs or Detailed inputs.
325
364
 
326
365
  For simple utility rate structures, inputs can be entered using a fixed charge and a marginal rate.
327
366
 
328
- ================================ ======== ======= =========== ======== ======== ============================================================
367
+ ================================ ======== ======= =========== ======== ======== ====================
329
368
  Element Type Units Constraints Required Default Notes
330
- ================================ ======== ======= =========== ======== ======== ============================================================
369
+ ================================ ======== ======= =========== ======== ======== ====================
331
370
  ``FuelType`` string electricity Yes Fuel type
332
371
  ``FixedCharge`` double $/month No 12.0 Monthly fixed charge
333
372
  ``MarginalRate`` double $/kWh No See [#]_ Marginal flat rate
334
- ================================ ======== ======= =========== ======== ======== ============================================================
373
+ ================================ ======== ======= =========== ======== ======== ====================
335
374
 
336
375
  .. [#] If MarginalRate not provided, defaults to state, regional, or national average based on EIA data that can be found at ``ReportUtilityBills/resources/Data/UtilityRates/Average_retail_price_of_electricity.csv``.
337
376
 
@@ -339,12 +378,12 @@ For simple utility rate structures, inputs can be entered using a fixed charge a
339
378
 
340
379
  For detailed utility rate structures, inputs can be entered using a tariff JSON file.
341
380
 
342
- ================================ ======== ======= =========== ======== ======== ============================================================
381
+ ================================ ======== ======= =========== ======== ======== =============================
343
382
  Element Type Units Constraints Required Default Notes
344
- ================================ ======== ======= =========== ======== ======== ============================================================
383
+ ================================ ======== ======= =========== ======== ======== =============================
345
384
  ``FuelType`` string electricity Yes Fuel type
346
385
  ``TariffFilePath`` string Yes Path to tariff JSON file [#]_
347
- ================================ ======== ======= =========== ======== ======== ============================================================
386
+ ================================ ======== ======= =========== ======== ======== =============================
348
387
 
349
388
  .. [#] TariffFilePath must point to a JSON file with utility rate structure information.
350
389
  Tariff files can describe flat, tiered, time-of-use, tiered time-of-use, or real-time pricing rates.
@@ -358,24 +397,22 @@ Fuel Rates
358
397
 
359
398
  For each scenario, fuel rates can be optionally entered as an ``/HPXML/SoftwareInfo/extension/UtilityBillScenarios/UtilityBillScenario/UtilityRate``.
360
399
 
361
- ================================ ======== ======== =========== ======== ======== ============================================================
400
+ ================================ ======== ======== =========== ======== ======== ====================
362
401
  Element Type Units Constraints Required Default Notes
363
- ================================ ======== ======== =========== ======== ======== ============================================================
402
+ ================================ ======== ======== =========== ======== ======== ====================
364
403
  ``FuelType`` string See [#]_ Yes Fuel type
365
404
  ``FixedCharge`` double $/month No See [#]_ Monthly fixed charge
366
405
  ``MarginalRate`` double See [#]_ No See [#]_ Marginal flat rate
367
- ================================ ======== ======== =========== ======== ======== ============================================================
406
+ ================================ ======== ======== =========== ======== ======== ====================
368
407
 
369
408
  .. [#] FuelType choices are "natural gas", "propane", "fuel oil", "coal", "wood", and "wood pellets".
370
409
  .. [#] FixedCharge defaults to $12/month for natural gas and $0/month for other fuels.
371
410
  .. [#] MarginalRate units are $/therm for natural gas, $/gallon for propane and fuel oil, and $/kBtu for other fuels.
372
- .. [#] If MarginalRate not provided, defaults to state, regional, or national average based on EIA data that can be found at:
373
-
374
- - natural gas: ``ReportUtilityBills/resources/Data/UtilityRates/NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv``
375
- - propane: ``ReportUtilityBills/resources/Data/UtilityRates/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv``
376
- - fuel oil: ``ReportUtilityBills/resources/Data/UtilityRates/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv``
377
-
378
- or defaults to $0.015/kBtu for other fuels.
411
+ .. [#] | If MarginalRate not provided, defaults to state, regional, or national average based on EIA data that can be found at:
412
+ | - **natural gas**: ``ReportUtilityBills/resources/Data/UtilityRates/NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv``
413
+ | - **propane**: ``ReportUtilityBills/resources/Data/UtilityRates/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv``
414
+ | - **fuel oil**: ``ReportUtilityBills/resources/Data/UtilityRates/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv``
415
+ | or defaults to $0.015/kBtu for other fuels.
379
416
 
380
417
  PV Compensation
381
418
  ~~~~~~~~~~~~~~~
@@ -410,16 +447,48 @@ If the PV compensation type is net-metering, additional information can be enter
410
447
 
411
448
  If the PV compensation type is feed-in tariff, additional information can be entered in ``/HPXML/SoftwareInfo/extension/UtilityBillScenarios/UtilityBillScenario/PVCompensation/CompensationType/FeedInTariff``.
412
449
 
413
- ============================ ======== ======= =========== ======== ============== =============================================================
450
+ ============================ ======== ======= =========== ======== ============== ========================
414
451
  Element Type Units Constraints Required Default Notes
415
- ============================ ======== ======= =========== ======== ============== =============================================================
452
+ ============================ ======== ======= =========== ======== ============== ========================
416
453
  ``FeedInTariffRate`` double $/kWh No 0.12 Feed-in tariff rate [#]_
417
- ============================ ======== ======= =========== ======== ============== =============================================================
454
+ ============================ ======== ======= =========== ======== ============== ========================
418
455
 
419
456
  .. [#] FeedInTariffRate applies to full (not excess) PV production.
420
457
  Some utilities/regions may have a feed-in tariff policy where compensation occurs for excess PV production (i.e., PV-generated electricity sent to the grid that is not immediately consumed by the building), rather than full PV production.
421
458
  OpenStudio-HPXML is currently unable to calculate utility bills for such a feed-in tariff policy.
422
459
 
460
+ HPXML Unavailable Periods
461
+ *************************
462
+
463
+ One or more unavailable periods (e.g., vacancies, power outages) can be entered as an ``/HPXML/SoftwareInfo/extension/UnavailablePeriods/UnavailablePeriod``.
464
+ If not entered, the simulation will not include unavailable periods.
465
+
466
+ ==================================== ======== ======= ============= ======== ================ ===========
467
+ Element Type Units Constraints Required Default Description
468
+ ==================================== ======== ======= ============= ======== ================ ===========
469
+ ``ColumnName`` string Yes Column name associated with unavailable_periods.csv below
470
+ ``BeginMonth`` integer 1 - 12 Yes Begin month
471
+ ``BeginDayOfMonth`` integer 1 - 31 Yes Begin day
472
+ ``BeginHourOfDay`` integer 0 - 23 No 0 Begin hour
473
+ ``EndMonth`` integer 1 - 12 Yes End month
474
+ ``EndDayOfMonth`` integer 1 - 31 Yes End day
475
+ ``EndHourOfDay`` integer 1 - 24 No 24 End hour
476
+ ``NaturalVentilation`` string See [#]_ No regular schedule Natural ventilation availability
477
+ ==================================== ======== ======= ============= ======== ================ ===========
478
+
479
+ .. [#] NaturalVentilation choices are "regular schedule", "always available", or "always unavailable".
480
+
481
+ See the table below to understand which components are affected by an unavailable period with a given ``ColumnName``.
482
+ You can create an additional column in the CSV file to define another unavailable period type.
483
+
484
+ .. csv-table::
485
+ :file: ../../HPXMLtoOpenStudio/resources/data/unavailable_periods.csv
486
+ :header-rows: 1
487
+
488
+ .. warning::
489
+
490
+ It is not possible to eliminate all HVAC/DHW energy use (e.g. crankcase/defrost energy, water heater parasitics) in EnergyPlus during an unavailable period.
491
+
423
492
  .. _buildingsite:
424
493
 
425
494
  HPXML Building Site
@@ -427,7 +496,6 @@ HPXML Building Site
427
496
 
428
497
  Building site information can be entered in ``/HPXML/Building/Site``.
429
498
 
430
-
431
499
  ======================================= ======== ===== =========== ======== ======== ===============
432
500
  Element Type Units Constraints Required Default Description
433
501
  ======================================= ======== ===== =========== ======== ======== ===============
@@ -488,6 +556,7 @@ For each neighboring building defined, additional information is entered in a ``
488
556
  ============================== ================= ================ =================== ======== ======== =============================================
489
557
 
490
558
  .. [#] Orientation choices are "northeast", "east", "southeast", "south", "southwest", "west", "northwest", or "north"
559
+ The azimuth/orientation of the neighboring building must match the azimuth/orientation of at least one wall in the home, otherwise an error will be thrown.
491
560
  .. [#] If Height not provided, assumed to be same height as the dwelling unit.
492
561
 
493
562
  .. _buildingoccupancy:
@@ -497,18 +566,19 @@ HPXML Building Occupancy
497
566
 
498
567
  Building occupancy is entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/BuildingOccupancy``.
499
568
 
500
- ======================================== ======== ===== =========== ======== ==================== ========================
501
- Element Type Units Constraints Required Default Notes
502
- ======================================== ======== ===== =========== ======== ==================== ========================
503
- ``NumberofResidents`` double >= 0 See [#]_ <number of bedrooms> Number of occupants [#]_
504
- ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions
505
- ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions
506
- ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers
507
- ======================================== ======== ===== =========== ======== ==================== ========================
508
-
509
- .. [#] NumberofResidents is required if OccupancyCalculationType is "operational", .
510
- .. [#] If OccupancyCalculationType is "asset", NumberofResidents is only used to define the heat gain from occupants; various end uses (e.g., clothes washer) are calculated using number of bedrooms and/or conditioned floor area.
511
- If OccupancyCalculationType is "operational", end uses based on number of bedrooms are adjusted for the number of occupants.
569
+ ======================================== ======== ===== =========== ======== ======== ========================
570
+ Element Type Units Constraints Required Default Notes
571
+ ======================================== ======== ===== =========== ======== ======== ========================
572
+ ``NumberofResidents`` double >= 0 No See [#]_ Number of occupants
573
+ ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions
574
+ ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions
575
+ ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers
576
+ ======================================== ======== ===== =========== ======== ======== ========================
577
+
578
+ .. [#] | If NumberofResidents not provided, an *asset* calculation is performed assuming standard occupancy, in which various end use defaults (e.g., plug loads, appliances, and hot water usage) are calculated based on NumberofBedrooms and ConditionedFloorArea per `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
579
+ | If NumberofResidents is provided, an *operational* calculation is instead performed in which the end use defaults are adjusted using the relationship between NumberofBedrooms and NumberofResidents from `RECS 2015 <https://www.eia.gov/consumption/residential/reports/2015/overview/>`_:
580
+ | - **single-family detached or manufactured home**: NumberofBedrooms = -1.47 + 1.69 * NumberofResidents
581
+ | - **single-family attached or apartment unit**: NumberofBedrooms = -0.68 + 1.09 * NumberofResidents
512
582
  .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figures 25 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used: "0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061".
513
583
  .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values are used: "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0".
514
584
 
@@ -523,22 +593,16 @@ Building construction is entered in ``/HPXML/Building/BuildingDetails/BuildingSu
523
593
  ``ResidentialFacilityType`` string See [#]_ Yes Type of dwelling unit
524
594
  ``NumberofConditionedFloors`` double > 0 Yes Number of conditioned floors (including a conditioned basement; excluding a conditioned crawlspace)
525
595
  ``NumberofConditionedFloorsAboveGrade`` double > 0, <= NumberofConditionedFloors Yes Number of conditioned floors above grade (including a walkout basement)
526
- ``NumberofBedrooms`` integer > 0 Yes Number of bedrooms
596
+ ``NumberofBedrooms`` integer >= 0 Yes Number of bedrooms
527
597
  ``NumberofBathrooms`` integer > 0 No See [#]_ Number of bathrooms
528
598
  ``ConditionedFloorArea`` double ft2 > 0 Yes Floor area within conditioned space boundary (excluding conditioned crawlspace floor area)
529
599
  ``ConditionedBuildingVolume`` or ``AverageCeilingHeight`` double ft3 or ft > 0 No See [#]_ Volume/ceiling height within conditioned space boundary (including a conditioned basement/crawlspace)
530
- ``extension/HasFlueOrChimney`` boolean No See [#]_ Presence of flue or chimney for infiltration model
531
600
  ========================================================= ======== ========= ================================= ======== ======== =======================================================================
532
601
 
533
602
  .. [#] ResidentialFacilityType choices are "single-family detached", "single-family attached", "apartment unit", or "manufactured home".
534
603
  .. [#] 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>`_.
535
604
  .. [#] If neither ConditionedBuildingVolume nor AverageCeilingHeight provided, AverageCeilingHeight defaults to the lesser of 8.0 and InfiltrationVolume / ConditionedFloorArea.
536
605
  If needed, additional defaulting is performed using the following relationship: ConditionedBuildingVolume = ConditionedFloorArea * AverageCeilingHeight + ConditionedCrawlspaceVolume.
537
- .. [#] If HasFlueOrChimney not provided, assumed to be true if any of the following conditions are met:
538
-
539
- - heating system is non-electric Furnace, Boiler, WallFurnace, FloorFurnace, Stove, PortableHeater, or FixedHeater and AFUE/Percent is less than 0.89,
540
- - heating system is non-electric Fireplace, or
541
- - water heater is non-electric with energy factor (or equivalent calculated from uniform energy factor) less than 0.63.
542
606
 
543
607
  HPXML Climate Zones
544
608
  -------------------
@@ -595,28 +659,113 @@ Also note that wall and roof surfaces do not require an azimuth/orientation to b
595
659
  Rather, only the windows/skylights themselves require an azimuth/orientation.
596
660
  Thus, software tools can choose to use a single wall (or roof) surface to represent multiple wall (or roof) surfaces for the entire building if all their other properties (construction type, interior/exterior adjacency, etc.) are identical.
597
661
 
662
+ .. _air_infiltration:
663
+
598
664
  HPXML Air Infiltration
599
665
  **********************
600
666
 
601
667
  Building air leakage is entered in ``/HPXML/Building/BuildingDetails/Enclosure/AirInfiltration/AirInfiltrationMeasurement``.
602
668
 
603
- ==================================== ====== ===== =========== ========= ========================= ===============================================
604
- Element Type Units Constraints Required Default Notes
605
- ==================================== ====== ===== =========== ========= ========================= ===============================================
606
- ``SystemIdentifier`` id Yes Unique identifier
607
- ``BuildingAirLeakage/UnitofMeasure`` string See [#]_ Yes Units for air leakage
608
- ``HousePressure`` double Pa > 0 See [#]_ House pressure with respect to outside [#]_
609
- ``BuildingAirLeakage/AirLeakage`` double > 0 Yes Value for air leakage
610
- ``InfiltrationVolume`` double ft3 > 0 No ConditionedBuildingVolume Volume associated with infiltration measurement
611
- ``InfiltrationHeight`` double ft > 0 No See [#]_ Height associated with infiltration measurement [#]_
612
- ==================================== ====== ===== =========== ========= ========================= ===============================================
613
-
614
- .. [#] 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).
615
- .. [#] HousePressure only required if BuildingAirLeakage/UnitofMeasure is not "ACHnatural".
616
- .. [#] HousePressure typical value is 50 Pa.
669
+ ===================================== ====== ===== =========== ========= ========================= ===============================================
670
+ Element Type Units Constraints Required Default Notes
671
+ ===================================== ====== ===== =========== ========= ========================= ===============================================
672
+ ``SystemIdentifier`` id Yes Unique identifier
673
+ ``TypeOfInfiltrationLeakage`` string See [#]_ See [#]_ Type of infiltration leakage
674
+ ``InfiltrationVolume`` double ft3 > 0 No ConditionedBuildingVolume Volume associated with infiltration measurement
675
+ ``InfiltrationHeight`` double ft > 0 No See [#]_ Height associated with infiltration measurement [#]_
676
+ ``extension/Aext`` double frac > 0 No See [#]_ Exterior area ratio for SFA/MF dwelling units
677
+ ===================================== ====== ===== =========== ========= ========================= ===============================================
678
+
679
+ .. [#] TypeOfInfiltrationLeakage choices are "unit total" or "unit exterior only".
680
+ .. [#] TypeOfInfiltrationLeakage required if single-family attached or apartment unit.
681
+ Use "unit total" if the provided infiltration value represents the total infiltration to the dwelling unit, as measured by a compartmentalization test, in which case it will be adjusted by ``extension/Aext``.
682
+ Use "unit exterior only" if the provided infiltration value represents the infiltration to the dwelling unit from outside only, as measured by a guarded test.
617
683
  .. [#] If InfiltrationHeight not provided, it is inferred from other inputs (e.g., conditioned floor area, number of conditioned floors above-grade, above-grade foundation wall height, etc.).
618
684
  .. [#] InfiltrationHeight is defined as the vertical distance between the lowest and highest above-grade points within the pressure boundary, per ASHRAE 62.2.
685
+ .. [#] If Aext not provided and TypeOfInfiltrationLeakage is "unit total", defaults for single-family attached and apartment units to the ratio of exterior (adjacent to outside) envelope surface area to total (adjacent to outside, other dwelling units, or other MF spaces) envelope surface area, as defined by `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_ and `ASHRAE 62.2-2019 <https://www.techstreet.com/ashrae/standards/ashrae-62-2-2019?product_id=2087691>`_.
686
+ Note that all attached surfaces, even adiabatic surfaces, must be defined in the HPXML file.
687
+ If single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", Aext is 1.
688
+
689
+ In addition, one of the following air leakage types must also be defined:
690
+
691
+ - :ref:`infil_ach_cfm`
692
+ - :ref:`infil_natural_ach_cfm`
693
+ - :ref:`infil_ela`
694
+
695
+ .. note::
696
+
697
+ Infiltration airflow rates are calculated using the `Alberta Air Infiltration Model (AIM-2) <https://www.aivc.org/sites/default/files/airbase_3705.pdf>`_ (also known as the ASHRAE Enhanced model).
698
+ When there is a flue or chimney present (see :ref:`flueorchimney`) with combustion air from conditioned space, higher infiltration airflow rates are modeled because the flue leakage is at a different height for stack effect.
699
+
700
+ .. _infil_ach_cfm:
701
+
702
+ ACH or CFM
703
+ ~~~~~~~~~~
704
+
705
+ If entering air leakage as ACH or CFM at a user-specific pressure, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/AirInfiltration/AirInfiltrationMeasurement``.
706
+ For example, ACH50 (ACH at 50 Pascals) is a commonly obtained value from a blower door measurement.
707
+
708
+ ==================================== ====== ===== =========== ========= ======= ===============================================
709
+ Element Type Units Constraints Required Default Notes
710
+ ==================================== ====== ===== =========== ========= ======= ===============================================
711
+ ``BuildingAirLeakage/UnitofMeasure`` string See [#]_ Yes Units for air leakage
712
+ ``HousePressure`` double Pa > 0 Yes House pressure with respect to outside [#]_
713
+ ``BuildingAirLeakage/AirLeakage`` double > 0 Yes Value for air leakage
714
+ ==================================== ====== ===== =========== ========= ======= ===============================================
715
+
716
+ .. [#] UnitofMeasure choices are "ACH" or "CFM".
717
+ .. [#] HousePressure typical value is 50 Pa.
718
+
719
+ .. _infil_natural_ach_cfm:
720
+
721
+ Natural ACH or CFM
722
+ ~~~~~~~~~~~~~~~~~~
723
+
724
+ If entering air leakage as natural ACH or CFM, additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/AirInfiltration/AirInfiltrationMeasurement``.
725
+ Natural ACH or CFM represents the annual average infiltration that a building will see.
726
+
727
+ ==================================== ====== ===== =========== ========= ======= =================================
728
+ Element Type Units Constraints Required Default Notes
729
+ ==================================== ====== ===== =========== ========= ======= =================================
730
+ ``BuildingAirLeakage/UnitofMeasure`` string See [#]_ Yes Units for air leakage
731
+ ``BuildingAirLeakage/AirLeakage`` double > 0 Yes Value for air leakage
732
+ ==================================== ====== ===== =========== ========= ======= =================================
733
+
734
+ .. [#] UnitofMeasure choices are "ACHnatural" or "CFMnatural".
735
+
736
+ .. _infil_ela:
737
+
738
+ Effective Leakage Area
739
+ ~~~~~~~~~~~~~~~~~~~~~~
740
+
741
+ If entering air leakage as Effective Leakage Area (ELA), additional information is entered in ``/HPXML/Building/BuildingDetails/Enclosure/AirInfiltration/AirInfiltrationMeasurement``.
742
+ Effective Leakage Area is defined as the area of a special nozzle-shaped hole (similar to the inlet of a blower door fan) that would leak the same amount of air as the building does at a pressure difference of 4 Pascals.
743
+ Note that ELA is different than Equivalent Leakage Area (EqLA), which involves a sharp-edged hole at a pressure difference of 10 Pascals.
744
+
745
+ ==================================== ====== ======= =========== ========= ========================= ===============================================
746
+ Element Type Units Constraints Required Default Notes
747
+ ==================================== ====== ======= =========== ========= ========================= ===============================================
748
+ ``EffectiveLeakageArea`` double sq. in. >= 0 Yes Effective leakage area value
749
+ ==================================== ====== ======= =========== ========= ========================= ===============================================
619
750
 
751
+ .. _flueorchimney:
752
+
753
+ Flue or Chimney
754
+ ~~~~~~~~~~~~~~~
755
+
756
+ The presence of a flue or chimney with combustion air from conditioned space can be entered in ``/HPXML/Building/BuildingDetails/Enclosure/AirInfiltration``.
757
+
758
+ ================================================ ======= ===== =========== ========= ======== ===============================================
759
+ Element Type Units Constraints Required Default Notes
760
+ ================================================ ======= ===== =========== ========= ======== ===============================================
761
+ ``extension/HasFlueOrChimneyInConditionedSpace`` boolean No See [#]_ Flue or chimney with combustion air from conditioned space
762
+ ================================================ ======= ===== =========== ========= ======== ===============================================
763
+
764
+ .. [#] | If HasFlueOrChimneyInConditionedSpace not provided, defaults to true if any of the following conditions are met, otherwise false:
765
+ | - heating system is non-electric Furnace, Boiler, WallFurnace, FloorFurnace, Stove, PortableHeater, or FixedHeater located in conditioned space and AFUE/Percent is less than 0.89,
766
+ | - heating system is non-electric Fireplace located in conditioned space, or
767
+ | - water heater is non-electric with energy factor (or equivalent calculated from uniform energy factor) less than 0.63 and located in conditioned space.
768
+
620
769
  HPXML Attics
621
770
  ************
622
771
 
@@ -680,18 +829,16 @@ For a multifamily building where the dwelling unit has another dwelling unit abo
680
829
  Azimuth/Orientation is irrelevant for *flat* roofs.
681
830
  .. [#] RoofType choices are "asphalt or fiberglass shingles", "wood shingles or shakes", "shingles", "slate or tile shingles", "metal surfacing", "plastic/rubber/synthetic sheeting", "expanded polystyrene sheathing", "concrete", or "cool roof".
682
831
  .. [#] RoofColor choices are "light", "medium", "medium dark", "dark", or "reflective".
683
- .. [#] If SolarAbsorptance not provided, defaults based on RoofType and RoofColor:
684
-
685
- - **asphalt or fiberglass shingles**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50
686
- - **wood shingles or shakes**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50
687
- - **shingles**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50
688
- - **slate or tile shingles**: dark=0.90, medium dark=0.83, medium=0.75, light=0.60, reflective=0.30
689
- - **metal surfacing**: dark=0.90, medium dark=0.83, medium=0.75, light=0.60, reflective=0.30
690
- - **plastic/rubber/synthetic sheeting**: dark=0.90, medium dark=0.83, medium=0.75, light=0.60, reflective=0.30
691
- - **expanded polystyrene sheathing**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50
692
- - **concrete**: dark=0.90, medium dark=0.83, medium=0.75, light=0.65, reflective=0.50
693
- - **cool roof**: 0.30
694
-
832
+ .. [#] | If SolarAbsorptance not provided, defaults based on RoofType and RoofColor:
833
+ | - **asphalt or fiberglass shingles**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50
834
+ | - **wood shingles or shakes**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50
835
+ | - **shingles**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50
836
+ | - **slate or tile shingles**: dark=0.90, medium dark=0.83, medium=0.75, light=0.60, reflective=0.30
837
+ | - **metal surfacing**: dark=0.90, medium dark=0.83, medium=0.75, light=0.60, reflective=0.30
838
+ | - **plastic/rubber/synthetic sheeting**: dark=0.90, medium dark=0.83, medium=0.75, light=0.60, reflective=0.30
839
+ | - **expanded polystyrene sheathing**: dark=0.92, medium dark=0.89, medium=0.85, light=0.75, reflective=0.50
840
+ | - **concrete**: dark=0.90, medium dark=0.83, medium=0.75, light=0.65, reflective=0.50
841
+ | - **cool roof**: 0.30
695
842
  .. [#] InteriorFinish/Type choices are "gypsum board", "gypsum composite board", "plaster", "wood", "other", or "none".
696
843
  .. [#] InteriorFinish/Type defaults to "gypsum board" if InteriorAdjacentTo is living space, otherwise "none".
697
844
  .. [#] AssemblyEffectiveRValue includes all material layers, interior/exterior air films, and insulation installation grade.
@@ -725,20 +872,18 @@ Each rim joist surface (i.e., the perimeter of floor joists typically found betw
725
872
  Azimuth/Orientation is irrelevant for *interior* rim joists.
726
873
  .. [#] Siding choices are "wood siding", "vinyl siding", "stucco", "fiber cement siding", "brick veneer", "aluminum siding", "masonite siding", "composite shingle siding", "asbestos siding", "synthetic stucco", or "none".
727
874
  .. [#] Color choices are "light", "medium", "medium dark", "dark", or "reflective".
728
- .. [#] If SolarAbsorptance not provided, defaults based on Color:
729
-
730
- - **dark**: 0.95
731
- - **medium dark**: 0.85
732
- - **medium**: 0.70
733
- - **light**: 0.50
734
- - **reflective**: 0.30
735
-
875
+ .. [#] | If SolarAbsorptance not provided, defaults based on Color:
876
+ | - **dark**: 0.95
877
+ | - **medium dark**: 0.85
878
+ | - **medium**: 0.70
879
+ | - **light**: 0.50
880
+ | - **reflective**: 0.30
736
881
  .. [#] AssemblyEffectiveRValue includes all material layers, interior/exterior air films, and insulation installation grade.
737
882
 
738
883
  HPXML Walls
739
884
  ***********
740
885
 
741
- Each wall that has no contact with the ground and bounds a space type is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Walls/Wall``.
886
+ Each wall surface not attached to a foundation space is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Walls/Wall``.
742
887
 
743
888
  ====================================== ================= ================ ===================== ============= =========== ====================================
744
889
  Element Type Units Constraints Required Default Notes
@@ -768,14 +913,12 @@ Each wall that has no contact with the ground and bounds a space type is entered
768
913
  Azimuth/Orientation is irrelevant for *interior* walls (e.g., between living space and garage).
769
914
  .. [#] Siding choices are "wood siding", "vinyl siding", "stucco", "fiber cement siding", "brick veneer", "aluminum siding", "masonite siding", "composite shingle siding", "asbestos siding", "synthetic stucco", or "none".
770
915
  .. [#] Color choices are "light", "medium", "medium dark", "dark", or "reflective".
771
- .. [#] If SolarAbsorptance not provided, defaults based on Color:
772
-
773
- - **dark**: 0.95
774
- - **medium dark**: 0.85
775
- - **medium**: 0.70
776
- - **light**: 0.50
777
- - **reflective**: 0.30
778
-
916
+ .. [#] | If SolarAbsorptance not provided, defaults based on Color:
917
+ | - **dark**: 0.95
918
+ | - **medium dark**: 0.85
919
+ | - **medium**: 0.70
920
+ | - **light**: 0.50
921
+ | - **reflective**: 0.30
779
922
  .. [#] InteriorFinish/Type choices are "gypsum board", "gypsum composite board", "plaster", "wood", "other", or "none".
780
923
  .. [#] InteriorFinish/Type defaults to "gypsum board" if InteriorAdjacentTo is living space or basement - conditioned, otherwise "none".
781
924
  .. [#] AssemblyEffectiveRValue includes all material layers, interior/exterior air films, and insulation installation grade.
@@ -783,9 +926,7 @@ Each wall that has no contact with the ground and bounds a space type is entered
783
926
  HPXML Foundation Walls
784
927
  **********************
785
928
 
786
- Each wall that is in contact with the ground should be specified as an ``/HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall``.
787
-
788
- Other walls (e.g., wood framed walls) that are connected to a below-grade space but have no contact with the ground should be specified as a ``Wall`` and not a ``FoundationWall``.
929
+ Each wall surface attached to a foundation space is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/FoundationWalls/FoundationWall``.
789
930
 
790
931
  ============================================================== ================= ================ =================== ========= ============== ====================================
791
932
  Element Type Units Constraints Required Default Notes
@@ -841,7 +982,7 @@ If insulation layers are provided, additional information is entered in each ``F
841
982
  .. [#] When NominalRValue is non-zero, DistanceToBottomOfInsulation must be greater than DistanceToTopOfInsulation and less than or equal to FoundationWall/Height.
842
983
 
843
984
  HPXML Floors
844
- ******************
985
+ ************
845
986
 
846
987
  Each floor/ceiling surface that is not in contact with the ground (Slab) nor adjacent to ambient conditions above (Roof) is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Floors/Floor``.
847
988
 
@@ -881,7 +1022,7 @@ For floors adjacent to "other housing unit", "other heated space", "other multif
881
1022
  HPXML Slabs
882
1023
  ***********
883
1024
 
884
- Each space type that borders the ground (i.e., basements, crawlspaces, garages, and slab-on-grade foundations) should have a slab entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Slabs/Slab``.
1025
+ Each space type that borders the ground (i.e., basement, crawlspace, garage, and slab-on-grade foundation) should have a slab entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Slabs/Slab``.
885
1026
 
886
1027
  ======================================================= ======== ============ =========== ========= ======== ====================================================
887
1028
  Element Type Units Constraints Required Default Notes
@@ -931,7 +1072,7 @@ Each window or glass door area is entered as an ``/HPXML/Building/BuildingDetail
931
1072
  ``Azimuth`` or ``Orientation`` integer or string deg or direction 0 - 359 or See [#]_ Yes Direction (clockwise from North)
932
1073
  ``UFactor`` and/or ``GlassLayers`` double or string Btu/F-ft2-hr > 0 or See [#]_ Yes Full-assembly NFRC U-factor or glass layers description
933
1074
  ``SHGC`` and/or ``GlassLayers`` double or string 0 - 1 Yes Full-assembly NFRC solar heat gain coefficient or glass layers description
934
- ``ExteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior summer shading coefficient (1=transparent, 0=opaque)
1075
+ ``ExteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior summer shading coefficient (1=transparent, 0=opaque) [#]_
935
1076
  ``ExteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior winter shading coefficient (1=transparent, 0=opaque)
936
1077
  ``InteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 0.70 [#]_ Interior summer shading coefficient (1=transparent, 0=opaque)
937
1078
  ``InteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 0.85 [#]_ Interior winter shading coefficient (1=transparent, 0=opaque)
@@ -943,13 +1084,13 @@ Each window or glass door area is entered as an ``/HPXML/Building/BuildingDetail
943
1084
 
944
1085
  .. [#] Orientation choices are "northeast", "east", "southeast", "south", "southwest", "west", "northwest", or "north".
945
1086
  .. [#] GlassLayers choices are "single-pane", "double-pane", "triple-pane", or "glass block".
1087
+ .. [#] Summer vs winter shading seasons are determined per :ref:`shadingcontrol`.
946
1088
  .. [#] InteriorShading/SummerShadingCoefficient default value indicates 30% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
947
1089
  .. [#] InteriorShading/WinterShadingCoefficient default value indicates 15% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
948
- .. [#] GlassType choices are "clear" or "low-e".
949
- The ``UFactor`` and ``SHGC`` of the window will be adjusted depending on the ``GlassType``, based on correlations derived using `data reported by PNNL <https://labhomes.pnnl.gov/documents/PNNL_24444_Thermal_and_Optical_Properties_Low-E_Storm_Windows_Panels.pdf>`_.
950
- - **Clear storm windows**: U-factor = U-factor of base window - (0.6435 * U-factor of base window - 0.1533); SHGC = 0.9 * SHGC of base window
951
- - **low-e storm windows**: U-factor = U-factor of base window - (0.766 * U-factor of base window - 0.1532); SHGC = 0.8 * SHGC of base window
952
- Note that a storm window is not allowed for a window with U-factor lower than 0.45.
1090
+ .. [#] | GlassType choices are "clear" or "low-e". The ``UFactor`` and ``SHGC`` of the window will be adjusted depending on the ``GlassType``, based on correlations derived using `data reported by PNNL <https://labhomes.pnnl.gov/documents/PNNL_24444_Thermal_and_Optical_Properties_Low-E_Storm_Windows_Panels.pdf>`_.
1091
+ | - **clear storm windows**: U-factor = U-factor of base window - (0.6435 * U-factor of base window - 0.1533); SHGC = 0.9 * SHGC of base window
1092
+ | - **low-e storm windows**: U-factor = U-factor of base window - (0.766 * U-factor of base window - 0.1532); SHGC = 0.8 * SHGC of base window
1093
+ | Note that a storm window is not allowed for a window with U-factor lower than 0.45.
953
1094
  .. [#] FractionOperable reflects whether the windows are operable (can be opened), not how they are used by the occupants.
954
1095
  If a ``Window`` represents a single window, the value should be 0 or 1.
955
1096
  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).
@@ -1039,7 +1180,7 @@ Each skylight is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Skyli
1039
1180
  ``Azimuth`` or ``Orientation`` integer or string deg or direction 0 - 359 or See [#]_ Yes Direction (clockwise from North)
1040
1181
  ``UFactor`` and/or ``GlassLayers`` double or string Btu/F-ft2-hr > 0 or See [#]_ Yes Full-assembly NFRC U-factor or glass layers description
1041
1182
  ``SHGC`` and/or ``GlassLayers`` double or string 0 - 1 Yes Full-assembly NFRC solar heat gain coefficient or glass layers description
1042
- ``ExteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior summer shading coefficient (1=transparent, 0=opaque)
1183
+ ``ExteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior summer shading coefficient (1=transparent, 0=opaque) [#]_
1043
1184
  ``ExteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior winter shading coefficient (1=transparent, 0=opaque)
1044
1185
  ``InteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Interior summer shading coefficient (1=transparent, 0=opaque)
1045
1186
  ``InteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 1.00 Interior winter shading coefficient (1=transparent, 0=opaque)
@@ -1049,11 +1190,11 @@ Each skylight is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Skyli
1049
1190
 
1050
1191
  .. [#] Orientation choices are "northeast", "east", "southeast", "south", "southwest", "west", "northwest", or "north"
1051
1192
  .. [#] GlassLayers choices are "single-pane", "double-pane", or "triple-pane".
1052
- .. [#] GlassType choices are "clear" or "low-e".
1053
- The ``UFactor`` and ``SHGC`` of the skylight will be adjusted depending on the ``GlassType``, based on correlations derived using `data reported by PNNL <https://labhomes.pnnl.gov/documents/PNNL_24444_Thermal_and_Optical_Properties_Low-E_Storm_Windows_Panels.pdf>`_.
1054
- - **clear storm windows**: U-factor = U-factor of base window - (0.6435 * U-factor of base window - 0.1533); SHGC = 0.9 * SHGC of base window
1055
- - **low-e storm windows**: U-factor = U-factor of base window - (0.766 * U-factor of base window - 0.1532); SHGC = 0.8 * SHGC of base window
1056
- Note that a storm window is not allowed for a skylight with U-factor lower than 0.45.
1193
+ .. [#] Summer vs winter shading seasons are determined per :ref:`shadingcontrol`.
1194
+ .. [#] | GlassType choices are "clear" or "low-e". The ``UFactor`` and ``SHGC`` of the skylight will be adjusted depending on the ``GlassType``, based on correlations derived using `data reported by PNNL <https://labhomes.pnnl.gov/documents/PNNL_24444_Thermal_and_Optical_Properties_Low-E_Storm_Windows_Panels.pdf>`_.
1195
+ | - **clear storm windows**: U-factor = U-factor of base window - (0.6435 * U-factor of base window - 0.1533); SHGC = 0.9 * SHGC of base window
1196
+ | - **low-e storm windows**: U-factor = U-factor of base window - (0.766 * U-factor of base window - 0.1532); SHGC = 0.8 * SHGC of base window
1197
+ | Note that a storm window is not allowed for a skylight with U-factor lower than 0.45.
1057
1198
  .. [#] AttachedToRoof must reference a ``Roof``.
1058
1199
 
1059
1200
  If UFactor and SHGC are not provided and GlassLayers is not "glass block", additional information is entered in ``Skylight``.
@@ -1168,19 +1309,27 @@ HPXML Heating Systems
1168
1309
 
1169
1310
  Each heating system (other than a heat pump) is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``.
1170
1311
 
1171
- ================================= ======== ====== =========== ======== ========= ===============================
1172
- Element Type Units Constraints Required Default Notes
1173
- ================================= ======== ====== =========== ======== ========= ===============================
1174
- ``SystemIdentifier`` id Yes Unique identifier
1175
- ``HeatingSystemType`` element 1 [#]_ Yes Type of heating system
1176
- ``HeatingSystemFuel`` string See [#]_ Yes Fuel type
1177
- ``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating output capacity
1178
- ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ See [#]_ Fraction of heating load served
1179
- ================================= ======== ====== =========== ======== ========= ===============================
1180
-
1312
+ ================================= ======== ====== =========== ======== ============== ===============================
1313
+ Element Type Units Constraints Required Default Notes
1314
+ ================================= ======== ====== =========== ======== ============== ===============================
1315
+ ``SystemIdentifier`` id Yes Unique identifier
1316
+ ``UnitLocation`` string See [#]_ No See [#]_ Location of heating system (e.g., air handler)
1317
+ ``HeatingSystemType`` element 1 [#]_ Yes Type of heating system
1318
+ ``HeatingSystemFuel`` string See [#]_ Yes Fuel type
1319
+ ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity
1320
+ ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ See [#]_ Fraction of heating load served
1321
+ ================================= ======== ====== =========== ======== ============== ===============================
1322
+
1323
+ .. [#] UnitLocation choices are "living space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", or "unconditioned space".
1324
+ .. [#] | If UnitLocation not provided, defaults based on the distribution system:
1325
+ | - **none**: "living space"
1326
+ | - **air**: supply duct location with the largest area, otherwise "living space"
1327
+ | - **hydronic**: same default logic as :ref:`waterheatingsystems`
1328
+ | - **dse**: "living space" if ``FractionHeatLoadServed`` is 1, otherwise "unconditioned space"
1181
1329
  .. [#] HeatingSystemType child element choices are ``ElectricResistance``, ``Furnace``, ``WallFurnace``, ``FloorFurnace``, ``Boiler``, ``Stove``, ``PortableHeater``, ``FixedHeater``, or ``Fireplace``.
1182
- .. [#] 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".
1330
+ .. [#] 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".
1183
1331
  For ``ElectricResistance``, "electricity" is required.
1332
+ .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load.
1184
1333
  .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1.
1185
1334
  .. [#] FractionHeatLoadServed is required unless the heating system is a heat pump backup system (i.e., referenced by a ``HeatPump[BackupType="separate"]/BackupSystem``; see :ref:`hvac_heatpump`), in which case FractionHeatLoadServed is not allowed.
1186
1335
 
@@ -1200,14 +1349,16 @@ Furnace
1200
1349
 
1201
1350
  If a furnace is specified, additional information is entered in ``HeatingSystem``.
1202
1351
 
1203
- =============================================== ====== ========= =========== ======== ======== ================================================
1204
- Element Type Units Constraints Required Default Notes
1205
- =============================================== ====== ========= =========== ======== ======== ================================================
1206
- ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
1207
- ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency
1208
- ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed [#]_
1209
- ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_
1210
- =============================================== ====== ========= =========== ======== ======== ================================================
1352
+ ====================================================== ======= ========= =========== ======== ======== ================================================
1353
+ Element Type Units Constraints Required Default Notes
1354
+ ====================================================== ======= ========= =========== ======== ======== ================================================
1355
+ ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
1356
+ ``HeatingSystemType/Furnace/PilotLight`` boolean No false Presence of standing pilot light (older systems)
1357
+ ``HeatingSystemType/Furnace/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate
1358
+ ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency
1359
+ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed [#]_
1360
+ ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_
1361
+ ====================================================== ======= ========= =========== ======== ======== ================================================
1211
1362
 
1212
1363
  .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity" or "gravity") or DSE.
1213
1364
  .. [#] 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.
@@ -1215,17 +1366,33 @@ If a furnace is specified, additional information is entered in ``HeatingSystem`
1215
1366
  .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
1216
1367
  See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
1217
1368
 
1218
- Wall/Floor Furnace
1219
- ~~~~~~~~~~~~~~~~~~
1369
+ Wall Furnace
1370
+ ~~~~~~~~~~~~
1371
+
1372
+ If a wall furnace is specified, additional information is entered in ``HeatingSystem``.
1373
+
1374
+ ========================================================== ======= ====== =========== ======== ======== ================
1375
+ Element Type Units Constraints Required Default Notes
1376
+ ========================================================== ======= ====== =========== ======== ======== ================
1377
+ ``HeatingSystemType/WallFurnace/PilotLight`` boolean No false Presence of standing pilot light (older systems)
1378
+ ``HeatingSystemType/WallFurnace/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate
1379
+ ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency
1380
+ ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power
1381
+ ========================================================== ======= ====== =========== ======== ======== ================
1220
1382
 
1221
- If a wall furnace or floor furnace is specified, additional information is entered in ``HeatingSystem``.
1383
+ Floor Furnace
1384
+ ~~~~~~~~~~~~~
1385
+
1386
+ If a floor furnace is specified, additional information is entered in ``HeatingSystem``.
1222
1387
 
1223
- =============================================== ====== ===== =========== ======== ======== ================
1224
- Element Type Units Constraints Required Default Notes
1225
- =============================================== ====== ===== =========== ======== ======== ================
1226
- ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency
1227
- ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power
1228
- =============================================== ====== ===== =========== ======== ======== ================
1388
+ =========================================================== ======= ====== =========== ======== ======== ================
1389
+ Element Type Units Constraints Required Default Notes
1390
+ =========================================================== ======= ====== =========== ======== ======== ================
1391
+ ``HeatingSystemType/FloorFurnace/PilotLight`` boolean No false Presence of standing pilot light (older systems)
1392
+ ``HeatingSystemType/FloorFurnace/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate
1393
+ ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency
1394
+ ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power
1395
+ =========================================================== ======= ====== =========== ======== ======== ================
1229
1396
 
1230
1397
  .. _hvac_heating_boiler:
1231
1398
 
@@ -1234,18 +1401,24 @@ Boiler
1234
1401
 
1235
1402
  If a boiler is specified, additional information is entered in ``HeatingSystem``.
1236
1403
 
1237
- =============================================== ======= ========= =========== ======== ======== =========================================
1238
- Element Type Units Constraints Required Default Notes
1239
- =============================================== ======= ========= =========== ======== ======== =========================================
1240
- ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units
1241
- ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
1242
- ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency
1243
- =============================================== ======= ========= =========== ======== ======== =========================================
1404
+ ===================================================== ======= ========= =========== ======== ======== =========================================
1405
+ Element Type Units Constraints Required Default Notes
1406
+ ===================================================== ======= ========= =========== ======== ======== =========================================
1407
+ ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units
1408
+ ``HeatingSystemType/Boiler/PilotLight`` boolean No false Presence of standing pilot light (older systems)
1409
+ ``HeatingSystemType/Boiler/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate
1410
+ ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
1411
+ ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency
1412
+ ===================================================== ======= ========= =========== ======== ======== =========================================
1244
1413
 
1245
1414
  .. [#] For in-unit boilers, HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", or "radiant ceiling") or DSE.
1246
1415
  For shared boilers, HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop") or AirDistribution (type: "fan coil").
1247
1416
  If the shared boiler has "water loop" distribution, a :ref:`hvac_heatpump_wlhp` must also be specified.
1248
-
1417
+
1418
+ .. note::
1419
+
1420
+ The choice of hydronic distribution type (radiator vs baseboard vs radiant panels) does not affect simulation results;
1421
+ it is currently only used to know if there's an attached water loop heat pump or not.
1249
1422
 
1250
1423
  If an in-unit boiler if specified, additional information is entered in ``HeatingSystem``.
1251
1424
 
@@ -1255,10 +1428,9 @@ If an in-unit boiler if specified, additional information is entered in ``Heatin
1255
1428
  ``ElectricAuxiliaryEnergy`` double kWh/yr >= 0 No See [#]_ Electric auxiliary energy
1256
1429
  =========================== ======== ====== =========== ======== ======== =========================
1257
1430
 
1258
- .. [#] If ElectricAuxiliaryEnergy not provided, defaults as follows:
1259
-
1260
- - **Oil boiler**: 330 kWh/yr
1261
- - **Gas boiler**: 170 kWh/yr
1431
+ .. [#] | If ElectricAuxiliaryEnergy not provided, defaults as follows:
1432
+ | - **Oil boiler**: 330 kWh/yr
1433
+ | - **Gas boiler**: 170 kWh/yr
1262
1434
 
1263
1435
  If instead a shared boiler is specified, additional information is entered in ``HeatingSystem``.
1264
1436
 
@@ -1270,12 +1442,10 @@ If instead a shared boiler is specified, additional information is entered in ``
1270
1442
  ``ElectricAuxiliaryEnergy`` or ``extension/FanCoilWatts`` double kWh/yr or W >= 0 No [#]_ Electric auxiliary energy or fan coil power
1271
1443
  ============================================================ ======== =========== =========== ======== ======== =========================
1272
1444
 
1273
- .. [#] If ElectricAuxiliaryEnergy nor SharedLoopWatts provided, defaults as follows:
1274
-
1275
- - **Shared boiler w/ baseboard**: 220 kWh/yr
1276
- - **Shared boiler w/ water loop heat pump**: 265 kWh/yr
1277
- - **Shared boiler w/ fan coil**: 438 kWh/yr
1278
-
1445
+ .. [#] | If ElectricAuxiliaryEnergy nor SharedLoopWatts provided, defaults as follows:
1446
+ | - **Shared boiler w/ baseboard**: 220 kWh/yr
1447
+ | - **Shared boiler w/ water loop heat pump**: 265 kWh/yr
1448
+ | - **Shared boiler w/ fan coil**: 438 kWh/yr
1279
1449
  .. [#] FanCoilWatts only used if boiler connected to fan coil and SharedLoopWatts provided.
1280
1450
 
1281
1451
  Stove
@@ -1283,12 +1453,14 @@ Stove
1283
1453
 
1284
1454
  If a stove is specified, additional information is entered in ``HeatingSystem``.
1285
1455
 
1286
- ================================================== ====== ===== =========== ======== ========= ===================
1287
- Element Type Units Constraints Required Default Notes
1288
- ================================================== ====== ===== =========== ======== ========= ===================
1289
- ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency
1290
- ``extension/FanPowerWatts`` double W >= 0 No 40 Fan power
1291
- ================================================== ====== ===== =========== ======== ========= ===================
1456
+ ==================================================== ======= ====== =========== ======== ========= ===================
1457
+ Element Type Units Constraints Required Default Notes
1458
+ ==================================================== ======= ====== =========== ======== ========= ===================
1459
+ ``HeatingSystemType/Stove/PilotLight`` boolean No false Presence of standing pilot light (older systems)
1460
+ ``HeatingSystemType/Stove/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate
1461
+ ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency
1462
+ ``extension/FanPowerWatts`` double W >= 0 No 40 Fan power
1463
+ ==================================================== ======= ====== =========== ======== ========= ===================
1292
1464
 
1293
1465
  Portable/Fixed Heater
1294
1466
  ~~~~~~~~~~~~~~~~~~~~~
@@ -1307,12 +1479,14 @@ Fireplace
1307
1479
 
1308
1480
  If a fireplace is specified, additional information is entered in ``HeatingSystem``.
1309
1481
 
1310
- ================================================== ====== ===== =========== ======== ========= ===================
1311
- Element Type Units Constraints Required Default Notes
1312
- ================================================== ====== ===== =========== ======== ========= ===================
1313
- ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency
1314
- ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power
1315
- ================================================== ====== ===== =========== ======== ========= ===================
1482
+ ======================================================== ======= ====== =========== ======== ========= ===================
1483
+ Element Type Units Constraints Required Default Notes
1484
+ ======================================================== ======= ====== =========== ======== ========= ===================
1485
+ ``HeatingSystemType/Fireplace/PilotLight`` boolean No false Presence of standing pilot light (older systems)
1486
+ ``HeatingSystemType/Fireplace/extension/PilotLightBtuh`` double Btu/hr >= 0 No 500 Pilot light burn rate
1487
+ ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency
1488
+ ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power
1489
+ ======================================================== ======= ====== =========== ======== ========= ===================
1316
1490
 
1317
1491
  .. _hvac_cooling:
1318
1492
 
@@ -1321,15 +1495,21 @@ HPXML Cooling Systems
1321
1495
 
1322
1496
  Each cooling system (other than a heat pump) is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem``.
1323
1497
 
1324
- ========================== ======== ====== =========== ======== ======= ===============================
1325
- Element Type Units Constraints Required Default Notes
1326
- ========================== ======== ====== =========== ======== ======= ===============================
1327
- ``SystemIdentifier`` id Yes Unique identifier
1328
- ``CoolingSystemType`` string See [#]_ Yes Type of cooling system
1329
- ``CoolingSystemFuel`` string See [#]_ Yes Fuel type
1330
- ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
1331
- ========================== ======== ====== =========== ======== ======= ===============================
1332
-
1498
+ ========================== ======== ====== =========== ======== ======== ===============================
1499
+ Element Type Units Constraints Required Default Notes
1500
+ ========================== ======== ====== =========== ======== ======== ===============================
1501
+ ``SystemIdentifier`` id Yes Unique identifier
1502
+ ``UnitLocation`` string See [#]_ No See [#]_ Location of cooling system (e.g., air handler)
1503
+ ``CoolingSystemType`` string See [#]_ Yes Type of cooling system
1504
+ ``CoolingSystemFuel`` string See [#]_ Yes Fuel type
1505
+ ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
1506
+ ========================== ======== ====== =========== ======== ======== ===============================
1507
+
1508
+ .. [#] UnitLocation choices are "living space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", or "unconditioned space".
1509
+ .. [#] | If UnitLocation not provided, defaults based on the distribution system:
1510
+ | - **none**: "living space"
1511
+ | - **air**: supply duct location with the largest area, otherwise "living space"
1512
+ | - **dse**: "living space" if ``FractionCoolLoadServed`` is 1, otherwise "unconditioned space"
1333
1513
  .. [#] CoolingSystemType choices are "central air conditioner", "room air conditioner", "evaporative cooler", "mini-split", "chiller", "cooling tower", or "packaged terminal air conditioner".
1334
1514
  .. [#] CoolingSystemFuel only choice is "electricity".
1335
1515
  .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1.
@@ -1339,21 +1519,23 @@ Central Air Conditioner
1339
1519
 
1340
1520
  If a central air conditioner is specified, additional information is entered in ``CoolingSystem``.
1341
1521
 
1342
- ================================================================ ====== =========== =========== ======== ========= ================================================
1343
- Element Type Units Constraints Required Default Notes
1344
- ================================================================ ====== =========== =========== ======== ========= ================================================
1345
- ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
1346
- ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh or # > 0 Yes Rated efficiency [#]_
1347
- ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling output capacity
1348
- ``SensibleHeatFraction`` double frac 0 - 1 No See [#]_ Sensible heat fraction
1349
- ``CompressorType`` string See [#]_ No See [#]_ Type of compressor
1350
- ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed [#]_
1351
- ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_
1352
- ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed charges [#]_
1353
- ================================================================ ====== =========== =========== ======== ========= ================================================
1522
+ ================================================================ ====== =========== =========== ======== ============== ===========================================================
1523
+ Element Type Units Constraints Required Default Notes
1524
+ ================================================================ ====== =========== =========== ======== ============== ===========================================================
1525
+ ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
1526
+ ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh or # > 0 Yes Rated efficiency [#]_
1527
+ ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity
1528
+ ``SensibleHeatFraction`` double frac 0 - 1 No See [#]_ Sensible heat fraction
1529
+ ``CompressorType`` string See [#]_ No See [#]_ Type of compressor
1530
+ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed [#]_
1531
+ ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_
1532
+ ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed refrigerant charges [#]_
1533
+ ``extension/CrankcaseHeaterPowerWatts`` double W No 50.0 Crankcase heater power
1534
+ ================================================================ ====== =========== =========== ======== ============== ===========================================================
1354
1535
 
1355
1536
  .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE.
1356
1537
  .. [#] If SEER2 provided, converted to SEER using ANSI/RESNET/ICC 301-2022 Addendum C, where SEER = SEER2 / 0.95 (assumed to be a split system).
1538
+ .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load.
1357
1539
  .. [#] If not provided, defaults to 0.73 for single/two stage and 0.78 for variable speed.
1358
1540
  .. [#] CompressorType choices are "single stage", "two stage", or "variable speed".
1359
1541
  .. [#] If CompressorType not provided, defaults to "single stage" if SEER <= 15, else "two stage" if SEER <= 21, else "variable speed".
@@ -1362,7 +1544,7 @@ If a central air conditioner is specified, additional information is entered in
1362
1544
  .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
1363
1545
  See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
1364
1546
  .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect.
1365
- A non-zero charge defect should typically only be applied for systems that are pre-charged on site.
1547
+ A non-zero charge defect should typically only be applied for systems that are charged on site, not for systems that have pre-charged line sets.
1366
1548
  See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
1367
1549
 
1368
1550
  Room Air Conditioner
@@ -1370,28 +1552,31 @@ Room Air Conditioner
1370
1552
 
1371
1553
  If a room air conditioner is specified, additional information is entered in ``CoolingSystem``.
1372
1554
 
1373
- ================================================================== ====== ====== =========== ======== ========= ============================================
1374
- Element Type Units Constraints Required Default Notes
1375
- ================================================================== ====== ====== =========== ======== ========= ============================================
1376
- ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency
1377
- ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling output capacity
1378
- ``SensibleHeatFraction`` double frac 0 - 1 No 0.65 Sensible heat fraction
1379
- ``IntegratedHeatingSystemFuel`` string See [#]_ No <none> Fuel type of integrated heater
1380
- ================================================================== ====== ====== =========== ======== ========= ============================================
1555
+ ================================================================== ====== ====== =========== ======== ============== ============================================
1556
+ Element Type Units Constraints Required Default Notes
1557
+ ================================================================== ====== ====== =========== ======== ============== ============================================
1558
+ ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency
1559
+ ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity
1560
+ ``SensibleHeatFraction`` double frac 0 - 1 No 0.65 Sensible heat fraction
1561
+ ``IntegratedHeatingSystemFuel`` string See [#]_ No <none> Fuel type of integrated heater
1562
+ ``extension/CrankcaseHeaterPowerWatts`` double W No 0.0 Crankcase heater power
1563
+ ================================================================== ====== ====== =========== ======== ============== ============================================
1381
1564
 
1382
1565
  .. [#] IntegratedHeatingSystemFuel 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".
1566
+ .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load.
1383
1567
 
1384
1568
  If the room air conditioner has integrated heating, additional information is entered in ``CoolingSystem``.
1385
1569
  Note that a room air conditioner with reverse cycle heating should be entered as a heat pump; see :ref:`room_ac_reverse_cycle`.
1386
1570
 
1387
- ================================================================== ====== ====== =========== ======== ========= ============================================
1388
- Element Type Units Constraints Required Default Notes
1389
- ================================================================== ====== ====== =========== ======== ========= ============================================
1390
- ``IntegratedHeatingSystemCapacity`` double Btu/hr >= 0 No autosized Heating output capacity of integrated heater
1391
- ``IntegratedHeatingSystemAnnualEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency of integrated heater
1392
- ``IntegratedHeatingSystemFractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1393
- ================================================================== ====== ====== =========== ======== ========= ============================================
1571
+ ================================================================== ====== ====== =========== ======== ============== ============================================
1572
+ Element Type Units Constraints Required Default Notes
1573
+ ================================================================== ====== ====== =========== ======== ============== ============================================
1574
+ ``IntegratedHeatingSystemCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity of integrated heater
1575
+ ``IntegratedHeatingSystemAnnualEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency of integrated heater
1576
+ ``IntegratedHeatingSystemFractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1577
+ ================================================================== ====== ====== =========== ======== ============== ============================================
1394
1578
 
1579
+ .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load.
1395
1580
  .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1.
1396
1581
 
1397
1582
  Packaged Terminal Air Conditioner
@@ -1399,28 +1584,31 @@ Packaged Terminal Air Conditioner
1399
1584
 
1400
1585
  If a PTAC is specified, additional information is entered in ``CoolingSystem``.
1401
1586
 
1402
- ================================================================== ====== ====== =========== ======== ========= ==========================================
1403
- Element Type Units Constraints Required Default Notes
1404
- ================================================================== ====== ====== =========== ======== ========= ==========================================
1405
- ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency
1406
- ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling output capacity
1407
- ``SensibleHeatFraction`` double frac 0 - 1 No 0.65 Sensible heat fraction
1408
- ``IntegratedHeatingSystemFuel`` string See [#]_ No <none> Fuel type of integrated heater
1409
- ================================================================== ====== ====== =========== ======== ========= ==========================================
1410
-
1587
+ ================================================================== ====== ====== =========== ======== ============== ==========================================
1588
+ Element Type Units Constraints Required Default Notes
1589
+ ================================================================== ====== ====== =========== ======== ============== ==========================================
1590
+ ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency
1591
+ ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity
1592
+ ``SensibleHeatFraction`` double frac 0 - 1 No 0.65 Sensible heat fraction
1593
+ ``IntegratedHeatingSystemFuel`` string See [#]_ No <none> Fuel type of integrated heater
1594
+ ``extension/CrankcaseHeaterPowerWatts`` double W No 0.0 Crankcase heater power
1595
+ ================================================================== ====== ====== =========== ======== ============== ==========================================
1596
+
1597
+ .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load.
1411
1598
  .. [#] IntegratedHeatingSystemFuel 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".
1412
1599
 
1413
1600
  If the PTAC has integrated heating, additional information is entered in ``CoolingSystem``.
1414
1601
  Note that a packaged terminal heat pump should be entered as a heat pump; see :ref:`pthp`.
1415
1602
 
1416
- ================================================================== ====== ====== =========== ======== ========= ============================================
1417
- Element Type Units Constraints Required Default Notes
1418
- ================================================================== ====== ====== =========== ======== ========= ============================================
1419
- ``IntegratedHeatingSystemCapacity`` double Btu/hr >= 0 No autosized Heating output capacity of integrated heater
1420
- ``IntegratedHeatingSystemAnnualEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency of integrated heater
1421
- ``IntegratedHeatingSystemFractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1422
- ================================================================== ====== ====== =========== ======== ========= ============================================
1603
+ ================================================================== ====== ====== =========== ======== ============== ============================================
1604
+ Element Type Units Constraints Required Default Notes
1605
+ ================================================================== ====== ====== =========== ======== ============== ============================================
1606
+ ``IntegratedHeatingSystemCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity of integrated heater
1607
+ ``IntegratedHeatingSystemAnnualEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency of integrated heater
1608
+ ``IntegratedHeatingSystemFractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1609
+ ================================================================== ====== ====== =========== ======== ============== ============================================
1423
1610
 
1611
+ .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load.
1424
1612
  .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1.
1425
1613
 
1426
1614
  Evaporative Cooler
@@ -1428,40 +1616,43 @@ Evaporative Cooler
1428
1616
 
1429
1617
  If an evaporative cooler is specified, additional information is entered in ``CoolingSystem``.
1430
1618
 
1431
- ================================= ======== ====== =========== ======== ========= ==================================
1432
- Element Type Units Constraints Required Default Notes
1433
- ================================= ======== ====== =========== ======== ========= ==================================
1434
- ``DistributionSystem`` idref See [#]_ No ID of attached distribution system
1435
- ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling output capacity
1436
- ================================= ======== ====== =========== ======== ========= ==================================
1619
+ ================================= ======== ====== =========== ======== ============== ==================================
1620
+ Element Type Units Constraints Required Default Notes
1621
+ ================================= ======== ====== =========== ======== ============== ==================================
1622
+ ``DistributionSystem`` idref See [#]_ No ID of attached distribution system
1623
+ ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity
1624
+ ================================= ======== ====== =========== ======== ============== ==================================
1437
1625
 
1438
1626
  .. [#] If provided, HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE.
1627
+ .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load.
1439
1628
 
1440
1629
  Mini-Split Air Conditioner
1441
1630
  ~~~~~~~~~~~~~~~~~~~~~~~~~~
1442
1631
 
1443
- If a mini-split air conditioner is specified, additional information is entered in ``CoolingSystem``.
1444
-
1445
- ================================================================ ======== ====== =========== ======== ========= ===============================================
1446
- Element Type Units Constraints Required Default Notes
1447
- ================================================================ ======== ====== =========== ======== ========= ===============================================
1448
- ``DistributionSystem`` idref See [#]_ No ID of attached distribution system
1449
- ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency [#]_
1450
- ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling output capacity
1451
- ``SensibleHeatFraction`` double frac 0 - 1 No 0.73 Sensible heat fraction
1452
- ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed
1453
- ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_
1454
- ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed charges [#]_
1455
- ================================================================ ======== ====== =========== ======== ========= ===============================================
1632
+ If a mini-split air conditioner is specified, additional information is entered in ``CoolingSystem``. Each ``CoolingSystem`` is expected to represent a single outdoor unit, whether connected to one indoor head or multiple indoor heads.
1633
+
1634
+ ================================================================ ======== ====== =========== ======== ============== ===========================================================
1635
+ Element Type Units Constraints Required Default Notes
1636
+ ================================================================ ======== ====== =========== ======== ============== ===========================================================
1637
+ ``DistributionSystem`` idref See [#]_ No ID of attached distribution system
1638
+ ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency [#]_
1639
+ ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity
1640
+ ``SensibleHeatFraction`` double frac 0 - 1 No 0.73 Sensible heat fraction
1641
+ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed
1642
+ ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_
1643
+ ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed refrigerant charges [#]_
1644
+ ``extension/CrankcaseHeaterPowerWatts`` double W No 50.0 Crankcase heater power
1645
+ ================================================================ ======== ====== =========== ======== ============== ===========================================================
1456
1646
 
1457
1647
  .. [#] If provided, HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE.
1458
1648
  .. [#] If SEER2 provided, converted to SEER using ANSI/RESNET/ICC 301-2022 Addendum C, where SEER = SEER2 / 0.95 if ducted and SEER = SEER2 if ductless.
1649
+ .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load.
1459
1650
  .. [#] FanPowerWattsPerCFM defaults to 0.07 W/cfm for ductless systems and 0.18 W/cfm for ducted systems.
1460
1651
  .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
1461
- A non-zero airflow defect should typically only be applied for systems attached to ducts.
1652
+ A non-zero airflow defect can only be applied for systems attached to a distribution system.
1462
1653
  See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
1463
1654
  .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect.
1464
- A non-zero charge defect should typically only be applied for systems that are pre-charged on site.
1655
+ A non-zero charge defect should typically only be applied for systems that are charged on site, not for systems that have pre-charged line sets.
1465
1656
  See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
1466
1657
 
1467
1658
  .. note::
@@ -1529,125 +1720,114 @@ Each heat pump is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/H
1529
1720
  Element Type Units Constraints Required Default Notes
1530
1721
  ================================= ======== ====== =========== ======== ========= ===============================================
1531
1722
  ``SystemIdentifier`` id Yes Unique identifier
1723
+ ``UnitLocation`` string See [#]_ No See [#]_ Location of heat pump (e.g., air handler)
1532
1724
  ``HeatPumpType`` string See [#]_ Yes Type of heat pump
1533
1725
  ``HeatPumpFuel`` string See [#]_ Yes Fuel type
1534
1726
  ``BackupType`` string See [#]_ No <none> Type of backup heating
1535
1727
  ================================= ======== ====== =========== ======== ========= ===============================================
1536
1728
 
1729
+ .. [#] UnitLocation choices are "living space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", or "unconditioned space".
1730
+ .. [#] | If UnitLocation not provided, defaults based on the distribution system:
1731
+ | - **none**: "living space"
1732
+ | - **air**: supply duct location with the largest area, otherwise "living space"
1733
+ | - **hydronic**: same default logic as :ref:`waterheatingsystems`
1734
+ | - **dse**: "living space" if ``FractionHeatLoadServed``/``FractionCoolLoadServed`` are 1, otherwise "unconditioned space"
1537
1735
  .. [#] HeatPumpType choices are "air-to-air", "mini-split", "ground-to-air", "water-loop-to-air", "packaged terminal heat pump", or "room air conditioner with reverse cycle".
1538
1736
  .. [#] HeatPumpFuel only choice is "electricity".
1539
1737
  .. [#] BackupType choices are "integrated" or "separate".
1540
1738
  Use "integrated" if the heat pump's distribution system and blower fan power applies to the backup heating (e.g., built-in electric strip heat or an integrated backup furnace, i.e., a dual-fuel heat pump).
1541
1739
  Use "separate" if the backup system has its own distribution system (e.g., electric baseboard or a boiler).
1542
1740
 
1543
- If a backup type of "integrated" is provided, additional information is entered in ``HeatPump``.
1544
-
1545
- ============================================================================= ======== ====== =========== ======== ========= ==========================================
1546
- Element Type Units Constraints Required Default Notes
1547
- ============================================================================= ======== ====== =========== ======== ========= ==========================================
1548
- ``BackupSystemFuel`` string See [#]_ Yes Integrated backup heating fuel type
1549
- ``BackupAnnualHeatingEfficiency[Units="Percent" or Units="AFUE"]/Value`` double frac 0 - 1 Yes Integrated backup heating efficiency
1550
- ``BackupHeatingCapacity`` double Btu/hr >= 0 No autosized Integrated backup heating output capacity
1551
- ``BackupHeatingSwitchoverTemperature`` or ``BackupHeatingLockoutTemperature`` double F No See [#]_ Integrated backup heating switchover/lockout temperature [#]_
1552
- ============================================================================= ======== ====== =========== ======== ========= ==========================================
1553
-
1554
- .. [#] 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".
1555
- .. [#] BackupHeatingLockoutTemperature defaults to 40 deg-F if neither BackupHeatingSwitchoverTemperature nor BackupHeatingLockoutTemperature are provided.
1556
- .. [#] Provide BackupHeatingSwitchoverTemperature for a situation where there is a discrete outdoor temperature when the heat pump stops operating and the backup heating system starts operating.
1557
- Alternatively, provide BackupHeatingLockoutTemperature for a situation where the backup heating is disabled above a certain temperature in order to prevent backup heating operation during, e.g., a thermostat heating setback recovery event.
1558
- If neither provided, the backup heating system will operate as needed for hours when the heat pump has insufficient capacity.
1559
-
1560
- If a backup type of "separate" is provided, additional information is entered in ``HeatPump``.
1561
-
1562
- ============================================================================= ======== ====== =========== ======== ========= ==========================================
1563
- Element Type Units Constraints Required Default Notes
1564
- ============================================================================= ======== ====== =========== ======== ========= ==========================================
1565
- ``BackupSystem`` idref See [#]_ Yes ID of separate backup heating system
1566
- ``BackupHeatingSwitchoverTemperature`` double F No <none> Separate backup heating system switchover temperature [#]_
1567
- ============================================================================= ======== ====== =========== ======== ========= ==========================================
1568
-
1569
- .. [#] BackupSystem must reference a ``HeatingSystem``.
1570
- .. [#] Provide BackupHeatingSwitchoverTemperature for a situation where there is a discrete outdoor temperature when the heat pump stops operating and the backup heating system starts operating.
1571
- If not provided, the backup heating system will operate as needed for hours when the heat pump has insufficient capacity.
1572
-
1573
- .. note::
1574
-
1575
- Due to how the separate backup heating system is modeled in EnergyPlus, there are a few restrictions:
1576
-
1577
- - The conditioned space cannot be partially heated (i.e., the sum of all ``FractionHeatLoadServed`` must be 1).
1578
- - There cannot be multiple backup heating systems.
1579
-
1580
1741
  Air-to-Air Heat Pump
1581
1742
  ~~~~~~~~~~~~~~~~~~~~
1582
1743
 
1583
1744
  If an air-to-air heat pump is specified, additional information is entered in ``HeatPump``.
1584
1745
 
1585
- ================================================================ ====== ======= ======================== ======== ========= =================================================
1586
- Element Type Units Constraints Required Default Notes
1587
- ================================================================ ====== ======= ======================== ======== ========= =================================================
1588
- ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
1589
- ``CompressorType`` string See [#]_ No See [#]_ Type of compressor
1590
- ``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating output capacity (excluding any backup heating)
1591
- ``HeatingCapacity17F`` double Btu/hr >= 0, <= HeatingCapacity No Heating output capacity at 17F, if available
1592
- ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling output capacity
1593
- ``CoolingSensibleHeatFraction`` double frac 0 - 1 No See [#]_ Sensible heat fraction
1594
- ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1595
- ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
1596
- ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency [#]_
1597
- ``AnnualHeatingEfficiency[Units="HSPF" or Units="HSPF2"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency [#]_
1598
- ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed
1599
- ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_
1600
- ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed charges [#]_
1601
- ================================================================ ====== ======= ======================== ======== ========= =================================================
1746
+ ================================================================ ====== ======== ======================== ======== ============== =================================================
1747
+ Element Type Units Constraints Required Default Notes
1748
+ ================================================================ ====== ======== ======================== ======== ============== =================================================
1749
+ ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
1750
+ ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity (excluding any backup heating)
1751
+ ``HeatingCapacity17F`` double Btu/hr >= 0, <= HeatingCapacity No Heating output capacity at 17F, if available
1752
+ ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity
1753
+ ``CompressorType`` string See [#]_ No See [#]_ Type of compressor
1754
+ ``CompressorLockoutTemperature`` double F No See [#]_ Minimum outdoor temperature for compressor operation
1755
+ ``CoolingSensibleHeatFraction`` double frac 0 - 1 No See [#]_ Sensible heat fraction
1756
+ ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1757
+ ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
1758
+ ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency [#]_
1759
+ ``AnnualHeatingEfficiency[Units="HSPF" or Units="HSPF2"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency [#]_
1760
+ ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No See [#]_ Heating output capacity retention at cold temperature [#]_
1761
+ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed
1762
+ ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_
1763
+ ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed refrigerant charges [#]_
1764
+ ``extension/CrankcaseHeaterPowerWatts`` double W No 50.0 Crankcase heater power
1765
+ ================================================================ ====== ======== ======================== ======== ============== =================================================
1602
1766
 
1603
1767
  .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE.
1768
+ .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`).
1769
+ .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`).
1604
1770
  .. [#] CompressorType choices are "single stage", "two stage", or "variable speed".
1605
1771
  .. [#] If CompressorType not provided, defaults to "single stage" if SEER <= 15, else "two stage" if SEER <= 21, else "variable speed".
1772
+ .. [#] If neither CompressorLockoutTemperature nor BackupHeatingSwitchoverTemperature provided, CompressorLockoutTemperature defaults to 25F if fossil fuel backup otherwise 0F.
1606
1773
  .. [#] If not provided, defaults to 0.73 for single/two stage and 0.78 for variable speed.
1607
1774
  .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1.
1608
1775
  .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1.
1609
1776
  .. [#] If SEER2 provided, converted to SEER using ANSI/RESNET/ICC 301-2022 Addendum C, where SEER = SEER2 / 0.95 (assumed to be a split system).
1610
1777
  .. [#] If HSPF2 provided, converted to HSPF using ANSI/RESNET/ICC 301-2022 Addendum C, where HSPF = HSPF2 / 0.85 (assumed to be a split system).
1778
+ .. [#] | If neither extension/HeatingCapacityRetention nor HeatingCapacity17F provided, heating capacity retention defaults based on CompressorType:
1779
+ | - **single/two stage**: 0.425 at 5F
1780
+ | - **variable speed**: 0.5 at 5F
1781
+ .. [#] The extension/HeatingCapacityRetention input is a more flexible alternative to HeatingCapacity17F, as it can apply to autosized systems and allows the heating capacity retention to be defined at a user-specified temperature (instead of 17F).
1782
+ Either input approach can be used, but not both.
1611
1783
  .. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.5 W/cfm if HSPF <= 8.75, else 0.375 W/cfm.
1612
1784
  .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
1613
1785
  See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
1614
1786
  .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect.
1615
- A non-zero charge defect should typically only be applied for systems that are pre-charged on site.
1787
+ A non-zero charge defect should typically only be applied for systems that are charged on site, not for systems that have pre-charged line sets.
1616
1788
  See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
1617
1789
 
1618
1790
  Mini-Split Heat Pump
1619
1791
  ~~~~~~~~~~~~~~~~~~~~
1620
1792
 
1621
- If a mini-split heat pump is specified, additional information is entered in ``HeatPump``.
1622
-
1623
- ================================================================ ======== ====== ======================== ======== ========= ==============================================
1624
- Element Type Units Constraints Required Default Notes
1625
- ================================================================ ======== ====== ======================== ======== ========= ==============================================
1626
- ``DistributionSystem`` idref See [#]_ No ID of attached distribution system, if present
1627
- ``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating output capacity (excluding any backup heating)
1628
- ``HeatingCapacity17F`` double Btu/hr >= 0, <= HeatingCapacity No Heating output capacity at 17F, if available
1629
- ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling output capacity
1630
- ``CoolingSensibleHeatFraction`` double frac 0 - 1 No 0.73 Sensible heat fraction
1631
- ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1632
- ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
1633
- ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency [#]_
1634
- ``AnnualHeatingEfficiency[Units="HSPF" or Units="HSPF2"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency [#]_
1635
- ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed
1636
- ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_
1637
- ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed charges [#]_
1638
- ================================================================ ======== ====== ======================== ======== ========= ==============================================
1793
+ If a mini-split heat pump is specified, additional information is entered in ``HeatPump``. Each ``HeatPump`` is expected to represent a single outdoor unit, whether connected to one indoor head or multiple indoor heads.
1794
+
1795
+ ================================================================ ======== ======== ======================== ======== ============== ==============================================
1796
+ Element Type Units Constraints Required Default Notes
1797
+ ================================================================ ======== ======== ======================== ======== ============== ==============================================
1798
+ ``DistributionSystem`` idref See [#]_ No ID of attached distribution system, if present
1799
+ ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity (excluding any backup heating)
1800
+ ``HeatingCapacity17F`` double Btu/hr >= 0, <= HeatingCapacity No Heating output capacity at 17F, if available
1801
+ ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity
1802
+ ``CompressorLockoutTemperature`` double F No See [#]_ Minimum outdoor temperature for compressor operation
1803
+ ``CoolingSensibleHeatFraction`` double frac 0 - 1 No 0.73 Sensible heat fraction
1804
+ ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1805
+ ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
1806
+ ``AnnualCoolingEfficiency[Units="SEER" or Units="SEER2"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency [#]_
1807
+ ``AnnualHeatingEfficiency[Units="HSPF" or Units="HSPF2"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency [#]_
1808
+ ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No 0.5 | 5 Heating output capacity retention at cold temperature [#]_
1809
+ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed
1810
+ ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_
1811
+ ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed refrigerant charges [#]_
1812
+ ``extension/CrankcaseHeaterPowerWatts`` double W No 50.0 Crankcase heater power
1813
+ ================================================================ ======== ======== ======================== ======== ============== ==============================================
1639
1814
 
1640
1815
  .. [#] If provided, HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE.
1816
+ .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`).
1817
+ .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`).
1818
+ .. [#] If neither CompressorLockoutTemperature nor BackupHeatingSwitchoverTemperature provided, CompressorLockoutTemperature defaults to 25F if fossil fuel backup otherwise -20F.
1641
1819
  .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1.
1642
1820
  .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1.
1643
1821
  .. [#] If SEER2 provided, converted to SEER using ANSI/RESNET/ICC 301-2022 Addendum C, where SEER = SEER2 / 0.95 if ducted and SEER = SEER2 if ductless.
1644
1822
  .. [#] If HSPF2 provided, converted to HSPF using ANSI/RESNET/ICC 301-2022 Addendum C, where HSPF = HSPF2 / 0.85 if ducted and HSPF = HSPF2 / 0.90 if ductless.
1823
+ .. [#] The extension/HeatingCapacityRetention input is a more flexible alternative to HeatingCapacity17F, as it can apply to autosized systems and allows the heating capacity retention to be defined at a user-specified temperature (instead of 17F).
1824
+ Either input approach can be used, but not both.
1645
1825
  .. [#] FanPowerWattsPerCFM defaults to 0.07 W/cfm for ductless systems and 0.18 W/cfm for ducted systems.
1646
1826
  .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
1647
- A non-zero airflow defect should typically only be applied for systems attached to ducts.
1827
+ A non-zero airflow defect can only be applied for systems attached to a distribution system.
1648
1828
  See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
1649
1829
  .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect.
1650
- A non-zero charge defect should typically only be applied for systems that are pre-charged on site.
1830
+ A non-zero charge defect should typically only be applied for systems that are charged on site, not for systems that have pre-charged line sets.
1651
1831
  See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
1652
1832
 
1653
1833
  .. note::
@@ -1661,20 +1841,29 @@ Packaged Terminal Heat Pump
1661
1841
 
1662
1842
  If a packaged terminal heat pump is specified, additional information is entered in ``HeatPump``.
1663
1843
 
1664
- =============================================================== ======== ====== =========== ======== ========= ==============================================
1665
- Element Type Units Constraints Required Default Notes
1666
- =============================================================== ======== ====== =========== ======== ========= ==============================================
1667
- ``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating output capacity (excluding any backup heating)
1668
- ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling output capacity
1669
- ``CoolingSensibleHeatFraction`` double frac 0 - 1 No 0.65 Sensible heat fraction
1670
- ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1671
- ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
1672
- ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency
1673
- ``AnnualHeatingEfficiency[Units="COP"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency
1674
- =============================================================== ======== ====== =========== ======== ========= ==============================================
1675
-
1844
+ =============================================================== ======== ======== ======================== ======== ============== ==============================================
1845
+ Element Type Units Constraints Required Default Notes
1846
+ =============================================================== ======== ======== ======================== ======== ============== ==============================================
1847
+ ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity (excluding any backup heating)
1848
+ ``HeatingCapacity17F`` double Btu/hr >= 0, <= HeatingCapacity No Heating output capacity at 17F, if available
1849
+ ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity
1850
+ ``CompressorLockoutTemperature`` double F No See [#]_ Minimum outdoor temperature for compressor operation
1851
+ ``CoolingSensibleHeatFraction`` double frac 0 - 1 No 0.65 Sensible heat fraction
1852
+ ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1853
+ ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
1854
+ ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency
1855
+ ``AnnualHeatingEfficiency[Units="COP"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency
1856
+ ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No 0.425 | 5 Heating output capacity retention at cold temperature [#]_
1857
+ ``extension/CrankcaseHeaterPowerWatts`` double W No 0.0 Crankcase heater power
1858
+ =============================================================== ======== ======== ======================== ======== ============== ==============================================
1859
+
1860
+ .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`).
1861
+ .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`).
1862
+ .. [#] If neither CompressorLockoutTemperature nor BackupHeatingSwitchoverTemperature provided, CompressorLockoutTemperature defaults to 25F if fossil fuel backup otherwise 0F.
1676
1863
  .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1.
1677
1864
  .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1.
1865
+ .. [#] The extension/HeatingCapacityRetention input is a more flexible alternative to HeatingCapacity17F, as it can apply to autosized systems and allows the heating capacity retention to be defined at a user-specified temperature (instead of 17F).
1866
+ Either input approach can be used, but not both.
1678
1867
 
1679
1868
  .. _room_ac_reverse_cycle:
1680
1869
 
@@ -1683,48 +1872,59 @@ Room Air Conditioner w/ Reverse Cycle
1683
1872
 
1684
1873
  If a room air conditioner with reverse cycle is specified, additional information is entered in ``HeatPump``.
1685
1874
 
1686
- =============================================================== ======== ====== =========== ======== ========= ==============================================
1687
- Element Type Units Constraints Required Default Notes
1688
- =============================================================== ======== ====== =========== ======== ========= ==============================================
1689
- ``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating output capacity (excluding any backup heating)
1690
- ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling output capacity
1691
- ``CoolingSensibleHeatFraction`` double frac 0 - 1 No 0.65 Sensible heat fraction
1692
- ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1693
- ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
1694
- ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency
1695
- ``AnnualHeatingEfficiency[Units="COP"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency
1696
- =============================================================== ======== ====== =========== ======== ========= ==============================================
1697
-
1875
+ =============================================================== ======== ======== ======================== ======== ============== ==============================================
1876
+ Element Type Units Constraints Required Default Notes
1877
+ =============================================================== ======== ======== ======================== ======== ============== ==============================================
1878
+ ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity (excluding any backup heating)
1879
+ ``HeatingCapacity17F`` double Btu/hr >= 0, <= HeatingCapacity No Heating output capacity at 17F, if available
1880
+ ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity
1881
+ ``CompressorLockoutTemperature`` double F No See [#]_ Minimum outdoor temperature for compressor operation
1882
+ ``CoolingSensibleHeatFraction`` double frac 0 - 1 No 0.65 Sensible heat fraction
1883
+ ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1884
+ ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
1885
+ ``AnnualCoolingEfficiency[Units="EER" or Units="CEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency
1886
+ ``AnnualHeatingEfficiency[Units="COP"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency
1887
+ ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No 0.425 | 5 Heating output capacity retention at cold temperature [#]_
1888
+ ``extension/CrankcaseHeaterPowerWatts`` double W No 0.0 Crankcase heater power
1889
+ =============================================================== ======== ======== ======================== ======== ============== ==============================================
1890
+
1891
+ .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`).
1892
+ .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`).
1893
+ .. [#] If neither CompressorLockoutTemperature nor BackupHeatingSwitchoverTemperature provided, CompressorLockoutTemperature defaults to 25F if fossil fuel backup otherwise 0F.
1698
1894
  .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1.
1699
1895
  .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1.
1896
+ .. [#] The extension/HeatingCapacityRetention input is a more flexible alternative to HeatingCapacity17F, as it can apply to autosized systems and allows the heating capacity retention to be defined at a user-specified temperature (instead of 17F).
1897
+ Either input approach can be used, but not both.
1700
1898
 
1701
1899
  Ground-to-Air Heat Pump
1702
1900
  ~~~~~~~~~~~~~~~~~~~~~~~
1703
1901
 
1704
1902
  If a ground-to-air heat pump is specified, additional information is entered in ``HeatPump``.
1705
1903
 
1706
- =============================================== ======== ====== =========== ======== ========= ==============================================
1707
- Element Type Units Constraints Required Default Notes
1708
- =============================================== ======== ====== =========== ======== ========= ==============================================
1709
- ``IsSharedSystem`` boolean No false Whether it has a shared hydronic circulation loop [#]_
1710
- ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
1711
- ``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating output capacity (excluding any backup heating)
1712
- ``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling output capacity
1713
- ``CoolingSensibleHeatFraction`` double frac 0 - 1 No 0.73 Sensible heat fraction
1714
- ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1715
- ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
1716
- ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency
1717
- ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency
1718
- ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served
1719
- ``extension/PumpPowerWattsPerTon`` double W/ton >= 0 No See [#]_ Pump power [#]_
1720
- ``extension/SharedLoopWatts`` double W >= 0 See [#]_ Shared pump power [#]_
1721
- ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed
1722
- ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_
1723
- ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed charges [#]_
1724
- =============================================== ======== ====== =========== ======== ========= ==============================================
1904
+ =============================================== ======== ====== =========== ======== ============== ==============================================
1905
+ Element Type Units Constraints Required Default Notes
1906
+ =============================================== ======== ====== =========== ======== ============== ==============================================
1907
+ ``IsSharedSystem`` boolean No false Whether it has a shared hydronic circulation loop [#]_
1908
+ ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
1909
+ ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity (excluding any backup heating)
1910
+ ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity
1911
+ ``CoolingSensibleHeatFraction`` double frac 0 - 1 No 0.73 Sensible heat fraction
1912
+ ``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
1913
+ ``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
1914
+ ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency
1915
+ ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency
1916
+ ``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served
1917
+ ``extension/PumpPowerWattsPerTon`` double W/ton >= 0 No See [#]_ Pump power [#]_
1918
+ ``extension/SharedLoopWatts`` double W >= 0 See [#]_ Shared pump power [#]_
1919
+ ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed
1920
+ ``extension/AirflowDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed airflows [#]_
1921
+ ``extension/ChargeDefectRatio`` double frac -0.9 - 9 No 0.0 Deviation between design/installed refrigerant charges [#]_
1922
+ =============================================== ======== ====== =========== ======== ============== ==============================================
1725
1923
 
1726
1924
  .. [#] IsSharedSystem should be true if the SFA/MF building has multiple ground source heat pumps connected to a shared hydronic circulation loop.
1727
1925
  .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE.
1926
+ .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load.
1927
+ .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load.
1728
1928
  .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1.
1729
1929
  .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1.
1730
1930
  .. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1.
@@ -1737,7 +1937,7 @@ If a ground-to-air heat pump is specified, additional information is entered in
1737
1937
  .. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
1738
1938
  See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
1739
1939
  .. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect.
1740
- A non-zero charge defect should typically only be applied for systems that are pre-charged on site.
1940
+ A non-zero charge defect should typically only be applied for systems that are charged on site, not for systems that have pre-charged line sets.
1741
1941
  See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
1742
1942
 
1743
1943
  .. _hvac_heatpump_wlhp:
@@ -1747,17 +1947,18 @@ Water-Loop-to-Air Heat Pump
1747
1947
 
1748
1948
  If a water-loop-to-air heat pump is specified, additional information is entered in ``HeatPump``.
1749
1949
 
1750
- =============================================== ======== ====== =========== ======== ========= ==============================================
1751
- Element Type Units Constraints Required Default Notes
1752
- =============================================== ======== ====== =========== ======== ========= ==============================================
1753
- ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
1754
- ``HeatingCapacity`` double Btu/hr > 0 No autosized Heating output capacity
1755
- ``CoolingCapacity`` double Btu/hr > 0 See [#]_ Cooling output capacity
1756
- ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 See [#]_ Rated cooling efficiency
1757
- ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 See [#]_ Rated heating efficiency
1758
- =============================================== ======== ====== =========== ======== ========= ==============================================
1950
+ =============================================== ======== ====== =========== ======== ============== ==============================================
1951
+ Element Type Units Constraints Required Default Notes
1952
+ =============================================== ======== ====== =========== ======== ============== ==============================================
1953
+ ``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
1954
+ ``HeatingCapacity`` double Btu/hr > 0 No autosized [#]_ Heating output capacity
1955
+ ``CoolingCapacity`` double Btu/hr > 0 See [#]_ Cooling output capacity
1956
+ ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 See [#]_ Rated cooling efficiency
1957
+ ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 See [#]_ Rated heating efficiency
1958
+ =============================================== ======== ====== =========== ======== ============== ==============================================
1759
1959
 
1760
1960
  .. [#] HVACDistribution type must be AirDistribution (type: "regular velocity") or DSE.
1961
+ .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load.
1761
1962
  .. [#] CoolingCapacity required if there is a shared chiller or cooling tower with water loop distribution.
1762
1963
  .. [#] AnnualCoolingEfficiency required if there is a shared chiller or cooling tower with water loop distribution.
1763
1964
  .. [#] AnnualHeatingEfficiency required if there is a shared boiler with water loop distribution.
@@ -1766,6 +1967,61 @@ If a water-loop-to-air heat pump is specified, additional information is entered
1766
1967
 
1767
1968
  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.
1768
1969
 
1970
+ Backup
1971
+ ~~~~~~
1972
+
1973
+ If a backup type ("integrated" or "separate") is provided, additional information is entered in ``HeatPump``.
1974
+
1975
+ ============================================================================= ======== ====== =========== ======== ========= ==========================================
1976
+ Element Type Units Constraints Required Default Notes
1977
+ ============================================================================= ======== ====== =========== ======== ========= ==========================================
1978
+ ``BackupHeatingSwitchoverTemperature`` or ``CompressorLockoutTemperature`` double F No See [#]_ Minimum outdoor temperature for compressor operation
1979
+ ``BackupHeatingSwitchoverTemperature`` or ``BackupHeatingLockoutTemperature`` double F See [#]_ No See [#]_ Maximum outdoor temperature for backup operation
1980
+ ============================================================================= ======== ====== =========== ======== ========= ==========================================
1981
+
1982
+ .. [#] If neither BackupHeatingSwitchoverTemperature nor CompressorLockoutTemperature provided, CompressorLockoutTemperature defaults as described above for individual heat pump types.
1983
+ .. [#] If both BackupHeatingLockoutTemperature and CompressorLockoutTemperature provided, BackupHeatingLockoutTemperature must be greater than CompressorLockoutTemperature.
1984
+ .. [#] If neither BackupHeatingSwitchoverTemperature nor BackupHeatingLockoutTemperature provided, BackupHeatingLockoutTemperature defaults to 40F for electric backup and 50F for fossil fuel backup.
1985
+
1986
+ .. note::
1987
+
1988
+ Provide ``BackupHeatingSwitchoverTemperature`` for a situation where there is a discrete outdoor temperature below which the heat pump stops operating and above which the backup heating system stops operating.
1989
+
1990
+ Alternatively, provide A) ``CompressorLockoutTemperature`` to specify the outdoor temperature below which the heat pump stops operating and/or B) ``BackupHeatingLockoutTemperature`` to specify the outdoor temperature above which the heat pump backup system stops operating.
1991
+ If both are provided, the compressor and backup system can both operate between the two temperatures (e.g., simultaneous operation or cycling).
1992
+ If both are provided using the same temperature, it is equivalent to using ``BackupHeatingSwitchoverTemperature``.
1993
+
1994
+ If a backup type of "integrated" is provided, additional information is entered in ``HeatPump``.
1995
+
1996
+ ============================================================================= ======== ====== =========== ======== ============== ==========================================
1997
+ Element Type Units Constraints Required Default Notes
1998
+ ============================================================================= ======== ====== =========== ======== ============== ==========================================
1999
+ ``BackupSystemFuel`` string See [#]_ Yes Integrated backup heating fuel type
2000
+ ``BackupAnnualHeatingEfficiency[Units="Percent" or Units="AFUE"]/Value`` double frac 0 - 1 Yes Integrated backup heating efficiency
2001
+ ``BackupHeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Integrated backup heating output capacity
2002
+ ============================================================================= ======== ====== =========== ======== ============== ==========================================
2003
+
2004
+ .. [#] 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".
2005
+ .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load.
2006
+ (The autosized capacity is not affected by the HeatPumpSizingMethodology selected in :ref:`hvac_sizing_control`.)
2007
+
2008
+ If a backup type of "separate" is provided, additional information is entered in ``HeatPump``.
2009
+
2010
+ ============================================================================= ======== ====== =========== ======== ========= ==========================================
2011
+ Element Type Units Constraints Required Default Notes
2012
+ ============================================================================= ======== ====== =========== ======== ========= ==========================================
2013
+ ``BackupSystem`` idref See [#]_ Yes ID of separate backup heating system
2014
+ ============================================================================= ======== ====== =========== ======== ========= ==========================================
2015
+
2016
+ .. [#] BackupSystem must reference a ``HeatingSystem``.
2017
+
2018
+ .. note::
2019
+
2020
+ Due to how the separate backup heating system is modeled in EnergyPlus, there are a few restrictions:
2021
+
2022
+ - The conditioned space cannot be partially heated (i.e., the sum of all ``FractionHeatLoadServed`` must be 1).
2023
+ - There cannot be multiple backup heating systems.
2024
+
1769
2025
  .. _hvac_control:
1770
2026
 
1771
2027
  HPXML HVAC Control
@@ -1918,32 +2174,47 @@ Additional information is entered in each ``DuctLeakageMeasurement``.
1918
2174
 
1919
2175
  Additional information is entered in each ``Ducts``.
1920
2176
 
1921
- =============================================== ======= ============ ================ ======== ========= ======================================
1922
- Element Type Units Constraints Required Default Notes
1923
- =============================================== ======= ============ ================ ======== ========= ======================================
1924
- ``SystemIdentifier`` id Yes Unique identifier
1925
- ``DuctInsulationRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of duct insulation [#]_
1926
- ``DuctLocation`` string See [#]_ No See [#]_ Duct location
1927
- ``FractionDuctArea`` and/or ``DuctSurfaceArea`` double frac or ft2 0-1 [#]_ or >= 0 See [#]_ See [#]_ Duct fraction/surface area in location
1928
- ``extension/DuctSurfaceAreaMultiplier`` double >= 0 No 1.0 Duct surface area multiplier
1929
- =============================================== ======= ============ ================ ======== ========= ======================================
1930
-
1931
- .. [#] DuctInsulationRValue should not include air films (i.e., use 0 for an uninsulated duct).
2177
+ ======================================================= ======= ============ ================ ======== ========== ======================================
2178
+ Element Type Units Constraints Required Default Notes
2179
+ ======================================================= ======= ============ ================ ======== ========== ======================================
2180
+ ``SystemIdentifier`` id Yes Unique identifier
2181
+ ``DuctInsulationRValue`` and/or ``DuctEffectiveRValue`` double F-ft2-hr/Btu >= 0 Yes Duct R-value [#]_
2182
+ ``DuctBuriedInsulationLevel`` string See [#]_ No not buried Duct buried insulation level [#]_
2183
+ ``DuctLocation`` string See [#]_ No See [#]_ Duct location
2184
+ ``FractionDuctArea`` and/or ``DuctSurfaceArea`` double frac or ft2 0-1 [#]_ or >= 0 See [#]_ See [#]_ Duct fraction/surface area in location
2185
+ ``extension/DuctSurfaceAreaMultiplier`` double >= 0 No 1.0 Duct surface area multiplier
2186
+ ======================================================= ======= ============ ================ ======== ========== ======================================
2187
+
2188
+ .. [#] | It is recommended to provide DuctInsulationRValue and not DuctEffectiveRValue. DuctInsulationRValue should not include the exterior air film (i.e., use 0 for an uninsulated duct). For ducts buried in insulation (using DuctBuriedInsulationLevel), DuctInsulationRValue should only represent any surrounding insulation duct wrap and not the entire attic insulation R-value. On the other hand, DuctEffectiveRValue should include the exterior air film as well as other effects such as adjustments for insulation wrapped around round ducts, or effective heat transfer for ducts buried in attic insulation. DuctEffectiveRValue is used for the actual model heat transfer, and when not provided is calculated as follows:
2189
+ | - **Uninsulated**: 1.7
2190
+ | - **Supply, Insulated**: 2.2438 + 0.5619 * DuctInsulationRValue
2191
+ | - **Supply, Partially Buried**: 5.83 + 2.0 * DuctInsulationRValue
2192
+ | - **Supply, Fully Buried**: 9.4 + 1.9 * DuctInsulationRValue
2193
+ | - **Supply, Deeply Buried**: 16.67 + 1.45 * DuctInsulationRValue
2194
+ | - **Return, Insulated**: 2.0388 + 0.7053 * DuctInsulationRValue
2195
+ | - **Return, Partially Buried**: 7.6 + 2.5 * DuctInsulationRValue
2196
+ | - **Return, Fully Buried**: 11.83 + 2.45 * DuctInsulationRValue
2197
+ | - **Return, Deeply Buried**: 20.9 + 1.9 * DuctInsulationRValue
2198
+ | The uninsulated effective R-value is from ASHRAE Handbook of Fundamentals. The insulated effective R-values are from `True R-Values of Round Residential Ductwork <https://www.aceee.org/files/proceedings/2006/data/papers/SS06_Panel1_Paper18.pdf>`_. The buried effective R-values are from Table 13 of `Reducing Thermal Losses and Gains With Buried and Encapsulated Ducts <https://www.nrel.gov/docs/fy13osti/55876.pdf>`_. The equations assume that the average supply duct has an 8-inch diameter and the average return duct has a 14-in diameter
2199
+ .. [#] DuctBuriedInsulationLevel choices are "not buried", "partially buried", "fully buried", or "deeply buried".
2200
+ .. [#] Whether the ducts are buried in, e.g., attic loose-fill insulation.
2201
+ Partially buried ducts have insulation that does not cover the top of the ducts.
2202
+ Fully buried ducts have insulation that just covers the top of the ducts.
2203
+ Deeply buried ducts have insulation that continues above the top of the ducts.
2204
+ See the `Building America Solution Center <https://basc.pnnl.gov/resource-guides/ducts-buried-attic-insulation>`_ for more information.
1932
2205
  .. [#] DuctLocation choices are "living space", "basement - conditioned", "basement - unconditioned", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "attic - unvented", "attic - vented", "garage", "outside", "exterior wall", "under slab", "roof deck", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space".
1933
2206
  See :ref:`hpxmllocations` for descriptions.
1934
2207
  .. [#] If DuctLocation not provided, defaults to the first present space type: "basement - conditioned", "basement - unconditioned", "crawlspace - conditioned", "crawlspace - vented", "crawlspace - unvented", "attic - vented", "attic - unvented", "garage", or "living space".
1935
2208
  If NumberofConditionedFloorsAboveGrade > 1, secondary ducts will be located in "living space".
1936
2209
  .. [#] The sum of all ``[DuctType="supply"]/FractionDuctArea`` and ``[DuctType="return"]/FractionDuctArea`` must each equal to 1.
1937
2210
  .. [#] FractionDuctArea and/or DuctSurfaceArea are required if DuctLocation is provided.
1938
- .. [#] If neither DuctSurfaceArea nor FractionDuctArea provided, duct surface areas will be calculated based on `ASHRAE Standard 152 <https://www.energy.gov/eere/buildings/downloads/ashrae-standard-152-spreadsheet>`_:
1939
-
1940
- - **Primary supply duct area**: 0.27 * F_out * ConditionedFloorAreaServed
1941
- - **Secondary supply duct area**: 0.27 * (1 - F_out) * ConditionedFloorAreaServed
1942
- - **Primary return duct area**: b_r * F_out * ConditionedFloorAreaServed
1943
- - **Secondary return duct area**: b_r * (1 - F_out) * ConditionedFloorAreaServed
1944
-
1945
- where F_out is 1.0 when NumberofConditionedFloorsAboveGrade <= 1 and 0.75 when NumberofConditionedFloorsAboveGrade > 1, and b_r is 0.05 * NumberofReturnRegisters with a maximum value of 0.25.
1946
- If FractionDuctArea is provided, each duct surface area will be FractionDuctArea times total duct area, which is calculated using the sum of primary and secondary duct areas from the equations above.
2211
+ .. [#] | If neither DuctSurfaceArea nor FractionDuctArea provided, duct surface areas will be calculated based on `ASHRAE Standard 152 <https://www.energy.gov/eere/buildings/downloads/ashrae-standard-152-spreadsheet>`_:
2212
+ | - **Primary supply duct area**: 0.27 * F_out * ConditionedFloorAreaServed
2213
+ | - **Secondary supply duct area**: 0.27 * (1 - F_out) * ConditionedFloorAreaServed
2214
+ | - **Primary return duct area**: b_r * F_out * ConditionedFloorAreaServed
2215
+ | - **Secondary return duct area**: b_r * (1 - F_out) * ConditionedFloorAreaServed
2216
+ | where F_out is 1.0 when NumberofConditionedFloorsAboveGrade <= 1 and 0.75 when NumberofConditionedFloorsAboveGrade > 1, and b_r is 0.05 * NumberofReturnRegisters with a maximum value of 0.25.
2217
+ | If FractionDuctArea is provided, each duct surface area will be FractionDuctArea times total duct area, which is calculated using the sum of primary and secondary duct areas from the equations above.
1947
2218
 
1948
2219
  Hydronic Distribution
1949
2220
  ~~~~~~~~~~~~~~~~~~~~~
@@ -2016,18 +2287,24 @@ If not entered, the simulation will not include mechanical ventilation.
2016
2287
 
2017
2288
  .. [#] For central fan integrated supply systems, IsSharedSystem must be false.
2018
2289
  .. [#] FanType choices are "energy recovery ventilator", "heat recovery ventilator", "exhaust only", "supply only", "balanced", or "central fan integrated supply".
2019
- .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 <https://www.techstreet.com/ashrae/standards/ashrae-62-2-2019?product_id=2087691>`_, including adjustments for A) infiltration credit, B) balanced vs imbalanced systems, and C) adiabatic surfaces for SFA/MF buildings.
2020
- .. [#] For a central fan integrated supply system, the flow rate should equal the amount of outdoor air provided to the distribution system.
2290
+ .. [#] | If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 <https://www.techstreet.com/ashrae/standards/ashrae-62-2-2019?product_id=2087691>`_:
2291
+ | Qfan = Qtot - Φ*(Qinf * Aext)
2292
+ | where
2293
+ | Qfan = required mechanical ventilation rate (cfm)
2294
+ | Qtot = total required ventilation rate (cfm) = 0.03 * ConditionedFloorArea + 7.5*(NumberofBedrooms + 1)
2295
+ | Qinf = infiltration rate (cfm)
2296
+ | Aext = 1 if single-family detached or TypeOfInfiltrationLeakage is "unit exterior only", otherwise ratio of SFA/MF exterior envelope surface area to total envelope surface area as described in :ref:`air_infiltration`
2297
+ | Φ = 1 for balanced ventilation systems, and Qinf/Qtot otherwise
2298
+ .. [#] For a central fan integrated supply system, the flow rate should equal the amount of outdoor air provided to the distribution system, not the total airflow through the distribution system.
2021
2299
  .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a CFIS system, in which case it is not allowed.
2022
2300
  .. [#] If HoursInOperation not provided, defaults to 24 (i.e., running continuously) for all system types other than central fan integrated supply (CFIS), and 8.0 (i.e., running intermittently) for CFIS systems.
2023
2301
  For a CFIS system, the HoursInOperation and the flow rate are combined to form the hourly target ventilation rate (e.g., inputs of 90 cfm and 8 hrs/day produce an hourly target ventilation rate of 30 cfm).
2024
2302
  For a CFIS system with a supplemental fan, the supplemental fan's runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate.
2025
- .. [#] If FanPower not provided, defaults based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_:
2026
-
2027
- - "energy recovery ventilator", "heat recovery ventilator", or shared system: 1.0 W/cfm
2028
- - "balanced": 0.7 W/cfm
2029
- - "central fan integrated supply": 0.5 W/cfm
2030
- - "exhaust only" or "supply only": 0.35 W/cfm
2303
+ .. [#] | If FanPower not provided, defaults based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_:
2304
+ | - **energy recovery ventilator, heat recovery ventilator, or shared system**: 1.0 W/cfm
2305
+ | - **balanced**: 0.7 W/cfm
2306
+ | - **central fan integrated supply**: 0.5 W/cfm
2307
+ | - **exhaust only" or "supply only**: 0.35 W/cfm
2031
2308
 
2032
2309
  **Exhaust/Supply Only**
2033
2310
 
@@ -2044,9 +2321,11 @@ If a heat recovery ventilator system is specified, additional information is ent
2044
2321
  ======================================================================== ====== ===== =========== ======== ======= =======================================
2045
2322
  Element Type Units Constraints Required Default Notes
2046
2323
  ======================================================================== ====== ===== =========== ======== ======= =======================================
2047
- ``SensibleRecoveryEfficiency`` or ``AdjustedSensibleRecoveryEfficiency`` double frac 0 - 1 Yes (Adjusted) Sensible recovery efficiency
2324
+ ``AdjustedSensibleRecoveryEfficiency`` or ``SensibleRecoveryEfficiency`` double frac 0 - 1 Yes (Adjusted) Sensible recovery efficiency [#]_
2048
2325
  ======================================================================== ====== ===== =========== ======== ======= =======================================
2049
2326
 
2327
+ .. [#] Providing AdjustedSensibleRecoveryEfficiency (ASRE) is preferable to SensibleRecoveryEfficiency (SRE).
2328
+
2050
2329
  **Energy Recovery Ventilator**
2051
2330
 
2052
2331
  If an energy recovery ventilator system is specified, additional information is entered in ``VentilationFan``.
@@ -2054,10 +2333,13 @@ If an energy recovery ventilator system is specified, additional information is
2054
2333
  ======================================================================== ====== ===== =========== ======== ======= =======================================
2055
2334
  Element Type Units Constraints Required Default Notes
2056
2335
  ======================================================================== ====== ===== =========== ======== ======= =======================================
2057
- ``TotalRecoveryEfficiency`` or ``AdjustedTotalRecoveryEfficiency`` double frac 0 - 1 Yes (Adjusted) Total recovery efficiency
2058
- ``SensibleRecoveryEfficiency`` or ``AdjustedSensibleRecoveryEfficiency`` double frac 0 - 1 Yes (Adjusted) Sensible recovery efficiency
2336
+ ``AdjustedTotalRecoveryEfficiency`` or ``TotalRecoveryEfficiency`` double frac 0 - 1 Yes (Adjusted) Total recovery efficiency [#]_
2337
+ ``AdjustedSensibleRecoveryEfficiency`` or ``SensibleRecoveryEfficiency`` double frac 0 - 1 Yes (Adjusted) Sensible recovery efficiency [#]_
2059
2338
  ======================================================================== ====== ===== =========== ======== ======= =======================================
2060
2339
 
2340
+ .. [#] Providing AdjustedTotalRecoveryEfficiency (ATRE) is preferable to TotalRecoveryEfficiency (TRE).
2341
+ .. [#] Providing AdjustedSensibleRecoveryEfficiency (ASRE) is preferable to SensibleRecoveryEfficiency (SRE).
2342
+
2061
2343
  **Central Fan Integrated Supply**
2062
2344
 
2063
2345
  If a central fan integrated supply (CFIS) system is specified, additional information is entered in ``VentilationFan``.
@@ -2139,7 +2421,7 @@ If not entered, the simulation will not include kitchen/bathroom fans.
2139
2421
  ============================================================================================= ======= ======= =========== ======== ======== =============================
2140
2422
  Element Type Units Constraints Required Default Notes
2141
2423
  ============================================================================================= ======= ======= =========== ======== ======== =============================
2142
- ``Quantity`` integer >= 0 No See [#]_ Number of identical fans
2424
+ ``Count`` integer >= 0 No See [#]_ Number of identical fans
2143
2425
  ``RatedFlowRate`` or ``TestedFlowRate`` or ``CalculatedFlowRate`` or ``DeliveredVentilation`` double cfm >= 0 No See [#]_ Flow rate to outside [#]_
2144
2426
  ``HoursInOperation`` double hrs/day 0 - 24 No See [#]_ Hours per day of operation
2145
2427
  ``FanLocation`` string See [#]_ Yes Location of the fan
@@ -2147,7 +2429,7 @@ If not entered, the simulation will not include kitchen/bathroom fans.
2147
2429
  ``extension/StartHour`` integer 0 - 23 No See [#]_ Daily start hour of operation
2148
2430
  ============================================================================================= ======= ======= =========== ======== ======== =============================
2149
2431
 
2150
- .. [#] 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>`_.
2432
+ .. [#] If Count 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>`_.
2151
2433
  .. [#] If flow rate not provided, defaults to 100 cfm for kitchen fans and 50 cfm for bath fans based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_.
2152
2434
  .. [#] If the kitchen range fan is a recirculating fan, the flow rate should be described as zero.
2153
2435
  .. [#] If HoursInOperation not provided, defaults to 1 based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_.
@@ -2176,6 +2458,8 @@ If not entered, the simulation will not include whole house fans.
2176
2458
 
2177
2459
  The whole house fan is assumed to operate during hours of favorable outdoor conditions and will take priority over operable windows (natural ventilation).
2178
2460
 
2461
+ .. _waterheatingsystems:
2462
+
2179
2463
  HPXML Water Heating Systems
2180
2464
  ***************************
2181
2465
 
@@ -2198,11 +2482,9 @@ If not entered, the simulation will not include water heating.
2198
2482
  .. [#] 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".
2199
2483
  .. [#] Location choices are "living space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space".
2200
2484
  See :ref:`hpxmllocations` for descriptions.
2201
- .. [#] If Location not provided, defaults to the first present space type:
2202
-
2203
- - **IECC zones 1-3, excluding 3A**: "garage", "living space"
2204
- - **IECC zones 3A, 4-8, unknown**: "basement - conditioned", "basement - unconditioned", "living space"
2205
-
2485
+ .. [#] | If Location not provided, defaults to the first present space type:
2486
+ | - **IECC zones 1-3, excluding 3A**: "garage", "living space"
2487
+ | - **IECC zones 3A, 4-8, unknown**: "basement - conditioned", "basement - unconditioned", "living space"
2206
2488
  .. [#] The sum of all ``FractionDHWLoadServed`` (across all WaterHeatingSystems) must equal to 1.
2207
2489
  .. [#] FractionDHWLoadServed represents only the fraction of the hot water load associated with the hot water **fixtures**.
2208
2490
  Additional hot water load from clothes washers/dishwashers will be automatically assigned to the appropriate water heater(s).
@@ -2235,12 +2517,10 @@ If a conventional storage water heater is specified, additional information is e
2235
2517
  If neither UsageBin nor FirstHourRating provided, UsageBin defaults to "medium".
2236
2518
  If FirstHourRating provided and UsageBin not provided, UsageBin is determined based on the FirstHourRating value.
2237
2519
  .. [#] RecoveryEfficiency must also be greater than the EnergyFactor (or UniformEnergyFactor).
2238
- .. [#] 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>`_:
2239
-
2240
- - **Electric**: 0.98
2241
- - **Non-electric, EnergyFactor < 0.75**: 0.252 * EnergyFactor + 0.608
2242
- - **Non-electric, EnergyFactor >= 0.75**: 0.561 * EnergyFactor + 0.439
2243
-
2520
+ .. [#] | 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>`_:
2521
+ | - **Electric**: 0.98
2522
+ | - **Non-electric, EnergyFactor < 0.75**: 0.252 * EnergyFactor + 0.608
2523
+ | - **Non-electric, EnergyFactor >= 0.75**: 0.561 * EnergyFactor + 0.439
2244
2524
  .. [#] TankModelType choices are "mixed" or "stratified".
2245
2525
 
2246
2526
  Tankless
@@ -2264,24 +2544,24 @@ Heat Pump
2264
2544
 
2265
2545
  If a heat pump water heater is specified, additional information is entered in ``WaterHeatingSystem``.
2266
2546
 
2267
- ============================================= ================ ============= =============== ======== ======== =============================================
2268
- Element Type Units Constraints Required Default Notes
2269
- ============================================= ================ ============= =============== ======== ======== =============================================
2270
- ``FuelType`` string See [#]_ Yes Fuel type
2271
- ``TankVolume`` double gal > 0 Yes Nominal tank volume
2272
- ``UniformEnergyFactor`` or ``EnergyFactor`` double frac > 1, <= 5 Yes EnergyGuide label rated efficiency
2273
- ``UsageBin`` or ``FirstHourRating`` string or double str or gal/hr See [#]_ or > 0 No See [#]_ EnergyGuide label usage bin/first hour rating
2274
- ``WaterHeaterInsulation/Jacket/JacketRValue`` double F-ft2-hr/Btu >= 0 No 0 R-value of additional tank insulation wrap
2275
- ``extension/OperatingMode`` string See [#]_ No standard Operating mode [#]_
2276
- ============================================= ================ ============= =============== ======== ======== =============================================
2547
+ ============================================= ================ ============= =============== ======== =========== =============================================
2548
+ Element Type Units Constraints Required Default Notes
2549
+ ============================================= ================ ============= =============== ======== =========== =============================================
2550
+ ``FuelType`` string See [#]_ Yes Fuel type
2551
+ ``TankVolume`` double gal > 0 Yes Nominal tank volume
2552
+ ``UniformEnergyFactor`` or ``EnergyFactor`` double frac > 1, <= 5 Yes EnergyGuide label rated efficiency
2553
+ ``HPWHOperatingMode`` string See [#]_ No hyrbid/auto Operating mode [#]_
2554
+ ``UsageBin`` or ``FirstHourRating`` string or double str or gal/hr See [#]_ or > 0 No See [#]_ EnergyGuide label usage bin/first hour rating
2555
+ ``WaterHeaterInsulation/Jacket/JacketRValue`` double F-ft2-hr/Btu >= 0 No 0 R-value of additional tank insulation wrap
2556
+ ============================================= ================ ============= =============== ======== =========== =============================================
2277
2557
 
2278
2558
  .. [#] FuelType only choice is "electricity".
2559
+ .. [#] HPWHOperatingMode choices are "hybrid/auto" or "heat pump only".
2560
+ .. [#] The heat pump water heater operating mode can alternatively be defined using :ref:`detailedschedules`.
2279
2561
  .. [#] UsageBin choices are "very small", "low", "medium", or "high".
2280
2562
  .. [#] UsageBin/FirstHourRating are only used for water heaters that use UniformEnergyFactor.
2281
2563
  If neither UsageBin nor FirstHourRating provided, UsageBin defaults to "medium".
2282
2564
  If FirstHourRating provided and UsageBin not provided, UsageBin is determined based on the FirstHourRating value.
2283
- .. [#] OperatingMode choices are "standard" or "heat pump only".
2284
- .. [#] The heat pump water heater operating mode can alternatively be defined using :ref:`detailedschedules`.
2285
2565
 
2286
2566
  Combi Boiler w/ Storage
2287
2567
  ~~~~~~~~~~~~~~~~~~~~~~~
@@ -2534,33 +2814,56 @@ If not entered, the simulation will not include photovoltaics.
2534
2814
 
2535
2815
  Many of the inputs are adopted from the `PVWatts model <https://pvwatts.nrel.gov>`_.
2536
2816
 
2537
- ======================================================= ================= ================ =================== ======== ======== ============================================
2538
- Element Type Units Constraints Required Default Notes
2539
- ======================================================= ================= ================ =================== ======== ======== ============================================
2540
- ``SystemIdentifier`` id Yes Unique identifier
2541
- ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units
2542
- ``Location`` string See [#]_ No roof Mounting location
2543
- ``ModuleType`` string See [#]_ No standard Type of module
2544
- ``Tracking`` string See [#]_ No fixed Type of tracking
2545
- ``ArrayAzimuth`` or ``ArrayOrientation`` integer or string deg or direction 0 - 359 or See [#]_ Yes Direction panels face (clockwise from North)
2546
- ``ArrayTilt`` double deg 0 - 90 Yes Tilt relative to horizontal
2547
- ``MaxPowerOutput`` double W >= 0 Yes Peak power
2548
- ``InverterEfficiency`` double frac 0 - 1 [#]_ No 0.96 Inverter efficiency
2549
- ``SystemLossesFraction`` or ``YearModulesManufactured`` double or integer frac or # 0 - 1 or > 1600 No 0.14 System losses [#]_
2550
- ``extension/NumberofBedroomsServed`` integer > 1 See [#]_ Number of bedrooms served
2551
- ======================================================= ================= ================ =================== ======== ======== ============================================
2817
+ ======================================================= ================= ================ =================== ======== ========= ============================================
2818
+ Element Type Units Constraints Required Default Notes
2819
+ ======================================================= ================= ================ =================== ======== ========= ============================================
2820
+ ``SystemIdentifier`` id Yes Unique identifier
2821
+ ``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units
2822
+ ``Location`` string See [#]_ No roof Mounting location
2823
+ ``ModuleType`` string See [#]_ No standard Type of module
2824
+ ``Tracking`` string See [#]_ No fixed Type of tracking
2825
+ ``ArrayAzimuth`` or ``ArrayOrientation`` integer or string deg or direction 0 - 359 or See [#]_ Yes Direction panels face (clockwise from North)
2826
+ ``ArrayTilt`` double deg 0 - 90 Yes Tilt relative to horizontal
2827
+ ``MaxPowerOutput`` double W >= 0 Yes Peak power
2828
+ ``SystemLossesFraction`` or ``YearModulesManufactured`` double or integer frac or # 0 - 1 or > 1600 No 0.14 [#]_ System losses [#]_
2829
+ ``AttachedToInverter`` idref See [#]_ Yes ID of attached inverter
2830
+ ``extension/NumberofBedroomsServed`` integer > 1 See [#]_ Number of bedrooms served
2831
+ ======================================================= ================= ================ =================== ======== ========= ============================================
2552
2832
 
2553
2833
  .. [#] Location choices are "ground" or "roof" mounted.
2554
2834
  .. [#] ModuleType choices are "standard", "premium", or "thin film".
2555
2835
  .. [#] Tracking choices are "fixed", "1-axis", "1-axis backtracked", or "2-axis".
2556
2836
  .. [#] ArrayOrientation choices are "northeast", "east", "southeast", "south", "southwest", "west", "northwest", or "north"
2557
- .. [#] For homes with multiple PV arrays, all InverterEfficiency elements must have the same value.
2837
+ .. [#] | SystemLossesFraction default is derived from the `PVWatts documentation <https://www.nrel.gov/docs/fy14osti/62641.pdf>`_, which breaks down the losses as follows.
2838
+ | Note that the total loss (14%) is not the sum of the individual losses but is calculated by multiplying the reduction due to each loss.
2839
+ | - **Soiling**: 2%
2840
+ | - **Shading**: 3%
2841
+ | - **Snow**: 0%
2842
+ | - **Mismatch**: 2%
2843
+ | - **Wiring**: 2%
2844
+ | - **Connections**: 0.5%
2845
+ | - **Light-induced degradation**: 1.5%
2846
+ | - **Nameplate rating**: 1%
2847
+ | - **Age**: 0%
2848
+ | - **Availability**: 3%
2849
+ | If YearModulesManufactured provided but not SystemLossesFraction, calculated as:
2850
+ | SystemLossesFraction = 1.0 - (1.0 - 0.14) * (1.0 - (1.0 - 0.995^(CurrentYear - YearModulesManufactured))).
2558
2851
  .. [#] System losses due to soiling, shading, snow, mismatch, wiring, degradation, etc.
2559
- If YearModulesManufactured provided but not SystemLossesFraction, system losses calculated as:
2560
- SystemLossesFraction = 1.0 - (1.0 - 0.14) * (1.0 - (1.0 - 0.995^(CurrentYear - YearModulesManufactured))).
2852
+ .. [#] AttachedToInverter must reference an ``Inverter``.
2561
2853
  .. [#] NumberofBedroomsServed only required if IsSharedSystem is true, in which case it must be > NumberofBedrooms.
2562
2854
  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.
2563
2855
 
2856
+ In addition, an inverter must be entered as a ``/HPXML/Building/BuildingDetails/Systems/Photovoltaics/Inverter``.
2857
+
2858
+ ======================================================= ================= ================ =================== ======== ======== ============================================
2859
+ Element Type Units Constraints Required Default Notes
2860
+ ======================================================= ================= ================ =================== ======== ======== ============================================
2861
+ ``SystemIdentifier`` id Yes Unique identifier
2862
+ ``InverterEfficiency`` double frac 0 - 1 [#]_ No 0.96 Inverter efficiency
2863
+ ======================================================= ================= ================ =================== ======== ======== ============================================
2864
+
2865
+ .. [#] For homes with multiple inverters, all InverterEfficiency elements must have the same value.
2866
+
2564
2867
  HPXML Batteries
2565
2868
  ***************
2566
2869
 
@@ -2797,6 +3100,10 @@ If not entered, the simulation will not include a refrigerator.
2797
3100
  .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 16 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used: "0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041".
2798
3101
  .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), 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.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837".
2799
3102
 
3103
+ .. note::
3104
+
3105
+ Refrigerator energy use is not currently affected by the ambient temperature where it is located.
3106
+
2800
3107
  HPXML Freezers
2801
3108
  **************
2802
3109
 
@@ -2822,6 +3129,10 @@ If not entered, the simulation will not include a standalone freezer.
2822
3129
  .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 16 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used: "0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041".
2823
3130
  .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), 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.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837".
2824
3131
 
3132
+ .. note::
3133
+
3134
+ Freezer energy use is not currently affected by the ambient temperature where it is located.
3135
+
2825
3136
  HPXML Dehumidifier
2826
3137
  ******************
2827
3138
 
@@ -2894,19 +3205,18 @@ Lighting and ceiling fans are entered in ``/HPXML/Building/BuildingDetails/Light
2894
3205
  HPXML Lighting
2895
3206
  **************
2896
3207
 
2897
- Nine ``/HPXML/Building/BuildingDetails/Lighting/LightingGroup`` elements must be provided, each of which is the combination of:
3208
+ Lighting can be specified in one of two ways: using 1) lighting type fractions or 2) annual energy consumption values.
3209
+ Lighting is described using multiple ``LightingGroup`` elements for each location (interior, exterior, or garage).
3210
+ If no LightingGroup elements are provided for a given location (e.g., exterior), the simulation will not include that lighting use.
2898
3211
 
2899
- - ``LightingType``: 'LightEmittingDiode', 'CompactFluorescent', and 'FluorescentTube'
2900
- - ``Location``: 'interior', 'garage', and 'exterior'
2901
-
2902
- Information is entered in each ``LightingGroup``.
3212
+ If specifying **lighting type fractions**, three ``/HPXML/Building/BuildingDetails/Lighting/LightingGroup`` elements (one for each possible ``LightingType``) are entered for each lighting location:
2903
3213
 
2904
3214
  ============================= ======= ====== =========== ======== ======= ===========================================================================
2905
3215
  Element Type Units Constraints Required Default Notes
2906
3216
  ============================= ======= ====== =========== ======== ======= ===========================================================================
2907
3217
  ``SystemIdentifier`` id Yes Unique identifier
2908
3218
  ``LightingType`` element 1 [#]_ Yes Lighting type
2909
- ``Location`` string See [#]_ Yes See [#]_
3219
+ ``Location`` string See [#]_ Yes Lighting location [#]_
2910
3220
  ``FractionofUnitsInLocation`` double frac 0 - 1 [#]_ Yes Fraction of light fixtures in the location with the specified lighting type
2911
3221
  ============================= ======= ====== =========== ======== ======= ===========================================================================
2912
3222
 
@@ -2916,7 +3226,22 @@ Information is entered in each ``LightingGroup``.
2916
3226
  .. [#] The sum of FractionofUnitsInLocation for a given Location (e.g., interior) must be less than or equal to 1.
2917
3227
  If the fractions sum to less than 1, the remainder is assumed to be incandescent lighting.
2918
3228
 
2919
- Additional information is entered in ``Lighting``.
3229
+ 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>`_.
3230
+
3231
+ If specifying **annual energy consumption** instead, a single ``/HPXML/Building/BuildingDetails/Lighting/LightingGroup`` element is entered for each lighting location:
3232
+
3233
+ ================================ ======= ====== =========== ======== ======== ===========================================================================
3234
+ Element Type Units Constraints Required Default Notes
3235
+ ================================ ======= ====== =========== ======== ======== ===========================================================================
3236
+ ``SystemIdentifier`` id Yes Unique identifier
3237
+ ``Location`` string See [#]_ Yes Lighting location [#]_
3238
+ ``Load[Units="kWh/year"]/Value`` double kWh/yr >= 0 Yes Lighting energy use
3239
+ ================================ ======= ====== =========== ======== ======== ===========================================================================
3240
+
3241
+ .. [#] Location choices are "interior", "garage", or "exterior".
3242
+ .. [#] Garage lighting is ignored if the building has no garage specified elsewhere.
3243
+
3244
+ With either lighting specification, additional information can be entered in ``/HPXML/Building/BuildingDetails/Lighting``.
2920
3245
 
2921
3246
  ================================================ ======= ====== =========== ======== ======== ===============================================
2922
3247
  Element Type Units Constraints Required Default Notes
@@ -2933,14 +3258,13 @@ Additional information is entered in ``Lighting``.
2933
3258
  ``extension/ExteriorWeekdayScheduleFractions`` array No See [#]_ 24 comma-separated exterior weekday fractions
2934
3259
  ``extension/ExteriorWeekendScheduleFractions`` array No 24 comma-separated exterior weekend fractions
2935
3260
  ``extension/ExteriorMonthlyScheduleMultipliers`` array No 12 comma-separated exterior monthly multipliers
2936
- ``extension/ExteriorHolidayLighting`` element 0 - 1 No <none> Presence of additional holiday lighting?
2937
3261
  ================================================ ======= ====== =========== ======== ======== ===============================================
2938
3262
 
2939
3263
  .. [#] If *interior* schedule values not provided (and :ref:`detailedschedules` not used), 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>`_.
2940
3264
  .. [#] If *garage* schedule values not provided (and :ref:`detailedschedules` not used), they will be defaulted using Appendix C Table 8 of the `Title 24 2016 Res. ACM Manual <https://ww2.energy.ca.gov/2015publications/CEC-400-2015-024/CEC-400-2015-024-CMF-REV2.pdf>`_.
2941
3265
  .. [#] If *exterior* schedule values not provided (and :ref:`detailedschedules` not used), they will be defaulted using Appendix C Table 8 of the `Title 24 2016 Res. ACM Manual <https://ww2.energy.ca.gov/2015publications/CEC-400-2015-024/CEC-400-2015-024-CMF-REV2.pdf>`_.
2942
3266
 
2943
- If exterior holiday lighting is specified, additional information is entered in ``extension/ExteriorHolidayLighting``.
3267
+ If exterior holiday lighting is specified, additional information is entered in ``/HPXML/Building/BuildingDetails/Lighting/extension/ExteriorHolidayLighting``.
2944
3268
 
2945
3269
  =============================== ======= ======= =========== ======== ============= ============================================
2946
3270
  Element Type Units Constraints Required Default Notes
@@ -2955,9 +3279,7 @@ If exterior holiday lighting is specified, additional information is entered in
2955
3279
  =============================== ======= ======= =========== ======== ============= ============================================
2956
3280
 
2957
3281
  .. [#] If Value not provided, defaults to 1.1 for single-family detached and 0.55 for others.
2958
- .. [#] If WeekdayScheduleFractions not provided (and :ref:`detailedschedules` not used), 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".
2959
-
2960
- 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>`_.
3282
+ .. [#] If WeekdayScheduleFractions not provided (and :ref:`detailedschedules` not used), 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.
2961
3283
 
2962
3284
  HPXML Ceiling Fans
2963
3285
  ******************
@@ -2970,14 +3292,14 @@ If not entered, the simulation will not include a ceiling fan.
2970
3292
  ========================================= ======= ======= =========== ======== ======== ==============================
2971
3293
  ``SystemIdentifier`` id Yes Unique identifier
2972
3294
  ``Airflow[FanSpeed="medium"]/Efficiency`` double cfm/W > 0 No See [#]_ Efficiency at medium speed
2973
- ``Quantity`` integer > 0 No See [#]_ Number of similar ceiling fans
3295
+ ``Count`` integer > 0 No See [#]_ Number of similar ceiling fans
2974
3296
  ``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions
2975
3297
  ``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions
2976
3298
  ``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers
2977
3299
  ========================================= ======= ======= =========== ======== ======== ==============================
2978
3300
 
2979
3301
  .. [#] If Efficiency not provided, defaults to 3000 / 42.6 based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
2980
- .. [#] If Quantity not provided, defaults to NumberofBedrooms + 1 based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
3302
+ .. [#] If Count not provided, defaults to NumberofBedrooms + 1 based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
2981
3303
  .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), 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.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.024, 0.057, 0.057, 0.057, 0.057, 0.057, 0.057".
2982
3304
  .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), defaults based on monthly average outdoor temperatures per `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_
2983
3305
 
@@ -2985,7 +3307,7 @@ Ceiling fan energy use is calculated per the Energy Rating Rated Home in `ANSI/R
2985
3307
 
2986
3308
  .. note::
2987
3309
 
2988
- A reduced cooling setpoint can be specified for summer months when ceiling fans are operating.
3310
+ A reduced cooling setpoint can be specified for months when ceiling fans are operating.
2989
3311
  See :ref:`hvac_control` for more information.
2990
3312
 
2991
3313
  HPXML Pools & Hot Tubs
@@ -3028,7 +3350,7 @@ If not entered, the simulation will not include a pool heater.
3028
3350
  .. [#] Type choices are "single speed", "multi speed", "variable speed", "variable flow", "other", "unknown", or "none".
3029
3351
  If "none" is entered, the simulation will not include a pool pump.
3030
3352
  .. [#] 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.25 * ConditionedFloorArea / 1920).
3031
- If OccupancyCalculationType is "operational", this value will be adjusted for the NumberofResidents.
3353
+ If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`.
3032
3354
  .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), 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".
3033
3355
  .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), 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".
3034
3356
 
@@ -3052,14 +3374,11 @@ If not entered, the simulation will not include a pool heater.
3052
3374
 
3053
3375
  .. [#] Type choices are "none, "gas fired", "electric resistance", or "heat pump".
3054
3376
  If "none" is entered, the simulation will not include a pool heater.
3055
- .. [#] If Value not provided, defaults as follows:
3056
-
3057
- - **gas fired**: 3.0 / 0.014 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3058
- - **electric resistance**: 8.3 / 0.004 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3059
- - **heat pump**: (electric resistance) / 5.0 (based on an average COP of 5 from `Energy Saver <https://www.energy.gov/energysaver/heat-pump-swimming-pool-heaters>`_)
3060
-
3061
- If OccupancyCalculationType is "operational", this value will be adjusted for the NumberofResidents.
3062
-
3377
+ .. [#] | If Value not provided, defaults as follows:
3378
+ | - **gas fired [therm/year]**: 3.0 / 0.014 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3379
+ | - **electric resistance [kWh/year]**: 8.3 / 0.004 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3380
+ | - **heat pump [kWh/year]**: (electric resistance) / 5.0 (based on an average COP of 5 from `Energy Saver <https://www.energy.gov/energysaver/heat-pump-swimming-pool-heaters>`_)
3381
+ | If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`.
3063
3382
  .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), 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".
3064
3383
  .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), 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".
3065
3384
 
@@ -3100,7 +3419,7 @@ If not entered, the simulation will not include a hot tub pump.
3100
3419
  .. [#] Type choices are "single speed", "multi speed", "variable speed", "variable flow", "other", "unknown", or "none".
3101
3420
  If "none" is entered, the simulation will not include a hot tub pump.
3102
3421
  .. [#] 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.25 * ConditionedFloorArea / 1920).
3103
- If OccupancyCalculationType is "operational", this value will be adjusted for the NumberofResidents.
3422
+ If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`.
3104
3423
  .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), 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".
3105
3424
  .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), 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".
3106
3425
 
@@ -3124,14 +3443,11 @@ If not entered, the simulation will not include a hot tub heater.
3124
3443
 
3125
3444
  .. [#] Type choices are "none, "gas fired", "electric resistance", or "heat pump".
3126
3445
  If "none" is entered, the simulation will not include a hot tub heater.
3127
- .. [#] If Value not provided, defaults as follows:
3128
-
3129
- - **gas fired [therm/year]**: 0.87 / 0.011 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3130
- - **electric resistance [kWh/year]**: 49.0 / 0.048 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3131
- - **heat pump [kWh/year]** = (electric resistance) / 5.0 (based on an average COP of 5 from `Energy Saver <https://www.energy.gov/energysaver/heat-pump-swimming-pool-heaters>`_)
3132
-
3133
- If OccupancyCalculationType is "operational", this value will be adjusted for the NumberofResidents.
3134
-
3446
+ .. [#] | If Value not provided, defaults as follows:
3447
+ | - **gas fired [therm/year]**: 0.87 / 0.011 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3448
+ | - **electric resistance [kWh/year]**: 49.0 / 0.048 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3449
+ | - **heat pump [kWh/year]** = (electric resistance) / 5.0 (based on an average COP of 5 from `Energy Saver <https://www.energy.gov/energysaver/heat-pump-swimming-pool-heaters>`_)
3450
+ | If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`.
3135
3451
  .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), 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".
3136
3452
  .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), 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.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837".
3137
3453
 
@@ -3165,50 +3481,38 @@ If not entered, the simulation will not include that type of plug load.
3165
3481
  ======================================== ======= ====== =========== ======== ======== =============================================================
3166
3482
 
3167
3483
  .. [#] PlugLoadType choices are "other", "TV other", "well pump", or "electric vehicle charging".
3168
- .. [#] If Value not provided, defaults as:
3169
-
3170
- - **other**: 0.91 * ConditionedFloorArea (based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_)
3171
- - **TV other**: 413.0 + 69.0 * NumberofBedrooms (based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_)
3172
- - **well pump**: 50.8 / 0.127 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3173
- - **electric vehicle charging**: 1666.67 (calculated using AnnualMiles * kWhPerMile / (ChargerEfficiency * BatteryEfficiency) where AnnualMiles=4500, kWhPerMile=0.3, ChargerEfficiency=0.9, and BatteryEfficiency=0.9)
3174
-
3175
- If OccupancyCalculationType is "operational", this value will be adjusted for the NumberofResidents.
3176
-
3177
- .. [#] If FracSensible not provided, defaults as:
3178
-
3179
- - **other**: 0.855
3180
- - **TV other**: 1.0
3181
- - **well pump**: 0.0
3182
- - **electric vehicle charging**: 0.0
3183
-
3484
+ .. [#] | If Value not provided, defaults as:
3485
+ | - **other**: 0.91 * ConditionedFloorArea (based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_)
3486
+ | - **TV other**: 413.0 + 69.0 * NumberofBedrooms (based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_)
3487
+ | - **well pump**: 50.8 / 0.127 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3488
+ | - **electric vehicle charging**: 1666.67 (calculated using AnnualMiles * kWhPerMile / (ChargerEfficiency * BatteryEfficiency) where AnnualMiles=4500, kWhPerMile=0.3, ChargerEfficiency=0.9, and BatteryEfficiency=0.9)
3489
+ | If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`.
3490
+ .. [#] | If FracSensible not provided, defaults as:
3491
+ | - **other**: 0.855
3492
+ | - **TV other**: 1.0
3493
+ | - **well pump**: 0.0
3494
+ | - **electric vehicle charging**: 0.0
3184
3495
  .. [#] 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.
3185
- .. [#] If FracLatent not provided, defaults as:
3186
-
3187
- - **other**: 0.045
3188
- - **TV other**: 0.0
3189
- - **well pump**: 0.0
3190
- - **electric vehicle charging**: 0.0
3191
-
3192
- .. [#] If WeekdayScheduleFractions not provided (and :ref:`detailedschedules` not used), defaults as:
3193
-
3194
- - **other**: "0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036" (based on Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3195
- - **TV other**: "0.037, 0.018, 0.009, 0.007, 0.011, 0.018, 0.029, 0.040, 0.049, 0.058, 0.065, 0.072, 0.076, 0.086, 0.091, 0.102, 0.127, 0.156, 0.210, 0.294, 0.363, 0.344, 0.208, 0.090" (based on the `American Time Use Survey <https://www.bls.gov/tus>`_)
3196
- - **well pump**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065" (based on Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3197
- - **electric vehicle charging**: "0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042"
3198
-
3199
- .. [#] If WeekdendScheduleFractions not provided (and :ref:`detailedschedules` not used), defaults as:
3200
-
3201
- - **other**: "0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036" (based on Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3202
- - **TV other**: "0.044, 0.022, 0.012, 0.008, 0.011, 0.014, 0.024, 0.043, 0.071, 0.094, 0.112, 0.123, 0.132, 0.156, 0.178, 0.196, 0.206, 0.213, 0.251, 0.330, 0.388, 0.358, 0.226, 0.103" (based on the `American Time Use Survey <https://www.bls.gov/tus>`_)
3203
- - **well pump**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065" (based on Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3204
- - **electric vehicle charging**: "0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042"
3205
-
3206
- .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), defaults as:
3207
-
3208
- - **other**: "1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248" (based on Figure 24 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3209
- - **TV other**: "1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137" (based on the `American Time Use Survey <https://www.bls.gov/tus>`_)
3210
- - **well pump**: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154" (based on Figure 24 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3211
- - **electric vehicle charging**: "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0"
3496
+ .. [#] | If FracLatent not provided, defaults as:
3497
+ | - **other**: 0.045
3498
+ | - **TV other**: 0.0
3499
+ | - **well pump**: 0.0
3500
+ | - **electric vehicle charging**: 0.0
3501
+ .. [#] | If WeekdayScheduleFractions not provided (and :ref:`detailedschedules` not used), defaults as:
3502
+ | - **other**: "0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036" (based on Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3503
+ | - **TV other**: "0.037, 0.018, 0.009, 0.007, 0.011, 0.018, 0.029, 0.040, 0.049, 0.058, 0.065, 0.072, 0.076, 0.086, 0.091, 0.102, 0.127, 0.156, 0.210, 0.294, 0.363, 0.344, 0.208, 0.090" (based on the `American Time Use Survey <https://www.bls.gov/tus>`_)
3504
+ | - **well pump**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065" (based on Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3505
+ | - **electric vehicle charging**: "0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042"
3506
+ .. [#] | If WeekdendScheduleFractions not provided (and :ref:`detailedschedules` not used), defaults as:
3507
+ | - **other**: "0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036" (based on Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3508
+ | - **TV other**: "0.044, 0.022, 0.012, 0.008, 0.011, 0.014, 0.024, 0.043, 0.071, 0.094, 0.112, 0.123, 0.132, 0.156, 0.178, 0.196, 0.206, 0.213, 0.251, 0.330, 0.388, 0.358, 0.226, 0.103" (based on the `American Time Use Survey <https://www.bls.gov/tus>`_)
3509
+ | - **well pump**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065" (based on Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3510
+ | - **electric vehicle charging**: "0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042, 0.042"
3511
+ .. [#] | If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), defaults as:
3512
+ | - **other**: "1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248" (based on Figure 24 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3513
+ | - **TV other**: "1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137" (based on the `American Time Use Survey <https://www.bls.gov/tus>`_)
3514
+ | - **well pump**: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154" (based on Figure 24 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
3515
+ | - **electric vehicle charging**: "1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0"
3212
3516
 
3213
3517
  HPXML Fuel Loads
3214
3518
  ****************
@@ -3234,29 +3538,23 @@ If not entered, the simulation will not include that type of fuel load.
3234
3538
  ======================================== ======= ======== =========== ======== ======== =============================================================
3235
3539
 
3236
3540
  .. [#] FuelLoadType choices are "grill", "fireplace", or "lighting".
3237
- .. [#] If Value not provided, calculated as based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_:
3238
-
3239
- - **grill**: 0.87 / 0.029 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920)
3240
- - **fireplace**: 1.95 / 0.032 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920)
3241
- - **lighting**: 0.22 / 0.012 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920)
3242
-
3243
- If OccupancyCalculationType is "operational", this value will be adjusted for the NumberofResidents.
3244
-
3541
+ .. [#] | If Value not provided, calculated as based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_:
3542
+ | - **grill**: 0.87 / 0.029 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920)
3543
+ | - **fireplace**: 1.95 / 0.032 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920)
3544
+ | - **lighting**: 0.22 / 0.012 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.25 * ConditionedFloorArea / 1920)
3545
+ | If NumberofResidents provided, this value will be adjusted using the :ref:`buildingoccupancy`.
3245
3546
  .. [#] 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".
3246
3547
  .. [#] If FracSensible not provided, defaults to 0.5 for fireplace and 0.0 for all other types.
3247
3548
  .. [#] 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.
3248
3549
  .. [#] If FracLatent not provided, defaults to 0.1 for fireplace and 0.0 for all other types.
3249
- .. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used:
3250
-
3251
- - **grill**: "0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007";
3252
- - **fireplace**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065";
3253
- - **lighting**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065".
3254
-
3255
- .. [#] If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used:
3256
-
3257
- - **grill**: "1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097";
3258
- - **fireplace**: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154";
3259
- - **lighting**: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154".
3550
+ .. [#] | If WeekdayScheduleFractions or WeekendScheduleFractions not provided (and :ref:`detailedschedules` not used), default values from Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used:
3551
+ | - **grill**: "0.004, 0.001, 0.001, 0.002, 0.007, 0.012, 0.029, 0.046, 0.044, 0.041, 0.044, 0.046, 0.042, 0.038, 0.049, 0.059, 0.110, 0.161, 0.115, 0.070, 0.044, 0.019, 0.013, 0.007";
3552
+ | - **fireplace**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065";
3553
+ | - **lighting**: "0.044, 0.023, 0.019, 0.015, 0.016, 0.018, 0.026, 0.033, 0.033, 0.032, 0.033, 0.033, 0.032, 0.032, 0.032, 0.033, 0.045, 0.057, 0.066, 0.076, 0.081, 0.086, 0.075, 0.065".
3554
+ .. [#] | If MonthlyScheduleMultipliers not provided (and :ref:`detailedschedules` not used), default values from Figure 24 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used:
3555
+ | - **grill**: "1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097";
3556
+ | - **fireplace**: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154";
3557
+ | - **lighting**: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154".
3260
3558
 
3261
3559
  .. _hpxmllocations:
3262
3560