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
@@ -0,0 +1,3401 @@
1
+ {
2
+ "tests/ASHRAE_Standard_140/L100AC.xml": {
3
+ "weather_station_epw_filepath": "USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw",
4
+ "geometry_unit_type": "single-family detached",
5
+ "geometry_unit_num_floors_above_grade": 1,
6
+ "geometry_unit_cfa": 1539,
7
+ "geometry_unit_aspect_ratio": 2.111111111,
8
+ "geometry_unit_orientation": 180,
9
+ "geometry_unit_num_bedrooms": 3,
10
+ "geometry_unit_num_occupants": 0,
11
+ "geometry_average_ceiling_height": 8,
12
+ "geometry_garage_width": 0,
13
+ "geometry_garage_depth": 0,
14
+ "geometry_garage_protrusion": 0,
15
+ "geometry_garage_position": "Right",
16
+ "geometry_foundation_type": "Ambient",
17
+ "geometry_foundation_height": 7.25,
18
+ "geometry_foundation_height_above_grade": 0.667,
19
+ "geometry_rim_joist_height": 9,
20
+ "geometry_attic_type": "VentedAttic",
21
+ "geometry_roof_type": "gable",
22
+ "geometry_roof_pitch": "4:12",
23
+ "geometry_eaves_depth": 0,
24
+ "neighbor_front_distance": 0,
25
+ "neighbor_back_distance": 0,
26
+ "neighbor_left_distance": 0,
27
+ "neighbor_right_distance": 0,
28
+ "floor_over_foundation_assembly_r": 14.15,
29
+ "floor_over_garage_assembly_r": 0,
30
+ "floor_type": "WoodFrame",
31
+ "foundation_wall_thickness": 6,
32
+ "foundation_wall_insulation_r": 0,
33
+ "foundation_wall_insulation_distance_to_top": 0,
34
+ "foundation_wall_insulation_distance_to_bottom": 0,
35
+ "rim_joist_assembly_r": 5.01,
36
+ "slab_perimeter_insulation_r": 0,
37
+ "slab_perimeter_depth": 0,
38
+ "slab_under_insulation_r": 0,
39
+ "slab_under_width": 0,
40
+ "slab_thickness": 4,
41
+ "slab_carpet_fraction": 0,
42
+ "slab_carpet_r": 0,
43
+ "ceiling_assembly_r": 18.45,
44
+ "roof_material_type": "asphalt or fiberglass shingles",
45
+ "roof_color": "medium",
46
+ "roof_assembly_r": 1.99,
47
+ "roof_radiant_barrier": false,
48
+ "wall_type": "WoodStud",
49
+ "wall_siding_type": "wood siding",
50
+ "wall_color": "medium",
51
+ "wall_assembly_r": 11.76,
52
+ "window_front_wwr": 0,
53
+ "window_back_wwr": 0,
54
+ "window_left_wwr": 0,
55
+ "window_right_wwr": 0,
56
+ "window_area_front": 90,
57
+ "window_area_back": 90,
58
+ "window_area_left": 45,
59
+ "window_area_right": 45,
60
+ "window_aspect_ratio": 1.667,
61
+ "window_fraction_operable": 0,
62
+ "window_ufactor": 1.039,
63
+ "window_shgc": 0.67,
64
+ "window_interior_shading_winter": 1,
65
+ "window_interior_shading_summer": 1,
66
+ "overhangs_front_depth": 0,
67
+ "overhangs_front_distance_to_top_of_window": 0,
68
+ "overhangs_front_distance_to_bottom_of_window": 0,
69
+ "overhangs_back_depth": 0,
70
+ "overhangs_back_distance_to_top_of_window": 0,
71
+ "overhangs_back_distance_to_bottom_of_window": 0,
72
+ "overhangs_left_depth": 0,
73
+ "overhangs_left_distance_to_top_of_window": 0,
74
+ "overhangs_left_distance_to_bottom_of_window": 0,
75
+ "overhangs_right_depth": 0,
76
+ "overhangs_right_distance_to_top_of_window": 0,
77
+ "overhangs_right_distance_to_bottom_of_window": 0,
78
+ "skylight_area_front": 0,
79
+ "skylight_area_back": 0,
80
+ "skylight_area_left": 0,
81
+ "skylight_area_right": 0,
82
+ "skylight_ufactor": 0,
83
+ "skylight_shgc": 0,
84
+ "door_area": 40,
85
+ "door_rvalue": 3.04,
86
+ "air_leakage_units": "ACHnatural",
87
+ "air_leakage_house_pressure": 50,
88
+ "air_leakage_value": 0.67,
89
+ "heating_system_type": "none",
90
+ "heating_system_fuel": "natural gas",
91
+ "heating_system_heating_efficiency": 0,
92
+ "heating_system_fraction_heat_load_served": 0,
93
+ "cooling_system_type": "none",
94
+ "cooling_system_cooling_efficiency_type": "SEER",
95
+ "cooling_system_cooling_efficiency": 0,
96
+ "cooling_system_fraction_cool_load_served": 0,
97
+ "heat_pump_type": "none",
98
+ "heat_pump_heating_efficiency_type": "HSPF",
99
+ "heat_pump_heating_efficiency": 0,
100
+ "heat_pump_cooling_efficiency_type": "SEER",
101
+ "heat_pump_cooling_efficiency": 0,
102
+ "heat_pump_cooling_sensible_heat_fraction": 0,
103
+ "heat_pump_fraction_heat_load_served": 0,
104
+ "heat_pump_fraction_cool_load_served": 0,
105
+ "heat_pump_backup_type": "none",
106
+ "heat_pump_backup_fuel": "electricity",
107
+ "heat_pump_backup_heating_efficiency": 0,
108
+ "heating_system_2_type": "none",
109
+ "heating_system_2_fuel": "electricity",
110
+ "heating_system_2_heating_efficiency": 0,
111
+ "heating_system_2_fraction_heat_load_served": 0,
112
+ "hvac_control_heating_weekday_setpoint": 68,
113
+ "hvac_control_heating_weekend_setpoint": 68,
114
+ "hvac_control_cooling_weekday_setpoint": 78,
115
+ "hvac_control_cooling_weekend_setpoint": 78,
116
+ "ducts_leakage_units": "CFM25",
117
+ "ducts_supply_leakage_to_outside_value": 0,
118
+ "ducts_return_leakage_to_outside_value": 0,
119
+ "ducts_supply_insulation_r": 0,
120
+ "ducts_return_insulation_r": 0,
121
+ "mech_vent_fan_type": "none",
122
+ "mech_vent_recovery_efficiency_type": "Unadjusted",
123
+ "mech_vent_total_recovery_efficiency": 0,
124
+ "mech_vent_sensible_recovery_efficiency": 0,
125
+ "mech_vent_num_units_served": 0,
126
+ "mech_vent_2_fan_type": "none",
127
+ "mech_vent_2_flow_rate": 0,
128
+ "mech_vent_2_hours_in_operation": 0,
129
+ "mech_vent_2_recovery_efficiency_type": "Unadjusted",
130
+ "mech_vent_2_total_recovery_efficiency": 0,
131
+ "mech_vent_2_sensible_recovery_efficiency": 0,
132
+ "mech_vent_2_fan_power": 0,
133
+ "kitchen_fans_quantity": 0,
134
+ "bathroom_fans_quantity": 0,
135
+ "whole_house_fan_present": false,
136
+ "water_heater_type": "none",
137
+ "water_heater_fuel_type": "electricity",
138
+ "water_heater_efficiency_type": "EnergyFactor",
139
+ "water_heater_efficiency": 0,
140
+ "water_heater_num_units_served": 0,
141
+ "hot_water_distribution_system_type": "Standard",
142
+ "dwhr_facilities_connected": "none",
143
+ "water_fixtures_shower_low_flow": false,
144
+ "water_fixtures_sink_low_flow": false,
145
+ "water_fixtures_usage_multiplier": 0,
146
+ "solar_thermal_system_type": "none",
147
+ "solar_thermal_collector_area": 0,
148
+ "solar_thermal_collector_loop_type": "liquid indirect",
149
+ "solar_thermal_collector_type": "single glazing black",
150
+ "solar_thermal_collector_azimuth": 0,
151
+ "solar_thermal_collector_tilt": 0,
152
+ "solar_thermal_collector_rated_optical_efficiency": 0,
153
+ "solar_thermal_collector_rated_thermal_losses": 0,
154
+ "solar_thermal_solar_fraction": 0,
155
+ "pv_system_present": false,
156
+ "pv_system_array_azimuth": 0,
157
+ "pv_system_array_tilt": 0,
158
+ "pv_system_max_power_output": 0,
159
+ "pv_system_2_present": false,
160
+ "pv_system_2_array_azimuth": 0,
161
+ "pv_system_2_array_tilt": 0,
162
+ "pv_system_2_max_power_output": 0,
163
+ "battery_present": false,
164
+ "lighting_present": false,
165
+ "lighting_interior_fraction_cfl": 0,
166
+ "lighting_interior_fraction_lfl": 0,
167
+ "lighting_interior_fraction_led": 0,
168
+ "lighting_exterior_fraction_cfl": 0,
169
+ "lighting_exterior_fraction_lfl": 0,
170
+ "lighting_exterior_fraction_led": 0,
171
+ "lighting_garage_fraction_cfl": 0,
172
+ "lighting_garage_fraction_lfl": 0,
173
+ "lighting_garage_fraction_led": 0,
174
+ "holiday_lighting_present": false,
175
+ "dehumidifier_type": "none",
176
+ "dehumidifier_efficiency_type": "EnergyFactor",
177
+ "dehumidifier_efficiency": 0,
178
+ "dehumidifier_capacity": 0,
179
+ "dehumidifier_rh_setpoint": 0,
180
+ "dehumidifier_fraction_dehumidification_load_served": 0,
181
+ "clothes_washer_present": false,
182
+ "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor",
183
+ "clothes_dryer_present": false,
184
+ "clothes_dryer_fuel_type": "electricity",
185
+ "clothes_dryer_efficiency_type": "CombinedEnergyFactor",
186
+ "dishwasher_present": false,
187
+ "dishwasher_efficiency_type": "RatedAnnualkWh",
188
+ "refrigerator_present": false,
189
+ "extra_refrigerator_present": false,
190
+ "freezer_present": false,
191
+ "cooking_range_oven_present": false,
192
+ "cooking_range_oven_fuel_type": "electricity",
193
+ "ceiling_fan_present": false,
194
+ "misc_plug_loads_television_present": false,
195
+ "misc_plug_loads_other_annual_kwh": 7302,
196
+ "misc_plug_loads_other_frac_sensible": 0.822,
197
+ "misc_plug_loads_other_frac_latent": 0.178,
198
+ "misc_plug_loads_well_pump_present": false,
199
+ "misc_plug_loads_vehicle_present": false,
200
+ "misc_fuel_loads_grill_present": false,
201
+ "misc_fuel_loads_grill_fuel_type": "natural gas",
202
+ "misc_fuel_loads_lighting_present": false,
203
+ "misc_fuel_loads_lighting_fuel_type": "natural gas",
204
+ "misc_fuel_loads_fireplace_present": false,
205
+ "misc_fuel_loads_fireplace_fuel_type": "natural gas",
206
+ "pool_present": false,
207
+ "pool_heater_type": "none",
208
+ "hot_tub_present": false,
209
+ "hot_tub_heater_type": "none",
210
+ "combine_like_surfaces": false
211
+ },
212
+ "tests/ASHRAE_Standard_140/L110AC.xml": {
213
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AC.xml",
214
+ "air_leakage_value": 1.5
215
+ },
216
+ "tests/ASHRAE_Standard_140/L120AC.xml": {
217
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AC.xml",
218
+ "ceiling_assembly_r": 57.49,
219
+ "wall_assembly_r": 23.58
220
+ },
221
+ "tests/ASHRAE_Standard_140/L130AC.xml": {
222
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AC.xml",
223
+ "window_ufactor": 0.3,
224
+ "window_shgc": 0.335
225
+ },
226
+ "tests/ASHRAE_Standard_140/L140AC.xml": {
227
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AC.xml",
228
+ "window_area_front": 0,
229
+ "window_area_back": 0,
230
+ "window_area_left": 0,
231
+ "window_area_right": 0
232
+ },
233
+ "tests/ASHRAE_Standard_140/L150AC.xml": {
234
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AC.xml",
235
+ "window_area_front": 270,
236
+ "window_area_back": 0,
237
+ "window_area_left": 0,
238
+ "window_area_right": 0,
239
+ "window_aspect_ratio": 3.333
240
+ },
241
+ "tests/ASHRAE_Standard_140/L155AC.xml": {
242
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L150AC.xml",
243
+ "overhangs_front_depth": 2.5,
244
+ "overhangs_front_distance_to_top_of_window": 1,
245
+ "overhangs_front_distance_to_bottom_of_window": 6
246
+ },
247
+ "tests/ASHRAE_Standard_140/L160AC.xml": {
248
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AC.xml",
249
+ "window_area_front": 0,
250
+ "window_area_back": 0,
251
+ "window_area_left": 135,
252
+ "window_area_right": 135,
253
+ "window_aspect_ratio": 3.333
254
+ },
255
+ "tests/ASHRAE_Standard_140/L170AC.xml": {
256
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AC.xml",
257
+ "misc_plug_loads_other_annual_kwh": 0,
258
+ "misc_plug_loads_other_frac_sensible": null,
259
+ "misc_plug_loads_other_frac_latent": null
260
+ },
261
+ "tests/ASHRAE_Standard_140/L200AC.xml": {
262
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AC.xml",
263
+ "floor_over_foundation_assembly_r": 4.24,
264
+ "ceiling_assembly_r": 11.75,
265
+ "wall_assembly_r": 4.84,
266
+ "air_leakage_value": 1.5
267
+ },
268
+ "tests/ASHRAE_Standard_140/L202AC.xml": {
269
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L200AC.xml",
270
+ "roof_color": "reflective",
271
+ "wall_color": "reflective"
272
+ },
273
+ "tests/ASHRAE_Standard_140/L302XC.xml": {
274
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AC.xml",
275
+ "geometry_foundation_type": "SlabOnGrade",
276
+ "slab_carpet_fraction": 1,
277
+ "slab_carpet_r": 2.08
278
+ },
279
+ "tests/ASHRAE_Standard_140/L304XC.xml": {
280
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L302XC.xml",
281
+ "slab_perimeter_insulation_r": 5.4,
282
+ "slab_perimeter_depth": 2.5
283
+ },
284
+ "tests/ASHRAE_Standard_140/L322XC.xml": {
285
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AC.xml",
286
+ "geometry_unit_cfa": 3078,
287
+ "geometry_foundation_type": "ConditionedBasement",
288
+ "air_leakage_value": 0.335
289
+ },
290
+ "tests/ASHRAE_Standard_140/L324XC.xml": {
291
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L322XC.xml",
292
+ "foundation_wall_insulation_r": 10.2,
293
+ "foundation_wall_insulation_location": "interior",
294
+ "foundation_wall_insulation_distance_to_bottom": 7.25,
295
+ "rim_joist_assembly_r": 13.14
296
+ },
297
+ "tests/ASHRAE_Standard_140/L100AL.xml": {
298
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AC.xml",
299
+ "weather_station_epw_filepath": "USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw"
300
+ },
301
+ "tests/ASHRAE_Standard_140/L110AL.xml": {
302
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AL.xml",
303
+ "air_leakage_value": 1.5
304
+ },
305
+ "tests/ASHRAE_Standard_140/L120AL.xml": {
306
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AL.xml",
307
+ "ceiling_assembly_r": 57.49,
308
+ "wall_assembly_r": 23.58
309
+ },
310
+ "tests/ASHRAE_Standard_140/L130AL.xml": {
311
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AL.xml",
312
+ "window_ufactor": 0.3,
313
+ "window_shgc": 0.335
314
+ },
315
+ "tests/ASHRAE_Standard_140/L140AL.xml": {
316
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AL.xml",
317
+ "window_area_front": 0,
318
+ "window_area_back": 0,
319
+ "window_area_left": 0,
320
+ "window_area_right": 0
321
+ },
322
+ "tests/ASHRAE_Standard_140/L150AL.xml": {
323
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AL.xml",
324
+ "window_area_front": 270,
325
+ "window_area_back": 0,
326
+ "window_area_left": 0,
327
+ "window_area_right": 0,
328
+ "window_aspect_ratio": 3.333
329
+ },
330
+ "tests/ASHRAE_Standard_140/L155AL.xml": {
331
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L150AL.xml",
332
+ "overhangs_front_depth": 2.5,
333
+ "overhangs_front_distance_to_top_of_window": 1,
334
+ "overhangs_front_distance_to_bottom_of_window": 6
335
+ },
336
+ "tests/ASHRAE_Standard_140/L160AL.xml": {
337
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AL.xml",
338
+ "window_area_front": 0,
339
+ "window_area_back": 0,
340
+ "window_area_left": 135,
341
+ "window_area_right": 135,
342
+ "window_aspect_ratio": 3.333
343
+ },
344
+ "tests/ASHRAE_Standard_140/L170AL.xml": {
345
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AL.xml",
346
+ "misc_plug_loads_other_annual_kwh": 0,
347
+ "misc_plug_loads_other_frac_sensible": null,
348
+ "misc_plug_loads_other_frac_latent": null
349
+ },
350
+ "tests/ASHRAE_Standard_140/L200AL.xml": {
351
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L100AL.xml",
352
+ "floor_over_foundation_assembly_r": 4.24,
353
+ "ceiling_assembly_r": 11.75,
354
+ "wall_assembly_r": 4.84,
355
+ "air_leakage_value": 1.5
356
+ },
357
+ "tests/ASHRAE_Standard_140/L202AL.xml": {
358
+ "parent_hpxml": "tests/ASHRAE_Standard_140/L200AL.xml",
359
+ "roof_color": "reflective",
360
+ "wall_color": "reflective"
361
+ },
362
+ "sample_files/base.xml": {
363
+ "simulation_control_timestep": 60,
364
+ "site_type": "suburban",
365
+ "site_iecc_zone": "5B",
366
+ "site_state_code": "CO",
367
+ "weather_station_epw_filepath": "USA_CO_Denver.Intl.AP.725650_TMY3.epw",
368
+ "geometry_unit_type": "single-family detached",
369
+ "geometry_unit_num_floors_above_grade": 1,
370
+ "geometry_unit_cfa": 2700,
371
+ "geometry_unit_aspect_ratio": 1.5,
372
+ "geometry_unit_orientation": 180,
373
+ "geometry_unit_num_bedrooms": 3,
374
+ "geometry_unit_num_bathrooms": 2,
375
+ "geometry_average_ceiling_height": 8,
376
+ "geometry_garage_width": 0,
377
+ "geometry_garage_depth": 20,
378
+ "geometry_garage_protrusion": 0,
379
+ "geometry_garage_position": "Right",
380
+ "geometry_foundation_type": "ConditionedBasement",
381
+ "geometry_foundation_height": 8,
382
+ "geometry_foundation_height_above_grade": 1,
383
+ "geometry_rim_joist_height": 9.25,
384
+ "geometry_attic_type": "UnventedAttic",
385
+ "geometry_roof_type": "gable",
386
+ "geometry_roof_pitch": "6:12",
387
+ "geometry_eaves_depth": 0,
388
+ "neighbor_front_distance": 0,
389
+ "neighbor_back_distance": 0,
390
+ "neighbor_left_distance": 0,
391
+ "neighbor_right_distance": 0,
392
+ "floor_over_foundation_assembly_r": 0,
393
+ "floor_over_garage_assembly_r": 0,
394
+ "floor_type": "WoodFrame",
395
+ "foundation_wall_thickness": 8,
396
+ "foundation_wall_insulation_r": 8.9,
397
+ "foundation_wall_insulation_distance_to_top": 0,
398
+ "foundation_wall_insulation_distance_to_bottom": 8,
399
+ "rim_joist_assembly_r": 23,
400
+ "slab_perimeter_insulation_r": 0,
401
+ "slab_perimeter_depth": 0,
402
+ "slab_under_insulation_r": 0,
403
+ "slab_under_width": 0,
404
+ "slab_thickness": 4,
405
+ "slab_carpet_fraction": 0,
406
+ "slab_carpet_r": 0,
407
+ "ceiling_assembly_r": 39.3,
408
+ "roof_material_type": "asphalt or fiberglass shingles",
409
+ "roof_color": "medium",
410
+ "roof_assembly_r": 2.3,
411
+ "roof_radiant_barrier": false,
412
+ "wall_type": "WoodStud",
413
+ "wall_siding_type": "wood siding",
414
+ "wall_color": "medium",
415
+ "wall_assembly_r": 23,
416
+ "window_front_wwr": 0,
417
+ "window_back_wwr": 0,
418
+ "window_left_wwr": 0,
419
+ "window_right_wwr": 0,
420
+ "window_area_front": 108,
421
+ "window_area_back": 108,
422
+ "window_area_left": 72,
423
+ "window_area_right": 72,
424
+ "window_aspect_ratio": 1.333,
425
+ "window_fraction_operable": 0.67,
426
+ "window_ufactor": 0.33,
427
+ "window_shgc": 0.45,
428
+ "window_interior_shading_winter": 0.85,
429
+ "window_interior_shading_summer": 0.7,
430
+ "overhangs_front_depth": 0,
431
+ "overhangs_front_distance_to_top_of_window": 0,
432
+ "overhangs_front_distance_to_bottom_of_window": 0,
433
+ "overhangs_back_depth": 0,
434
+ "overhangs_back_distance_to_top_of_window": 0,
435
+ "overhangs_back_distance_to_bottom_of_window": 0,
436
+ "overhangs_left_depth": 0,
437
+ "overhangs_left_distance_to_top_of_window": 0,
438
+ "overhangs_left_distance_to_bottom_of_window": 0,
439
+ "overhangs_right_depth": 0,
440
+ "overhangs_right_distance_to_top_of_window": 0,
441
+ "overhangs_right_distance_to_bottom_of_window": 0,
442
+ "skylight_area_front": 0,
443
+ "skylight_area_back": 0,
444
+ "skylight_area_left": 0,
445
+ "skylight_area_right": 0,
446
+ "skylight_ufactor": 0.33,
447
+ "skylight_shgc": 0.45,
448
+ "door_area": 40,
449
+ "door_rvalue": 4.4,
450
+ "air_leakage_units": "ACH",
451
+ "air_leakage_house_pressure": 50,
452
+ "air_leakage_value": 3,
453
+ "heating_system_type": "Furnace",
454
+ "heating_system_fuel": "natural gas",
455
+ "heating_system_heating_efficiency": 0.92,
456
+ "heating_system_heating_capacity": 36000,
457
+ "heating_system_fraction_heat_load_served": 1,
458
+ "cooling_system_type": "central air conditioner",
459
+ "cooling_system_cooling_efficiency_type": "SEER",
460
+ "cooling_system_cooling_efficiency": 13,
461
+ "cooling_system_cooling_compressor_type": "single stage",
462
+ "cooling_system_cooling_sensible_heat_fraction": 0.73,
463
+ "cooling_system_cooling_capacity": 24000,
464
+ "cooling_system_fraction_cool_load_served": 1,
465
+ "heat_pump_type": "none",
466
+ "heat_pump_heating_efficiency_type": "HSPF",
467
+ "heat_pump_heating_efficiency": 0,
468
+ "heat_pump_cooling_efficiency_type": "SEER",
469
+ "heat_pump_cooling_efficiency": 0,
470
+ "heat_pump_cooling_sensible_heat_fraction": 0,
471
+ "heat_pump_fraction_heat_load_served": 0,
472
+ "heat_pump_fraction_cool_load_served": 0,
473
+ "heat_pump_backup_type": "none",
474
+ "heat_pump_backup_fuel": "electricity",
475
+ "heat_pump_backup_heating_efficiency": 0,
476
+ "heating_system_2_type": "none",
477
+ "heating_system_2_fuel": "electricity",
478
+ "heating_system_2_heating_efficiency": 0,
479
+ "heating_system_2_fraction_heat_load_served": 0,
480
+ "hvac_control_heating_weekday_setpoint": 68,
481
+ "hvac_control_heating_weekend_setpoint": 68,
482
+ "hvac_control_cooling_weekday_setpoint": 78,
483
+ "hvac_control_cooling_weekend_setpoint": 78,
484
+ "ducts_leakage_units": "CFM25",
485
+ "ducts_supply_leakage_to_outside_value": 75,
486
+ "ducts_return_leakage_to_outside_value": 25,
487
+ "ducts_supply_location": "attic - unvented",
488
+ "ducts_supply_insulation_r": 4,
489
+ "ducts_supply_surface_area": 150,
490
+ "ducts_return_location": "attic - unvented",
491
+ "ducts_return_insulation_r": 0,
492
+ "ducts_return_surface_area": 50,
493
+ "mech_vent_fan_type": "none",
494
+ "mech_vent_recovery_efficiency_type": "Unadjusted",
495
+ "mech_vent_total_recovery_efficiency": 0,
496
+ "mech_vent_sensible_recovery_efficiency": 0,
497
+ "mech_vent_num_units_served": 0,
498
+ "mech_vent_2_fan_type": "none",
499
+ "mech_vent_2_flow_rate": 0,
500
+ "mech_vent_2_hours_in_operation": 0,
501
+ "mech_vent_2_recovery_efficiency_type": "Unadjusted",
502
+ "mech_vent_2_total_recovery_efficiency": 0,
503
+ "mech_vent_2_sensible_recovery_efficiency": 0,
504
+ "mech_vent_2_fan_power": 0,
505
+ "kitchen_fans_quantity": 0,
506
+ "bathroom_fans_quantity": 0,
507
+ "whole_house_fan_present": false,
508
+ "water_heater_type": "storage water heater",
509
+ "water_heater_fuel_type": "electricity",
510
+ "water_heater_location": "living space",
511
+ "water_heater_tank_volume": 40,
512
+ "water_heater_efficiency_type": "EnergyFactor",
513
+ "water_heater_efficiency": 0.95,
514
+ "water_heater_heating_capacity": 18767,
515
+ "water_heater_jacket_rvalue": 0,
516
+ "water_heater_setpoint_temperature": 125,
517
+ "water_heater_num_units_served": 1,
518
+ "hot_water_distribution_system_type": "Standard",
519
+ "hot_water_distribution_standard_piping_length": 50,
520
+ "hot_water_distribution_pipe_r": 0,
521
+ "dwhr_facilities_connected": "none",
522
+ "water_fixtures_shower_low_flow": true,
523
+ "water_fixtures_sink_low_flow": false,
524
+ "solar_thermal_system_type": "none",
525
+ "solar_thermal_collector_area": 0,
526
+ "solar_thermal_collector_loop_type": "liquid indirect",
527
+ "solar_thermal_collector_type": "single glazing black",
528
+ "solar_thermal_collector_azimuth": 0,
529
+ "solar_thermal_collector_tilt": 0,
530
+ "solar_thermal_collector_rated_optical_efficiency": 0,
531
+ "solar_thermal_collector_rated_thermal_losses": 0,
532
+ "solar_thermal_solar_fraction": 0,
533
+ "pv_system_present": false,
534
+ "pv_system_array_azimuth": 0,
535
+ "pv_system_array_tilt": 0,
536
+ "pv_system_max_power_output": 0,
537
+ "pv_system_2_present": false,
538
+ "pv_system_2_array_azimuth": 0,
539
+ "pv_system_2_array_tilt": 0,
540
+ "pv_system_2_max_power_output": 0,
541
+ "battery_present": false,
542
+ "lighting_present": true,
543
+ "lighting_interior_fraction_cfl": 0.4,
544
+ "lighting_interior_fraction_lfl": 0.1,
545
+ "lighting_interior_fraction_led": 0.25,
546
+ "lighting_exterior_fraction_cfl": 0.4,
547
+ "lighting_exterior_fraction_lfl": 0.1,
548
+ "lighting_exterior_fraction_led": 0.25,
549
+ "lighting_garage_fraction_cfl": 0.4,
550
+ "lighting_garage_fraction_lfl": 0.1,
551
+ "lighting_garage_fraction_led": 0.25,
552
+ "holiday_lighting_present": false,
553
+ "dehumidifier_type": "none",
554
+ "dehumidifier_efficiency_type": "EnergyFactor",
555
+ "dehumidifier_efficiency": 0,
556
+ "dehumidifier_capacity": 0,
557
+ "dehumidifier_rh_setpoint": 0,
558
+ "dehumidifier_fraction_dehumidification_load_served": 0,
559
+ "clothes_washer_present": true,
560
+ "clothes_washer_location": "living space",
561
+ "clothes_washer_efficiency_type": "IntegratedModifiedEnergyFactor",
562
+ "clothes_washer_efficiency": 1.21,
563
+ "clothes_washer_rated_annual_kwh": 380,
564
+ "clothes_washer_label_electric_rate": 0.12,
565
+ "clothes_washer_label_gas_rate": 1.09,
566
+ "clothes_washer_label_annual_gas_cost": 27,
567
+ "clothes_washer_label_usage": 6,
568
+ "clothes_washer_capacity": 3.2,
569
+ "clothes_dryer_present": true,
570
+ "clothes_dryer_location": "living space",
571
+ "clothes_dryer_fuel_type": "electricity",
572
+ "clothes_dryer_efficiency_type": "CombinedEnergyFactor",
573
+ "clothes_dryer_efficiency": 3.73,
574
+ "clothes_dryer_vented_flow_rate": 150,
575
+ "dishwasher_present": true,
576
+ "dishwasher_location": "living space",
577
+ "dishwasher_efficiency_type": "RatedAnnualkWh",
578
+ "dishwasher_efficiency": 307,
579
+ "dishwasher_label_electric_rate": 0.12,
580
+ "dishwasher_label_gas_rate": 1.09,
581
+ "dishwasher_label_annual_gas_cost": 22.32,
582
+ "dishwasher_label_usage": 4,
583
+ "dishwasher_place_setting_capacity": 12,
584
+ "refrigerator_present": true,
585
+ "refrigerator_location": "living space",
586
+ "refrigerator_rated_annual_kwh": 650,
587
+ "extra_refrigerator_present": false,
588
+ "freezer_present": false,
589
+ "cooking_range_oven_present": true,
590
+ "cooking_range_oven_location": "living space",
591
+ "cooking_range_oven_fuel_type": "electricity",
592
+ "cooking_range_oven_is_induction": false,
593
+ "cooking_range_oven_is_convection": false,
594
+ "ceiling_fan_present": false,
595
+ "misc_plug_loads_television_present": true,
596
+ "misc_plug_loads_television_annual_kwh": 620,
597
+ "misc_plug_loads_other_annual_kwh": 2457,
598
+ "misc_plug_loads_other_frac_sensible": 0.855,
599
+ "misc_plug_loads_other_frac_latent": 0.045,
600
+ "misc_plug_loads_well_pump_present": false,
601
+ "misc_plug_loads_vehicle_present": false,
602
+ "misc_fuel_loads_grill_present": false,
603
+ "misc_fuel_loads_grill_fuel_type": "natural gas",
604
+ "misc_fuel_loads_lighting_present": false,
605
+ "misc_fuel_loads_lighting_fuel_type": "natural gas",
606
+ "misc_fuel_loads_fireplace_present": false,
607
+ "misc_fuel_loads_fireplace_fuel_type": "natural gas",
608
+ "pool_present": false,
609
+ "pool_heater_type": "none",
610
+ "hot_tub_present": false,
611
+ "hot_tub_heater_type": "none",
612
+ "utility_bill_scenario_names": "Bills",
613
+ "combine_like_surfaces": true
614
+ },
615
+ "sample_files/base-appliances-coal.xml": {
616
+ "parent_hpxml": "sample_files/base-appliances-gas.xml",
617
+ "clothes_dryer_fuel_type": "coal",
618
+ "cooking_range_oven_fuel_type": "coal"
619
+ },
620
+ "sample_files/base-appliances-dehumidifier.xml": {
621
+ "parent_hpxml": "sample_files/base-location-dallas-tx.xml",
622
+ "dehumidifier_type": "portable",
623
+ "dehumidifier_efficiency": 1.8,
624
+ "dehumidifier_capacity": 40,
625
+ "dehumidifier_rh_setpoint": 0.5,
626
+ "dehumidifier_fraction_dehumidification_load_served": 1
627
+ },
628
+ "sample_files/base-appliances-dehumidifier-ief-portable.xml": {
629
+ "parent_hpxml": "sample_files/base-appliances-dehumidifier.xml",
630
+ "dehumidifier_efficiency_type": "IntegratedEnergyFactor",
631
+ "dehumidifier_efficiency": 1.5
632
+ },
633
+ "sample_files/base-appliances-dehumidifier-ief-whole-home.xml": {
634
+ "parent_hpxml": "sample_files/base-appliances-dehumidifier-ief-portable.xml",
635
+ "dehumidifier_type": "whole-home"
636
+ },
637
+ "sample_files/base-appliances-dehumidifier-multiple.xml": {
638
+ "parent_hpxml": "sample_files/base-appliances-dehumidifier.xml"
639
+ },
640
+ "sample_files/base-appliances-gas.xml": {
641
+ "parent_hpxml": "sample_files/base.xml",
642
+ "clothes_dryer_fuel_type": "natural gas",
643
+ "clothes_dryer_efficiency": 3.3,
644
+ "clothes_dryer_vented_flow_rate": null,
645
+ "cooking_range_oven_fuel_type": "natural gas"
646
+ },
647
+ "sample_files/base-appliances-oil.xml": {
648
+ "parent_hpxml": "sample_files/base-appliances-gas.xml",
649
+ "clothes_dryer_fuel_type": "fuel oil",
650
+ "cooking_range_oven_fuel_type": "fuel oil"
651
+ },
652
+ "sample_files/base-appliances-oil-location-miami-fl.xml": {
653
+ "parent_hpxml": "sample_files/base-appliances-oil.xml",
654
+ "site_iecc_zone": "1A",
655
+ "site_state_code": "FL",
656
+ "weather_station_epw_filepath": "USA_FL_Miami.Intl.AP.722020_TMY3.epw",
657
+ "heating_system_heating_capacity": 12000
658
+ },
659
+ "sample_files/base-appliances-propane.xml": {
660
+ "parent_hpxml": "sample_files/base-appliances-gas.xml",
661
+ "clothes_dryer_fuel_type": "propane",
662
+ "cooking_range_oven_fuel_type": "propane"
663
+ },
664
+ "sample_files/base-appliances-propane-location-portland-or.xml": {
665
+ "parent_hpxml": "sample_files/base-appliances-propane.xml",
666
+ "site_iecc_zone": "4C",
667
+ "site_state_code": "OR",
668
+ "weather_station_epw_filepath": "USA_OR_Portland.Intl.AP.726980_TMY3.epw",
669
+ "heating_system_heating_capacity": 24000
670
+ },
671
+ "sample_files/base-appliances-wood.xml": {
672
+ "parent_hpxml": "sample_files/base-appliances-gas.xml",
673
+ "clothes_dryer_fuel_type": "wood",
674
+ "cooking_range_oven_fuel_type": "wood"
675
+ },
676
+ "sample_files/base-appliances-modified.xml": {
677
+ "parent_hpxml": "sample_files/base.xml",
678
+ "clothes_washer_efficiency_type": "ModifiedEnergyFactor",
679
+ "clothes_washer_efficiency": 1.65,
680
+ "clothes_dryer_efficiency_type": "EnergyFactor",
681
+ "clothes_dryer_efficiency": 4.29,
682
+ "clothes_dryer_vented_flow_rate": 0,
683
+ "dishwasher_efficiency_type": "EnergyFactor",
684
+ "dishwasher_efficiency": 0.7,
685
+ "dishwasher_place_setting_capacity": 6
686
+ },
687
+ "sample_files/base-appliances-none.xml": {
688
+ "parent_hpxml": "sample_files/base.xml",
689
+ "clothes_washer_present": false,
690
+ "clothes_dryer_present": false,
691
+ "dishwasher_present": false,
692
+ "refrigerator_present": false,
693
+ "cooking_range_oven_present": false
694
+ },
695
+ "sample_files/base-atticroof-cathedral.xml": {
696
+ "parent_hpxml": "sample_files/base.xml",
697
+ "geometry_unit_num_floors_above_grade": 2,
698
+ "geometry_unit_cfa": 4050,
699
+ "geometry_attic_type": "ConditionedAttic",
700
+ "roof_assembly_r": 25.8,
701
+ "window_area_left": 120,
702
+ "window_area_right": 120,
703
+ "window_aspect_ratio": 2,
704
+ "ducts_supply_leakage_to_outside_value": 0,
705
+ "ducts_return_leakage_to_outside_value": 0,
706
+ "ducts_supply_location": "living space",
707
+ "ducts_return_location": "living space"
708
+ },
709
+ "sample_files/base-atticroof-conditioned.xml": {
710
+ "parent_hpxml": "sample_files/base.xml",
711
+ "geometry_unit_num_floors_above_grade": 2,
712
+ "geometry_unit_cfa": 3600,
713
+ "geometry_attic_type": "ConditionedAttic",
714
+ "ducts_supply_leakage_to_outside_value": 50,
715
+ "ducts_return_leakage_to_outside_value": 100,
716
+ "ducts_supply_location": "living space",
717
+ "ducts_return_location": "living space",
718
+ "water_heater_location": "basement - conditioned",
719
+ "clothes_washer_location": "basement - conditioned",
720
+ "clothes_dryer_location": "basement - conditioned",
721
+ "dishwasher_location": "basement - conditioned",
722
+ "refrigerator_location": "basement - conditioned",
723
+ "cooking_range_oven_location": "basement - conditioned",
724
+ "misc_plug_loads_other_annual_kwh": 3276
725
+ },
726
+ "sample_files/base-atticroof-flat.xml": {
727
+ "parent_hpxml": "sample_files/base.xml",
728
+ "geometry_attic_type": "FlatRoof",
729
+ "roof_assembly_r": 25.8,
730
+ "ducts_supply_leakage_to_outside_value": 0,
731
+ "ducts_return_leakage_to_outside_value": 0,
732
+ "ducts_supply_location": "basement - conditioned",
733
+ "ducts_return_location": "basement - conditioned"
734
+ },
735
+ "sample_files/base-atticroof-radiant-barrier.xml": {
736
+ "parent_hpxml": "sample_files/base-location-dallas-tx.xml",
737
+ "ceiling_assembly_r": 8.7,
738
+ "roof_radiant_barrier": true,
739
+ "roof_radiant_barrier_grade": 2
740
+ },
741
+ "sample_files/base-atticroof-unvented-insulated-roof.xml": {
742
+ "parent_hpxml": "sample_files/base.xml",
743
+ "ceiling_assembly_r": 2.1,
744
+ "roof_assembly_r": 25.8
745
+ },
746
+ "sample_files/base-atticroof-vented.xml": {
747
+ "parent_hpxml": "sample_files/base.xml",
748
+ "geometry_attic_type": "VentedAttic",
749
+ "ducts_supply_location": "attic - vented",
750
+ "ducts_return_location": "attic - vented",
751
+ "water_heater_location": "attic - vented"
752
+ },
753
+ "sample_files/base-battery.xml": {
754
+ "parent_hpxml": "sample_files/base.xml",
755
+ "battery_present": true,
756
+ "battery_location": "outside",
757
+ "battery_power": 6000,
758
+ "battery_capacity": 20,
759
+ "battery_usable_capacity": 18
760
+ },
761
+ "sample_files/base-battery-scheduled.xml": {
762
+ "parent_hpxml": "sample_files/base-battery.xml",
763
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/battery.csv"
764
+ },
765
+ "sample_files/base-bldgtype-attached.xml": {
766
+ "parent_hpxml": "sample_files/base.xml",
767
+ "geometry_unit_type": "single-family attached",
768
+ "geometry_unit_right_wall_is_adiabatic": true,
769
+ "geometry_unit_cfa": 1800,
770
+ "geometry_unit_aspect_ratio": 0.6667,
771
+ "geometry_building_num_units": 3,
772
+ "window_front_wwr": 0.18,
773
+ "window_back_wwr": 0.18,
774
+ "window_left_wwr": 0.18,
775
+ "window_right_wwr": 0.18,
776
+ "window_area_front": 0,
777
+ "window_area_back": 0,
778
+ "window_area_left": 0,
779
+ "window_area_right": 0,
780
+ "air_leakage_type": "unit exterior only",
781
+ "heating_system_heating_capacity": 24000,
782
+ "misc_plug_loads_other_annual_kwh": 1638
783
+ },
784
+ "sample_files/base-bldgtype-attached-2stories.xml": {
785
+ "parent_hpxml": "sample_files/base-bldgtype-attached.xml",
786
+ "geometry_unit_num_floors_above_grade": 2,
787
+ "geometry_unit_cfa": 2700,
788
+ "heating_system_heating_capacity": 48000,
789
+ "cooling_system_cooling_capacity": 36000,
790
+ "ducts_supply_surface_area": 112.5,
791
+ "ducts_return_surface_area": 37.5,
792
+ "misc_plug_loads_other_annual_kwh": 2457
793
+ },
794
+ "sample_files/base-bldgtype-attached-atticroof-cathedral.xml": {
795
+ "parent_hpxml": "sample_files/base-bldgtype-attached-2stories.xml",
796
+ "geometry_attic_type": "ConditionedAttic",
797
+ "ducts_supply_leakage_to_outside_value": 0,
798
+ "ducts_return_leakage_to_outside_value": 0,
799
+ "ducts_supply_location": "living space",
800
+ "ducts_return_location": "living space"
801
+ },
802
+ "sample_files/base-bldgtype-attached-infil-compartmentalization-test.xml": {
803
+ "parent_hpxml": "sample_files/base-bldgtype-attached.xml",
804
+ "air_leakage_value": 3.57,
805
+ "air_leakage_type": "unit total"
806
+ },
807
+ "sample_files/base-bldgtype-multifamily.xml": {
808
+ "parent_hpxml": "sample_files/base.xml",
809
+ "geometry_unit_type": "apartment unit",
810
+ "geometry_unit_right_wall_is_adiabatic": true,
811
+ "geometry_unit_cfa": 900,
812
+ "geometry_unit_aspect_ratio": 0.6667,
813
+ "geometry_building_num_units": 6,
814
+ "geometry_foundation_type": "AboveApartment",
815
+ "geometry_attic_type": "BelowApartment",
816
+ "window_front_wwr": 0.18,
817
+ "window_back_wwr": 0.18,
818
+ "window_left_wwr": 0.18,
819
+ "window_right_wwr": 0.18,
820
+ "window_area_front": 0,
821
+ "window_area_back": 0,
822
+ "window_area_left": 0,
823
+ "window_area_right": 0,
824
+ "door_area": 20,
825
+ "air_leakage_type": "unit exterior only",
826
+ "heating_system_heating_capacity": 12000,
827
+ "cooling_system_cooling_capacity": 12000,
828
+ "ducts_supply_leakage_to_outside_value": 0,
829
+ "ducts_return_leakage_to_outside_value": 0,
830
+ "ducts_supply_location": "living space",
831
+ "ducts_supply_insulation_r": 0,
832
+ "ducts_return_location": "living space",
833
+ "misc_plug_loads_other_annual_kwh": 819
834
+ },
835
+ "sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml": {
836
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml"
837
+ },
838
+ "sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml": {
839
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml"
840
+ },
841
+ "sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml": {
842
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml"
843
+ },
844
+ "sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml": {
845
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml"
846
+ },
847
+ "sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml": {
848
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml"
849
+ },
850
+ "sample_files/base-bldgtype-multifamily-infil-compartmentalization-test.xml": {
851
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml",
852
+ "air_leakage_value": 12.16,
853
+ "air_leakage_type": "unit total"
854
+ },
855
+ "sample_files/base-bldgtype-multifamily-residents-1.xml": {
856
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml",
857
+ "geometry_unit_num_occupants": 1,
858
+ "misc_plug_loads_television_annual_kwh": null,
859
+ "misc_plug_loads_other_annual_kwh": null
860
+ },
861
+ "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml": {
862
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml",
863
+ "heating_system_type": "Shared Boiler w/ Baseboard",
864
+ "cooling_system_type": "none",
865
+ "cooling_system_cooling_efficiency": 0,
866
+ "cooling_system_fraction_cool_load_served": 0
867
+ },
868
+ "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml": {
869
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml",
870
+ "heating_system_type": "Shared Boiler w/ Ductless Fan Coil"
871
+ },
872
+ "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml": {
873
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml"
874
+ },
875
+ "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml": {
876
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml"
877
+ },
878
+ "sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml": {
879
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml"
880
+ },
881
+ "sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml": {
882
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml",
883
+ "heating_system_type": "Shared Boiler w/ Baseboard",
884
+ "cooling_system_type": "none",
885
+ "cooling_system_cooling_efficiency": 0,
886
+ "cooling_system_fraction_cool_load_served": 0
887
+ },
888
+ "sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml": {
889
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml",
890
+ "heating_system_type": "Shared Boiler w/ Ductless Fan Coil"
891
+ },
892
+ "sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml": {
893
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml"
894
+ },
895
+ "sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml": {
896
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml"
897
+ },
898
+ "sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml": {
899
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml"
900
+ },
901
+ "sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml": {
902
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml",
903
+ "heating_system_type": "none",
904
+ "heating_system_heating_efficiency": 0,
905
+ "heating_system_fraction_heat_load_served": 0,
906
+ "cooling_system_type": "none",
907
+ "cooling_system_cooling_efficiency": 0,
908
+ "cooling_system_fraction_cool_load_served": 0
909
+ },
910
+ "sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml": {
911
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml"
912
+ },
913
+ "sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml": {
914
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml"
915
+ },
916
+ "sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml": {
917
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml"
918
+ },
919
+ "sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml": {
920
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml"
921
+ },
922
+ "sample_files/base-bldgtype-multifamily-shared-generator.xml": {
923
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml"
924
+ },
925
+ "sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml": {
926
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml"
927
+ },
928
+ "sample_files/base-bldgtype-multifamily-shared-laundry-room.xml": {
929
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml"
930
+ },
931
+ "sample_files/base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml": {
932
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-laundry-room.xml"
933
+ },
934
+ "sample_files/base-bldgtype-multifamily-shared-mechvent.xml": {
935
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml",
936
+ "mech_vent_fan_type": "supply only",
937
+ "mech_vent_flow_rate": 800,
938
+ "mech_vent_hours_in_operation": 24,
939
+ "mech_vent_total_recovery_efficiency": 0.48,
940
+ "mech_vent_sensible_recovery_efficiency": 0.72,
941
+ "mech_vent_fan_power": 240,
942
+ "mech_vent_num_units_served": 10,
943
+ "mech_vent_shared_frac_recirculation": 0.5,
944
+ "mech_vent_2_fan_type": "exhaust only",
945
+ "mech_vent_2_flow_rate": 72,
946
+ "mech_vent_2_hours_in_operation": 24,
947
+ "mech_vent_2_total_recovery_efficiency": 0.48,
948
+ "mech_vent_2_sensible_recovery_efficiency": 0.72,
949
+ "mech_vent_2_fan_power": 26
950
+ },
951
+ "sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml": {
952
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml"
953
+ },
954
+ "sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml": {
955
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-mechvent.xml",
956
+ "mech_vent_shared_preheating_fuel": "natural gas",
957
+ "mech_vent_shared_preheating_efficiency": 0.92,
958
+ "mech_vent_shared_preheating_fraction_heat_load_served": 0.7,
959
+ "mech_vent_shared_precooling_fuel": "electricity",
960
+ "mech_vent_shared_precooling_efficiency": 4,
961
+ "mech_vent_shared_precooling_fraction_cool_load_served": 0.8
962
+ },
963
+ "sample_files/base-bldgtype-multifamily-shared-pv.xml": {
964
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml",
965
+ "pv_system_present": true,
966
+ "pv_system_module_type": "standard",
967
+ "pv_system_location": "ground",
968
+ "pv_system_tracking": "fixed",
969
+ "pv_system_array_azimuth": 225,
970
+ "pv_system_array_tilt": 30,
971
+ "pv_system_max_power_output": 30000,
972
+ "pv_system_inverter_efficiency": 0.96,
973
+ "pv_system_system_losses_fraction": 0.14,
974
+ "pv_system_num_bedrooms_served": 18
975
+ },
976
+ "sample_files/base-bldgtype-multifamily-shared-water-heater.xml": {
977
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml",
978
+ "water_heater_fuel_type": "natural gas",
979
+ "water_heater_tank_volume": 120,
980
+ "water_heater_efficiency": 0.59,
981
+ "water_heater_recovery_efficiency": 0.76,
982
+ "water_heater_heating_capacity": 40000,
983
+ "water_heater_num_units_served": 6
984
+ },
985
+ "sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml": {
986
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily-shared-water-heater.xml"
987
+ },
988
+ "sample_files/base-dhw-combi-tankless.xml": {
989
+ "parent_hpxml": "sample_files/base-dhw-indirect.xml",
990
+ "water_heater_type": "space-heating boiler with tankless coil"
991
+ },
992
+ "sample_files/base-dhw-combi-tankless-outside.xml": {
993
+ "parent_hpxml": "sample_files/base-dhw-combi-tankless.xml",
994
+ "water_heater_location": "other exterior"
995
+ },
996
+ "sample_files/base-dhw-desuperheater.xml": {
997
+ "parent_hpxml": "sample_files/base-hvac-central-ac-only-1-speed.xml",
998
+ "water_heater_uses_desuperheater": true
999
+ },
1000
+ "sample_files/base-dhw-desuperheater-2-speed.xml": {
1001
+ "parent_hpxml": "sample_files/base-hvac-central-ac-only-2-speed.xml",
1002
+ "water_heater_uses_desuperheater": true
1003
+ },
1004
+ "sample_files/base-dhw-desuperheater-gshp.xml": {
1005
+ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml",
1006
+ "water_heater_uses_desuperheater": true
1007
+ },
1008
+ "sample_files/base-dhw-desuperheater-hpwh.xml": {
1009
+ "parent_hpxml": "sample_files/base-dhw-tank-heat-pump.xml",
1010
+ "water_heater_uses_desuperheater": true
1011
+ },
1012
+ "sample_files/base-dhw-desuperheater-tankless.xml": {
1013
+ "parent_hpxml": "sample_files/base-hvac-central-ac-only-1-speed.xml",
1014
+ "water_heater_type": "instantaneous water heater",
1015
+ "water_heater_efficiency": 0.99,
1016
+ "water_heater_uses_desuperheater": true
1017
+ },
1018
+ "sample_files/base-dhw-desuperheater-var-speed.xml": {
1019
+ "parent_hpxml": "sample_files/base-hvac-central-ac-only-var-speed.xml",
1020
+ "water_heater_uses_desuperheater": true
1021
+ },
1022
+ "sample_files/base-dhw-dwhr.xml": {
1023
+ "parent_hpxml": "sample_files/base.xml",
1024
+ "dwhr_facilities_connected": "all",
1025
+ "dwhr_equal_flow": true,
1026
+ "dwhr_efficiency": 0.55
1027
+ },
1028
+ "sample_files/base-dhw-indirect.xml": {
1029
+ "parent_hpxml": "sample_files/base-hvac-boiler-gas-only.xml",
1030
+ "water_heater_type": "space-heating boiler with storage tank",
1031
+ "water_heater_tank_volume": 50
1032
+ },
1033
+ "sample_files/base-dhw-indirect-detailed-setpoints.xml": {
1034
+ "parent_hpxml": "sample_files/base-dhw-indirect.xml",
1035
+ "water_heater_setpoint_temperature": null,
1036
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv"
1037
+ },
1038
+ "sample_files/base-dhw-indirect-dse.xml": {
1039
+ "parent_hpxml": "sample_files/base-dhw-indirect.xml"
1040
+ },
1041
+ "sample_files/base-dhw-indirect-outside.xml": {
1042
+ "parent_hpxml": "sample_files/base-dhw-indirect.xml",
1043
+ "water_heater_location": "other exterior"
1044
+ },
1045
+ "sample_files/base-dhw-indirect-standbyloss.xml": {
1046
+ "parent_hpxml": "sample_files/base-dhw-indirect.xml",
1047
+ "water_heater_standby_loss": 1
1048
+ },
1049
+ "sample_files/base-dhw-indirect-with-solar-fraction.xml": {
1050
+ "parent_hpxml": "sample_files/base-dhw-indirect.xml",
1051
+ "solar_thermal_system_type": "hot water",
1052
+ "solar_thermal_solar_fraction": 0.65
1053
+ },
1054
+ "sample_files/base-dhw-jacket-indirect.xml": {
1055
+ "parent_hpxml": "sample_files/base-dhw-indirect.xml",
1056
+ "water_heater_jacket_rvalue": 10
1057
+ },
1058
+ "sample_files/base-dhw-jacket-electric.xml": {
1059
+ "parent_hpxml": "sample_files/base.xml",
1060
+ "water_heater_jacket_rvalue": 10
1061
+ },
1062
+ "sample_files/base-dhw-jacket-gas.xml": {
1063
+ "parent_hpxml": "sample_files/base-dhw-tank-gas.xml",
1064
+ "water_heater_jacket_rvalue": 10
1065
+ },
1066
+ "sample_files/base-dhw-jacket-hpwh.xml": {
1067
+ "parent_hpxml": "sample_files/base-dhw-tank-heat-pump.xml",
1068
+ "water_heater_jacket_rvalue": 10
1069
+ },
1070
+ "sample_files/base-dhw-low-flow-fixtures.xml": {
1071
+ "parent_hpxml": "sample_files/base.xml",
1072
+ "water_fixtures_sink_low_flow": true
1073
+ },
1074
+ "sample_files/base-dhw-multiple.xml": {
1075
+ "parent_hpxml": "sample_files/base-hvac-boiler-gas-only.xml"
1076
+ },
1077
+ "sample_files/base-dhw-none.xml": {
1078
+ "parent_hpxml": "sample_files/base.xml",
1079
+ "water_heater_type": "none",
1080
+ "water_heater_efficiency": 0
1081
+ },
1082
+ "sample_files/base-dhw-recirc-demand.xml": {
1083
+ "parent_hpxml": "sample_files/base-dhw-recirc-nocontrol.xml",
1084
+ "hot_water_distribution_recirc_control_type": "presence sensor demand control",
1085
+ "hot_water_distribution_pipe_r": 3
1086
+ },
1087
+ "sample_files/base-dhw-recirc-manual.xml": {
1088
+ "parent_hpxml": "sample_files/base-dhw-recirc-nocontrol.xml",
1089
+ "hot_water_distribution_recirc_control_type": "manual demand control",
1090
+ "hot_water_distribution_pipe_r": 3
1091
+ },
1092
+ "sample_files/base-dhw-recirc-nocontrol.xml": {
1093
+ "parent_hpxml": "sample_files/base.xml",
1094
+ "hot_water_distribution_system_type": "Recirculation",
1095
+ "hot_water_distribution_recirc_control_type": "no control",
1096
+ "hot_water_distribution_recirc_piping_length": 50,
1097
+ "hot_water_distribution_recirc_branch_piping_length": 50,
1098
+ "hot_water_distribution_recirc_pump_power": 50
1099
+ },
1100
+ "sample_files/base-dhw-recirc-temperature.xml": {
1101
+ "parent_hpxml": "sample_files/base-dhw-recirc-nocontrol.xml",
1102
+ "hot_water_distribution_recirc_control_type": "temperature"
1103
+ },
1104
+ "sample_files/base-dhw-recirc-timer.xml": {
1105
+ "parent_hpxml": "sample_files/base-dhw-recirc-nocontrol.xml",
1106
+ "hot_water_distribution_recirc_control_type": "timer"
1107
+ },
1108
+ "sample_files/base-dhw-solar-direct-evacuated-tube.xml": {
1109
+ "parent_hpxml": "sample_files/base-dhw-solar-indirect-flat-plate.xml",
1110
+ "solar_thermal_collector_loop_type": "liquid direct",
1111
+ "solar_thermal_collector_type": "evacuated tube",
1112
+ "solar_thermal_collector_rated_optical_efficiency": 0.5,
1113
+ "solar_thermal_collector_rated_thermal_losses": 0.2799
1114
+ },
1115
+ "sample_files/base-dhw-solar-direct-flat-plate.xml": {
1116
+ "parent_hpxml": "sample_files/base-dhw-solar-indirect-flat-plate.xml",
1117
+ "solar_thermal_collector_loop_type": "liquid direct"
1118
+ },
1119
+ "sample_files/base-dhw-solar-direct-ics.xml": {
1120
+ "parent_hpxml": "sample_files/base-dhw-solar-indirect-flat-plate.xml",
1121
+ "solar_thermal_collector_loop_type": "liquid direct",
1122
+ "solar_thermal_collector_type": "integrated collector storage"
1123
+ },
1124
+ "sample_files/base-dhw-solar-fraction.xml": {
1125
+ "parent_hpxml": "sample_files/base.xml",
1126
+ "solar_thermal_system_type": "hot water",
1127
+ "solar_thermal_solar_fraction": 0.65
1128
+ },
1129
+ "sample_files/base-dhw-solar-indirect-flat-plate.xml": {
1130
+ "parent_hpxml": "sample_files/base.xml",
1131
+ "solar_thermal_system_type": "hot water",
1132
+ "solar_thermal_collector_area": 40,
1133
+ "solar_thermal_collector_azimuth": 180,
1134
+ "solar_thermal_collector_tilt": 20,
1135
+ "solar_thermal_collector_rated_optical_efficiency": 0.77,
1136
+ "solar_thermal_collector_rated_thermal_losses": 0.793,
1137
+ "solar_thermal_storage_volume": 60
1138
+ },
1139
+ "sample_files/base-dhw-solar-thermosyphon-flat-plate.xml": {
1140
+ "parent_hpxml": "sample_files/base-dhw-solar-indirect-flat-plate.xml",
1141
+ "solar_thermal_collector_loop_type": "passive thermosyphon"
1142
+ },
1143
+ "sample_files/base-dhw-tank-coal.xml": {
1144
+ "parent_hpxml": "sample_files/base-dhw-tank-gas.xml",
1145
+ "water_heater_fuel_type": "coal"
1146
+ },
1147
+ "sample_files/base-dhw-tank-detailed-setpoints.xml": {
1148
+ "parent_hpxml": "sample_files/base.xml",
1149
+ "water_heater_setpoint_temperature": null,
1150
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv"
1151
+ },
1152
+ "sample_files/base-dhw-tank-elec-uef.xml": {
1153
+ "parent_hpxml": "sample_files/base.xml",
1154
+ "water_heater_tank_volume": 30,
1155
+ "water_heater_efficiency_type": "UniformEnergyFactor",
1156
+ "water_heater_efficiency": 0.93,
1157
+ "water_heater_usage_bin": "low",
1158
+ "water_heater_heating_capacity": 15354
1159
+ },
1160
+ "sample_files/base-dhw-tank-gas.xml": {
1161
+ "parent_hpxml": "sample_files/base.xml",
1162
+ "water_heater_fuel_type": "natural gas",
1163
+ "water_heater_tank_volume": 50,
1164
+ "water_heater_efficiency": 0.59,
1165
+ "water_heater_recovery_efficiency": 0.76,
1166
+ "water_heater_heating_capacity": 40000
1167
+ },
1168
+ "sample_files/base-dhw-tank-gas-uef.xml": {
1169
+ "parent_hpxml": "sample_files/base-dhw-tank-gas.xml",
1170
+ "water_heater_tank_volume": 30,
1171
+ "water_heater_efficiency_type": "UniformEnergyFactor",
1172
+ "water_heater_usage_bin": "medium",
1173
+ "water_heater_recovery_efficiency": 0.75,
1174
+ "water_heater_heating_capacity": 30000
1175
+ },
1176
+ "sample_files/base-dhw-tank-gas-uef-fhr.xml": {
1177
+ "parent_hpxml": "sample_files/base-dhw-tank-gas-uef.xml"
1178
+ },
1179
+ "sample_files/base-dhw-tank-gas-outside.xml": {
1180
+ "parent_hpxml": "sample_files/base-dhw-tank-gas.xml",
1181
+ "water_heater_location": "other exterior"
1182
+ },
1183
+ "sample_files/base-dhw-tank-heat-pump.xml": {
1184
+ "parent_hpxml": "sample_files/base.xml",
1185
+ "water_heater_type": "heat pump water heater",
1186
+ "water_heater_tank_volume": 80,
1187
+ "water_heater_efficiency": 2.3
1188
+ },
1189
+ "sample_files/base-dhw-tank-heat-pump-outside.xml": {
1190
+ "parent_hpxml": "sample_files/base-dhw-tank-heat-pump.xml",
1191
+ "water_heater_location": "other exterior"
1192
+ },
1193
+ "sample_files/base-dhw-tank-heat-pump-uef.xml": {
1194
+ "parent_hpxml": "sample_files/base-dhw-tank-heat-pump.xml",
1195
+ "water_heater_tank_volume": 50,
1196
+ "water_heater_efficiency_type": "UniformEnergyFactor",
1197
+ "water_heater_efficiency": 3.75,
1198
+ "water_heater_usage_bin": "medium"
1199
+ },
1200
+ "sample_files/base-dhw-tank-heat-pump-with-solar.xml": {
1201
+ "parent_hpxml": "sample_files/base-dhw-tank-heat-pump.xml",
1202
+ "solar_thermal_system_type": "hot water",
1203
+ "solar_thermal_collector_area": 40,
1204
+ "solar_thermal_collector_azimuth": 180,
1205
+ "solar_thermal_collector_tilt": 20,
1206
+ "solar_thermal_collector_rated_optical_efficiency": 0.77,
1207
+ "solar_thermal_collector_rated_thermal_losses": 0.793,
1208
+ "solar_thermal_storage_volume": 60
1209
+ },
1210
+ "sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml": {
1211
+ "parent_hpxml": "sample_files/base-dhw-tank-heat-pump.xml",
1212
+ "solar_thermal_system_type": "hot water",
1213
+ "solar_thermal_solar_fraction": 0.65
1214
+ },
1215
+ "sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml": {
1216
+ "parent_hpxml": "sample_files/base-dhw-tank-heat-pump-uef.xml",
1217
+ "water_heater_operating_mode": "heat pump only"
1218
+ },
1219
+ "sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml": {
1220
+ "parent_hpxml": "sample_files/base-dhw-tank-heat-pump-uef.xml",
1221
+ "water_heater_setpoint_temperature": null,
1222
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv, ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-operating-modes.csv"
1223
+ },
1224
+ "sample_files/base-dhw-tank-model-type-stratified.xml": {
1225
+ "parent_hpxml": "sample_files/base.xml",
1226
+ "water_heater_tank_model_type": "stratified"
1227
+ },
1228
+ "sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml": {
1229
+ "parent_hpxml": "sample_files/base-dhw-tank-model-type-stratified.xml",
1230
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv"
1231
+ },
1232
+ "sample_files/base-dhw-tank-oil.xml": {
1233
+ "parent_hpxml": "sample_files/base-dhw-tank-gas.xml",
1234
+ "water_heater_fuel_type": "fuel oil"
1235
+ },
1236
+ "sample_files/base-dhw-tank-wood.xml": {
1237
+ "parent_hpxml": "sample_files/base-dhw-tank-gas.xml",
1238
+ "water_heater_fuel_type": "wood"
1239
+ },
1240
+ "sample_files/base-dhw-tankless-electric.xml": {
1241
+ "parent_hpxml": "sample_files/base.xml",
1242
+ "water_heater_type": "instantaneous water heater",
1243
+ "water_heater_efficiency": 0.99
1244
+ },
1245
+ "sample_files/base-dhw-tankless-electric-outside.xml": {
1246
+ "parent_hpxml": "sample_files/base-dhw-tankless-electric.xml",
1247
+ "water_heater_location": "other exterior"
1248
+ },
1249
+ "sample_files/base-dhw-tankless-electric-uef.xml": {
1250
+ "parent_hpxml": "sample_files/base-dhw-tankless-electric.xml",
1251
+ "water_heater_efficiency_type": "UniformEnergyFactor",
1252
+ "water_heater_efficiency": 0.98
1253
+ },
1254
+ "sample_files/base-dhw-tankless-gas.xml": {
1255
+ "parent_hpxml": "sample_files/base.xml",
1256
+ "water_heater_type": "instantaneous water heater",
1257
+ "water_heater_fuel_type": "natural gas",
1258
+ "water_heater_efficiency": 0.82
1259
+ },
1260
+ "sample_files/base-dhw-tankless-gas-uef.xml": {
1261
+ "parent_hpxml": "sample_files/base-dhw-tankless-gas.xml",
1262
+ "water_heater_efficiency_type": "UniformEnergyFactor",
1263
+ "water_heater_efficiency": 0.93
1264
+ },
1265
+ "sample_files/base-dhw-tankless-gas-with-solar.xml": {
1266
+ "parent_hpxml": "sample_files/base-dhw-tankless-gas.xml",
1267
+ "solar_thermal_system_type": "hot water",
1268
+ "solar_thermal_collector_area": 40,
1269
+ "solar_thermal_collector_azimuth": 180,
1270
+ "solar_thermal_collector_tilt": 20,
1271
+ "solar_thermal_collector_rated_optical_efficiency": 0.77,
1272
+ "solar_thermal_collector_rated_thermal_losses": 0.793,
1273
+ "solar_thermal_storage_volume": 60
1274
+ },
1275
+ "sample_files/base-dhw-tankless-gas-with-solar-fraction.xml": {
1276
+ "parent_hpxml": "sample_files/base-dhw-tankless-gas.xml",
1277
+ "solar_thermal_system_type": "hot water",
1278
+ "solar_thermal_solar_fraction": 0.65
1279
+ },
1280
+ "sample_files/base-dhw-tankless-propane.xml": {
1281
+ "parent_hpxml": "sample_files/base-dhw-tankless-gas.xml",
1282
+ "water_heater_fuel_type": "propane"
1283
+ },
1284
+ "sample_files/base-dhw-tankless-detailed-setpoints.xml": {
1285
+ "parent_hpxml": "sample_files/base-dhw-tankless-gas.xml",
1286
+ "water_heater_setpoint_temperature": null,
1287
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints.csv"
1288
+ },
1289
+ "sample_files/base-enclosure-2stories.xml": {
1290
+ "parent_hpxml": "sample_files/base.xml",
1291
+ "geometry_unit_num_floors_above_grade": 2,
1292
+ "geometry_unit_cfa": 4050,
1293
+ "window_area_front": 216,
1294
+ "window_area_back": 216,
1295
+ "window_area_left": 144,
1296
+ "window_area_right": 144,
1297
+ "heating_system_heating_capacity": 48000,
1298
+ "cooling_system_cooling_capacity": 36000,
1299
+ "ducts_supply_surface_area": 112.5,
1300
+ "ducts_return_surface_area": 37.5,
1301
+ "misc_plug_loads_other_annual_kwh": 3685.5
1302
+ },
1303
+ "sample_files/base-enclosure-2stories-garage.xml": {
1304
+ "parent_hpxml": "sample_files/base-enclosure-2stories.xml",
1305
+ "geometry_unit_cfa": 3250,
1306
+ "geometry_garage_width": 20,
1307
+ "floor_over_garage_assembly_r": 39.3,
1308
+ "misc_plug_loads_other_annual_kwh": 2957.5
1309
+ },
1310
+ "sample_files/base-enclosure-beds-1.xml": {
1311
+ "parent_hpxml": "sample_files/base.xml",
1312
+ "geometry_unit_num_bedrooms": 1,
1313
+ "geometry_unit_num_bathrooms": 1,
1314
+ "misc_plug_loads_television_annual_kwh": 482
1315
+ },
1316
+ "sample_files/base-enclosure-beds-2.xml": {
1317
+ "parent_hpxml": "sample_files/base.xml",
1318
+ "geometry_unit_num_bedrooms": 2,
1319
+ "geometry_unit_num_bathrooms": 1,
1320
+ "misc_plug_loads_television_annual_kwh": 551
1321
+ },
1322
+ "sample_files/base-enclosure-beds-4.xml": {
1323
+ "parent_hpxml": "sample_files/base.xml",
1324
+ "geometry_unit_num_bedrooms": 4,
1325
+ "misc_plug_loads_television_annual_kwh": 689
1326
+ },
1327
+ "sample_files/base-enclosure-beds-5.xml": {
1328
+ "parent_hpxml": "sample_files/base.xml",
1329
+ "geometry_unit_num_bedrooms": 5,
1330
+ "geometry_unit_num_bathrooms": 3,
1331
+ "misc_plug_loads_television_annual_kwh": 758
1332
+ },
1333
+ "sample_files/base-enclosure-ceilingtypes.xml": {
1334
+ "parent_hpxml": "sample_files/base.xml"
1335
+ },
1336
+ "sample_files/base-enclosure-floortypes.xml": {
1337
+ "parent_hpxml": "sample_files/base-foundation-ambient.xml"
1338
+ },
1339
+ "sample_files/base-enclosure-garage.xml": {
1340
+ "parent_hpxml": "sample_files/base.xml",
1341
+ "geometry_garage_width": 30,
1342
+ "geometry_garage_protrusion": 1,
1343
+ "window_area_front": 12,
1344
+ "window_aspect_ratio": 3.333,
1345
+ "ducts_supply_location": "garage",
1346
+ "ducts_return_location": "garage",
1347
+ "water_heater_location": "garage",
1348
+ "clothes_washer_location": "garage",
1349
+ "clothes_dryer_location": "garage",
1350
+ "dishwasher_location": "garage",
1351
+ "refrigerator_location": "garage",
1352
+ "cooking_range_oven_location": "garage"
1353
+ },
1354
+ "sample_files/base-enclosure-infil-ach-house-pressure.xml": {
1355
+ "parent_hpxml": "sample_files/base.xml",
1356
+ "air_leakage_house_pressure": 45,
1357
+ "air_leakage_value": 2.8
1358
+ },
1359
+ "sample_files/base-enclosure-infil-cfm-house-pressure.xml": {
1360
+ "parent_hpxml": "sample_files/base-enclosure-infil-cfm50.xml",
1361
+ "air_leakage_house_pressure": 45,
1362
+ "air_leakage_value": 1008.5
1363
+ },
1364
+ "sample_files/base-enclosure-infil-cfm50.xml": {
1365
+ "parent_hpxml": "sample_files/base.xml",
1366
+ "air_leakage_units": "CFM",
1367
+ "air_leakage_value": 1080
1368
+ },
1369
+ "sample_files/base-enclosure-infil-ela.xml": {
1370
+ "parent_hpxml": "sample_files/base.xml",
1371
+ "air_leakage_units": "EffectiveLeakageArea",
1372
+ "air_leakage_value": 123
1373
+ },
1374
+ "sample_files/base-enclosure-infil-flue.xml": {
1375
+ "parent_hpxml": "sample_files/base.xml",
1376
+ "air_leakage_has_flue_or_chimney_in_conditioned_space": true
1377
+ },
1378
+ "sample_files/base-enclosure-infil-natural-ach.xml": {
1379
+ "parent_hpxml": "sample_files/base.xml",
1380
+ "air_leakage_units": "ACHnatural",
1381
+ "air_leakage_value": 0.2
1382
+ },
1383
+ "sample_files/base-enclosure-infil-natural-cfm.xml": {
1384
+ "parent_hpxml": "sample_files/base.xml",
1385
+ "air_leakage_units": "CFMnatural",
1386
+ "air_leakage_value": 72
1387
+ },
1388
+ "sample_files/base-enclosure-orientations.xml": {
1389
+ "parent_hpxml": "sample_files/base.xml"
1390
+ },
1391
+ "sample_files/base-enclosure-overhangs.xml": {
1392
+ "parent_hpxml": "sample_files/base.xml",
1393
+ "overhangs_back_depth": 2.5,
1394
+ "overhangs_back_distance_to_bottom_of_window": 4,
1395
+ "overhangs_left_depth": 1.5,
1396
+ "overhangs_left_distance_to_top_of_window": 2,
1397
+ "overhangs_left_distance_to_bottom_of_window": 7,
1398
+ "overhangs_right_depth": 1.5,
1399
+ "overhangs_right_distance_to_top_of_window": 2,
1400
+ "overhangs_right_distance_to_bottom_of_window": 6
1401
+ },
1402
+ "sample_files/base-enclosure-rooftypes.xml": {
1403
+ "parent_hpxml": "sample_files/base.xml"
1404
+ },
1405
+ "sample_files/base-enclosure-skylights.xml": {
1406
+ "parent_hpxml": "sample_files/base.xml",
1407
+ "skylight_area_front": 15,
1408
+ "skylight_area_back": 15
1409
+ },
1410
+ "sample_files/base-enclosure-skylights-physical-properties.xml": {
1411
+ "parent_hpxml": "sample_files/base-enclosure-skylights.xml"
1412
+ },
1413
+ "sample_files/base-enclosure-skylights-shading.xml": {
1414
+ "parent_hpxml": "sample_files/base-enclosure-skylights.xml"
1415
+ },
1416
+ "sample_files/base-enclosure-skylights-storms.xml": {
1417
+ "parent_hpxml": "sample_files/base-enclosure-skylights.xml",
1418
+ "skylight_ufactor": 0.6,
1419
+ "skylight_storm_type": "clear"
1420
+ },
1421
+ "sample_files/base-enclosure-split-level.xml": {
1422
+ "parent_hpxml": "sample_files/base-foundation-slab.xml"
1423
+ },
1424
+ "sample_files/base-enclosure-walltypes.xml": {
1425
+ "parent_hpxml": "sample_files/base.xml"
1426
+ },
1427
+ "sample_files/base-enclosure-windows-natural-ventilation-availability.xml": {
1428
+ "parent_hpxml": "sample_files/base.xml",
1429
+ "window_natvent_availability": 7
1430
+ },
1431
+ "sample_files/base-enclosure-windows-none.xml": {
1432
+ "parent_hpxml": "sample_files/base.xml",
1433
+ "window_area_front": 0,
1434
+ "window_area_back": 0,
1435
+ "window_area_left": 0,
1436
+ "window_area_right": 0
1437
+ },
1438
+ "sample_files/base-enclosure-windows-physical-properties.xml": {
1439
+ "parent_hpxml": "sample_files/base.xml"
1440
+ },
1441
+ "sample_files/base-enclosure-windows-shading.xml": {
1442
+ "parent_hpxml": "sample_files/base.xml"
1443
+ },
1444
+ "sample_files/base-enclosure-windows-shading-seasons.xml": {
1445
+ "parent_hpxml": "sample_files/base.xml",
1446
+ "window_shading_summer_season": "May 1 - Sep 30"
1447
+ },
1448
+ "sample_files/base-enclosure-windows-storms.xml": {
1449
+ "parent_hpxml": "sample_files/base.xml",
1450
+ "window_ufactor": 0.6,
1451
+ "window_storm_type": "low-e"
1452
+ },
1453
+ "sample_files/base-enclosure-thermal-mass.xml": {
1454
+ "parent_hpxml": "sample_files/base.xml"
1455
+ },
1456
+ "sample_files/base-foundation-ambient.xml": {
1457
+ "parent_hpxml": "sample_files/base.xml",
1458
+ "geometry_unit_cfa": 1350,
1459
+ "geometry_foundation_type": "Ambient",
1460
+ "floor_over_foundation_assembly_r": 18.7,
1461
+ "misc_plug_loads_other_annual_kwh": 1228.5
1462
+ },
1463
+ "sample_files/base-foundation-basement-garage.xml": {
1464
+ "parent_hpxml": "sample_files/base.xml",
1465
+ "misc_plug_loads_other_annual_kwh": 1729
1466
+ },
1467
+ "sample_files/base-foundation-complex.xml": {
1468
+ "parent_hpxml": "sample_files/base.xml"
1469
+ },
1470
+ "sample_files/base-foundation-conditioned-basement-slab-insulation.xml": {
1471
+ "parent_hpxml": "sample_files/base.xml",
1472
+ "slab_under_insulation_r": 10,
1473
+ "slab_under_width": 4
1474
+ },
1475
+ "sample_files/base-foundation-conditioned-basement-wall-insulation.xml": {
1476
+ "parent_hpxml": "sample_files/base.xml",
1477
+ "foundation_wall_type": "concrete block foam core",
1478
+ "foundation_wall_insulation_r": 18.9,
1479
+ "foundation_wall_insulation_distance_to_top": 1
1480
+ },
1481
+ "sample_files/base-foundation-conditioned-crawlspace.xml": {
1482
+ "parent_hpxml": "sample_files/base.xml",
1483
+ "geometry_unit_cfa": 1350,
1484
+ "geometry_foundation_type": "ConditionedCrawlspace",
1485
+ "geometry_foundation_height": 4,
1486
+ "floor_over_foundation_assembly_r": 18.7,
1487
+ "foundation_wall_insulation_distance_to_bottom": 4,
1488
+ "ducts_supply_leakage_to_outside_value": 0,
1489
+ "ducts_return_leakage_to_outside_value": 0,
1490
+ "ducts_supply_location": "crawlspace - conditioned",
1491
+ "ducts_return_location": "crawlspace - conditioned",
1492
+ "water_heater_location": "crawlspace - conditioned",
1493
+ "misc_plug_loads_other_annual_kwh": 1228.5
1494
+ },
1495
+ "sample_files/base-foundation-slab.xml": {
1496
+ "parent_hpxml": "sample_files/base.xml",
1497
+ "geometry_unit_cfa": 1350,
1498
+ "geometry_foundation_type": "SlabOnGrade",
1499
+ "geometry_foundation_height": 0,
1500
+ "geometry_foundation_height_above_grade": 0,
1501
+ "slab_under_insulation_r": 5,
1502
+ "slab_under_width": 999,
1503
+ "slab_carpet_fraction": 1,
1504
+ "slab_carpet_r": 2.5,
1505
+ "ducts_supply_location": "under slab",
1506
+ "ducts_return_location": "under slab",
1507
+ "misc_plug_loads_other_annual_kwh": 1228.5
1508
+ },
1509
+ "sample_files/base-foundation-multiple.xml": {
1510
+ "parent_hpxml": "sample_files/base-foundation-unconditioned-basement.xml"
1511
+ },
1512
+ "sample_files/base-foundation-unconditioned-basement.xml": {
1513
+ "parent_hpxml": "sample_files/base.xml",
1514
+ "geometry_unit_cfa": 1350,
1515
+ "geometry_foundation_type": "UnconditionedBasement",
1516
+ "floor_over_foundation_assembly_r": 18.7,
1517
+ "foundation_wall_insulation_r": 0,
1518
+ "foundation_wall_insulation_distance_to_bottom": 0,
1519
+ "rim_joist_assembly_r": 4,
1520
+ "ducts_supply_location": "basement - unconditioned",
1521
+ "ducts_return_location": "basement - unconditioned",
1522
+ "water_heater_location": "basement - unconditioned",
1523
+ "clothes_washer_location": "basement - unconditioned",
1524
+ "clothes_dryer_location": "basement - unconditioned",
1525
+ "dishwasher_location": "basement - unconditioned",
1526
+ "refrigerator_location": "basement - unconditioned",
1527
+ "cooking_range_oven_location": "basement - unconditioned",
1528
+ "misc_plug_loads_other_annual_kwh": 1228.5
1529
+ },
1530
+ "sample_files/base-foundation-unconditioned-basement-above-grade.xml": {
1531
+ "parent_hpxml": "sample_files/base-foundation-unconditioned-basement.xml",
1532
+ "geometry_foundation_height_above_grade": 4
1533
+ },
1534
+ "sample_files/base-foundation-unconditioned-basement-assembly-r.xml": {
1535
+ "parent_hpxml": "sample_files/base-foundation-unconditioned-basement.xml",
1536
+ "foundation_wall_assembly_r": 10.69
1537
+ },
1538
+ "sample_files/base-foundation-unconditioned-basement-wall-insulation.xml": {
1539
+ "parent_hpxml": "sample_files/base-foundation-unconditioned-basement.xml",
1540
+ "floor_over_foundation_assembly_r": 2.1,
1541
+ "foundation_wall_insulation_r": 8.9,
1542
+ "foundation_wall_insulation_distance_to_bottom": 4,
1543
+ "rim_joist_assembly_r": 23
1544
+ },
1545
+ "sample_files/base-foundation-unvented-crawlspace.xml": {
1546
+ "parent_hpxml": "sample_files/base.xml",
1547
+ "geometry_unit_cfa": 1350,
1548
+ "geometry_foundation_type": "UnventedCrawlspace",
1549
+ "geometry_foundation_height": 4,
1550
+ "floor_over_foundation_assembly_r": 18.7,
1551
+ "foundation_wall_insulation_distance_to_bottom": 4,
1552
+ "slab_thickness": 0,
1553
+ "ducts_supply_location": "crawlspace - unvented",
1554
+ "ducts_return_location": "crawlspace - unvented",
1555
+ "water_heater_location": "crawlspace - unvented",
1556
+ "misc_plug_loads_other_annual_kwh": 1228.5
1557
+ },
1558
+ "sample_files/base-foundation-vented-crawlspace.xml": {
1559
+ "parent_hpxml": "sample_files/base.xml",
1560
+ "geometry_unit_cfa": 1350,
1561
+ "geometry_foundation_type": "VentedCrawlspace",
1562
+ "geometry_foundation_height": 4,
1563
+ "floor_over_foundation_assembly_r": 18.7,
1564
+ "foundation_wall_insulation_distance_to_bottom": 4,
1565
+ "slab_thickness": 0,
1566
+ "ducts_supply_location": "crawlspace - vented",
1567
+ "ducts_return_location": "crawlspace - vented",
1568
+ "water_heater_location": "crawlspace - vented",
1569
+ "misc_plug_loads_other_annual_kwh": 1228.5
1570
+ },
1571
+ "sample_files/base-foundation-walkout-basement.xml": {
1572
+ "parent_hpxml": "sample_files/base.xml",
1573
+ "geometry_foundation_height_above_grade": 5,
1574
+ "foundation_wall_insulation_distance_to_bottom": 4
1575
+ },
1576
+ "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml": {
1577
+ "parent_hpxml": "sample_files/base.xml",
1578
+ "heating_system_type": "none",
1579
+ "heating_system_heating_efficiency": 0,
1580
+ "heating_system_fraction_heat_load_served": 0,
1581
+ "cooling_system_type": "none",
1582
+ "cooling_system_cooling_efficiency": 0,
1583
+ "cooling_system_fraction_cool_load_served": 0,
1584
+ "heat_pump_type": "air-to-air",
1585
+ "heat_pump_heating_efficiency": 7.7,
1586
+ "heat_pump_cooling_efficiency": 13,
1587
+ "heat_pump_cooling_compressor_type": "single stage",
1588
+ "heat_pump_cooling_sensible_heat_fraction": 0.73,
1589
+ "heat_pump_heating_capacity": 36000,
1590
+ "heat_pump_heating_capacity_retention_fraction": 0.6,
1591
+ "heat_pump_heating_capacity_retention_temp": 17.0,
1592
+ "heat_pump_cooling_capacity": 36000,
1593
+ "heat_pump_fraction_heat_load_served": 1,
1594
+ "heat_pump_fraction_cool_load_served": 1,
1595
+ "heat_pump_backup_type": "integrated",
1596
+ "heat_pump_backup_heating_efficiency": 1,
1597
+ "heat_pump_backup_heating_capacity": 36000
1598
+ },
1599
+ "sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml": {
1600
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml"
1601
+ },
1602
+ "sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml": {
1603
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml",
1604
+ "heat_pump_backup_heating_capacity": null
1605
+ },
1606
+ "sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml": {
1607
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml",
1608
+ "heat_pump_heating_capacity": 0,
1609
+ "heat_pump_fraction_heat_load_served": 0,
1610
+ "heat_pump_backup_type": "none",
1611
+ "heat_pump_backup_heating_efficiency": 0
1612
+ },
1613
+ "sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml": {
1614
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml",
1615
+ "heat_pump_cooling_capacity": 0,
1616
+ "heat_pump_fraction_cool_load_served": 0
1617
+ },
1618
+ "sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml": {
1619
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml",
1620
+ "heat_pump_compressor_lockout_temp": 5,
1621
+ "heat_pump_backup_heating_lockout_temp": 35,
1622
+ "hvac_control_heating_weekday_setpoint": "64, 64, 64, 64, 64, 64, 64, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 64, 64",
1623
+ "hvac_control_heating_weekend_setpoint": "64, 64, 64, 64, 64, 64, 64, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 64, 64"
1624
+ },
1625
+ "sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml": {
1626
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml",
1627
+ "heat_pump_heating_efficiency_type": "HSPF2",
1628
+ "heat_pump_heating_efficiency": 6.5,
1629
+ "heat_pump_cooling_efficiency_type": "SEER2",
1630
+ "heat_pump_cooling_efficiency": 12.4
1631
+ },
1632
+ "sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml": {
1633
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml",
1634
+ "heat_pump_heating_efficiency": 9.3,
1635
+ "heat_pump_cooling_efficiency": 18,
1636
+ "heat_pump_cooling_compressor_type": "two stage"
1637
+ },
1638
+ "sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml": {
1639
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml",
1640
+ "heat_pump_heating_efficiency": 10,
1641
+ "heat_pump_cooling_efficiency": 22,
1642
+ "heat_pump_cooling_compressor_type": "variable speed",
1643
+ "heat_pump_cooling_sensible_heat_fraction": 0.78
1644
+ },
1645
+ "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml": {
1646
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml",
1647
+ "heat_pump_heating_capacity": 18000,
1648
+ "heat_pump_heating_capacity_retention_fraction": 0.6,
1649
+ "heat_pump_heating_capacity_retention_temp": 17.0,
1650
+ "heat_pump_cooling_capacity": 18000,
1651
+ "heat_pump_backup_type": "separate",
1652
+ "heating_system_2_type": "Boiler",
1653
+ "heating_system_2_fuel": "natural gas",
1654
+ "heating_system_2_heating_efficiency": 0.8,
1655
+ "heating_system_2_heating_capacity": 60000,
1656
+ "heating_system_2_fraction_heat_load_served": 0.25
1657
+ },
1658
+ "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml": {
1659
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml",
1660
+ "hvac_control_heating_season_period": "Nov 1 - May 1",
1661
+ "hvac_control_cooling_season_period": "Jun 1 - Oct 1"
1662
+ },
1663
+ "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml": {
1664
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml",
1665
+ "heat_pump_compressor_lockout_temp": 30,
1666
+ "heat_pump_backup_heating_lockout_temp": 30
1667
+ },
1668
+ "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml": {
1669
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml"
1670
+ },
1671
+ "sample_files/base-hvac-autosize.xml": {
1672
+ "parent_hpxml": "sample_files/base.xml",
1673
+ "heating_system_heating_capacity": null,
1674
+ "cooling_system_cooling_capacity": null
1675
+ },
1676
+ "sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml": {
1677
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml",
1678
+ "heat_pump_heating_capacity": null,
1679
+ "heat_pump_heating_capacity_retention_fraction": null,
1680
+ "heat_pump_heating_capacity_retention_temp": null,
1681
+ "heat_pump_cooling_capacity": null,
1682
+ "heat_pump_sizing_methodology": "HERS"
1683
+ },
1684
+ "sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml": {
1685
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml",
1686
+ "heat_pump_heating_capacity": null,
1687
+ "heat_pump_heating_capacity_retention_fraction": null,
1688
+ "heat_pump_heating_capacity_retention_temp": null,
1689
+ "heat_pump_cooling_capacity": null,
1690
+ "heat_pump_backup_heating_capacity": null,
1691
+ "heat_pump_sizing_methodology": "HERS"
1692
+ },
1693
+ "sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml": {
1694
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml",
1695
+ "heat_pump_heating_capacity": null,
1696
+ "heat_pump_heating_capacity_retention_fraction": null,
1697
+ "heat_pump_heating_capacity_retention_temp": null,
1698
+ "heat_pump_cooling_capacity": null,
1699
+ "heat_pump_backup_heating_capacity": null,
1700
+ "heat_pump_sizing_methodology": "ACCA"
1701
+ },
1702
+ "sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml": {
1703
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml",
1704
+ "heat_pump_heating_capacity": null,
1705
+ "heat_pump_heating_capacity_retention_fraction": null,
1706
+ "heat_pump_heating_capacity_retention_temp": null,
1707
+ "heat_pump_cooling_capacity": null,
1708
+ "heat_pump_backup_heating_capacity": null,
1709
+ "heat_pump_sizing_methodology": "HERS"
1710
+ },
1711
+ "sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml": {
1712
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml",
1713
+ "heat_pump_heating_capacity": null,
1714
+ "heat_pump_heating_capacity_retention_fraction": null,
1715
+ "heat_pump_heating_capacity_retention_temp": null,
1716
+ "heat_pump_cooling_capacity": null,
1717
+ "heat_pump_backup_heating_capacity": null,
1718
+ "heat_pump_sizing_methodology": "MaxLoad"
1719
+ },
1720
+ "sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml": {
1721
+ "parent_hpxml": "sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml",
1722
+ "site_iecc_zone": "1A",
1723
+ "site_state_code": "FL",
1724
+ "weather_station_epw_filepath": "USA_FL_Miami.Intl.AP.722020_TMY3.epw"
1725
+ },
1726
+ "sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml": {
1727
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml",
1728
+ "heat_pump_heating_capacity": null,
1729
+ "heat_pump_heating_capacity_retention_fraction": null,
1730
+ "heat_pump_heating_capacity_retention_temp": null,
1731
+ "heat_pump_cooling_capacity": null,
1732
+ "heat_pump_backup_heating_capacity": null,
1733
+ "heat_pump_sizing_methodology": "ACCA"
1734
+ },
1735
+ "sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml": {
1736
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml",
1737
+ "heat_pump_heating_capacity": null,
1738
+ "heat_pump_heating_capacity_retention_fraction": null,
1739
+ "heat_pump_heating_capacity_retention_temp": null,
1740
+ "heat_pump_cooling_capacity": null,
1741
+ "heat_pump_backup_heating_capacity": null,
1742
+ "heat_pump_sizing_methodology": "HERS"
1743
+ },
1744
+ "sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml": {
1745
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml",
1746
+ "heat_pump_heating_capacity": null,
1747
+ "heat_pump_heating_capacity_retention_fraction": null,
1748
+ "heat_pump_heating_capacity_retention_temp": null,
1749
+ "heat_pump_cooling_capacity": null,
1750
+ "heat_pump_backup_heating_capacity": null,
1751
+ "heat_pump_sizing_methodology": "MaxLoad"
1752
+ },
1753
+ "sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml": {
1754
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml",
1755
+ "heat_pump_heating_capacity": null,
1756
+ "heat_pump_heating_capacity_retention_fraction": null,
1757
+ "heat_pump_heating_capacity_retention_temp": null,
1758
+ "heat_pump_cooling_capacity": null,
1759
+ "heat_pump_backup_heating_capacity": null,
1760
+ "heat_pump_sizing_methodology": "ACCA"
1761
+ },
1762
+ "sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml": {
1763
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml",
1764
+ "heat_pump_heating_capacity": null,
1765
+ "heat_pump_heating_capacity_retention_fraction": null,
1766
+ "heat_pump_heating_capacity_retention_temp": null,
1767
+ "heat_pump_cooling_capacity": null,
1768
+ "heat_pump_backup_heating_capacity": null,
1769
+ "heat_pump_sizing_methodology": "HERS"
1770
+ },
1771
+ "sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml": {
1772
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml",
1773
+ "heat_pump_heating_capacity": null,
1774
+ "heat_pump_heating_capacity_retention_fraction": null,
1775
+ "heat_pump_heating_capacity_retention_temp": null,
1776
+ "heat_pump_cooling_capacity": null,
1777
+ "heat_pump_backup_heating_capacity": null,
1778
+ "heat_pump_sizing_methodology": "MaxLoad"
1779
+ },
1780
+ "sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml": {
1781
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml",
1782
+ "heat_pump_heating_capacity": null,
1783
+ "heat_pump_heating_capacity_retention_fraction": null,
1784
+ "heat_pump_heating_capacity_retention_temp": null,
1785
+ "heat_pump_cooling_capacity": null,
1786
+ "heat_pump_backup_heating_capacity": null,
1787
+ "heat_pump_sizing_methodology": "HERS",
1788
+ "heating_system_2_heating_capacity": null
1789
+ },
1790
+ "sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml": {
1791
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml",
1792
+ "heat_pump_heating_capacity": null,
1793
+ "heat_pump_heating_capacity_retention_fraction": null,
1794
+ "heat_pump_heating_capacity_retention_temp": null,
1795
+ "heat_pump_cooling_capacity": null,
1796
+ "heat_pump_backup_heating_capacity": null,
1797
+ "heat_pump_sizing_methodology": "HERS",
1798
+ "heating_system_2_heating_capacity": null
1799
+ },
1800
+ "sample_files/base-hvac-autosize-boiler-elec-only.xml": {
1801
+ "parent_hpxml": "sample_files/base-hvac-boiler-elec-only.xml",
1802
+ "heating_system_heating_capacity": null
1803
+ },
1804
+ "sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml": {
1805
+ "parent_hpxml": "sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml",
1806
+ "heating_system_heating_capacity": null,
1807
+ "cooling_system_cooling_capacity": null
1808
+ },
1809
+ "sample_files/base-hvac-autosize-boiler-gas-only.xml": {
1810
+ "parent_hpxml": "sample_files/base-hvac-boiler-gas-only.xml",
1811
+ "heating_system_heating_capacity": null
1812
+ },
1813
+ "sample_files/base-hvac-autosize-central-ac-only-1-speed.xml": {
1814
+ "parent_hpxml": "sample_files/base-hvac-central-ac-only-1-speed.xml",
1815
+ "cooling_system_cooling_capacity": null
1816
+ },
1817
+ "sample_files/base-hvac-autosize-central-ac-only-2-speed.xml": {
1818
+ "parent_hpxml": "sample_files/base-hvac-central-ac-only-2-speed.xml",
1819
+ "cooling_system_cooling_capacity": null
1820
+ },
1821
+ "sample_files/base-hvac-autosize-central-ac-only-var-speed.xml": {
1822
+ "parent_hpxml": "sample_files/base-hvac-central-ac-only-var-speed.xml",
1823
+ "cooling_system_cooling_capacity": null
1824
+ },
1825
+ "sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml": {
1826
+ "parent_hpxml": "sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml",
1827
+ "cooling_system_cooling_capacity": null,
1828
+ "heat_pump_heating_capacity": null,
1829
+ "heat_pump_heating_capacity_retention_fraction": null,
1830
+ "heat_pump_heating_capacity_retention_temp": null,
1831
+ "heat_pump_cooling_capacity": null,
1832
+ "heat_pump_backup_heating_capacity": null,
1833
+ "heat_pump_sizing_methodology": "HERS"
1834
+ },
1835
+ "sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml": {
1836
+ "parent_hpxml": "sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml",
1837
+ "heat_pump_heating_capacity": null,
1838
+ "heat_pump_heating_capacity_retention_fraction": null,
1839
+ "heat_pump_heating_capacity_retention_temp": null,
1840
+ "heat_pump_cooling_capacity": null,
1841
+ "heat_pump_backup_heating_capacity": null,
1842
+ "heat_pump_sizing_methodology": "ACCA"
1843
+ },
1844
+ "sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml": {
1845
+ "parent_hpxml": "sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml",
1846
+ "heat_pump_heating_capacity": null,
1847
+ "heat_pump_heating_capacity_retention_fraction": null,
1848
+ "heat_pump_heating_capacity_retention_temp": null,
1849
+ "heat_pump_cooling_capacity": null,
1850
+ "heat_pump_backup_heating_capacity": null,
1851
+ "heat_pump_sizing_methodology": "HERS"
1852
+ },
1853
+ "sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml": {
1854
+ "parent_hpxml": "sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml",
1855
+ "heat_pump_heating_capacity": null,
1856
+ "heat_pump_heating_capacity_retention_fraction": null,
1857
+ "heat_pump_heating_capacity_retention_temp": null,
1858
+ "heat_pump_cooling_capacity": null,
1859
+ "heat_pump_backup_heating_capacity": null,
1860
+ "heat_pump_sizing_methodology": "MaxLoad"
1861
+ },
1862
+ "sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml": {
1863
+ "parent_hpxml": "sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml",
1864
+ "heat_pump_heating_capacity": null,
1865
+ "heat_pump_heating_capacity_retention_fraction": null,
1866
+ "heat_pump_heating_capacity_retention_temp": null,
1867
+ "heat_pump_cooling_capacity": null,
1868
+ "heat_pump_backup_heating_capacity": null,
1869
+ "heat_pump_sizing_methodology": "HERS"
1870
+ },
1871
+ "sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml": {
1872
+ "parent_hpxml": "sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml",
1873
+ "heat_pump_backup_heating_capacity": 36000
1874
+ },
1875
+ "sample_files/base-hvac-autosize-elec-resistance-only.xml": {
1876
+ "parent_hpxml": "sample_files/base-hvac-elec-resistance-only.xml",
1877
+ "heating_system_heating_capacity": null
1878
+ },
1879
+ "sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml": {
1880
+ "parent_hpxml": "sample_files/base-hvac-evap-cooler-furnace-gas.xml",
1881
+ "heating_system_heating_capacity": null,
1882
+ "cooling_system_cooling_capacity": null
1883
+ },
1884
+ "sample_files/base-hvac-autosize-floor-furnace-propane-only.xml": {
1885
+ "parent_hpxml": "sample_files/base-hvac-floor-furnace-propane-only.xml",
1886
+ "heating_system_heating_capacity": null
1887
+ },
1888
+ "sample_files/base-hvac-autosize-furnace-elec-only.xml": {
1889
+ "parent_hpxml": "sample_files/base-hvac-furnace-elec-only.xml",
1890
+ "heating_system_heating_capacity": null
1891
+ },
1892
+ "sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml": {
1893
+ "parent_hpxml": "sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml",
1894
+ "heating_system_heating_capacity": null,
1895
+ "cooling_system_cooling_capacity": null
1896
+ },
1897
+ "sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml": {
1898
+ "parent_hpxml": "sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml",
1899
+ "heating_system_heating_capacity": null,
1900
+ "cooling_system_cooling_capacity": null
1901
+ },
1902
+ "sample_files/base-hvac-autosize-furnace-gas-only.xml": {
1903
+ "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml",
1904
+ "heating_system_heating_capacity": null
1905
+ },
1906
+ "sample_files/base-hvac-autosize-furnace-gas-room-ac.xml": {
1907
+ "parent_hpxml": "sample_files/base-hvac-furnace-gas-room-ac.xml",
1908
+ "heating_system_heating_capacity": null,
1909
+ "cooling_system_cooling_capacity": null
1910
+ },
1911
+ "sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml": {
1912
+ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml",
1913
+ "heat_pump_heating_capacity": null,
1914
+ "heat_pump_cooling_capacity": null,
1915
+ "heat_pump_sizing_methodology": "HERS"
1916
+ },
1917
+ "sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml": {
1918
+ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml",
1919
+ "heat_pump_heating_capacity": null,
1920
+ "heat_pump_cooling_capacity": null,
1921
+ "heat_pump_backup_heating_capacity": null,
1922
+ "heat_pump_sizing_methodology": "HERS"
1923
+ },
1924
+ "sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml": {
1925
+ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml",
1926
+ "heat_pump_heating_capacity": null,
1927
+ "heat_pump_cooling_capacity": null,
1928
+ "heat_pump_backup_heating_capacity": null,
1929
+ "heat_pump_sizing_methodology": "ACCA"
1930
+ },
1931
+ "sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml": {
1932
+ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml",
1933
+ "heat_pump_heating_capacity": null,
1934
+ "heat_pump_cooling_capacity": null,
1935
+ "heat_pump_backup_heating_capacity": null,
1936
+ "heat_pump_sizing_methodology": "HERS"
1937
+ },
1938
+ "sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml": {
1939
+ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml",
1940
+ "heat_pump_heating_capacity": null,
1941
+ "heat_pump_cooling_capacity": null,
1942
+ "heat_pump_backup_heating_capacity": null,
1943
+ "heat_pump_sizing_methodology": "MaxLoad"
1944
+ },
1945
+ "sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml": {
1946
+ "parent_hpxml": "sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml",
1947
+ "cooling_system_cooling_capacity": null
1948
+ },
1949
+ "sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml": {
1950
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml",
1951
+ "heat_pump_heating_capacity": null,
1952
+ "heat_pump_heating_capacity_retention_fraction": null,
1953
+ "heat_pump_heating_capacity_retention_temp": null,
1954
+ "heat_pump_cooling_capacity": null,
1955
+ "heat_pump_sizing_methodology": "HERS"
1956
+ },
1957
+ "sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml": {
1958
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml",
1959
+ "heat_pump_heating_capacity": null,
1960
+ "heat_pump_heating_capacity_retention_fraction": null,
1961
+ "heat_pump_heating_capacity_retention_temp": null,
1962
+ "heat_pump_cooling_capacity": null,
1963
+ "heat_pump_backup_heating_capacity": null,
1964
+ "heat_pump_sizing_methodology": "HERS"
1965
+ },
1966
+ "sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml": {
1967
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml",
1968
+ "heat_pump_heating_capacity": null,
1969
+ "heat_pump_heating_capacity_retention_fraction": null,
1970
+ "heat_pump_heating_capacity_retention_temp": null,
1971
+ "heat_pump_cooling_capacity": null,
1972
+ "heat_pump_backup_heating_capacity": null,
1973
+ "heat_pump_sizing_methodology": "ACCA"
1974
+ },
1975
+ "sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml": {
1976
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml",
1977
+ "heat_pump_heating_capacity": null,
1978
+ "heat_pump_heating_capacity_retention_fraction": null,
1979
+ "heat_pump_heating_capacity_retention_temp": null,
1980
+ "heat_pump_cooling_capacity": null,
1981
+ "heat_pump_backup_heating_capacity": null,
1982
+ "heat_pump_sizing_methodology": "HERS"
1983
+ },
1984
+ "sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml": {
1985
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml",
1986
+ "heat_pump_heating_capacity": null,
1987
+ "heat_pump_heating_capacity_retention_fraction": null,
1988
+ "heat_pump_heating_capacity_retention_temp": null,
1989
+ "heat_pump_cooling_capacity": null,
1990
+ "heat_pump_backup_heating_capacity": null,
1991
+ "heat_pump_sizing_methodology": "MaxLoad"
1992
+ },
1993
+ "sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml": {
1994
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml",
1995
+ "heat_pump_heating_capacity": null,
1996
+ "heat_pump_heating_capacity_retention_fraction": null,
1997
+ "heat_pump_heating_capacity_retention_temp": null,
1998
+ "heat_pump_cooling_capacity": null,
1999
+ "heat_pump_backup_heating_capacity": null,
2000
+ "heat_pump_sizing_methodology": "HERS",
2001
+ "heating_system_2_heating_capacity": null
2002
+ },
2003
+ "sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml": {
2004
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml",
2005
+ "heat_pump_heating_capacity": null,
2006
+ "heat_pump_heating_capacity_retention_fraction": null,
2007
+ "heat_pump_heating_capacity_retention_temp": null,
2008
+ "heat_pump_cooling_capacity": null,
2009
+ "heat_pump_backup_heating_capacity": null,
2010
+ "heat_pump_sizing_methodology": "HERS",
2011
+ "heating_system_2_heating_capacity": null
2012
+ },
2013
+ "sample_files/base-hvac-autosize-ptac.xml": {
2014
+ "parent_hpxml": "sample_files/base-hvac-ptac.xml",
2015
+ "cooling_system_cooling_capacity": null
2016
+ },
2017
+ "sample_files/base-hvac-autosize-ptac-with-heating.xml": {
2018
+ "parent_hpxml": "sample_files/base-hvac-ptac-with-heating-electricity.xml",
2019
+ "cooling_system_cooling_capacity": null,
2020
+ "cooling_system_integrated_heating_system_capacity": null
2021
+ },
2022
+ "sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml": {
2023
+ "parent_hpxml": "sample_files/base-hvac-pthp.xml",
2024
+ "heat_pump_heating_capacity": null,
2025
+ "heat_pump_cooling_capacity": null,
2026
+ "heat_pump_backup_heating_capacity": null,
2027
+ "heat_pump_sizing_methodology": "ACCA"
2028
+ },
2029
+ "sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml": {
2030
+ "parent_hpxml": "sample_files/base-hvac-pthp.xml",
2031
+ "heat_pump_heating_capacity": null,
2032
+ "heat_pump_cooling_capacity": null,
2033
+ "heat_pump_backup_heating_capacity": null,
2034
+ "heat_pump_sizing_methodology": "HERS"
2035
+ },
2036
+ "sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml": {
2037
+ "parent_hpxml": "sample_files/base-hvac-pthp.xml",
2038
+ "heat_pump_heating_capacity": null,
2039
+ "heat_pump_cooling_capacity": null,
2040
+ "heat_pump_backup_heating_capacity": null,
2041
+ "heat_pump_sizing_methodology": "MaxLoad"
2042
+ },
2043
+ "sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml": {
2044
+ "parent_hpxml": "sample_files/base-hvac-room-ac-with-reverse-cycle.xml",
2045
+ "heat_pump_heating_capacity": null,
2046
+ "heat_pump_cooling_capacity": null,
2047
+ "heat_pump_backup_heating_capacity": null,
2048
+ "heat_pump_sizing_methodology": "ACCA"
2049
+ },
2050
+ "sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml": {
2051
+ "parent_hpxml": "sample_files/base-hvac-room-ac-with-reverse-cycle.xml",
2052
+ "heat_pump_heating_capacity": null,
2053
+ "heat_pump_cooling_capacity": null,
2054
+ "heat_pump_backup_heating_capacity": null,
2055
+ "heat_pump_sizing_methodology": "HERS"
2056
+ },
2057
+ "sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml": {
2058
+ "parent_hpxml": "sample_files/base-hvac-room-ac-with-reverse-cycle.xml",
2059
+ "heat_pump_heating_capacity": null,
2060
+ "heat_pump_cooling_capacity": null,
2061
+ "heat_pump_backup_heating_capacity": null,
2062
+ "heat_pump_sizing_methodology": "MaxLoad"
2063
+ },
2064
+ "sample_files/base-hvac-autosize-room-ac-with-heating.xml": {
2065
+ "parent_hpxml": "sample_files/base-hvac-room-ac-with-heating.xml",
2066
+ "cooling_system_cooling_capacity": null,
2067
+ "cooling_system_integrated_heating_system_capacity": null
2068
+ },
2069
+ "sample_files/base-hvac-autosize-room-ac-only.xml": {
2070
+ "parent_hpxml": "sample_files/base-hvac-room-ac-only.xml",
2071
+ "cooling_system_cooling_capacity": null
2072
+ },
2073
+ "sample_files/base-hvac-autosize-sizing-controls.xml": {
2074
+ "parent_hpxml": "sample_files/base-hvac-autosize.xml",
2075
+ "geometry_unit_num_occupants": 5,
2076
+ "hvac_control_heating_weekday_setpoint": 60,
2077
+ "hvac_control_heating_weekend_setpoint": 60,
2078
+ "hvac_control_cooling_weekday_setpoint": 80,
2079
+ "hvac_control_cooling_weekend_setpoint": 80
2080
+ },
2081
+ "sample_files/base-hvac-autosize-stove-oil-only.xml": {
2082
+ "parent_hpxml": "sample_files/base-hvac-stove-oil-only.xml",
2083
+ "heating_system_heating_capacity": null
2084
+ },
2085
+ "sample_files/base-hvac-autosize-wall-furnace-elec-only.xml": {
2086
+ "parent_hpxml": "sample_files/base-hvac-wall-furnace-elec-only.xml",
2087
+ "heating_system_heating_capacity": null
2088
+ },
2089
+ "sample_files/base-hvac-boiler-coal-only.xml": {
2090
+ "parent_hpxml": "sample_files/base-hvac-boiler-gas-only.xml",
2091
+ "heating_system_fuel": "coal"
2092
+ },
2093
+ "sample_files/base-hvac-boiler-elec-only.xml": {
2094
+ "parent_hpxml": "sample_files/base.xml",
2095
+ "heating_system_type": "Boiler",
2096
+ "heating_system_fuel": "electricity",
2097
+ "heating_system_heating_efficiency": 0.98,
2098
+ "cooling_system_type": "none",
2099
+ "cooling_system_cooling_efficiency": 0,
2100
+ "cooling_system_fraction_cool_load_served": 0
2101
+ },
2102
+ "sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml": {
2103
+ "parent_hpxml": "sample_files/base.xml",
2104
+ "heating_system_type": "Boiler"
2105
+ },
2106
+ "sample_files/base-hvac-boiler-gas-only.xml": {
2107
+ "parent_hpxml": "sample_files/base.xml",
2108
+ "heating_system_type": "Boiler",
2109
+ "cooling_system_type": "none",
2110
+ "cooling_system_cooling_efficiency": 0,
2111
+ "cooling_system_fraction_cool_load_served": 0
2112
+ },
2113
+ "sample_files/base-hvac-boiler-gas-only-pilot.xml": {
2114
+ "parent_hpxml": "sample_files/base-hvac-boiler-gas-only.xml",
2115
+ "heating_system_pilot_light": 600
2116
+ },
2117
+ "sample_files/base-hvac-boiler-oil-only.xml": {
2118
+ "parent_hpxml": "sample_files/base-hvac-boiler-gas-only.xml",
2119
+ "heating_system_fuel": "fuel oil"
2120
+ },
2121
+ "sample_files/base-hvac-boiler-propane-only.xml": {
2122
+ "parent_hpxml": "sample_files/base-hvac-boiler-gas-only.xml",
2123
+ "heating_system_fuel": "propane"
2124
+ },
2125
+ "sample_files/base-hvac-boiler-wood-only.xml": {
2126
+ "parent_hpxml": "sample_files/base-hvac-boiler-gas-only.xml",
2127
+ "heating_system_fuel": "wood"
2128
+ },
2129
+ "sample_files/base-hvac-central-ac-only-1-speed.xml": {
2130
+ "parent_hpxml": "sample_files/base.xml",
2131
+ "heating_system_type": "none",
2132
+ "heating_system_heating_efficiency": 0,
2133
+ "heating_system_fraction_heat_load_served": 0
2134
+ },
2135
+ "sample_files/base-hvac-central-ac-only-1-speed-seer2.xml": {
2136
+ "parent_hpxml": "sample_files/base-hvac-central-ac-only-1-speed.xml",
2137
+ "cooling_system_cooling_efficiency_type": "SEER2",
2138
+ "cooling_system_cooling_efficiency": 12.4
2139
+ },
2140
+ "sample_files/base-hvac-central-ac-only-2-speed.xml": {
2141
+ "parent_hpxml": "sample_files/base-hvac-central-ac-only-1-speed.xml",
2142
+ "cooling_system_cooling_efficiency": 18,
2143
+ "cooling_system_cooling_compressor_type": "two stage"
2144
+ },
2145
+ "sample_files/base-hvac-central-ac-only-var-speed.xml": {
2146
+ "parent_hpxml": "sample_files/base-hvac-central-ac-only-1-speed.xml",
2147
+ "cooling_system_cooling_efficiency": 24,
2148
+ "cooling_system_cooling_compressor_type": "variable speed",
2149
+ "cooling_system_cooling_sensible_heat_fraction": 0.78
2150
+ },
2151
+ "sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml": {
2152
+ "parent_hpxml": "sample_files/base-hvac-central-ac-only-1-speed.xml",
2153
+ "heat_pump_type": "air-to-air",
2154
+ "heat_pump_heating_efficiency": 7.7,
2155
+ "heat_pump_cooling_efficiency": 13,
2156
+ "heat_pump_cooling_compressor_type": "single stage",
2157
+ "heat_pump_cooling_sensible_heat_fraction": 0.73,
2158
+ "heat_pump_heating_capacity": 36000,
2159
+ "heat_pump_heating_capacity_retention_fraction": 0.6,
2160
+ "heat_pump_heating_capacity_retention_temp": 17.0,
2161
+ "heat_pump_cooling_capacity": 36000,
2162
+ "heat_pump_fraction_heat_load_served": 1,
2163
+ "heat_pump_backup_type": "integrated",
2164
+ "heat_pump_backup_heating_efficiency": 1,
2165
+ "heat_pump_backup_heating_capacity": 36000
2166
+ },
2167
+ "sample_files/base-hvac-crankcase-heater-40w.xml": {
2168
+ "parent_hpxml": "sample_files/base.xml",
2169
+ "cooling_system_crankcase_heater_watts": 40
2170
+ },
2171
+ "sample_files/base-hvac-dse.xml": {
2172
+ "parent_hpxml": "sample_files/base.xml"
2173
+ },
2174
+ "sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml": {
2175
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml",
2176
+ "heat_pump_compressor_lockout_temp": 30,
2177
+ "heat_pump_backup_fuel": "natural gas",
2178
+ "heat_pump_backup_heating_efficiency": 0.95,
2179
+ "heat_pump_backup_heating_lockout_temp": 30
2180
+ },
2181
+ "sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml": {
2182
+ "parent_hpxml": "sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml",
2183
+ "heat_pump_compressor_lockout_temp": 25,
2184
+ "heat_pump_backup_heating_lockout_temp": 45
2185
+ },
2186
+ "sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml": {
2187
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml",
2188
+ "heat_pump_compressor_lockout_temp": 30,
2189
+ "heat_pump_backup_fuel": "natural gas",
2190
+ "heat_pump_backup_heating_efficiency": 0.95,
2191
+ "heat_pump_backup_heating_lockout_temp": 30
2192
+ },
2193
+ "sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml": {
2194
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml",
2195
+ "heat_pump_compressor_lockout_temp": 30,
2196
+ "heat_pump_backup_fuel": "natural gas",
2197
+ "heat_pump_backup_heating_efficiency": 0.95,
2198
+ "heat_pump_backup_heating_lockout_temp": 30
2199
+ },
2200
+ "sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml": {
2201
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml",
2202
+ "heat_pump_compressor_lockout_temp": 30,
2203
+ "heat_pump_backup_fuel": "natural gas",
2204
+ "heat_pump_backup_heating_efficiency": 0.95,
2205
+ "heat_pump_backup_heating_lockout_temp": 30
2206
+ },
2207
+ "sample_files/base-hvac-ducts-leakage-cfm50.xml": {
2208
+ "parent_hpxml": "sample_files/base.xml",
2209
+ "ducts_leakage_units": "CFM50",
2210
+ "ducts_supply_leakage_to_outside_value": 100,
2211
+ "ducts_return_leakage_to_outside_value": 125
2212
+ },
2213
+ "sample_files/base-hvac-ducts-leakage-percent.xml": {
2214
+ "parent_hpxml": "sample_files/base.xml",
2215
+ "ducts_leakage_units": "Percent",
2216
+ "ducts_supply_leakage_to_outside_value": 0.1,
2217
+ "ducts_return_leakage_to_outside_value": 0.05
2218
+ },
2219
+ "sample_files/base-hvac-ducts-area-fractions.xml": {
2220
+ "parent_hpxml": "sample_files/base-enclosure-2stories.xml"
2221
+ },
2222
+ "sample_files/base-hvac-ducts-area-multipliers.xml": {
2223
+ "parent_hpxml": "sample_files/base.xml"
2224
+ },
2225
+ "sample_files/base-hvac-ducts-buried.xml": {
2226
+ "parent_hpxml": "sample_files/base.xml",
2227
+ "ducts_supply_buried_insulation_level": "deeply buried",
2228
+ "ducts_return_buried_insulation_level": "deeply buried",
2229
+ "ducts_return_insulation_r": 4
2230
+ },
2231
+ "sample_files/base-hvac-ducts-effective-rvalue.xml": {
2232
+ "parent_hpxml": "sample_files/base.xml"
2233
+ },
2234
+ "sample_files/base-hvac-elec-resistance-only.xml": {
2235
+ "parent_hpxml": "sample_files/base.xml",
2236
+ "heating_system_type": "ElectricResistance",
2237
+ "heating_system_fuel": "electricity",
2238
+ "heating_system_heating_efficiency": 1,
2239
+ "cooling_system_type": "none",
2240
+ "cooling_system_cooling_efficiency": 0,
2241
+ "cooling_system_fraction_cool_load_served": 0
2242
+ },
2243
+ "sample_files/base-hvac-evap-cooler-furnace-gas.xml": {
2244
+ "parent_hpxml": "sample_files/base.xml",
2245
+ "cooling_system_type": "evaporative cooler",
2246
+ "cooling_system_is_ducted": false
2247
+ },
2248
+ "sample_files/base-hvac-evap-cooler-only.xml": {
2249
+ "parent_hpxml": "sample_files/base-hvac-evap-cooler-furnace-gas.xml",
2250
+ "heating_system_type": "none",
2251
+ "heating_system_heating_efficiency": 0,
2252
+ "heating_system_fraction_heat_load_served": 0
2253
+ },
2254
+ "sample_files/base-hvac-evap-cooler-only-ducted.xml": {
2255
+ "parent_hpxml": "sample_files/base-hvac-evap-cooler-only.xml",
2256
+ "cooling_system_is_ducted": true,
2257
+ "ducts_return_leakage_to_outside_value": 0
2258
+ },
2259
+ "sample_files/base-hvac-fireplace-wood-only.xml": {
2260
+ "parent_hpxml": "sample_files/base-hvac-stove-oil-only.xml",
2261
+ "heating_system_type": "Fireplace",
2262
+ "heating_system_fuel": "wood"
2263
+ },
2264
+ "sample_files/base-hvac-fixed-heater-gas-only.xml": {
2265
+ "parent_hpxml": "sample_files/base.xml",
2266
+ "heating_system_type": "FixedHeater",
2267
+ "heating_system_heating_efficiency": 1,
2268
+ "cooling_system_type": "none",
2269
+ "cooling_system_cooling_efficiency": 0,
2270
+ "cooling_system_fraction_cool_load_served": 0
2271
+ },
2272
+ "sample_files/base-hvac-floor-furnace-propane-only.xml": {
2273
+ "parent_hpxml": "sample_files/base-hvac-stove-oil-only.xml",
2274
+ "heating_system_type": "FloorFurnace",
2275
+ "heating_system_fuel": "propane"
2276
+ },
2277
+ "sample_files/base-hvac-floor-furnace-propane-only-pilot-light.xml": {
2278
+ "parent_hpxml": "sample_files/base-hvac-floor-furnace-propane-only.xml",
2279
+ "heating_system_pilot_light": 600
2280
+ },
2281
+ "sample_files/base-hvac-furnace-coal-only.xml": {
2282
+ "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml",
2283
+ "heating_system_fuel": "coal"
2284
+ },
2285
+ "sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml": {
2286
+ "parent_hpxml": "sample_files/base.xml",
2287
+ "heating_system_fuel": "electricity",
2288
+ "heating_system_heating_efficiency": 1
2289
+ },
2290
+ "sample_files/base-hvac-furnace-elec-only.xml": {
2291
+ "parent_hpxml": "sample_files/base.xml",
2292
+ "heating_system_fuel": "electricity",
2293
+ "heating_system_heating_efficiency": 0.98,
2294
+ "cooling_system_type": "none",
2295
+ "cooling_system_cooling_efficiency": 0,
2296
+ "cooling_system_fraction_cool_load_served": 0
2297
+ },
2298
+ "sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml": {
2299
+ "parent_hpxml": "sample_files/base.xml",
2300
+ "cooling_system_cooling_efficiency": 18,
2301
+ "cooling_system_cooling_compressor_type": "two stage"
2302
+ },
2303
+ "sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml": {
2304
+ "parent_hpxml": "sample_files/base.xml",
2305
+ "cooling_system_cooling_efficiency": 24,
2306
+ "cooling_system_cooling_compressor_type": "variable speed",
2307
+ "cooling_system_cooling_sensible_heat_fraction": 0.78
2308
+ },
2309
+ "sample_files/base-hvac-furnace-gas-only.xml": {
2310
+ "parent_hpxml": "sample_files/base.xml",
2311
+ "cooling_system_type": "none",
2312
+ "cooling_system_cooling_efficiency": 0,
2313
+ "cooling_system_fraction_cool_load_served": 0
2314
+ },
2315
+ "sample_files/base-hvac-furnace-gas-only-pilot.xml": {
2316
+ "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml",
2317
+ "heating_system_pilot_light": 600
2318
+ },
2319
+ "sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml": {
2320
+ "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml",
2321
+ "hvac_control_heating_weekday_setpoint": null,
2322
+ "hvac_control_heating_weekend_setpoint": null,
2323
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-heating-only.csv"
2324
+ },
2325
+ "sample_files/base-hvac-furnace-gas-room-ac.xml": {
2326
+ "parent_hpxml": "sample_files/base.xml",
2327
+ "cooling_system_type": "room air conditioner",
2328
+ "cooling_system_cooling_efficiency_type": "EER",
2329
+ "cooling_system_cooling_efficiency": 8.5,
2330
+ "cooling_system_cooling_sensible_heat_fraction": 0.65
2331
+ },
2332
+ "sample_files/base-hvac-furnace-oil-only.xml": {
2333
+ "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml",
2334
+ "heating_system_fuel": "fuel oil"
2335
+ },
2336
+ "sample_files/base-hvac-furnace-propane-only.xml": {
2337
+ "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml",
2338
+ "heating_system_fuel": "propane"
2339
+ },
2340
+ "sample_files/base-hvac-furnace-wood-only.xml": {
2341
+ "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml",
2342
+ "heating_system_fuel": "wood"
2343
+ },
2344
+ "sample_files/base-hvac-furnace-x3-dse.xml": {
2345
+ "parent_hpxml": "sample_files/base.xml"
2346
+ },
2347
+ "sample_files/base-hvac-ground-to-air-heat-pump.xml": {
2348
+ "parent_hpxml": "sample_files/base.xml",
2349
+ "heating_system_type": "none",
2350
+ "heating_system_heating_efficiency": 0,
2351
+ "heating_system_fraction_heat_load_served": 0,
2352
+ "cooling_system_type": "none",
2353
+ "cooling_system_cooling_efficiency": 0,
2354
+ "cooling_system_fraction_cool_load_served": 0,
2355
+ "heat_pump_type": "ground-to-air",
2356
+ "heat_pump_heating_efficiency_type": "COP",
2357
+ "heat_pump_heating_efficiency": 3.6,
2358
+ "heat_pump_cooling_efficiency_type": "EER",
2359
+ "heat_pump_cooling_efficiency": 16.6,
2360
+ "heat_pump_cooling_sensible_heat_fraction": 0.73,
2361
+ "heat_pump_heating_capacity": 36000,
2362
+ "heat_pump_cooling_capacity": 36000,
2363
+ "heat_pump_fraction_heat_load_served": 1,
2364
+ "heat_pump_fraction_cool_load_served": 1,
2365
+ "heat_pump_backup_type": "integrated",
2366
+ "heat_pump_backup_heating_efficiency": 1,
2367
+ "heat_pump_backup_heating_capacity": 36000
2368
+ },
2369
+ "sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml": {
2370
+ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml",
2371
+ "heat_pump_heating_capacity": 0,
2372
+ "heat_pump_fraction_heat_load_served": 0,
2373
+ "heat_pump_backup_type": "none",
2374
+ "heat_pump_backup_heating_efficiency": 0
2375
+ },
2376
+ "sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml": {
2377
+ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml",
2378
+ "heat_pump_cooling_capacity": 0,
2379
+ "heat_pump_fraction_cool_load_served": 0
2380
+ },
2381
+ "sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml": {
2382
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml",
2383
+ "heat_pump_airflow_defect_ratio": -0.25,
2384
+ "heat_pump_charge_defect_ratio": -0.25
2385
+ },
2386
+ "sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml": {
2387
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml",
2388
+ "heat_pump_airflow_defect_ratio": -0.25,
2389
+ "heat_pump_charge_defect_ratio": -0.25
2390
+ },
2391
+ "sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml": {
2392
+ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml",
2393
+ "heat_pump_airflow_defect_ratio": -0.25,
2394
+ "heat_pump_charge_defect_ratio": -0.25
2395
+ },
2396
+ "sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml": {
2397
+ "parent_hpxml": "sample_files/base.xml",
2398
+ "heating_system_airflow_defect_ratio": -0.25,
2399
+ "cooling_system_airflow_defect_ratio": -0.25,
2400
+ "cooling_system_charge_defect_ratio": -0.25
2401
+ },
2402
+ "sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml": {
2403
+ "parent_hpxml": "sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml",
2404
+ "heating_system_airflow_defect_ratio": -0.25,
2405
+ "cooling_system_airflow_defect_ratio": -0.25,
2406
+ "cooling_system_charge_defect_ratio": -0.25
2407
+ },
2408
+ "sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml": {
2409
+ "parent_hpxml": "sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml",
2410
+ "heating_system_airflow_defect_ratio": -0.25,
2411
+ "cooling_system_airflow_defect_ratio": -0.25,
2412
+ "cooling_system_charge_defect_ratio": -0.25
2413
+ },
2414
+ "sample_files/base-hvac-install-quality-furnace-gas-only.xml": {
2415
+ "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml",
2416
+ "heating_system_airflow_defect_ratio": -0.25
2417
+ },
2418
+ "sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml": {
2419
+ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml",
2420
+ "heat_pump_airflow_defect_ratio": -0.25,
2421
+ "heat_pump_charge_defect_ratio": -0.25
2422
+ },
2423
+ "sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml": {
2424
+ "parent_hpxml": "sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml",
2425
+ "cooling_system_airflow_defect_ratio": -0.25,
2426
+ "cooling_system_charge_defect_ratio": -0.25
2427
+ },
2428
+ "sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml": {
2429
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml",
2430
+ "heat_pump_airflow_defect_ratio": -0.25,
2431
+ "heat_pump_charge_defect_ratio": -0.25
2432
+ },
2433
+ "sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml": {
2434
+ "parent_hpxml": "sample_files/base.xml",
2435
+ "heating_system_type": "none",
2436
+ "heating_system_heating_efficiency": 0,
2437
+ "heating_system_fraction_heat_load_served": 0,
2438
+ "cooling_system_type": "mini-split",
2439
+ "cooling_system_cooling_efficiency": 19,
2440
+ "cooling_system_is_ducted": true,
2441
+ "ducts_supply_leakage_to_outside_value": 15,
2442
+ "ducts_return_leakage_to_outside_value": 5,
2443
+ "ducts_supply_insulation_r": 0,
2444
+ "ducts_supply_surface_area": 30,
2445
+ "ducts_return_surface_area": 10
2446
+ },
2447
+ "sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml": {
2448
+ "parent_hpxml": "sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml",
2449
+ "cooling_system_is_ducted": false
2450
+ },
2451
+ "sample_files/base-hvac-mini-split-heat-pump-ducted.xml": {
2452
+ "parent_hpxml": "sample_files/base.xml",
2453
+ "heating_system_type": "none",
2454
+ "heating_system_heating_efficiency": 0,
2455
+ "heating_system_fraction_heat_load_served": 0,
2456
+ "cooling_system_type": "none",
2457
+ "cooling_system_cooling_efficiency": 0,
2458
+ "cooling_system_fraction_cool_load_served": 0,
2459
+ "heat_pump_type": "mini-split",
2460
+ "heat_pump_heating_efficiency": 10,
2461
+ "heat_pump_cooling_efficiency": 19,
2462
+ "heat_pump_cooling_sensible_heat_fraction": 0.73,
2463
+ "heat_pump_heating_capacity": 36000,
2464
+ "heat_pump_heating_capacity_retention_fraction": 0.6,
2465
+ "heat_pump_heating_capacity_retention_temp": 17.0,
2466
+ "heat_pump_cooling_capacity": 36000,
2467
+ "heat_pump_fraction_heat_load_served": 1,
2468
+ "heat_pump_fraction_cool_load_served": 1,
2469
+ "heat_pump_backup_type": "integrated",
2470
+ "heat_pump_backup_heating_efficiency": 1,
2471
+ "heat_pump_backup_heating_capacity": 36000,
2472
+ "heat_pump_is_ducted": true,
2473
+ "ducts_supply_leakage_to_outside_value": 15,
2474
+ "ducts_return_leakage_to_outside_value": 5,
2475
+ "ducts_supply_insulation_r": 0,
2476
+ "ducts_supply_surface_area": 30,
2477
+ "ducts_return_surface_area": 10
2478
+ },
2479
+ "sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml": {
2480
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml",
2481
+ "heat_pump_heating_capacity": 0,
2482
+ "heat_pump_fraction_heat_load_served": 0,
2483
+ "heat_pump_backup_type": "none",
2484
+ "heat_pump_backup_heating_efficiency": 0
2485
+ },
2486
+ "sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml": {
2487
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml",
2488
+ "heat_pump_cooling_capacity": 0,
2489
+ "heat_pump_fraction_cool_load_served": 0
2490
+ },
2491
+ "sample_files/base-hvac-mini-split-heat-pump-ductless.xml": {
2492
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml",
2493
+ "heat_pump_backup_type": "none",
2494
+ "heat_pump_backup_heating_efficiency": 0,
2495
+ "heat_pump_is_ducted": false
2496
+ },
2497
+ "sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml": {
2498
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless.xml"
2499
+ },
2500
+ "sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml": {
2501
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless.xml",
2502
+ "heat_pump_heating_capacity": 18000,
2503
+ "heat_pump_heating_capacity_retention_fraction": 0.6,
2504
+ "heat_pump_heating_capacity_retention_temp": 17.0,
2505
+ "heat_pump_cooling_capacity": 18000,
2506
+ "heat_pump_backup_type": "separate",
2507
+ "heat_pump_backup_heating_efficiency": 1,
2508
+ "heat_pump_backup_heating_capacity": 36000,
2509
+ "heating_system_2_type": "Stove",
2510
+ "heating_system_2_fuel": "fuel oil",
2511
+ "heating_system_2_heating_efficiency": 0.6,
2512
+ "heating_system_2_heating_capacity": 60000,
2513
+ "heating_system_2_fraction_heat_load_served": 0.25
2514
+ },
2515
+ "sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml": {
2516
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml",
2517
+ "heating_system_2_type": "ElectricResistance",
2518
+ "heating_system_2_fuel": "electricity",
2519
+ "heating_system_2_heating_efficiency": 1
2520
+ },
2521
+ "sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml": {
2522
+ "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml",
2523
+ "heating_system_2_type": "Furnace",
2524
+ "heating_system_2_fuel": "natural gas",
2525
+ "heating_system_2_heating_efficiency": 0.8
2526
+ },
2527
+ "sample_files/base-hvac-multiple.xml": {
2528
+ "parent_hpxml": "sample_files/base.xml"
2529
+ },
2530
+ "sample_files/base-hvac-none.xml": {
2531
+ "parent_hpxml": "sample_files/base-location-honolulu-hi.xml",
2532
+ "heating_system_type": "none",
2533
+ "heating_system_heating_efficiency": 0,
2534
+ "heating_system_fraction_heat_load_served": 0,
2535
+ "cooling_system_type": "none",
2536
+ "cooling_system_cooling_efficiency": 0,
2537
+ "cooling_system_fraction_cool_load_served": 0
2538
+ },
2539
+ "sample_files/base-hvac-portable-heater-gas-only.xml": {
2540
+ "parent_hpxml": "sample_files/base.xml",
2541
+ "heating_system_type": "PortableHeater",
2542
+ "heating_system_heating_efficiency": 1,
2543
+ "cooling_system_type": "none",
2544
+ "cooling_system_cooling_efficiency": 0,
2545
+ "cooling_system_fraction_cool_load_served": 0
2546
+ },
2547
+ "sample_files/base-hvac-ptac.xml": {
2548
+ "parent_hpxml": "sample_files/base.xml",
2549
+ "heating_system_type": "none",
2550
+ "heating_system_heating_efficiency": 0,
2551
+ "heating_system_fraction_heat_load_served": 0,
2552
+ "cooling_system_type": "packaged terminal air conditioner",
2553
+ "cooling_system_cooling_efficiency_type": "EER",
2554
+ "cooling_system_cooling_efficiency": 10.7,
2555
+ "cooling_system_cooling_sensible_heat_fraction": 0.65
2556
+ },
2557
+ "sample_files/base-hvac-ptac-with-heating-electricity.xml": {
2558
+ "parent_hpxml": "sample_files/base-hvac-ptac.xml",
2559
+ "cooling_system_integrated_heating_system_fuel": "electricity",
2560
+ "cooling_system_integrated_heating_system_efficiency_percent": 1,
2561
+ "cooling_system_integrated_heating_system_capacity": 36000,
2562
+ "cooling_system_integrated_heating_system_fraction_heat_load_served": 1
2563
+ },
2564
+ "sample_files/base-hvac-ptac-with-heating-natural-gas.xml": {
2565
+ "parent_hpxml": "sample_files/base-hvac-ptac.xml",
2566
+ "cooling_system_integrated_heating_system_fuel": "natural gas",
2567
+ "cooling_system_integrated_heating_system_efficiency_percent": 0.8,
2568
+ "cooling_system_integrated_heating_system_capacity": 36000,
2569
+ "cooling_system_integrated_heating_system_fraction_heat_load_served": 1
2570
+ },
2571
+ "sample_files/base-hvac-pthp.xml": {
2572
+ "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml",
2573
+ "heat_pump_type": "packaged terminal heat pump",
2574
+ "heat_pump_cooling_efficiency": 11.4,
2575
+ "heat_pump_cooling_sensible_heat_fraction": 0.65,
2576
+ "heat_pump_heating_capacity_retention_fraction": 0.6,
2577
+ "heat_pump_heating_capacity_retention_temp": 17.0
2578
+ },
2579
+ "sample_files/base-hvac-pthp-heating-capacity-17f.xml": {
2580
+ "parent_hpxml": "sample_files/base-hvac-pthp.xml"
2581
+ },
2582
+ "sample_files/base-hvac-room-ac-only.xml": {
2583
+ "parent_hpxml": "sample_files/base.xml",
2584
+ "heating_system_type": "none",
2585
+ "heating_system_heating_efficiency": 0,
2586
+ "heating_system_fraction_heat_load_served": 0,
2587
+ "cooling_system_type": "room air conditioner",
2588
+ "cooling_system_cooling_efficiency_type": "EER",
2589
+ "cooling_system_cooling_efficiency": 8.5,
2590
+ "cooling_system_cooling_sensible_heat_fraction": 0.65
2591
+ },
2592
+ "sample_files/base-hvac-room-ac-only-33percent.xml": {
2593
+ "parent_hpxml": "sample_files/base-hvac-room-ac-only.xml",
2594
+ "cooling_system_cooling_capacity": 8000,
2595
+ "cooling_system_fraction_cool_load_served": 0.33
2596
+ },
2597
+ "sample_files/base-hvac-room-ac-only-ceer.xml": {
2598
+ "parent_hpxml": "sample_files/base-hvac-room-ac-only.xml",
2599
+ "cooling_system_cooling_efficiency_type": "CEER",
2600
+ "cooling_system_cooling_efficiency": 8.4
2601
+ },
2602
+ "sample_files/base-hvac-room-ac-with-heating.xml": {
2603
+ "parent_hpxml": "sample_files/base-hvac-room-ac-only.xml",
2604
+ "cooling_system_integrated_heating_system_fuel": "electricity",
2605
+ "cooling_system_integrated_heating_system_efficiency_percent": 1,
2606
+ "cooling_system_integrated_heating_system_capacity": 36000,
2607
+ "cooling_system_integrated_heating_system_fraction_heat_load_served": 1
2608
+ },
2609
+ "sample_files/base-hvac-room-ac-with-reverse-cycle.xml": {
2610
+ "parent_hpxml": "sample_files/base-hvac-pthp.xml",
2611
+ "heat_pump_type": "room air conditioner with reverse cycle",
2612
+ "heat_pump_heating_capacity_retention_fraction": 0.6,
2613
+ "heat_pump_heating_capacity_retention_temp": 17.0
2614
+ },
2615
+ "sample_files/base-hvac-room-ac-only-detailed-setpoints.xml": {
2616
+ "parent_hpxml": "sample_files/base-hvac-room-ac-only.xml",
2617
+ "hvac_control_cooling_weekday_setpoint": null,
2618
+ "hvac_control_cooling_weekend_setpoint": null,
2619
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-cooling-only.csv"
2620
+ },
2621
+ "sample_files/base-hvac-seasons.xml": {
2622
+ "parent_hpxml": "sample_files/base.xml",
2623
+ "hvac_control_heating_season_period": "Nov 1 - May 1",
2624
+ "hvac_control_cooling_season_period": "Jun 1 - Oct 1"
2625
+ },
2626
+ "sample_files/base-hvac-setpoints.xml": {
2627
+ "parent_hpxml": "sample_files/base.xml",
2628
+ "hvac_control_heating_weekday_setpoint": 60,
2629
+ "hvac_control_heating_weekend_setpoint": 60,
2630
+ "hvac_control_cooling_weekday_setpoint": 80,
2631
+ "hvac_control_cooling_weekend_setpoint": 80
2632
+ },
2633
+ "sample_files/base-hvac-setpoints-daily-schedules.xml": {
2634
+ "parent_hpxml": "sample_files/base-hvac-setpoints-daily-setbacks.xml",
2635
+ "hvac_control_heating_weekday_setpoint": "64, 64, 64, 64, 64, 64, 64, 70, 70, 66, 66, 66, 66, 66, 66, 66, 66, 68, 68, 68, 68, 68, 64, 64",
2636
+ "hvac_control_heating_weekend_setpoint": "68, 68, 68, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70, 70",
2637
+ "hvac_control_cooling_weekday_setpoint": "80, 80, 80, 80, 80, 80, 80, 75, 75, 80, 80, 80, 80, 80, 80, 80, 80, 78, 78, 78, 78, 78, 80, 80",
2638
+ "hvac_control_cooling_weekend_setpoint": "78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78, 78"
2639
+ },
2640
+ "sample_files/base-hvac-setpoints-daily-setbacks.xml": {
2641
+ "parent_hpxml": "sample_files/base.xml"
2642
+ },
2643
+ "sample_files/base-hvac-stove-oil-only.xml": {
2644
+ "parent_hpxml": "sample_files/base.xml",
2645
+ "heating_system_type": "Stove",
2646
+ "heating_system_fuel": "fuel oil",
2647
+ "heating_system_heating_efficiency": 0.8,
2648
+ "cooling_system_type": "none",
2649
+ "cooling_system_cooling_efficiency": 0,
2650
+ "cooling_system_fraction_cool_load_served": 0
2651
+ },
2652
+ "sample_files/base-hvac-stove-wood-pellets-only.xml": {
2653
+ "parent_hpxml": "sample_files/base-hvac-stove-oil-only.xml",
2654
+ "heating_system_fuel": "wood pellets"
2655
+ },
2656
+ "sample_files/base-hvac-undersized.xml": {
2657
+ "parent_hpxml": "sample_files/base.xml",
2658
+ "heating_system_heating_capacity": 3600,
2659
+ "cooling_system_cooling_capacity": 2400,
2660
+ "ducts_supply_leakage_to_outside_value": 7.5,
2661
+ "ducts_return_leakage_to_outside_value": 2.5
2662
+ },
2663
+ "sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml": {
2664
+ "parent_hpxml": "sample_files/base-hvac-undersized.xml"
2665
+ },
2666
+ "sample_files/base-hvac-wall-furnace-elec-only.xml": {
2667
+ "parent_hpxml": "sample_files/base.xml",
2668
+ "heating_system_type": "WallFurnace",
2669
+ "heating_system_fuel": "electricity",
2670
+ "heating_system_heating_efficiency": 0.98,
2671
+ "cooling_system_type": "none",
2672
+ "cooling_system_cooling_efficiency": 0,
2673
+ "cooling_system_fraction_cool_load_served": 0
2674
+ },
2675
+ "sample_files/base-lighting-ceiling-fans.xml": {
2676
+ "parent_hpxml": "sample_files/base.xml",
2677
+ "ceiling_fan_present": true,
2678
+ "ceiling_fan_efficiency": 100,
2679
+ "ceiling_fan_quantity": 4,
2680
+ "ceiling_fan_cooling_setpoint_temp_offset": 0.5
2681
+ },
2682
+ "sample_files/base-lighting-holiday.xml": {
2683
+ "parent_hpxml": "sample_files/base.xml",
2684
+ "holiday_lighting_present": true,
2685
+ "holiday_lighting_daily_kwh": 1.1,
2686
+ "holiday_lighting_period": "Nov 24 - Jan 6"
2687
+ },
2688
+ "sample_files/base-lighting-kwh-per-year.xml": {
2689
+ "parent_hpxml": "sample_files/base.xml"
2690
+ },
2691
+ "sample_files/base-lighting-mixed.xml": {
2692
+ "parent_hpxml": "sample_files/base.xml"
2693
+ },
2694
+ "sample_files/base-lighting-none.xml": {
2695
+ "parent_hpxml": "sample_files/base.xml",
2696
+ "lighting_present": false
2697
+ },
2698
+ "sample_files/base-lighting-none-ceiling-fans.xml": {
2699
+ "parent_hpxml": "sample_files/base-lighting-ceiling-fans.xml",
2700
+ "lighting_present": false
2701
+ },
2702
+ "sample_files/base-location-AMY-2012.xml": {
2703
+ "parent_hpxml": "sample_files/base.xml",
2704
+ "weather_station_epw_filepath": "US_CO_Boulder_AMY_2012.epw"
2705
+ },
2706
+ "sample_files/base-location-baltimore-md.xml": {
2707
+ "parent_hpxml": "sample_files/base-foundation-unvented-crawlspace.xml",
2708
+ "site_iecc_zone": "4A",
2709
+ "site_state_code": "MD",
2710
+ "weather_station_epw_filepath": "USA_MD_Baltimore-Washington.Intl.AP.724060_TMY3.epw",
2711
+ "heating_system_heating_capacity": 24000
2712
+ },
2713
+ "sample_files/base-location-capetown-zaf.xml": {
2714
+ "parent_hpxml": "sample_files/base-foundation-vented-crawlspace.xml",
2715
+ "site_iecc_zone": null,
2716
+ "site_state_code": null,
2717
+ "weather_station_epw_filepath": "ZAF_Cape.Town.688160_IWEC.epw",
2718
+ "heating_system_heating_capacity": 24000
2719
+ },
2720
+ "sample_files/base-location-dallas-tx.xml": {
2721
+ "parent_hpxml": "sample_files/base-foundation-slab.xml",
2722
+ "site_iecc_zone": "3A",
2723
+ "site_state_code": "TX",
2724
+ "weather_station_epw_filepath": "USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw",
2725
+ "heating_system_heating_capacity": 24000
2726
+ },
2727
+ "sample_files/base-location-duluth-mn.xml": {
2728
+ "parent_hpxml": "sample_files/base-foundation-unconditioned-basement.xml",
2729
+ "site_iecc_zone": 7,
2730
+ "site_state_code": "MN",
2731
+ "weather_station_epw_filepath": "USA_MN_Duluth.Intl.AP.727450_TMY3.epw"
2732
+ },
2733
+ "sample_files/base-location-helena-mt.xml": {
2734
+ "parent_hpxml": "sample_files/base.xml",
2735
+ "site_iecc_zone": "6B",
2736
+ "site_state_code": "MT",
2737
+ "weather_station_epw_filepath": "USA_MT_Helena.Rgnl.AP.727720_TMY3.epw",
2738
+ "heating_system_heating_capacity": 48000
2739
+ },
2740
+ "sample_files/base-location-honolulu-hi.xml": {
2741
+ "parent_hpxml": "sample_files/base-foundation-slab.xml",
2742
+ "site_iecc_zone": "1A",
2743
+ "site_state_code": "HI",
2744
+ "weather_station_epw_filepath": "USA_HI_Honolulu.Intl.AP.911820_TMY3.epw",
2745
+ "heating_system_heating_capacity": 12000
2746
+ },
2747
+ "sample_files/base-location-miami-fl.xml": {
2748
+ "parent_hpxml": "sample_files/base-foundation-slab.xml",
2749
+ "site_iecc_zone": "1A",
2750
+ "site_state_code": "FL",
2751
+ "weather_station_epw_filepath": "USA_FL_Miami.Intl.AP.722020_TMY3.epw",
2752
+ "heating_system_heating_capacity": 12000
2753
+ },
2754
+ "sample_files/base-location-phoenix-az.xml": {
2755
+ "parent_hpxml": "sample_files/base-foundation-slab.xml",
2756
+ "site_iecc_zone": "2B",
2757
+ "site_state_code": "AZ",
2758
+ "weather_station_epw_filepath": "USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw",
2759
+ "heating_system_heating_capacity": 24000
2760
+ },
2761
+ "sample_files/base-location-portland-or.xml": {
2762
+ "parent_hpxml": "sample_files/base-foundation-vented-crawlspace.xml",
2763
+ "site_iecc_zone": "4C",
2764
+ "site_state_code": "OR",
2765
+ "weather_station_epw_filepath": "USA_OR_Portland.Intl.AP.726980_TMY3.epw",
2766
+ "heating_system_heating_capacity": 24000
2767
+ },
2768
+ "sample_files/base-mechvent-balanced.xml": {
2769
+ "parent_hpxml": "sample_files/base.xml",
2770
+ "mech_vent_fan_type": "balanced",
2771
+ "mech_vent_flow_rate": 110,
2772
+ "mech_vent_hours_in_operation": 24,
2773
+ "mech_vent_total_recovery_efficiency": 0.48,
2774
+ "mech_vent_sensible_recovery_efficiency": 0.72,
2775
+ "mech_vent_fan_power": 60,
2776
+ "mech_vent_num_units_served": 1
2777
+ },
2778
+ "sample_files/base-mechvent-bath-kitchen-fans.xml": {
2779
+ "parent_hpxml": "sample_files/base.xml",
2780
+ "kitchen_fans_quantity": 1,
2781
+ "kitchen_fans_flow_rate": 100,
2782
+ "kitchen_fans_hours_in_operation": 1.5,
2783
+ "kitchen_fans_power": 30,
2784
+ "kitchen_fans_start_hour": 18,
2785
+ "bathroom_fans_quantity": 2,
2786
+ "bathroom_fans_flow_rate": 50,
2787
+ "bathroom_fans_hours_in_operation": 1.5,
2788
+ "bathroom_fans_power": 15,
2789
+ "bathroom_fans_start_hour": 7
2790
+ },
2791
+ "sample_files/base-mechvent-cfis.xml": {
2792
+ "parent_hpxml": "sample_files/base.xml",
2793
+ "mech_vent_fan_type": "central fan integrated supply",
2794
+ "mech_vent_flow_rate": 330,
2795
+ "mech_vent_hours_in_operation": 8,
2796
+ "mech_vent_total_recovery_efficiency": 0.48,
2797
+ "mech_vent_sensible_recovery_efficiency": 0.72,
2798
+ "mech_vent_fan_power": 300,
2799
+ "mech_vent_num_units_served": 1
2800
+ },
2801
+ "sample_files/base-mechvent-cfis-airflow-fraction-zero.xml": {
2802
+ "parent_hpxml": "sample_files/base-mechvent-cfis.xml"
2803
+ },
2804
+ "sample_files/base-mechvent-cfis-dse.xml": {
2805
+ "parent_hpxml": "sample_files/base-hvac-dse.xml",
2806
+ "mech_vent_fan_type": "central fan integrated supply",
2807
+ "mech_vent_flow_rate": 330,
2808
+ "mech_vent_hours_in_operation": 8,
2809
+ "mech_vent_total_recovery_efficiency": 0.48,
2810
+ "mech_vent_sensible_recovery_efficiency": 0.72,
2811
+ "mech_vent_fan_power": 300,
2812
+ "mech_vent_num_units_served": 1
2813
+ },
2814
+ "sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml": {
2815
+ "parent_hpxml": "sample_files/base-hvac-evap-cooler-only-ducted.xml",
2816
+ "mech_vent_fan_type": "central fan integrated supply",
2817
+ "mech_vent_flow_rate": 330,
2818
+ "mech_vent_hours_in_operation": 8,
2819
+ "mech_vent_total_recovery_efficiency": 0.48,
2820
+ "mech_vent_sensible_recovery_efficiency": 0.72,
2821
+ "mech_vent_fan_power": 300,
2822
+ "mech_vent_num_units_served": 1
2823
+ },
2824
+ "sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml": {
2825
+ "parent_hpxml": "sample_files/base-mechvent-cfis.xml"
2826
+ },
2827
+ "sample_files/base-mechvent-cfis-supplemental-fan-supply.xml": {
2828
+ "parent_hpxml": "sample_files/base-mechvent-cfis.xml"
2829
+ },
2830
+ "sample_files/base-mechvent-erv.xml": {
2831
+ "parent_hpxml": "sample_files/base.xml",
2832
+ "mech_vent_fan_type": "energy recovery ventilator",
2833
+ "mech_vent_flow_rate": 110,
2834
+ "mech_vent_hours_in_operation": 24,
2835
+ "mech_vent_total_recovery_efficiency": 0.48,
2836
+ "mech_vent_sensible_recovery_efficiency": 0.72,
2837
+ "mech_vent_fan_power": 60,
2838
+ "mech_vent_num_units_served": 1
2839
+ },
2840
+ "sample_files/base-mechvent-erv-atre-asre.xml": {
2841
+ "parent_hpxml": "sample_files/base-mechvent-erv.xml",
2842
+ "mech_vent_recovery_efficiency_type": "Adjusted",
2843
+ "mech_vent_total_recovery_efficiency": 0.526,
2844
+ "mech_vent_sensible_recovery_efficiency": 0.79
2845
+ },
2846
+ "sample_files/base-mechvent-exhaust.xml": {
2847
+ "parent_hpxml": "sample_files/base.xml",
2848
+ "mech_vent_fan_type": "exhaust only",
2849
+ "mech_vent_flow_rate": 110,
2850
+ "mech_vent_hours_in_operation": 24,
2851
+ "mech_vent_total_recovery_efficiency": 0.48,
2852
+ "mech_vent_sensible_recovery_efficiency": 0.72,
2853
+ "mech_vent_fan_power": 30,
2854
+ "mech_vent_num_units_served": 1
2855
+ },
2856
+ "sample_files/base-mechvent-exhaust-rated-flow-rate.xml": {
2857
+ "parent_hpxml": "sample_files/base-mechvent-exhaust.xml"
2858
+ },
2859
+ "sample_files/base-mechvent-hrv.xml": {
2860
+ "parent_hpxml": "sample_files/base.xml",
2861
+ "mech_vent_fan_type": "heat recovery ventilator",
2862
+ "mech_vent_flow_rate": 110,
2863
+ "mech_vent_hours_in_operation": 24,
2864
+ "mech_vent_total_recovery_efficiency": 0.48,
2865
+ "mech_vent_sensible_recovery_efficiency": 0.72,
2866
+ "mech_vent_fan_power": 60,
2867
+ "mech_vent_num_units_served": 1
2868
+ },
2869
+ "sample_files/base-mechvent-hrv-asre.xml": {
2870
+ "parent_hpxml": "sample_files/base-mechvent-hrv.xml",
2871
+ "mech_vent_recovery_efficiency_type": "Adjusted",
2872
+ "mech_vent_sensible_recovery_efficiency": 0.79
2873
+ },
2874
+ "sample_files/base-mechvent-multiple.xml": {
2875
+ "parent_hpxml": "sample_files/base-mechvent-bath-kitchen-fans.xml"
2876
+ },
2877
+ "sample_files/base-mechvent-supply.xml": {
2878
+ "parent_hpxml": "sample_files/base.xml",
2879
+ "mech_vent_fan_type": "supply only",
2880
+ "mech_vent_flow_rate": 110,
2881
+ "mech_vent_hours_in_operation": 24,
2882
+ "mech_vent_total_recovery_efficiency": 0.48,
2883
+ "mech_vent_sensible_recovery_efficiency": 0.72,
2884
+ "mech_vent_fan_power": 30,
2885
+ "mech_vent_num_units_served": 1
2886
+ },
2887
+ "sample_files/base-mechvent-whole-house-fan.xml": {
2888
+ "parent_hpxml": "sample_files/base.xml",
2889
+ "whole_house_fan_present": true,
2890
+ "whole_house_fan_flow_rate": 4500,
2891
+ "whole_house_fan_power": 300
2892
+ },
2893
+ "sample_files/base-misc-additional-properties.xml": {
2894
+ "parent_hpxml": "sample_files/base.xml",
2895
+ "additional_properties": "LowIncome=false|Remodeled|Description=2-story home in Denver|comma=,|special=<|special2=>|special3=/|special4=\\"
2896
+ },
2897
+ "sample_files/base-misc-bills.xml": {
2898
+ "parent_hpxml": "sample_files/base.xml",
2899
+ "utility_bill_electricity_fixed_charges": 12,
2900
+ "utility_bill_natural_gas_fixed_charges": 12,
2901
+ "utility_bill_electricity_marginal_rates": 0.12,
2902
+ "utility_bill_natural_gas_marginal_rates": 1.1
2903
+ },
2904
+ "sample_files/base-misc-bills-none.xml": {
2905
+ "parent_hpxml": "sample_files/base.xml",
2906
+ "utility_bill_scenario_names": null
2907
+ },
2908
+ "sample_files/base-misc-bills-pv.xml": {
2909
+ "parent_hpxml": "sample_files/base-pv.xml",
2910
+ "pv_system_max_power_output": 10000,
2911
+ "utility_bill_scenario_names": "Net Metering w/ Wholesale Excess Rate, Net Metering w/ Retail Excess Rate, Feed-In Tariff",
2912
+ "utility_bill_electricity_fixed_charges": "10, 10, 10",
2913
+ "utility_bill_natural_gas_fixed_charges": "11, 11, 11",
2914
+ "utility_bill_electricity_marginal_rates": "0.12, 0.12, 0.12",
2915
+ "utility_bill_natural_gas_marginal_rates": "1.1, 1.1, 1.1",
2916
+ "utility_bill_pv_compensation_types": "NetMetering, NetMetering, FeedInTariff",
2917
+ "utility_bill_pv_net_metering_annual_excess_sellback_rate_types": "User-Specified, Retail Electricity Cost, NA",
2918
+ "utility_bill_pv_net_metering_annual_excess_sellback_rates": "0.035, NA, NA",
2919
+ "utility_bill_pv_feed_in_tariff_rates": "NA, NA, 0.13",
2920
+ "utility_bill_pv_monthly_grid_connection_fee_units": "$/kW, $/kW, $",
2921
+ "utility_bill_pv_monthly_grid_connection_fees": "2.5, 2.5, 7.5"
2922
+ },
2923
+ "sample_files/base-misc-bills-pv-detailed-only.xml": {
2924
+ "parent_hpxml": "sample_files/base-pv.xml",
2925
+ "utility_bill_scenario_names": "Tiered, TOU, Tiered and TOU, Real-Time Pricing",
2926
+ "utility_bill_electricity_filepaths": "../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json, ../../ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json, ../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json, ../../ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json"
2927
+ },
2928
+ "sample_files/base-misc-bills-pv-mixed.xml": {
2929
+ "parent_hpxml": "sample_files/base-pv.xml",
2930
+ "utility_bill_scenario_names": "Simple, Detailed",
2931
+ "utility_bill_electricity_filepaths": "NA, ../../ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json"
2932
+ },
2933
+ "sample_files/base-misc-defaults.xml": {
2934
+ "parent_hpxml": "sample_files/base.xml",
2935
+ "simulation_control_timestep": null,
2936
+ "site_type": null,
2937
+ "site_iecc_zone": null,
2938
+ "site_state_code": null,
2939
+ "geometry_unit_num_bathrooms": null,
2940
+ "foundation_wall_thickness": null,
2941
+ "foundation_wall_insulation_distance_to_top": null,
2942
+ "foundation_wall_insulation_distance_to_bottom": null,
2943
+ "slab_thickness": null,
2944
+ "slab_carpet_fraction": null,
2945
+ "roof_material_type": null,
2946
+ "roof_color": "light",
2947
+ "wall_siding_type": null,
2948
+ "window_fraction_operable": null,
2949
+ "window_interior_shading_winter": null,
2950
+ "window_interior_shading_summer": null,
2951
+ "cooling_system_cooling_compressor_type": null,
2952
+ "cooling_system_cooling_sensible_heat_fraction": null,
2953
+ "hvac_control_heating_weekday_setpoint": null,
2954
+ "hvac_control_heating_weekend_setpoint": null,
2955
+ "hvac_control_cooling_weekday_setpoint": null,
2956
+ "hvac_control_cooling_weekend_setpoint": null,
2957
+ "ducts_supply_location": null,
2958
+ "ducts_supply_surface_area": null,
2959
+ "ducts_return_location": null,
2960
+ "ducts_return_surface_area": null,
2961
+ "ducts_number_of_return_registers": 2,
2962
+ "mech_vent_fan_type": "exhaust only",
2963
+ "mech_vent_total_recovery_efficiency": 0.48,
2964
+ "mech_vent_sensible_recovery_efficiency": 0.72,
2965
+ "mech_vent_num_units_served": 1,
2966
+ "kitchen_fans_quantity": null,
2967
+ "bathroom_fans_quantity": null,
2968
+ "whole_house_fan_present": true,
2969
+ "water_heater_location": null,
2970
+ "water_heater_tank_volume": null,
2971
+ "water_heater_setpoint_temperature": null,
2972
+ "hot_water_distribution_standard_piping_length": null,
2973
+ "hot_water_distribution_pipe_r": null,
2974
+ "solar_thermal_system_type": "hot water",
2975
+ "solar_thermal_collector_area": 40,
2976
+ "solar_thermal_collector_loop_type": "liquid direct",
2977
+ "solar_thermal_collector_azimuth": 180,
2978
+ "solar_thermal_collector_tilt": 20,
2979
+ "solar_thermal_collector_rated_optical_efficiency": 0.77,
2980
+ "solar_thermal_collector_rated_thermal_losses": 0.793,
2981
+ "pv_system_present": true,
2982
+ "pv_system_array_azimuth": 180,
2983
+ "pv_system_array_tilt": 20,
2984
+ "pv_system_max_power_output": 4000,
2985
+ "battery_present": true,
2986
+ "clothes_washer_location": null,
2987
+ "clothes_washer_efficiency": null,
2988
+ "clothes_washer_rated_annual_kwh": null,
2989
+ "clothes_washer_label_electric_rate": null,
2990
+ "clothes_washer_label_gas_rate": null,
2991
+ "clothes_washer_label_annual_gas_cost": null,
2992
+ "clothes_washer_label_usage": null,
2993
+ "clothes_washer_capacity": null,
2994
+ "clothes_dryer_location": null,
2995
+ "clothes_dryer_efficiency": null,
2996
+ "clothes_dryer_vented_flow_rate": null,
2997
+ "dishwasher_location": null,
2998
+ "dishwasher_efficiency": null,
2999
+ "dishwasher_label_electric_rate": null,
3000
+ "dishwasher_label_gas_rate": null,
3001
+ "dishwasher_label_annual_gas_cost": null,
3002
+ "dishwasher_label_usage": null,
3003
+ "dishwasher_place_setting_capacity": null,
3004
+ "refrigerator_location": null,
3005
+ "refrigerator_rated_annual_kwh": null,
3006
+ "cooking_range_oven_location": null,
3007
+ "cooking_range_oven_is_induction": null,
3008
+ "cooking_range_oven_is_convection": null,
3009
+ "ceiling_fan_present": true,
3010
+ "misc_plug_loads_television_annual_kwh": null,
3011
+ "misc_plug_loads_other_annual_kwh": null,
3012
+ "misc_plug_loads_other_frac_sensible": null,
3013
+ "misc_plug_loads_other_frac_latent": null
3014
+ },
3015
+ "sample_files/base-misc-emissions.xml": {
3016
+ "parent_hpxml": "sample_files/base-pv-battery.xml",
3017
+ "emissions_scenario_names": "Cambium Hourly MidCase LRMER RMPA, Cambium Hourly LowRECosts LRMER RMPA, Cambium Annual MidCase AER National, eGRID RMPA, eGRID RMPA",
3018
+ "emissions_types": "CO2e, CO2e, CO2e, SO2, NOx",
3019
+ "emissions_electricity_units": "kg/MWh, kg/MWh, kg/MWh, lb/MWh, lb/MWh",
3020
+ "emissions_electricity_values_or_filepaths": "../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_MidCase.csv, ../../HPXMLtoOpenStudio/resources/data/cambium/LRMER_LowRECosts.csv, 392.6, 0.384, 0.67",
3021
+ "emissions_electricity_number_of_header_rows": "1, 1, , , ",
3022
+ "emissions_electricity_column_numbers": "17, 17, , , "
3023
+ },
3024
+ "sample_files/base-misc-generators.xml": {
3025
+ "parent_hpxml": "sample_files/base.xml"
3026
+ },
3027
+ "sample_files/base-misc-generators-battery.xml": {
3028
+ "parent_hpxml": "sample_files/base-misc-generators.xml",
3029
+ "battery_present": true,
3030
+ "battery_location": "outside",
3031
+ "battery_power": 6000,
3032
+ "battery_capacity": 20,
3033
+ "battery_usable_capacity": 18
3034
+ },
3035
+ "sample_files/base-misc-generators-battery-scheduled.xml": {
3036
+ "parent_hpxml": "sample_files/base-misc-generators-battery.xml",
3037
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/battery.csv"
3038
+ },
3039
+ "sample_files/base-misc-ground-conductivity.xml": {
3040
+ "parent_hpxml": "sample_files/base.xml",
3041
+ "site_ground_conductivity": 0.8
3042
+ },
3043
+ "sample_files/base-misc-loads-large-uncommon.xml": {
3044
+ "parent_hpxml": "sample_files/base-schedules-simple.xml",
3045
+ "extra_refrigerator_present": true,
3046
+ "extra_refrigerator_rated_annual_kwh": 700,
3047
+ "freezer_present": true,
3048
+ "freezer_location": "living space",
3049
+ "freezer_rated_annual_kwh": 300,
3050
+ "misc_plug_loads_well_pump_present": true,
3051
+ "misc_plug_loads_well_pump_annual_kwh": 475,
3052
+ "misc_plug_loads_vehicle_present": true,
3053
+ "misc_plug_loads_vehicle_annual_kwh": 1500,
3054
+ "misc_fuel_loads_grill_present": true,
3055
+ "misc_fuel_loads_grill_fuel_type": "propane",
3056
+ "misc_fuel_loads_grill_annual_therm": 25,
3057
+ "misc_fuel_loads_lighting_present": true,
3058
+ "misc_fuel_loads_lighting_annual_therm": 28,
3059
+ "misc_fuel_loads_fireplace_present": true,
3060
+ "misc_fuel_loads_fireplace_fuel_type": "wood",
3061
+ "misc_fuel_loads_fireplace_annual_therm": 55,
3062
+ "misc_fuel_loads_fireplace_frac_sensible": 0.5,
3063
+ "misc_fuel_loads_fireplace_frac_latent": 0.1,
3064
+ "pool_present": true,
3065
+ "pool_pump_annual_kwh": 2700,
3066
+ "pool_heater_type": "gas fired",
3067
+ "pool_heater_annual_therm": 500,
3068
+ "hot_tub_present": true,
3069
+ "hot_tub_pump_annual_kwh": 1000,
3070
+ "hot_tub_heater_type": "electric resistance",
3071
+ "hot_tub_heater_annual_kwh": 1300
3072
+ },
3073
+ "sample_files/base-misc-loads-large-uncommon2.xml": {
3074
+ "parent_hpxml": "sample_files/base-misc-loads-large-uncommon.xml",
3075
+ "misc_fuel_loads_grill_fuel_type": "fuel oil",
3076
+ "misc_fuel_loads_fireplace_fuel_type": "wood pellets",
3077
+ "pool_heater_type": "none",
3078
+ "hot_tub_heater_type": "heat pump",
3079
+ "hot_tub_heater_annual_kwh": 260
3080
+ },
3081
+ "sample_files/base-misc-loads-none.xml": {
3082
+ "parent_hpxml": "sample_files/base.xml",
3083
+ "misc_plug_loads_television_present": false,
3084
+ "misc_plug_loads_other_annual_kwh": 0,
3085
+ "misc_plug_loads_other_frac_sensible": null,
3086
+ "misc_plug_loads_other_frac_latent": null
3087
+ },
3088
+ "sample_files/base-misc-neighbor-shading.xml": {
3089
+ "parent_hpxml": "sample_files/base.xml",
3090
+ "neighbor_front_distance": 15,
3091
+ "neighbor_back_distance": 10,
3092
+ "neighbor_front_height": 12
3093
+ },
3094
+ "sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml": {
3095
+ "parent_hpxml": "sample_files/base-bldgtype-multifamily.xml",
3096
+ "neighbor_right_distance": 15,
3097
+ "combine_like_surfaces": false
3098
+ },
3099
+ "sample_files/base-misc-shielding-of-home.xml": {
3100
+ "parent_hpxml": "sample_files/base.xml",
3101
+ "site_shielding_of_home": "well-shielded"
3102
+ },
3103
+ "sample_files/base-misc-usage-multiplier.xml": {
3104
+ "parent_hpxml": "sample_files/base.xml",
3105
+ "water_fixtures_usage_multiplier": 0.9,
3106
+ "lighting_interior_usage_multiplier": 0.9,
3107
+ "lighting_exterior_usage_multiplier": 0.9,
3108
+ "lighting_garage_usage_multiplier": 0.9,
3109
+ "clothes_washer_usage_multiplier": 0.9,
3110
+ "clothes_dryer_usage_multiplier": 0.9,
3111
+ "dishwasher_usage_multiplier": 0.9,
3112
+ "refrigerator_usage_multiplier": 0.9,
3113
+ "freezer_present": true,
3114
+ "freezer_location": "living space",
3115
+ "freezer_rated_annual_kwh": 300,
3116
+ "freezer_usage_multiplier": 0.9,
3117
+ "cooking_range_oven_usage_multiplier": 0.9,
3118
+ "misc_plug_loads_television_usage_multiplier": 0.9,
3119
+ "misc_plug_loads_other_usage_multiplier": 0.9,
3120
+ "misc_fuel_loads_grill_present": true,
3121
+ "misc_fuel_loads_grill_fuel_type": "propane",
3122
+ "misc_fuel_loads_grill_annual_therm": 25,
3123
+ "misc_fuel_loads_grill_usage_multiplier": 0.9,
3124
+ "misc_fuel_loads_lighting_present": true,
3125
+ "misc_fuel_loads_lighting_annual_therm": 28,
3126
+ "misc_fuel_loads_lighting_usage_multiplier": 0.9,
3127
+ "misc_fuel_loads_fireplace_present": true,
3128
+ "misc_fuel_loads_fireplace_fuel_type": "wood",
3129
+ "misc_fuel_loads_fireplace_annual_therm": 55,
3130
+ "misc_fuel_loads_fireplace_frac_sensible": 0.5,
3131
+ "misc_fuel_loads_fireplace_frac_latent": 0.1,
3132
+ "misc_fuel_loads_fireplace_usage_multiplier": 0.9,
3133
+ "pool_present": true,
3134
+ "pool_pump_annual_kwh": 2700,
3135
+ "pool_pump_usage_multiplier": 0.9,
3136
+ "pool_heater_type": "gas fired",
3137
+ "pool_heater_annual_therm": 500,
3138
+ "pool_heater_usage_multiplier": 0.9,
3139
+ "hot_tub_present": true,
3140
+ "hot_tub_pump_annual_kwh": 1000,
3141
+ "hot_tub_pump_usage_multiplier": 0.9,
3142
+ "hot_tub_heater_type": "electric resistance",
3143
+ "hot_tub_heater_annual_kwh": 1300,
3144
+ "hot_tub_heater_usage_multiplier": 0.9
3145
+ },
3146
+ "sample_files/base-multiple-buildings.xml": {
3147
+ "parent_hpxml": "sample_files/base.xml",
3148
+ "clothes_dryer_present": false
3149
+ },
3150
+ "sample_files/base-pv.xml": {
3151
+ "parent_hpxml": "sample_files/base.xml",
3152
+ "pv_system_present": true,
3153
+ "pv_system_module_type": "standard",
3154
+ "pv_system_location": "roof",
3155
+ "pv_system_tracking": "fixed",
3156
+ "pv_system_array_azimuth": 180,
3157
+ "pv_system_array_tilt": 20,
3158
+ "pv_system_max_power_output": 4000,
3159
+ "pv_system_inverter_efficiency": 0.96,
3160
+ "pv_system_system_losses_fraction": 0.14,
3161
+ "pv_system_2_present": true,
3162
+ "pv_system_2_module_type": "premium",
3163
+ "pv_system_2_location": "roof",
3164
+ "pv_system_2_tracking": "fixed",
3165
+ "pv_system_2_array_azimuth": 90,
3166
+ "pv_system_2_array_tilt": 20,
3167
+ "pv_system_2_max_power_output": 1500
3168
+ },
3169
+ "sample_files/base-pv-battery.xml": {
3170
+ "parent_hpxml": "sample_files/base-battery.xml",
3171
+ "pv_system_present": true,
3172
+ "pv_system_module_type": "standard",
3173
+ "pv_system_location": "roof",
3174
+ "pv_system_tracking": "fixed",
3175
+ "pv_system_array_azimuth": 180,
3176
+ "pv_system_array_tilt": 20,
3177
+ "pv_system_max_power_output": 4000,
3178
+ "pv_system_inverter_efficiency": 0.96,
3179
+ "pv_system_system_losses_fraction": 0.14,
3180
+ "pv_system_2_present": true,
3181
+ "pv_system_2_module_type": "premium",
3182
+ "pv_system_2_location": "roof",
3183
+ "pv_system_2_tracking": "fixed",
3184
+ "pv_system_2_array_azimuth": 90,
3185
+ "pv_system_2_array_tilt": 20,
3186
+ "pv_system_2_max_power_output": 1500
3187
+ },
3188
+ "sample_files/base-pv-battery-ah.xml": {
3189
+ "parent_hpxml": "sample_files/base-pv-battery.xml"
3190
+ },
3191
+ "sample_files/base-pv-battery-garage.xml": {
3192
+ "parent_hpxml": "sample_files/base-enclosure-garage.xml",
3193
+ "pv_system_present": true,
3194
+ "pv_system_module_type": "standard",
3195
+ "pv_system_location": "roof",
3196
+ "pv_system_tracking": "fixed",
3197
+ "pv_system_array_azimuth": 180,
3198
+ "pv_system_array_tilt": 20,
3199
+ "pv_system_max_power_output": 4000,
3200
+ "pv_system_inverter_efficiency": 0.96,
3201
+ "pv_system_system_losses_fraction": 0.14,
3202
+ "pv_system_2_present": true,
3203
+ "pv_system_2_module_type": "premium",
3204
+ "pv_system_2_location": "roof",
3205
+ "pv_system_2_tracking": "fixed",
3206
+ "pv_system_2_array_azimuth": 90,
3207
+ "pv_system_2_array_tilt": 20,
3208
+ "pv_system_2_max_power_output": 1500,
3209
+ "battery_present": true,
3210
+ "battery_location": "garage",
3211
+ "battery_power": 6000,
3212
+ "battery_capacity": 20,
3213
+ "battery_usable_capacity": 18
3214
+ },
3215
+ "sample_files/base-pv-battery-round-trip-efficiency.xml": {
3216
+ "parent_hpxml": "sample_files/base-pv-battery.xml",
3217
+ "battery_round_trip_efficiency": 0.8
3218
+ },
3219
+ "sample_files/base-pv-battery-scheduled.xml": {
3220
+ "parent_hpxml": "sample_files/base-pv-battery.xml",
3221
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/battery.csv"
3222
+ },
3223
+ "sample_files/base-pv-generators.xml": {
3224
+ "parent_hpxml": "sample_files/base-pv.xml"
3225
+ },
3226
+ "sample_files/base-pv-generators-battery.xml": {
3227
+ "parent_hpxml": "sample_files/base-pv-generators.xml",
3228
+ "battery_present": true,
3229
+ "battery_location": "outside",
3230
+ "battery_power": 6000,
3231
+ "battery_capacity": 20,
3232
+ "battery_usable_capacity": 18
3233
+ },
3234
+ "sample_files/base-pv-generators-battery-scheduled.xml": {
3235
+ "parent_hpxml": "sample_files/base-pv-generators-battery.xml",
3236
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/battery.csv"
3237
+ },
3238
+ "sample_files/base-residents-0.xml": {
3239
+ "parent_hpxml": "sample_files/base.xml",
3240
+ "geometry_unit_num_occupants": 0
3241
+ },
3242
+ "sample_files/base-residents-0-runperiod-1-month.xml": {
3243
+ "parent_hpxml": "sample_files/base-residents-0.xml",
3244
+ "simulation_control_run_period": "Feb 1 - Feb 28"
3245
+ },
3246
+ "sample_files/base-residents-1.xml": {
3247
+ "parent_hpxml": "sample_files/base.xml",
3248
+ "geometry_unit_num_occupants": 1,
3249
+ "misc_plug_loads_television_annual_kwh": null,
3250
+ "misc_plug_loads_other_annual_kwh": null
3251
+ },
3252
+ "sample_files/base-residents-1-misc-loads-large-uncommon.xml": {
3253
+ "parent_hpxml": "sample_files/base-misc-loads-large-uncommon.xml",
3254
+ "geometry_unit_num_occupants": 1,
3255
+ "misc_plug_loads_television_annual_kwh": null,
3256
+ "misc_plug_loads_other_annual_kwh": null,
3257
+ "misc_plug_loads_well_pump_annual_kwh": null,
3258
+ "misc_plug_loads_vehicle_annual_kwh": null,
3259
+ "misc_fuel_loads_grill_annual_therm": null,
3260
+ "misc_fuel_loads_lighting_annual_therm": null,
3261
+ "misc_fuel_loads_fireplace_annual_therm": null,
3262
+ "pool_pump_annual_kwh": null,
3263
+ "pool_heater_annual_therm": null,
3264
+ "hot_tub_pump_annual_kwh": null,
3265
+ "hot_tub_heater_annual_kwh": null
3266
+ },
3267
+ "sample_files/base-residents-1-misc-loads-large-uncommon2.xml": {
3268
+ "parent_hpxml": "sample_files/base-misc-loads-large-uncommon2.xml",
3269
+ "geometry_unit_num_occupants": 1,
3270
+ "misc_plug_loads_television_annual_kwh": null,
3271
+ "misc_plug_loads_other_annual_kwh": null,
3272
+ "misc_plug_loads_well_pump_annual_kwh": null,
3273
+ "misc_plug_loads_vehicle_annual_kwh": null,
3274
+ "misc_fuel_loads_grill_annual_therm": null,
3275
+ "misc_fuel_loads_lighting_annual_therm": null,
3276
+ "misc_fuel_loads_fireplace_annual_therm": null,
3277
+ "pool_pump_annual_kwh": null,
3278
+ "pool_heater_annual_therm": null,
3279
+ "hot_tub_pump_annual_kwh": null,
3280
+ "hot_tub_heater_annual_kwh": null
3281
+ },
3282
+ "sample_files/base-residents-5.xml": {
3283
+ "parent_hpxml": "sample_files/base-misc-defaults.xml",
3284
+ "geometry_unit_num_occupants": 5
3285
+ },
3286
+ "sample_files/base-schedules-simple.xml": {
3287
+ "parent_hpxml": "sample_files/base.xml"
3288
+ },
3289
+ "sample_files/base-schedules-simple-vacancy.xml": {
3290
+ "parent_hpxml": "sample_files/base.xml",
3291
+ "schedules_vacancy_period": "Dec 1 - Jan 31"
3292
+ },
3293
+ "sample_files/base-schedules-simple-vacancy-year-round.xml": {
3294
+ "parent_hpxml": "sample_files/base.xml",
3295
+ "schedules_vacancy_period": "Jan 1 - Dec 31"
3296
+ },
3297
+ "sample_files/base-schedules-simple-power-outage.xml": {
3298
+ "parent_hpxml": "sample_files/base.xml",
3299
+ "schedules_power_outage_period": "Jul 1 5 - Jul 31 14"
3300
+ },
3301
+ "sample_files/base-schedules-simple-power-outage-natvent-available.xml": {
3302
+ "parent_hpxml": "sample_files/base.xml",
3303
+ "schedules_power_outage_period": "Jul 1 5 - Jul 31 14",
3304
+ "schedules_power_outage_window_natvent_availability": "always available"
3305
+ },
3306
+ "sample_files/base-schedules-simple-power-outage-natvent-unavailable.xml": {
3307
+ "parent_hpxml": "sample_files/base.xml",
3308
+ "schedules_power_outage_period": "Jul 1 5 - Jul 31 14",
3309
+ "schedules_power_outage_window_natvent_availability": "always unavailable"
3310
+ },
3311
+ "sample_files/base-schedules-detailed-all-10-mins.xml": {
3312
+ "parent_hpxml": "sample_files/base-simcontrol-timestep-10-mins.xml",
3313
+ "hvac_control_heating_weekday_setpoint": null,
3314
+ "hvac_control_heating_weekend_setpoint": null,
3315
+ "hvac_control_cooling_weekday_setpoint": null,
3316
+ "hvac_control_cooling_weekend_setpoint": null,
3317
+ "water_heater_setpoint_temperature": null,
3318
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-10-mins.csv, ../../HPXMLtoOpenStudio/resources/schedule_files/water-heater-setpoints-10-mins.csv, ../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv"
3319
+ },
3320
+ "sample_files/base-schedules-detailed-occupancy-stochastic.xml": {
3321
+ "parent_hpxml": "sample_files/base.xml",
3322
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv"
3323
+ },
3324
+ "sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml": {
3325
+ "parent_hpxml": "sample_files/base-schedules-detailed-occupancy-stochastic.xml",
3326
+ "schedules_vacancy_period": "Dec 1 - Jan 31"
3327
+ },
3328
+ "sample_files/base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml": {
3329
+ "parent_hpxml": "sample_files/base-schedules-detailed-occupancy-stochastic.xml",
3330
+ "schedules_vacancy_period": "Jan 1 - Dec 31"
3331
+ },
3332
+ "sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml": {
3333
+ "parent_hpxml": "sample_files/base-schedules-detailed-occupancy-stochastic.xml",
3334
+ "schedules_power_outage_period": "Dec 1 5 - Jan 31 14"
3335
+ },
3336
+ "sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml": {
3337
+ "parent_hpxml": "sample_files/base.xml",
3338
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv"
3339
+ },
3340
+ "sample_files/base-schedules-detailed-setpoints.xml": {
3341
+ "parent_hpxml": "sample_files/base.xml",
3342
+ "hvac_control_heating_weekday_setpoint": null,
3343
+ "hvac_control_heating_weekend_setpoint": null,
3344
+ "hvac_control_cooling_weekday_setpoint": null,
3345
+ "hvac_control_cooling_weekend_setpoint": null,
3346
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/setpoints.csv"
3347
+ },
3348
+ "sample_files/base-schedules-detailed-setpoints-daily-schedules.xml": {
3349
+ "parent_hpxml": "sample_files/base.xml",
3350
+ "hvac_control_heating_weekday_setpoint": null,
3351
+ "hvac_control_heating_weekend_setpoint": null,
3352
+ "hvac_control_cooling_weekday_setpoint": null,
3353
+ "hvac_control_cooling_weekend_setpoint": null,
3354
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-daily-schedules.csv"
3355
+ },
3356
+ "sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml": {
3357
+ "parent_hpxml": "sample_files/base.xml",
3358
+ "hvac_control_heating_weekday_setpoint": null,
3359
+ "hvac_control_heating_weekend_setpoint": null,
3360
+ "hvac_control_cooling_weekday_setpoint": null,
3361
+ "hvac_control_cooling_weekend_setpoint": null,
3362
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/setpoints-daily-setbacks.csv"
3363
+ },
3364
+ "sample_files/base-simcontrol-calendar-year-custom.xml": {
3365
+ "parent_hpxml": "sample_files/base.xml",
3366
+ "simulation_control_run_period_calendar_year": 2010
3367
+ },
3368
+ "sample_files/base-simcontrol-daylight-saving-custom.xml": {
3369
+ "parent_hpxml": "sample_files/base.xml",
3370
+ "simulation_control_daylight_saving_enabled": true,
3371
+ "simulation_control_daylight_saving_period": "Mar 10 - Nov 6"
3372
+ },
3373
+ "sample_files/base-simcontrol-daylight-saving-disabled.xml": {
3374
+ "parent_hpxml": "sample_files/base.xml",
3375
+ "simulation_control_daylight_saving_enabled": false
3376
+ },
3377
+ "sample_files/base-simcontrol-runperiod-1-month.xml": {
3378
+ "parent_hpxml": "sample_files/base.xml",
3379
+ "simulation_control_run_period": "Feb 1 - Feb 28"
3380
+ },
3381
+ "sample_files/base-simcontrol-temperature-capacitance-multiplier.xml": {
3382
+ "parent_hpxml": "sample_files/base.xml",
3383
+ "simulation_control_temperature_capacitance_multiplier": 7
3384
+ },
3385
+ "sample_files/base-simcontrol-timestep-10-mins.xml": {
3386
+ "parent_hpxml": "sample_files/base.xml",
3387
+ "simulation_control_timestep": 10
3388
+ },
3389
+ "sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml": {
3390
+ "parent_hpxml": "sample_files/base-simcontrol-timestep-10-mins.xml",
3391
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv"
3392
+ },
3393
+ "sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml": {
3394
+ "parent_hpxml": "sample_files/base-simcontrol-timestep-10-mins.xml",
3395
+ "schedules_filepaths": "../../HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv"
3396
+ },
3397
+ "sample_files/base-simcontrol-timestep-30-mins.xml": {
3398
+ "parent_hpxml": "sample_files/base.xml",
3399
+ "simulation_control_timestep": 30
3400
+ }
3401
+ }