urbanopt-cli 0.8.3 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (649) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +5 -6
  3. data/CHANGELOG.md +14 -0
  4. data/CMakeLists.txt +7 -7
  5. data/Gemfile +3 -1
  6. data/README.md +9 -0
  7. data/example_files/Gemfile +23 -16
  8. data/example_files/Gemfile.lock +177 -0
  9. data/example_files/base_workflow_res.osw +57 -14
  10. data/example_files/class_project_coincident.json +1322 -0
  11. data/example_files/class_project_diverse.json +1322 -0
  12. data/example_files/disco/config.json +42 -0
  13. data/example_files/disco/cost_database.xlsx +0 -0
  14. data/example_files/disco/technical_catalog.json +12126 -0
  15. data/example_files/mappers/Baseline.rb +10 -7
  16. data/example_files/mappers/ChilledWaterStorage.rb +98 -0
  17. data/example_files/mappers/ClassProject.rb +110 -0
  18. data/example_files/mappers/CreateBar.rb +1 -0
  19. data/example_files/mappers/HighEfficiency.rb +13 -11
  20. data/example_files/mappers/PeakHoursMelsShedding.rb +72 -0
  21. data/example_files/mappers/PeakHoursThermostatAdjust.rb +78 -0
  22. data/example_files/mappers/ThermalStorage.rb +1 -0
  23. data/example_files/mappers/base_workflow.osw +55 -14
  24. data/example_files/mappers/class_project_workflow.osw +328 -0
  25. data/example_files/mappers/createbar_workflow.osw +16 -16
  26. data/example_files/measures/BuildResidentialModel/measure.rb +7 -1
  27. data/example_files/measures/BuildResidentialModel/measure.xml +1313 -706
  28. data/example_files/opendss/electrical_database.json +1446 -1446
  29. data/example_files/python_deps/dependencies.json +5 -0
  30. data/example_files/python_deps/install_python.ps1 +96 -0
  31. data/example_files/python_deps/install_python.sh +120 -0
  32. data/example_files/residential/clothes_dryer.tsv +11 -11
  33. data/example_files/residential/clothes_washer.tsv +3 -3
  34. data/example_files/residential/dishwasher.tsv +3 -3
  35. data/example_files/resources/hpxml-measures/.github/pull_request_template.md +0 -1
  36. data/example_files/resources/hpxml-measures/.github/workflows/config.yml +8 -21
  37. data/example_files/resources/hpxml-measures/.gitignore +2 -0
  38. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +1272 -1094
  39. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +978 -659
  40. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb +52 -74
  41. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +77 -140
  42. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb +30 -27
  43. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml +32 -13
  44. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb +55 -51
  45. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb +89 -16
  46. data/example_files/resources/hpxml-measures/Changelog.md +65 -0
  47. data/example_files/resources/hpxml-measures/Gemfile +2 -4
  48. data/example_files/resources/hpxml-measures/Gemfile.lock +2 -13
  49. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb +276 -300
  50. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +221 -215
  51. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb +215 -170
  52. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/battery.rb +108 -16
  53. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb +24 -44
  54. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb +564 -197
  55. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/cambium/README.md +8 -8
  56. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/energyplus.rb +1 -0
  57. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb +7 -55
  58. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +24 -19
  59. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +541 -211
  60. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +300 -172
  61. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd +0 -2
  62. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLBaseElements.xsd +230 -141
  63. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLDataTypes.xsd +145 -137
  64. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +191 -97
  65. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/iso-schematron.xsd +391 -0
  66. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb +194 -198
  67. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +140 -145
  68. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb +11 -11
  69. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb +33 -1
  70. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/materials.rb +4 -4
  71. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb +17 -9
  72. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb +14 -12
  73. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/output.rb +39 -17
  74. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/psychrometrics.rb +1 -1
  75. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/battery.csv +8761 -0
  76. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +114 -57
  77. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb +1 -0
  78. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/utility_bills.rb +148 -0
  79. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb +2 -2
  80. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb +85 -127
  81. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb +26 -32
  82. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb +2 -14
  83. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlvalidator.rb +67 -0
  84. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb +117 -56
  85. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_battery.rb +141 -14
  86. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +453 -344
  87. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb +124 -20
  88. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb +1 -1
  89. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb +28 -32
  90. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +172 -79
  91. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +54 -8
  92. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb +3 -3
  93. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb +4 -4
  94. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb +7 -7
  95. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb +1 -1
  96. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb +6 -9
  97. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb +8 -8
  98. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +213 -95
  99. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb +1 -10
  100. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_weather.rb +76 -0
  101. data/example_files/resources/hpxml-measures/README.md +2 -3
  102. data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.rb +585 -287
  103. data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.xml +304 -352
  104. data/example_files/resources/hpxml-measures/ReportSimulationOutput/tests/output_report_test.rb +404 -279
  105. data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.rb +222 -501
  106. data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.xml +137 -200
  107. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json +649 -0
  108. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json +649 -0
  109. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json +647 -0
  110. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate Min Annual Charge.json +8776 -0
  111. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate Min Monthly Charge.json +8776 -0
  112. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json +8774 -0
  113. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate Min Annual Charge.json +659 -0
  114. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate Min Monthly Charge.json +659 -0
  115. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json +657 -0
  116. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate Min Annual Charge.json +670 -0
  117. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate Min Monthly Charge.json +670 -0
  118. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json +668 -0
  119. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate Min Annual Charge.json +655 -0
  120. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate Min Monthly Charge.json +655 -0
  121. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json +653 -0
  122. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/openei_rates.zip +0 -0
  123. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/Average_retail_price_of_electricity.csv +0 -0
  124. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/HouseholdConsumption.csv +0 -0
  125. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv +0 -0
  126. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv +0 -0
  127. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv +0 -0
  128. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/README.md +0 -0
  129. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/util.rb +506 -25
  130. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Contains Demand Charges.json +1312 -0
  131. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Invalid Fixed Charge Units.json +657 -0
  132. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Invalid Min Charge Units.json +659 -0
  133. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/JacksonElectricMemberCorp-ResidentialSeniorCitizenLowIncomeAssistance.json +681 -0
  134. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Missing Required Fields.json +54 -0
  135. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/data.csv +8761 -0
  136. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/utility_bills_test.rb +1006 -235
  137. data/example_files/resources/hpxml-measures/docs/source/conf.py +1 -1
  138. data/example_files/resources/hpxml-measures/docs/source/intro.rst +0 -1
  139. data/example_files/resources/hpxml-measures/docs/source/usage_instructions.rst +2 -2
  140. data/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst +461 -261
  141. data/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst +146 -152
  142. data/example_files/resources/hpxml-measures/tasks.rb +616 -802
  143. data/example_files/resources/hpxml-measures/workflow/real_homes/house001.xml +19 -11
  144. data/example_files/resources/hpxml-measures/workflow/real_homes/house002.xml +20 -12
  145. data/example_files/resources/hpxml-measures/workflow/real_homes/house003.xml +12 -7
  146. data/example_files/resources/hpxml-measures/workflow/real_homes/house004.xml +12 -7
  147. data/example_files/resources/hpxml-measures/workflow/real_homes/house005.xml +19 -11
  148. data/example_files/resources/hpxml-measures/workflow/real_homes/house006.xml +12 -7
  149. data/example_files/resources/hpxml-measures/workflow/real_homes/house007.xml +20 -12
  150. data/example_files/resources/hpxml-measures/workflow/real_homes/house008.xml +28 -16
  151. data/example_files/resources/hpxml-measures/workflow/real_homes/house009.xml +28 -17
  152. data/example_files/resources/hpxml-measures/workflow/real_homes/house010.xml +28 -16
  153. data/example_files/resources/hpxml-measures/workflow/real_homes/house011.xml +20 -12
  154. data/example_files/resources/hpxml-measures/workflow/real_homes/house012.xml +20 -12
  155. data/example_files/resources/hpxml-measures/workflow/real_homes/house013.xml +20 -12
  156. data/example_files/resources/hpxml-measures/workflow/real_homes/house014.xml +20 -12
  157. data/example_files/resources/hpxml-measures/workflow/real_homes/house015.xml +20 -12
  158. data/example_files/resources/hpxml-measures/workflow/real_homes/house016.xml +22 -12
  159. data/example_files/resources/hpxml-measures/workflow/real_homes/house017.xml +19 -11
  160. data/example_files/resources/hpxml-measures/workflow/real_homes/house018.xml +20 -12
  161. data/example_files/resources/hpxml-measures/workflow/real_homes/house019.xml +13 -7
  162. data/example_files/resources/hpxml-measures/workflow/real_homes/house020.xml +12 -7
  163. data/example_files/resources/hpxml-measures/workflow/real_homes/house021.xml +31 -16
  164. data/example_files/resources/hpxml-measures/workflow/real_homes/house022.xml +22 -12
  165. data/example_files/resources/hpxml-measures/workflow/real_homes/house023.xml +21 -12
  166. data/example_files/resources/hpxml-measures/workflow/real_homes/house024.xml +37 -22
  167. data/example_files/resources/hpxml-measures/workflow/real_homes/house025.xml +24 -12
  168. data/example_files/resources/hpxml-measures/workflow/real_homes/house026.xml +33 -21
  169. data/example_files/resources/hpxml-measures/workflow/real_homes/house027.xml +28 -16
  170. data/example_files/resources/hpxml-measures/workflow/real_homes/house028.xml +28 -16
  171. data/example_files/resources/hpxml-measures/workflow/real_homes/house029.xml +30 -17
  172. data/example_files/resources/hpxml-measures/workflow/real_homes/house030.xml +10 -7
  173. data/example_files/resources/hpxml-measures/workflow/real_homes/house031.xml +22 -11
  174. data/example_files/resources/hpxml-measures/workflow/real_homes/house032.xml +12 -7
  175. data/example_files/resources/hpxml-measures/workflow/real_homes/house033.xml +18 -12
  176. data/example_files/resources/hpxml-measures/workflow/real_homes/house034.xml +25 -16
  177. data/example_files/resources/hpxml-measures/workflow/real_homes/house035.xml +22 -12
  178. data/example_files/resources/hpxml-measures/workflow/real_homes/house036.xml +20 -12
  179. data/example_files/resources/hpxml-measures/workflow/real_homes/house037.xml +26 -17
  180. data/example_files/resources/hpxml-measures/workflow/real_homes/house038.xml +19 -11
  181. data/example_files/resources/hpxml-measures/workflow/real_homes/house039.xml +25 -16
  182. data/example_files/resources/hpxml-measures/workflow/real_homes/house040.xml +20 -12
  183. data/example_files/resources/hpxml-measures/workflow/real_homes/house041.xml +35 -21
  184. data/example_files/resources/hpxml-measures/workflow/real_homes/house042.xml +28 -17
  185. data/example_files/resources/hpxml-measures/workflow/real_homes/house043.xml +20 -12
  186. data/example_files/resources/hpxml-measures/workflow/real_homes/house044.xml +35 -21
  187. data/example_files/resources/hpxml-measures/workflow/real_homes/house045.xml +20 -12
  188. data/example_files/resources/hpxml-measures/workflow/real_homes/house046.xml +20 -13
  189. data/example_files/resources/hpxml-measures/workflow/real_homes/house047.xml +12 -9
  190. data/example_files/resources/hpxml-measures/workflow/real_homes/house048.xml +25 -14
  191. data/example_files/resources/hpxml-measures/workflow/real_homes/house049.xml +10 -7
  192. data/example_files/resources/hpxml-measures/workflow/real_homes/house050.xml +20 -11
  193. data/example_files/resources/hpxml-measures/workflow/run_simulation.rb +91 -88
  194. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +18 -7
  195. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +546 -535
  196. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +546 -535
  197. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +555 -544
  198. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +18 -7
  199. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +18 -7
  200. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +18 -7
  201. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml +18 -7
  202. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil-location-miami-fl.xml +580 -569
  203. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +18 -7
  204. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane-location-portland-or.xml +580 -569
  205. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +18 -7
  206. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +18 -7
  207. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +7 -0
  208. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +17 -6
  209. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +7 -0
  210. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +18 -7
  211. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +18 -7
  212. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +18 -7
  213. data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml +600 -0
  214. data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery.xml +598 -587
  215. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml +494 -485
  216. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml +606 -593
  217. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml +494 -485
  218. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml +494 -485
  219. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml +494 -485
  220. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-calctype-operational.xml +480 -471
  221. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml +464 -457
  222. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml +496 -487
  223. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml +466 -459
  224. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml +518 -509
  225. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml +513 -504
  226. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml +445 -438
  227. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml +476 -467
  228. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml +443 -436
  229. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml +446 -439
  230. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml +494 -485
  231. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml +445 -438
  232. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml +476 -467
  233. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml +446 -439
  234. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml +494 -485
  235. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml +489 -480
  236. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml +499 -490
  237. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +491 -482
  238. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml +510 -0
  239. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml +495 -486
  240. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml +709 -695
  241. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml +528 -519
  242. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml +512 -503
  243. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml +504 -495
  244. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml +497 -488
  245. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml +490 -481
  246. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml +487 -478
  247. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached-2stories.xml +639 -628
  248. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached-atticroof-cathedral.xml +587 -580
  249. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached.xml +639 -628
  250. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational-misc-defaults.xml +539 -528
  251. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational-misc-loads-large-uncommon.xml +644 -633
  252. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational-misc-loads-large-uncommon2.xml +644 -633
  253. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational.xml +575 -564
  254. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +16 -7
  255. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +16 -7
  256. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +18 -7
  257. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +585 -574
  258. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +18 -7
  259. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +18 -7
  260. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +18 -7
  261. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +18 -7
  262. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +18 -7
  263. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml +536 -0
  264. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +16 -7
  265. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +16 -7
  266. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +20 -8
  267. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +16 -7
  268. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +16 -7
  269. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +18 -7
  270. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +18 -7
  271. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +18 -7
  272. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +16 -7
  273. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +18 -7
  274. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +16 -7
  275. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml +18 -7
  276. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +19 -8
  277. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +19 -8
  278. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +19 -8
  279. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +19 -8
  280. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +19 -8
  281. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +18 -7
  282. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +18 -7
  283. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +18 -7
  284. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +18 -7
  285. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +18 -7
  286. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +18 -7
  287. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +18 -7
  288. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml +582 -571
  289. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +583 -572
  290. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +18 -7
  291. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +584 -573
  292. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +584 -573
  293. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +18 -7
  294. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml +583 -572
  295. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml +585 -574
  296. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +18 -7
  297. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +582 -571
  298. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +18 -7
  299. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +18 -7
  300. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +18 -7
  301. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml +586 -575
  302. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml +585 -574
  303. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +18 -7
  304. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +18 -7
  305. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml +580 -569
  306. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +18 -7
  307. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +580 -569
  308. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +18 -7
  309. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +580 -569
  310. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +18 -7
  311. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +18 -7
  312. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +18 -7
  313. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +18 -7
  314. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +28 -11
  315. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +20 -7
  316. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +18 -7
  317. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +18 -7
  318. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +18 -7
  319. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +18 -7
  320. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml +607 -0
  321. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml +550 -0
  322. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +27 -12
  323. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +18 -7
  324. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +18 -7
  325. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +18 -7
  326. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +18 -7
  327. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +18 -7
  328. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml +589 -578
  329. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +18 -7
  330. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml +18 -7
  331. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml +619 -608
  332. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml +620 -609
  333. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml +618 -607
  334. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +18 -7
  335. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +537 -526
  336. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces.xml +90 -43
  337. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces2.xml +2507 -2460
  338. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml +595 -584
  339. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +19 -8
  340. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml +584 -0
  341. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +18 -7
  342. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml +594 -583
  343. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml +597 -586
  344. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml +598 -587
  345. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +27 -12
  346. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml +671 -656
  347. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +18 -7
  348. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +18 -7
  349. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-foundation-conditioned-basement-wall-interior-insulation.xml → base-foundation-conditioned-basement-wall-insulation.xml} +585 -574
  350. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +582 -571
  351. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +35 -16
  352. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +18 -7
  353. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +27 -12
  354. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +27 -12
  355. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +27 -12
  356. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +27 -12
  357. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +27 -12
  358. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +27 -12
  359. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +18 -7
  360. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-backup-lockout-temperature.xml +586 -575
  361. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +573 -562
  362. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +580 -569
  363. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml +583 -0
  364. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +18 -7
  365. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +18 -7
  366. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml +600 -589
  367. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +599 -588
  368. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml +629 -616
  369. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +18 -7
  370. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml +573 -562
  371. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml +579 -568
  372. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +581 -570
  373. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +581 -570
  374. 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 +582 -0
  375. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +581 -570
  376. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml +581 -570
  377. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml +581 -570
  378. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml +581 -570
  379. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml +598 -587
  380. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml +628 -615
  381. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml +581 -570
  382. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml +581 -570
  383. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml +581 -570
  384. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml +535 -526
  385. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml +589 -578
  386. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml +536 -527
  387. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml +18 -7
  388. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml +565 -554
  389. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml +565 -554
  390. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml +18 -7
  391. 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 +582 -571
  392. 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 +582 -571
  393. 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 +582 -571
  394. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml +18 -7
  395. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml +526 -517
  396. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml +573 -562
  397. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml +529 -520
  398. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml +565 -554
  399. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml +580 -569
  400. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml +580 -569
  401. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml +565 -554
  402. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml +578 -567
  403. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +575 -564
  404. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +581 -570
  405. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml +583 -572
  406. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml +583 -572
  407. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml +583 -572
  408. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml +18 -7
  409. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml +18 -7
  410. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml +18 -7
  411. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml +580 -569
  412. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml +580 -569
  413. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml +580 -569
  414. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml +551 -542
  415. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac-with-heating.xml +532 -530
  416. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac.xml +525 -516
  417. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml +541 -532
  418. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml +541 -532
  419. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml +541 -532
  420. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-only.xml +525 -516
  421. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-heating.xml +533 -0
  422. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml +542 -0
  423. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml +542 -0
  424. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml +542 -0
  425. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml +529 -520
  426. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml +529 -520
  427. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml +580 -569
  428. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +16 -7
  429. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +16 -7
  430. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +18 -7
  431. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +16 -7
  432. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +16 -7
  433. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +16 -7
  434. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +16 -7
  435. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml +567 -0
  436. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +18 -7
  437. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +18 -7
  438. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +18 -7
  439. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +18 -7
  440. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +16 -7
  441. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml +18 -7
  442. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +18 -7
  443. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +18 -7
  444. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +18 -7
  445. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +18 -7
  446. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml +611 -598
  447. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml +589 -0
  448. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +582 -571
  449. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +18 -7
  450. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +16 -7
  451. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +18 -7
  452. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +17 -7
  453. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml +16 -7
  454. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml +530 -521
  455. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml +530 -521
  456. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +530 -521
  457. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml +566 -555
  458. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +18 -7
  459. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +18 -7
  460. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +18 -7
  461. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +18 -7
  462. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml +566 -555
  463. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +566 -555
  464. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +18 -7
  465. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +18 -7
  466. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +18 -7
  467. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +18 -7
  468. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +16 -7
  469. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +574 -563
  470. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +581 -570
  471. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +583 -572
  472. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +587 -576
  473. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml +587 -576
  474. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml +587 -576
  475. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +591 -580
  476. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml +591 -580
  477. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml +591 -580
  478. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml +570 -559
  479. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +586 -575
  480. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +570 -559
  481. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +586 -575
  482. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +18 -7
  483. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +16 -7
  484. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +18 -7
  485. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +18 -7
  486. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +18 -7
  487. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +552 -543
  488. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +16 -7
  489. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +963 -938
  490. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml +33 -69
  491. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml +530 -521
  492. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +535 -0
  493. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-ptac-with-heating.xml → base-hvac-ptac-with-heating-natural-gas.xml} +23 -21
  494. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml +526 -517
  495. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml +541 -532
  496. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +16 -7
  497. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +526 -517
  498. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml +526 -517
  499. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +16 -7
  500. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml +535 -0
  501. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml +542 -0
  502. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml +594 -583
  503. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml +586 -575
  504. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml +18 -7
  505. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +18 -7
  506. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml +530 -521
  507. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +530 -521
  508. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml +18 -7
  509. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +18 -7
  510. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +530 -521
  511. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml +18 -7
  512. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml +18 -7
  513. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml +18 -7
  514. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +18 -7
  515. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +27 -12
  516. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml +591 -576
  517. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +18 -7
  518. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +27 -12
  519. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml +582 -571
  520. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml +537 -526
  521. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +18 -7
  522. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml +537 -526
  523. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml +601 -586
  524. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +18 -7
  525. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +18 -7
  526. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +601 -587
  527. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +19 -7
  528. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +20 -7
  529. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +607 -0
  530. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml +607 -0
  531. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +21 -7
  532. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +18 -7
  533. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +18 -7
  534. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +18 -7
  535. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +18 -7
  536. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +18 -7
  537. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +18 -7
  538. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +37 -19
  539. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +18 -7
  540. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +18 -7
  541. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml +590 -579
  542. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-none.xml +578 -0
  543. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml +632 -0
  544. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml +614 -0
  545. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml +677 -0
  546. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml +593 -0
  547. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml +27 -9
  548. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml +676 -665
  549. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml +616 -0
  550. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml +615 -0
  551. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml +598 -587
  552. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml +586 -0
  553. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml +18 -7
  554. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml +18 -7
  555. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +18 -7
  556. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +18 -7
  557. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml +583 -572
  558. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +18 -7
  559. data/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml +1700 -1677
  560. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml +622 -611
  561. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml +697 -682
  562. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-pv-battery-lifetime-model.xml → base-pv-battery-round-trip-efficiency.xml} +20 -11
  563. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml +624 -0
  564. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml +622 -611
  565. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml +640 -0
  566. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml +639 -0
  567. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml +623 -0
  568. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml +606 -595
  569. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml +582 -571
  570. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-smooth.xml +583 -572
  571. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml +584 -0
  572. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml +583 -572
  573. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml +583 -572
  574. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml +581 -570
  575. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml +581 -570
  576. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml +581 -570
  577. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml +636 -625
  578. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +18 -7
  579. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +27 -14
  580. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +21 -10
  581. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +21 -10
  582. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-dhw-tank-heat-pump-detailed-operating-modes.xml → base-simcontrol-temperature-capacitance-multiplier.xml} +25 -13
  583. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml +584 -0
  584. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml +584 -0
  585. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +18 -7
  586. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-dhw-tank-heat-pump-detailed-setpoints.xml → base-simcontrol-timestep-30-mins.xml} +25 -14
  587. data/example_files/resources/hpxml-measures/workflow/sample_files/base.xml +18 -7
  588. data/example_files/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw +18 -13
  589. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy.osw +12 -7
  590. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml.osw +8 -24
  591. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml +366 -358
  592. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml +369 -361
  593. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml +369 -361
  594. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml +369 -361
  595. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml +369 -361
  596. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml +369 -361
  597. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml +369 -361
  598. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml +369 -361
  599. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml +311 -303
  600. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml +311 -303
  601. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml +327 -319
  602. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml +327 -319
  603. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml +332 -324
  604. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml +332 -324
  605. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml +341 -333
  606. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml +341 -333
  607. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml +369 -361
  608. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml +369 -361
  609. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml +369 -361
  610. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml +369 -361
  611. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml +369 -361
  612. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml +369 -361
  613. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml +383 -379
  614. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml +383 -379
  615. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml +538 -534
  616. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml +550 -546
  617. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results.csv +444 -410
  618. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_ashrae_140.csv +8 -8
  619. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_bills.csv +444 -410
  620. data/example_files/resources/hpxml-measures/workflow/tests/compare.py +18 -4
  621. data/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb +133 -288
  622. data/example_files/scripts/convert_urbanopt_to_disco.py +130 -0
  623. data/example_files/scripts/default_control_changes.csv +8 -0
  624. data/example_files/scripts/default_voltage_regulators.csv +3 -0
  625. data/example_files/scripts/read_data.py +331 -0
  626. data/example_files/visualization/input_visualization_feature.html +172 -81
  627. data/example_files/visualization/input_visualization_scenario.html +178 -82
  628. data/example_files/xml_building/17/README.md +2 -2
  629. data/example_files/xml_building/17/unit 1.xml +40 -41
  630. data/example_files/xml_building/17/unit 2.xml +35 -36
  631. data/example_files/xml_building/17/unit 3.xml +35 -36
  632. data/example_files/xml_building/17/unit 4.xml +41 -42
  633. data/lib/uo_cli/version.rb +1 -1
  634. data/lib/uo_cli.rb +596 -96
  635. data/uo_cli.gemspec +6 -5
  636. metadata +121 -36
  637. data/example_files/residential/exhaust.tsv +0 -3
  638. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/hvac_equipment_efficiency.csv +0 -493
  639. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/water_heater_efficiency.csv +0 -157
  640. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/HPXMLvalidator.xml +0 -620
  641. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/validator.rb +0 -107
  642. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/measure.rb +0 -450
  643. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/measure.xml +0 -85
  644. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/resources/constants.rb +0 -72
  645. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/tests/hpxml_output_report_test.rb +0 -290
  646. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/PV_10kW.csv +0 -8761
  647. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/PV_1kW.csv +0 -8761
  648. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/PV_None.csv +0 -8761
  649. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_hvac_sizing.csv +0 -410
@@ -3,13 +3,13 @@
3
3
  <schema_version>3.0</schema_version>
4
4
  <name>build_residential_hpxml</name>
5
5
  <uid>a13a8983-2b01-4930-8af2-42030b6e4233</uid>
6
- <version_id>baab1e43-e4a9-4d84-8f44-aed424d5a63a</version_id>
7
- <version_modified>20220512T032600Z</version_modified>
6
+ <version_id>fbb5e3c4-cf56-4831-8a0e-72df11c94c02</version_id>
7
+ <version_modified>20221117T175832Z</version_modified>
8
8
  <xml_checksum>2C38F48B</xml_checksum>
9
9
  <class_name>BuildResidentialHPXML</class_name>
10
10
  <display_name>HPXML Builder</display_name>
11
11
  <description>Builds a residential HPXML file.</description>
12
- <modeler_description>TODO</modeler_description>
12
+ <modeler_description>Note: OS-HPXML default values can be found in the OS-HPXML documentation or can be seen by using the 'apply_defaults' argument.</modeler_description>
13
13
  <arguments>
14
14
  <argument>
15
15
  <name>hpxml_path</name>
@@ -38,7 +38,7 @@
38
38
  <argument>
39
39
  <name>occupancy_calculation_type</name>
40
40
  <display_name>Occupancy Calculation Type</display_name>
41
- <description>The type of occupancy calculation type. If 'asset' is chosen, various end uses (e.g., clothes washer) are calculated using number of bedrooms and/or conditioned floor area. If 'operational' is chosen, end uses based on number of bedrooms are adjusted for the number of occupants. Defaults to 'asset'.</description>
41
+ <description>The type of occupancy calculation type. If 'asset' is chosen, various end uses (e.g., clothes washer) are calculated using number of bedrooms and/or conditioned floor area. If 'operational' is chosen, end uses based on number of bedrooms are adjusted for the number of occupants. If not provided, the OS-HPXML default is used.</description>
42
42
  <type>Choice</type>
43
43
  <required>false</required>
44
44
  <model_dependent>false</model_dependent>
@@ -64,7 +64,7 @@
64
64
  <argument>
65
65
  <name>simulation_control_timestep</name>
66
66
  <display_name>Simulation Control: Timestep</display_name>
67
- <description>Value must be a divisor of 60.</description>
67
+ <description>Value must be a divisor of 60. If not provided, the OS-HPXML default is used.</description>
68
68
  <type>Integer</type>
69
69
  <units>min</units>
70
70
  <required>false</required>
@@ -73,7 +73,7 @@
73
73
  <argument>
74
74
  <name>simulation_control_run_period</name>
75
75
  <display_name>Simulation Control: Run Period</display_name>
76
- <description>Enter a date like "Jan 1 - Dec 31".</description>
76
+ <description>Enter a date like "Jan 1 - Dec 31". If not provided, the OS-HPXML default is used.</description>
77
77
  <type>String</type>
78
78
  <required>false</required>
79
79
  <model_dependent>false</model_dependent>
@@ -81,7 +81,7 @@
81
81
  <argument>
82
82
  <name>simulation_control_run_period_calendar_year</name>
83
83
  <display_name>Simulation Control: Run Period Calendar Year</display_name>
84
- <description>This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file.</description>
84
+ <description>This numeric field should contain the calendar year that determines the start day of week. If you are running simulations using AMY weather files, the value entered for calendar year will not be used; it will be overridden by the actual year found in the AMY weather file. If not provided, the OS-HPXML default is used.</description>
85
85
  <type>Integer</type>
86
86
  <units>year</units>
87
87
  <required>false</required>
@@ -90,7 +90,7 @@
90
90
  <argument>
91
91
  <name>simulation_control_daylight_saving_enabled</name>
92
92
  <display_name>Simulation Control: Daylight Saving Enabled</display_name>
93
- <description>Whether to use daylight saving.</description>
93
+ <description>Whether to use daylight saving. If not provided, the OS-HPXML default is used.</description>
94
94
  <type>Boolean</type>
95
95
  <required>false</required>
96
96
  <model_dependent>false</model_dependent>
@@ -108,7 +108,15 @@
108
108
  <argument>
109
109
  <name>simulation_control_daylight_saving_period</name>
110
110
  <display_name>Simulation Control: Daylight Saving Period</display_name>
111
- <description>Enter a date like "Mar 15 - Dec 15".</description>
111
+ <description>Enter a date like "Mar 15 - Dec 15". If not provided, the OS-HPXML default is used.</description>
112
+ <type>String</type>
113
+ <required>false</required>
114
+ <model_dependent>false</model_dependent>
115
+ </argument>
116
+ <argument>
117
+ <name>simulation_control_temperature_capacitance_multiplier</name>
118
+ <display_name>Simulation Control: Temperature Capacitance Multiplier</display_name>
119
+ <description>Affects the transient calculation of indoor air temperatures. If not provided, the OS-HPXML default is used.</description>
112
120
  <type>String</type>
113
121
  <required>false</required>
114
122
  <model_dependent>false</model_dependent>
@@ -116,7 +124,7 @@
116
124
  <argument>
117
125
  <name>site_type</name>
118
126
  <display_name>Site: Type</display_name>
119
- <description>The type of site.</description>
127
+ <description>The type of site. If not provided, the OS-HPXML default is used.</description>
120
128
  <type>Choice</type>
121
129
  <required>false</required>
122
130
  <model_dependent>false</model_dependent>
@@ -138,16 +146,11 @@
138
146
  <argument>
139
147
  <name>site_shielding_of_home</name>
140
148
  <display_name>Site: Shielding of Home</display_name>
141
- <description>Presence of nearby buildings, trees, obstructions for infiltration model. A value of 'auto' will use 'normal'.</description>
149
+ <description>Presence of nearby buildings, trees, obstructions for infiltration model. If not provided, the OS-HPXML default is used.</description>
142
150
  <type>Choice</type>
143
- <required>true</required>
151
+ <required>false</required>
144
152
  <model_dependent>false</model_dependent>
145
- <default_value>auto</default_value>
146
153
  <choices>
147
- <choice>
148
- <value>auto</value>
149
- <display_name>auto</display_name>
150
- </choice>
151
154
  <choice>
152
155
  <value>exposed</value>
153
156
  <display_name>exposed</display_name>
@@ -162,6 +165,15 @@
162
165
  </choice>
163
166
  </choices>
164
167
  </argument>
168
+ <argument>
169
+ <name>site_ground_conductivity</name>
170
+ <display_name>Site: Ground Conductivity</display_name>
171
+ <description>Conductivity of the ground soil. If not provided, the OS-HPXML default is used.</description>
172
+ <type>Double</type>
173
+ <units>Btu/hr-ft-F</units>
174
+ <required>false</required>
175
+ <model_dependent>false</model_dependent>
176
+ </argument>
165
177
  <argument>
166
178
  <name>site_zip_code</name>
167
179
  <display_name>Site: Zip Code</display_name>
@@ -495,7 +507,7 @@
495
507
  <argument>
496
508
  <name>year_built</name>
497
509
  <display_name>Building Construction: Year Built</display_name>
498
- <description>The year the building was built</description>
510
+ <description>The year the building was built.</description>
499
511
  <type>Integer</type>
500
512
  <required>false</required>
501
513
  <model_dependent>false</model_dependent>
@@ -652,27 +664,25 @@
652
664
  <argument>
653
665
  <name>geometry_unit_num_bathrooms</name>
654
666
  <display_name>Geometry: Unit Number of Bathrooms</display_name>
655
- <description>The number of bathrooms in the unit. A value of 'auto' will default the value based on the number of bedrooms.</description>
656
- <type>String</type>
667
+ <description>The number of bathrooms in the unit. If not provided, the OS-HPXML default is used.</description>
668
+ <type>Integer</type>
657
669
  <units>#</units>
658
- <required>true</required>
670
+ <required>false</required>
659
671
  <model_dependent>false</model_dependent>
660
- <default_value>auto</default_value>
661
672
  </argument>
662
673
  <argument>
663
674
  <name>geometry_unit_num_occupants</name>
664
675
  <display_name>Geometry: Unit Number of Occupants</display_name>
665
- <description>The number of occupants in the unit. A value of 'auto' will default the value based on the number of bedrooms. Used to specify the internal gains from people only.</description>
666
- <type>String</type>
676
+ <description>The number of occupants in the unit. If not provided, the OS-HPXML default is used. Required if Occupancy Calculation Type is 'operational'.</description>
677
+ <type>Double</type>
667
678
  <units>#</units>
668
- <required>true</required>
679
+ <required>false</required>
669
680
  <model_dependent>false</model_dependent>
670
- <default_value>auto</default_value>
671
681
  </argument>
672
682
  <argument>
673
683
  <name>geometry_building_num_units</name>
674
684
  <display_name>Geometry: Building Number of Units</display_name>
675
- <description>The number of units in the building. This is required for single-family attached and apartment units.</description>
685
+ <description>The number of units in the building. Required for single-family attached and apartment units.</description>
676
686
  <type>Integer</type>
677
687
  <units>#</units>
678
688
  <required>false</required>
@@ -931,11 +941,20 @@
931
941
  <argument>
932
942
  <name>geometry_has_flue_or_chimney</name>
933
943
  <display_name>Geometry: Has Flue or Chimney</display_name>
934
- <description>Presence of flue or chimney for infiltration model. A value of 'auto' will default based on the fuel type and efficiency of space/water heating equipment in the home.</description>
935
- <type>String</type>
936
- <required>true</required>
944
+ <description>Presence of flue or chimney for infiltration model. If not provided, the OS-HPXML default is used.</description>
945
+ <type>Boolean</type>
946
+ <required>false</required>
937
947
  <model_dependent>false</model_dependent>
938
- <default_value>auto</default_value>
948
+ <choices>
949
+ <choice>
950
+ <value>true</value>
951
+ <display_name>true</display_name>
952
+ </choice>
953
+ <choice>
954
+ <value>false</value>
955
+ <display_name>false</display_name>
956
+ </choice>
957
+ </choices>
939
958
  </argument>
940
959
  <argument>
941
960
  <name>neighbor_front_distance</name>
@@ -980,42 +999,38 @@
980
999
  <argument>
981
1000
  <name>neighbor_front_height</name>
982
1001
  <display_name>Neighbor: Front Height</display_name>
983
- <description>The height of the neighboring building to the front. A value of 'auto' will use the same height as this building.</description>
984
- <type>String</type>
1002
+ <description>The height of the neighboring building to the front. If not provided, the OS-HPXML default is used.</description>
1003
+ <type>Double</type>
985
1004
  <units>ft</units>
986
- <required>true</required>
1005
+ <required>false</required>
987
1006
  <model_dependent>false</model_dependent>
988
- <default_value>auto</default_value>
989
1007
  </argument>
990
1008
  <argument>
991
1009
  <name>neighbor_back_height</name>
992
1010
  <display_name>Neighbor: Back Height</display_name>
993
- <description>The height of the neighboring building to the back. A value of 'auto' will use the same height as this building.</description>
994
- <type>String</type>
1011
+ <description>The height of the neighboring building to the back. If not provided, the OS-HPXML default is used.</description>
1012
+ <type>Double</type>
995
1013
  <units>ft</units>
996
- <required>true</required>
1014
+ <required>false</required>
997
1015
  <model_dependent>false</model_dependent>
998
- <default_value>auto</default_value>
999
1016
  </argument>
1000
1017
  <argument>
1001
1018
  <name>neighbor_left_height</name>
1002
1019
  <display_name>Neighbor: Left Height</display_name>
1003
- <description>The height of the neighboring building to the left. A value of 'auto' will use the same height as this building.</description>
1004
- <type>String</type>
1020
+ <description>The height of the neighboring building to the left. If not provided, the OS-HPXML default is used.</description>
1021
+ <type>Double</type>
1005
1022
  <units>ft</units>
1006
- <required>true</required>
1023
+ <required>false</required>
1007
1024
  <model_dependent>false</model_dependent>
1008
- <default_value>auto</default_value>
1009
1025
  </argument>
1010
1026
  <argument>
1011
1027
  <name>neighbor_right_height</name>
1012
1028
  <display_name>Neighbor: Right Height</display_name>
1013
- <description>The height of the neighboring building to the right. A value of 'auto' will use the same height as this building.</description>
1014
- <type>String</type>
1029
+ <description>The height of the neighboring building to the right. If not provided, the OS-HPXML default is used.</description>
1030
+ <type>Double</type>
1015
1031
  <units>ft</units>
1016
- <required>true</required>
1032
+ <required>false</required>
1017
1033
  <model_dependent>false</model_dependent>
1018
- <default_value>auto</default_value>
1019
1034
  </argument>
1020
1035
  <argument>
1021
1036
  <name>floor_over_foundation_assembly_r</name>
@@ -1037,24 +1052,83 @@
1037
1052
  <model_dependent>false</model_dependent>
1038
1053
  <default_value>28.1</default_value>
1039
1054
  </argument>
1055
+ <argument>
1056
+ <name>floor_type</name>
1057
+ <display_name>Floor: Type</display_name>
1058
+ <description>The type of floors.</description>
1059
+ <type>Choice</type>
1060
+ <required>true</required>
1061
+ <model_dependent>false</model_dependent>
1062
+ <default_value>WoodFrame</default_value>
1063
+ <choices>
1064
+ <choice>
1065
+ <value>WoodFrame</value>
1066
+ <display_name>WoodFrame</display_name>
1067
+ </choice>
1068
+ <choice>
1069
+ <value>StructuralInsulatedPanel</value>
1070
+ <display_name>StructuralInsulatedPanel</display_name>
1071
+ </choice>
1072
+ <choice>
1073
+ <value>SolidConcrete</value>
1074
+ <display_name>SolidConcrete</display_name>
1075
+ </choice>
1076
+ <choice>
1077
+ <value>SteelFrame</value>
1078
+ <display_name>SteelFrame</display_name>
1079
+ </choice>
1080
+ </choices>
1081
+ </argument>
1040
1082
  <argument>
1041
1083
  <name>foundation_wall_type</name>
1042
1084
  <display_name>Foundation Wall: Type</display_name>
1043
- <description>The material type of the foundation wall.</description>
1044
- <type>String</type>
1045
- <required>true</required>
1085
+ <description>The material type of the foundation wall. If not provided, the OS-HPXML default is used.</description>
1086
+ <type>Choice</type>
1087
+ <required>false</required>
1046
1088
  <model_dependent>false</model_dependent>
1047
- <default_value>auto</default_value>
1089
+ <choices>
1090
+ <choice>
1091
+ <value>solid concrete</value>
1092
+ <display_name>solid concrete</display_name>
1093
+ </choice>
1094
+ <choice>
1095
+ <value>concrete block</value>
1096
+ <display_name>concrete block</display_name>
1097
+ </choice>
1098
+ <choice>
1099
+ <value>concrete block foam core</value>
1100
+ <display_name>concrete block foam core</display_name>
1101
+ </choice>
1102
+ <choice>
1103
+ <value>concrete block perlite core</value>
1104
+ <display_name>concrete block perlite core</display_name>
1105
+ </choice>
1106
+ <choice>
1107
+ <value>concrete block vermiculite core</value>
1108
+ <display_name>concrete block vermiculite core</display_name>
1109
+ </choice>
1110
+ <choice>
1111
+ <value>concrete block solid core</value>
1112
+ <display_name>concrete block solid core</display_name>
1113
+ </choice>
1114
+ <choice>
1115
+ <value>double brick</value>
1116
+ <display_name>double brick</display_name>
1117
+ </choice>
1118
+ <choice>
1119
+ <value>wood</value>
1120
+ <display_name>wood</display_name>
1121
+ </choice>
1122
+ </choices>
1048
1123
  </argument>
1049
1124
  <argument>
1050
1125
  <name>foundation_wall_thickness</name>
1051
1126
  <display_name>Foundation Wall: Thickness</display_name>
1052
- <description>The thickness of the foundation wall.</description>
1053
- <type>String</type>
1127
+ <description>The thickness of the foundation wall. If not provided, the OS-HPXML default is used.</description>
1128
+ <type>Double</type>
1054
1129
  <units>in</units>
1055
- <required>true</required>
1130
+ <required>false</required>
1056
1131
  <model_dependent>false</model_dependent>
1057
- <default_value>auto</default_value>
1058
1132
  </argument>
1059
1133
  <argument>
1060
1134
  <name>foundation_wall_insulation_r</name>
@@ -1089,27 +1163,25 @@
1089
1163
  <argument>
1090
1164
  <name>foundation_wall_insulation_distance_to_top</name>
1091
1165
  <display_name>Foundation Wall: Insulation Distance To Top</display_name>
1092
- <description>The distance from the top of the foundation wall to the top of the foundation wall insulation. Only applies to basements/crawlspaces. A value of 'auto' will use zero.</description>
1093
- <type>String</type>
1166
+ <description>The distance from the top of the foundation wall to the top of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default is used.</description>
1167
+ <type>Double</type>
1094
1168
  <units>ft</units>
1095
- <required>true</required>
1169
+ <required>false</required>
1096
1170
  <model_dependent>false</model_dependent>
1097
- <default_value>auto</default_value>
1098
1171
  </argument>
1099
1172
  <argument>
1100
1173
  <name>foundation_wall_insulation_distance_to_bottom</name>
1101
1174
  <display_name>Foundation Wall: Insulation Distance To Bottom</display_name>
1102
- <description>The distance from the top of the foundation wall to the bottom of the foundation wall insulation. Only applies to basements/crawlspaces. A value of 'auto' will use the height of the foundation wall.</description>
1103
- <type>String</type>
1175
+ <description>The distance from the top of the foundation wall to the bottom of the foundation wall insulation. Only applies to basements/crawlspaces. If not provided, the OS-HPXML default is used.</description>
1176
+ <type>Double</type>
1104
1177
  <units>ft</units>
1105
- <required>true</required>
1178
+ <required>false</required>
1106
1179
  <model_dependent>false</model_dependent>
1107
- <default_value>auto</default_value>
1108
1180
  </argument>
1109
1181
  <argument>
1110
1182
  <name>foundation_wall_assembly_r</name>
1111
1183
  <display_name>Foundation Wall: Assembly R-value</display_name>
1112
- <description>Assembly R-value for the foundation walls. Only applies to basements/crawlspaces. If provided, overrides the previous foundation wall insulation inputs.</description>
1184
+ <description>Assembly R-value for the foundation walls. Only applies to basements/crawlspaces. If provided, overrides the previous foundation wall insulation inputs. If not provided, it is ignored.</description>
1113
1185
  <type>Double</type>
1114
1186
  <units>h-ft^2-R/Btu</units>
1115
1187
  <required>false</required>
@@ -1118,7 +1190,7 @@
1118
1190
  <argument>
1119
1191
  <name>rim_joist_assembly_r</name>
1120
1192
  <display_name>Rim Joist: Assembly R-value</display_name>
1121
- <description>Assembly R-value for the rim joists. Only applies to basements/crawlspaces.</description>
1193
+ <description>Assembly R-value for the rim joists. Only applies to basements/crawlspaces. Required if a rim joist height is provided.</description>
1122
1194
  <type>Double</type>
1123
1195
  <units>h-ft^2-R/Btu</units>
1124
1196
  <required>false</required>
@@ -1167,32 +1239,29 @@
1167
1239
  <argument>
1168
1240
  <name>slab_thickness</name>
1169
1241
  <display_name>Slab: Thickness</display_name>
1170
- <description>The thickness of the slab. Zero can be entered if there is a dirt floor instead of a slab.</description>
1171
- <type>String</type>
1242
+ <description>The thickness of the slab. Zero can be entered if there is a dirt floor instead of a slab. If not provided, the OS-HPXML default is used.</description>
1243
+ <type>Double</type>
1172
1244
  <units>in</units>
1173
- <required>true</required>
1245
+ <required>false</required>
1174
1246
  <model_dependent>false</model_dependent>
1175
- <default_value>auto</default_value>
1176
1247
  </argument>
1177
1248
  <argument>
1178
1249
  <name>slab_carpet_fraction</name>
1179
1250
  <display_name>Slab: Carpet Fraction</display_name>
1180
- <description>Fraction of the slab floor area that is carpeted.</description>
1181
- <type>String</type>
1251
+ <description>Fraction of the slab floor area that is carpeted. If not provided, the OS-HPXML default is used.</description>
1252
+ <type>Double</type>
1182
1253
  <units>Frac</units>
1183
- <required>true</required>
1254
+ <required>false</required>
1184
1255
  <model_dependent>false</model_dependent>
1185
- <default_value>auto</default_value>
1186
1256
  </argument>
1187
1257
  <argument>
1188
1258
  <name>slab_carpet_r</name>
1189
1259
  <display_name>Slab: Carpet R-value</display_name>
1190
- <description>R-value of the slab carpet.</description>
1191
- <type>String</type>
1260
+ <description>R-value of the slab carpet. If not provided, the OS-HPXML default is used.</description>
1261
+ <type>Double</type>
1192
1262
  <units>h-ft^2-R/Btu</units>
1193
- <required>true</required>
1263
+ <required>false</required>
1194
1264
  <model_dependent>false</model_dependent>
1195
- <default_value>auto</default_value>
1196
1265
  </argument>
1197
1266
  <argument>
1198
1267
  <name>ceiling_assembly_r</name>
@@ -1207,7 +1276,7 @@
1207
1276
  <argument>
1208
1277
  <name>roof_material_type</name>
1209
1278
  <display_name>Roof: Material Type</display_name>
1210
- <description>The material type of the roof.</description>
1279
+ <description>The material type of the roof. If not provided, the OS-HPXML default is used.</description>
1211
1280
  <type>Choice</type>
1212
1281
  <required>false</required>
1213
1282
  <model_dependent>false</model_dependent>
@@ -1253,11 +1322,10 @@
1253
1322
  <argument>
1254
1323
  <name>roof_color</name>
1255
1324
  <display_name>Roof: Color</display_name>
1256
- <description>The color of the roof.</description>
1325
+ <description>The color of the roof. If not provided, the OS-HPXML default is used.</description>
1257
1326
  <type>Choice</type>
1258
- <required>true</required>
1327
+ <required>false</required>
1259
1328
  <model_dependent>false</model_dependent>
1260
- <default_value>medium</default_value>
1261
1329
  <choices>
1262
1330
  <choice>
1263
1331
  <value>dark</value>
@@ -1363,8 +1431,8 @@
1363
1431
  <display_name>LogWall</display_name>
1364
1432
  </choice>
1365
1433
  <choice>
1366
- <value>StructurallyInsulatedPanel</value>
1367
- <display_name>StructurallyInsulatedPanel</display_name>
1434
+ <value>StructuralInsulatedPanel</value>
1435
+ <display_name>StructuralInsulatedPanel</display_name>
1368
1436
  </choice>
1369
1437
  <choice>
1370
1438
  <value>SolidConcrete</value>
@@ -1391,7 +1459,7 @@
1391
1459
  <argument>
1392
1460
  <name>wall_siding_type</name>
1393
1461
  <display_name>Wall: Siding Type</display_name>
1394
- <description>The siding type of the walls. Also applies to rim joists.</description>
1462
+ <description>The siding type of the walls. Also applies to rim joists. If not provided, the OS-HPXML default is used.</description>
1395
1463
  <type>Choice</type>
1396
1464
  <required>false</required>
1397
1465
  <model_dependent>false</model_dependent>
@@ -1445,11 +1513,10 @@
1445
1513
  <argument>
1446
1514
  <name>wall_color</name>
1447
1515
  <display_name>Wall: Color</display_name>
1448
- <description>The color of the walls. Also applies to rim joists.</description>
1516
+ <description>The color of the walls. Also applies to rim joists. If not provided, the OS-HPXML default is used.</description>
1449
1517
  <type>Choice</type>
1450
- <required>true</required>
1518
+ <required>false</required>
1451
1519
  <model_dependent>false</model_dependent>
1452
- <default_value>medium</default_value>
1453
1520
  <choices>
1454
1521
  <choice>
1455
1522
  <value>dark</value>
@@ -1576,12 +1643,21 @@
1576
1643
  <argument>
1577
1644
  <name>window_fraction_operable</name>
1578
1645
  <display_name>Windows: Fraction Operable</display_name>
1579
- <description>Fraction of windows that are operable.</description>
1646
+ <description>Fraction of windows that are operable. If not provided, the OS-HPXML default is used.</description>
1580
1647
  <type>Double</type>
1581
1648
  <units>Frac</units>
1582
1649
  <required>false</required>
1583
1650
  <model_dependent>false</model_dependent>
1584
1651
  </argument>
1652
+ <argument>
1653
+ <name>window_natvent_availability</name>
1654
+ <display_name>Windows: Natural Ventilation Availability</display_name>
1655
+ <description>For operable windows, the number of days/week that windows can be opened by occupants for natural ventilation. If not provided, the OS-HPXML default is used.</description>
1656
+ <type>Integer</type>
1657
+ <units>Days/week</units>
1658
+ <required>false</required>
1659
+ <model_dependent>false</model_dependent>
1660
+ </argument>
1585
1661
  <argument>
1586
1662
  <name>window_ufactor</name>
1587
1663
  <display_name>Windows: U-Factor</display_name>
@@ -1604,7 +1680,7 @@
1604
1680
  <argument>
1605
1681
  <name>window_interior_shading_winter</name>
1606
1682
  <display_name>Windows: Winter Interior Shading</display_name>
1607
- <description>Interior shading multiplier for the heating season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc.</description>
1683
+ <description>Interior shading multiplier for the heating season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used.</description>
1608
1684
  <type>Double</type>
1609
1685
  <units>Frac</units>
1610
1686
  <required>false</required>
@@ -1613,7 +1689,7 @@
1613
1689
  <argument>
1614
1690
  <name>window_interior_shading_summer</name>
1615
1691
  <display_name>Windows: Summer Interior Shading</display_name>
1616
- <description>Interior shading multiplier for the cooling season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc.</description>
1692
+ <description>Interior shading multiplier for the cooling season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used.</description>
1617
1693
  <type>Double</type>
1618
1694
  <units>Frac</units>
1619
1695
  <required>false</required>
@@ -1622,7 +1698,7 @@
1622
1698
  <argument>
1623
1699
  <name>window_exterior_shading_winter</name>
1624
1700
  <display_name>Windows: Winter Exterior Shading</display_name>
1625
- <description>Exterior shading multiplier for the heating season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc.</description>
1701
+ <description>Exterior shading multiplier for the heating season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used.</description>
1626
1702
  <type>Double</type>
1627
1703
  <units>Frac</units>
1628
1704
  <required>false</required>
@@ -1631,7 +1707,7 @@
1631
1707
  <argument>
1632
1708
  <name>window_exterior_shading_summer</name>
1633
1709
  <display_name>Windows: Summer Exterior Shading</display_name>
1634
- <description>Exterior shading multiplier for the cooling season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc.</description>
1710
+ <description>Exterior shading multiplier for the cooling season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc. If not provided, the OS-HPXML default is used.</description>
1635
1711
  <type>Double</type>
1636
1712
  <units>Frac</units>
1637
1713
  <required>false</required>
@@ -1640,7 +1716,7 @@
1640
1716
  <argument>
1641
1717
  <name>window_storm_type</name>
1642
1718
  <display_name>Windows: Storm Type</display_name>
1643
- <description>The type of storm, if present.</description>
1719
+ <description>The type of storm, if present. If not provided, assumes there is no storm.</description>
1644
1720
  <type>Choice</type>
1645
1721
  <required>false</required>
1646
1722
  <model_dependent>false</model_dependent>
@@ -1837,7 +1913,7 @@
1837
1913
  <argument>
1838
1914
  <name>skylight_storm_type</name>
1839
1915
  <display_name>Skylights: Storm Type</display_name>
1840
- <description>The type of storm, if present.</description>
1916
+ <description>The type of storm, if present. If not provided, assumes there is no storm.</description>
1841
1917
  <type>Choice</type>
1842
1918
  <required>false</required>
1843
1919
  <model_dependent>false</model_dependent>
@@ -1917,7 +1993,7 @@
1917
1993
  <argument>
1918
1994
  <name>heating_system_type</name>
1919
1995
  <display_name>Heating System: Type</display_name>
1920
- <description>The type of heating system. Use 'none' if there is no heating system.</description>
1996
+ <description>The type of heating system. Use 'none' if there is no heating system or if there is a heat pump serving a heating load.</description>
1921
1997
  <type>Choice</type>
1922
1998
  <required>true</required>
1923
1999
  <model_dependent>false</model_dependent>
@@ -1963,10 +2039,6 @@
1963
2039
  <value>FixedHeater</value>
1964
2040
  <display_name>FixedHeater</display_name>
1965
2041
  </choice>
1966
- <choice>
1967
- <value>PackagedTerminalAirConditionerHeating</value>
1968
- <display_name>PackagedTerminalAirConditionerHeating</display_name>
1969
- </choice>
1970
2042
  <choice>
1971
2043
  <value>Shared Boiler w/ Baseboard</value>
1972
2044
  <display_name>Shared Boiler w/ Baseboard</display_name>
@@ -1980,7 +2052,7 @@
1980
2052
  <argument>
1981
2053
  <name>heating_system_fuel</name>
1982
2054
  <display_name>Heating System: Fuel Type</display_name>
1983
- <description>The fuel type of the heating system. Ignored for ElectricResistance and PackagedTerminalAirConditionerHeating.</description>
2055
+ <description>The fuel type of the heating system. Ignored for ElectricResistance.</description>
1984
2056
  <type>Choice</type>
1985
2057
  <required>true</required>
1986
2058
  <model_dependent>false</model_dependent>
@@ -2029,12 +2101,11 @@
2029
2101
  <argument>
2030
2102
  <name>heating_system_heating_capacity</name>
2031
2103
  <display_name>Heating System: Heating Capacity</display_name>
2032
- <description>The output heating capacity of the heating system. Enter 'auto' to size the capacity based on ACCA Manual J/S.</description>
2033
- <type>String</type>
2104
+ <description>The output heating capacity of the heating system. If not provided, the OS-HPXML autosized default is used.</description>
2105
+ <type>Double</type>
2034
2106
  <units>Btu/hr</units>
2035
- <required>true</required>
2107
+ <required>false</required>
2036
2108
  <model_dependent>false</model_dependent>
2037
- <default_value>auto</default_value>
2038
2109
  </argument>
2039
2110
  <argument>
2040
2111
  <name>heating_system_fraction_heat_load_served</name>
@@ -2049,7 +2120,7 @@
2049
2120
  <argument>
2050
2121
  <name>heating_system_airflow_defect_ratio</name>
2051
2122
  <display_name>Heating System: Airflow Defect Ratio</display_name>
2052
- <description>The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the heating system per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to Furnace.</description>
2123
+ <description>The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the heating system per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to Furnace. If not provided, assumes no defect.</description>
2053
2124
  <type>Double</type>
2054
2125
  <units>Frac</units>
2055
2126
  <required>false</required>
@@ -2058,7 +2129,7 @@
2058
2129
  <argument>
2059
2130
  <name>cooling_system_type</name>
2060
2131
  <display_name>Cooling System: Type</display_name>
2061
- <description>The type of cooling system. Use 'none' if there is no cooling system.</description>
2132
+ <description>The type of cooling system. Use 'none' if there is no cooling system or if there is a heat pump serving a cooling load.</description>
2062
2133
  <type>Choice</type>
2063
2134
  <required>true</required>
2064
2135
  <model_dependent>false</model_dependent>
@@ -2093,7 +2164,7 @@
2093
2164
  <argument>
2094
2165
  <name>cooling_system_cooling_efficiency_type</name>
2095
2166
  <display_name>Cooling System: Efficiency Type</display_name>
2096
- <description>The efficiency type of the cooling system. System types central air conditioner and mini-split use SEER. System types room air conditioner and packaged terminal air conditioner use EER or CEER. Ignored for system type evaporative cooler.</description>
2167
+ <description>The efficiency type of the cooling system. System types central air conditioner and mini-split use SEER or SEER2. System types room air conditioner and packaged terminal air conditioner use EER or CEER. Ignored for system type evaporative cooler.</description>
2097
2168
  <type>Choice</type>
2098
2169
  <required>true</required>
2099
2170
  <model_dependent>false</model_dependent>
@@ -2103,6 +2174,10 @@
2103
2174
  <value>SEER</value>
2104
2175
  <display_name>SEER</display_name>
2105
2176
  </choice>
2177
+ <choice>
2178
+ <value>SEER2</value>
2179
+ <display_name>SEER2</display_name>
2180
+ </choice>
2106
2181
  <choice>
2107
2182
  <value>EER</value>
2108
2183
  <display_name>EER</display_name>
@@ -2118,7 +2193,6 @@
2118
2193
  <display_name>Cooling System: Efficiency</display_name>
2119
2194
  <description>The rated efficiency value of the cooling system. Ignored for evaporative cooler.</description>
2120
2195
  <type>Double</type>
2121
- <units>SEER or EER or CEER</units>
2122
2196
  <required>true</required>
2123
2197
  <model_dependent>false</model_dependent>
2124
2198
  <default_value>13</default_value>
@@ -2126,7 +2200,7 @@
2126
2200
  <argument>
2127
2201
  <name>cooling_system_cooling_compressor_type</name>
2128
2202
  <display_name>Cooling System: Cooling Compressor Type</display_name>
2129
- <description>The compressor type of the cooling system. Only applies to central air conditioner.</description>
2203
+ <description>The compressor type of the cooling system. Only applies to central air conditioner. If not provided, the OS-HPXML default is used.</description>
2130
2204
  <type>Choice</type>
2131
2205
  <required>false</required>
2132
2206
  <model_dependent>false</model_dependent>
@@ -2148,7 +2222,7 @@
2148
2222
  <argument>
2149
2223
  <name>cooling_system_cooling_sensible_heat_fraction</name>
2150
2224
  <display_name>Cooling System: Cooling Sensible Heat Fraction</display_name>
2151
- <description>The sensible heat fraction of the cooling system. Ignored for evaporative cooler.</description>
2225
+ <description>The sensible heat fraction of the cooling system. Ignored for evaporative cooler. If not provided, the OS-HPXML default is used.</description>
2152
2226
  <type>Double</type>
2153
2227
  <units>Frac</units>
2154
2228
  <required>false</required>
@@ -2157,12 +2231,11 @@
2157
2231
  <argument>
2158
2232
  <name>cooling_system_cooling_capacity</name>
2159
2233
  <display_name>Cooling System: Cooling Capacity</display_name>
2160
- <description>The output cooling capacity of the cooling system. Enter 'auto' to size the capacity based on ACCA Manual J/S.</description>
2161
- <type>String</type>
2234
+ <description>The output cooling capacity of the cooling system. If not provided, the OS-HPXML autosized default is used.</description>
2235
+ <type>Double</type>
2162
2236
  <units>Btu/hr</units>
2163
- <required>true</required>
2237
+ <required>false</required>
2164
2238
  <model_dependent>false</model_dependent>
2165
- <default_value>auto</default_value>
2166
2239
  </argument>
2167
2240
  <argument>
2168
2241
  <name>cooling_system_fraction_cool_load_served</name>
@@ -2196,7 +2269,7 @@
2196
2269
  <argument>
2197
2270
  <name>cooling_system_airflow_defect_ratio</name>
2198
2271
  <display_name>Cooling System: Airflow Defect Ratio</display_name>
2199
- <description>The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the cooling system per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to central air conditioner and ducted mini-split.</description>
2272
+ <description>The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the cooling system per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to central air conditioner and ducted mini-split. If not provided, assumes no defect.</description>
2200
2273
  <type>Double</type>
2201
2274
  <units>Frac</units>
2202
2275
  <required>false</required>
@@ -2205,7 +2278,72 @@
2205
2278
  <argument>
2206
2279
  <name>cooling_system_charge_defect_ratio</name>
2207
2280
  <display_name>Cooling System: Charge Defect Ratio</display_name>
2208
- <description>The refrigerant charge defect ratio, defined as (InstalledCharge - DesignCharge) / DesignCharge, of the cooling system per ANSI/RESNET/ACCA Standard 310. A value of zero means no refrigerant charge defect. Applies only to central air conditioner and mini-split.</description>
2281
+ <description>The refrigerant charge defect ratio, defined as (InstalledCharge - DesignCharge) / DesignCharge, of the cooling system per ANSI/RESNET/ACCA Standard 310. A value of zero means no refrigerant charge defect. Applies only to central air conditioner and mini-split. If not provided, assumes no defect.</description>
2282
+ <type>Double</type>
2283
+ <units>Frac</units>
2284
+ <required>false</required>
2285
+ <model_dependent>false</model_dependent>
2286
+ </argument>
2287
+ <argument>
2288
+ <name>cooling_system_integrated_heating_system_fuel</name>
2289
+ <display_name>Cooling System: Integrated Heating System Fuel Type</display_name>
2290
+ <description>The fuel type of the heating system integrated into cooling system. Only used for packaged terminal air conditioner and room air conditioner.</description>
2291
+ <type>Choice</type>
2292
+ <required>false</required>
2293
+ <model_dependent>false</model_dependent>
2294
+ <choices>
2295
+ <choice>
2296
+ <value>electricity</value>
2297
+ <display_name>electricity</display_name>
2298
+ </choice>
2299
+ <choice>
2300
+ <value>natural gas</value>
2301
+ <display_name>natural gas</display_name>
2302
+ </choice>
2303
+ <choice>
2304
+ <value>fuel oil</value>
2305
+ <display_name>fuel oil</display_name>
2306
+ </choice>
2307
+ <choice>
2308
+ <value>propane</value>
2309
+ <display_name>propane</display_name>
2310
+ </choice>
2311
+ <choice>
2312
+ <value>wood</value>
2313
+ <display_name>wood</display_name>
2314
+ </choice>
2315
+ <choice>
2316
+ <value>wood pellets</value>
2317
+ <display_name>wood pellets</display_name>
2318
+ </choice>
2319
+ <choice>
2320
+ <value>coal</value>
2321
+ <display_name>coal</display_name>
2322
+ </choice>
2323
+ </choices>
2324
+ </argument>
2325
+ <argument>
2326
+ <name>cooling_system_integrated_heating_system_efficiency_percent</name>
2327
+ <display_name>Cooling System: Integrated Heating System Efficiency</display_name>
2328
+ <description>The rated heating efficiency value of the heating system integrated into cooling system. Only used for packaged terminal air conditioner and room air conditioner.</description>
2329
+ <type>Double</type>
2330
+ <units>Frac</units>
2331
+ <required>false</required>
2332
+ <model_dependent>false</model_dependent>
2333
+ </argument>
2334
+ <argument>
2335
+ <name>cooling_system_integrated_heating_system_capacity</name>
2336
+ <display_name>Cooling System: Integrated Heating System Heating Capacity</display_name>
2337
+ <description>The output heating capacity of the heating system integrated into cooling system. If not provided, the OS-HPXML autosized default is used. Only used for packaged terminal air conditioner and room air conditioner.</description>
2338
+ <type>Double</type>
2339
+ <units>Btu/hr</units>
2340
+ <required>false</required>
2341
+ <model_dependent>false</model_dependent>
2342
+ </argument>
2343
+ <argument>
2344
+ <name>cooling_system_integrated_heating_system_fraction_heat_load_served</name>
2345
+ <display_name>Cooling System: Integrated Heating System Fraction Heat Load Served</display_name>
2346
+ <description>The heating load served by the heating system integrated into cooling system. Only used for packaged terminal air conditioner and room air conditioner.</description>
2209
2347
  <type>Double</type>
2210
2348
  <units>Frac</units>
2211
2349
  <required>false</required>
@@ -2240,12 +2378,16 @@
2240
2378
  <value>packaged terminal heat pump</value>
2241
2379
  <display_name>packaged terminal heat pump</display_name>
2242
2380
  </choice>
2381
+ <choice>
2382
+ <value>room air conditioner with reverse cycle</value>
2383
+ <display_name>room air conditioner with reverse cycle</display_name>
2384
+ </choice>
2243
2385
  </choices>
2244
2386
  </argument>
2245
2387
  <argument>
2246
2388
  <name>heat_pump_heating_efficiency_type</name>
2247
2389
  <display_name>Heat Pump: Heating Efficiency Type</display_name>
2248
- <description>The heating efficiency type of heat pump. System types air-to-air and mini-split use HSPF. System types ground-to-air and packaged terminal heat pump use COP.</description>
2390
+ <description>The heating efficiency type of heat pump. System types air-to-air and mini-split use HSPF or HSPF2. System types ground-to-air, packaged terminal heat pump and room air conditioner with reverse cycle use COP.</description>
2249
2391
  <type>Choice</type>
2250
2392
  <required>true</required>
2251
2393
  <model_dependent>false</model_dependent>
@@ -2255,6 +2397,10 @@
2255
2397
  <value>HSPF</value>
2256
2398
  <display_name>HSPF</display_name>
2257
2399
  </choice>
2400
+ <choice>
2401
+ <value>HSPF2</value>
2402
+ <display_name>HSPF2</display_name>
2403
+ </choice>
2258
2404
  <choice>
2259
2405
  <value>COP</value>
2260
2406
  <display_name>COP</display_name>
@@ -2266,7 +2412,6 @@
2266
2412
  <display_name>Heat Pump: Heating Efficiency</display_name>
2267
2413
  <description>The rated heating efficiency value of the heat pump.</description>
2268
2414
  <type>Double</type>
2269
- <units>HSPF or COP</units>
2270
2415
  <required>true</required>
2271
2416
  <model_dependent>false</model_dependent>
2272
2417
  <default_value>7.7</default_value>
@@ -2274,7 +2419,7 @@
2274
2419
  <argument>
2275
2420
  <name>heat_pump_cooling_efficiency_type</name>
2276
2421
  <display_name>Heat Pump: Cooling Efficiency Type</display_name>
2277
- <description>The cooling efficiency type of heat pump. System types air-to-air and mini-split use SEER. System types ground-to-air and packaged terminal heat pump use EER.</description>
2422
+ <description>The cooling efficiency type of heat pump. System types air-to-air and mini-split use SEER or SEER2. System types ground-to-air, packaged terminal heat pump and room air conditioner with reverse cycle use EER.</description>
2278
2423
  <type>Choice</type>
2279
2424
  <required>true</required>
2280
2425
  <model_dependent>false</model_dependent>
@@ -2284,6 +2429,10 @@
2284
2429
  <value>SEER</value>
2285
2430
  <display_name>SEER</display_name>
2286
2431
  </choice>
2432
+ <choice>
2433
+ <value>SEER2</value>
2434
+ <display_name>SEER2</display_name>
2435
+ </choice>
2287
2436
  <choice>
2288
2437
  <value>EER</value>
2289
2438
  <display_name>EER</display_name>
@@ -2299,7 +2448,6 @@
2299
2448
  <display_name>Heat Pump: Cooling Efficiency</display_name>
2300
2449
  <description>The rated cooling efficiency value of the heat pump.</description>
2301
2450
  <type>Double</type>
2302
- <units>SEER or EER</units>
2303
2451
  <required>true</required>
2304
2452
  <model_dependent>false</model_dependent>
2305
2453
  <default_value>13</default_value>
@@ -2307,7 +2455,7 @@
2307
2455
  <argument>
2308
2456
  <name>heat_pump_cooling_compressor_type</name>
2309
2457
  <display_name>Heat Pump: Cooling Compressor Type</display_name>
2310
- <description>The compressor type of the heat pump. Only applies to air-to-air.</description>
2458
+ <description>The compressor type of the heat pump. Only applies to air-to-air. If not provided, the OS-HPXML default is used.</description>
2311
2459
  <type>Choice</type>
2312
2460
  <required>false</required>
2313
2461
  <model_dependent>false</model_dependent>
@@ -2329,7 +2477,7 @@
2329
2477
  <argument>
2330
2478
  <name>heat_pump_cooling_sensible_heat_fraction</name>
2331
2479
  <display_name>Heat Pump: Cooling Sensible Heat Fraction</display_name>
2332
- <description>The sensible heat fraction of the heat pump.</description>
2480
+ <description>The sensible heat fraction of the heat pump. If not provided, the OS-HPXML default is used.</description>
2333
2481
  <type>Double</type>
2334
2482
  <units>Frac</units>
2335
2483
  <required>false</required>
@@ -2338,32 +2486,29 @@
2338
2486
  <argument>
2339
2487
  <name>heat_pump_heating_capacity</name>
2340
2488
  <display_name>Heat Pump: Heating Capacity</display_name>
2341
- <description>The output heating capacity of the heat pump. Enter 'auto' to size the capacity based on ACCA Manual J/S (i.e., based on cooling design loads with some oversizing allowances for heating design loads). Enter 'auto using max load' to size the capacity based on the maximum of heating/cooling design loads, taking into account the heat pump's heating reduced capacity at cold temperature. Enter 'auto using HERS' to size the capacity equal to the maximum of heating/cooling design loads.</description>
2342
- <type>String</type>
2489
+ <description>The output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default is used.</description>
2490
+ <type>Double</type>
2343
2491
  <units>Btu/hr</units>
2344
- <required>true</required>
2492
+ <required>false</required>
2345
2493
  <model_dependent>false</model_dependent>
2346
- <default_value>auto</default_value>
2347
2494
  </argument>
2348
2495
  <argument>
2349
2496
  <name>heat_pump_heating_capacity_17_f</name>
2350
2497
  <display_name>Heat Pump: Heating Capacity 17F</display_name>
2351
- <description>The output heating capacity of the heat pump at 17F. Only applies to air-to-air and mini-split.</description>
2352
- <type>String</type>
2498
+ <description>The output heating capacity of the heat pump at 17F. Only applies to air-to-air and mini-split. If not provided, the OS-HPXML default is used.</description>
2499
+ <type>Double</type>
2353
2500
  <units>Btu/hr</units>
2354
- <required>true</required>
2501
+ <required>false</required>
2355
2502
  <model_dependent>false</model_dependent>
2356
- <default_value>auto</default_value>
2357
2503
  </argument>
2358
2504
  <argument>
2359
2505
  <name>heat_pump_cooling_capacity</name>
2360
2506
  <display_name>Heat Pump: Cooling Capacity</display_name>
2361
- <description>The output cooling capacity of the heat pump. Enter 'auto' to size the capacity based on ACCA Manual J/S.</description>
2362
- <type>String</type>
2507
+ <description>The output cooling capacity of the heat pump. If not provided, the OS-HPXML autosized default is used.</description>
2508
+ <type>Double</type>
2363
2509
  <units>Btu/hr</units>
2364
- <required>true</required>
2510
+ <required>false</required>
2365
2511
  <model_dependent>false</model_dependent>
2366
- <default_value>auto</default_value>
2367
2512
  </argument>
2368
2513
  <argument>
2369
2514
  <name>heat_pump_fraction_heat_load_served</name>
@@ -2447,12 +2592,11 @@
2447
2592
  <argument>
2448
2593
  <name>heat_pump_backup_heating_capacity</name>
2449
2594
  <display_name>Heat Pump: Backup Heating Capacity</display_name>
2450
- <description>The backup output heating capacity of the heat pump. Enter 'auto' to size the capacity based on ACCA Manual J/S. Only applies if Backup Type is 'integrated'.</description>
2451
- <type>String</type>
2595
+ <description>The backup output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default is used. Only applies if Backup Type is 'integrated'.</description>
2596
+ <type>Double</type>
2452
2597
  <units>Btu/hr</units>
2453
- <required>true</required>
2598
+ <required>false</required>
2454
2599
  <model_dependent>false</model_dependent>
2455
- <default_value>auto</default_value>
2456
2600
  </argument>
2457
2601
  <argument>
2458
2602
  <name>heat_pump_backup_heating_switchover_temp</name>
@@ -2472,10 +2616,32 @@
2472
2616
  <required>false</required>
2473
2617
  <model_dependent>false</model_dependent>
2474
2618
  </argument>
2619
+ <argument>
2620
+ <name>heat_pump_sizing_methodology</name>
2621
+ <display_name>Heat Pump: Sizing Methodology</display_name>
2622
+ <description>The auto-sizing methodology to use when the heat pump capacity is not provided. If not provided, the OS-HPXML default is used.</description>
2623
+ <type>Choice</type>
2624
+ <required>false</required>
2625
+ <model_dependent>false</model_dependent>
2626
+ <choices>
2627
+ <choice>
2628
+ <value>ACCA</value>
2629
+ <display_name>ACCA</display_name>
2630
+ </choice>
2631
+ <choice>
2632
+ <value>HERS</value>
2633
+ <display_name>HERS</display_name>
2634
+ </choice>
2635
+ <choice>
2636
+ <value>MaxLoad</value>
2637
+ <display_name>MaxLoad</display_name>
2638
+ </choice>
2639
+ </choices>
2640
+ </argument>
2475
2641
  <argument>
2476
2642
  <name>heat_pump_is_ducted</name>
2477
2643
  <display_name>Heat Pump: Is Ducted</display_name>
2478
- <description>Whether the heat pump is ducted or not. Only used for mini-split. It's assumed that air-to-air and ground-to-air are ducted.</description>
2644
+ <description>Whether the heat pump is ducted or not. Only used for mini-split. It's assumed that air-to-air and ground-to-air are ducted. If not provided, assumes not ducted.</description>
2479
2645
  <type>Boolean</type>
2480
2646
  <required>false</required>
2481
2647
  <model_dependent>false</model_dependent>
@@ -2493,7 +2659,7 @@
2493
2659
  <argument>
2494
2660
  <name>heat_pump_airflow_defect_ratio</name>
2495
2661
  <display_name>Heat Pump: Airflow Defect Ratio</display_name>
2496
- <description>The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the heat pump per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to air-to-air, ducted mini-split, and ground-to-air.</description>
2662
+ <description>The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the heat pump per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to air-to-air, ducted mini-split, and ground-to-air. If not provided, assumes no defect.</description>
2497
2663
  <type>Double</type>
2498
2664
  <units>Frac</units>
2499
2665
  <required>false</required>
@@ -2502,7 +2668,7 @@
2502
2668
  <argument>
2503
2669
  <name>heat_pump_charge_defect_ratio</name>
2504
2670
  <display_name>Heat Pump: Charge Defect Ratio</display_name>
2505
- <description>The refrigerant charge defect ratio, defined as (InstalledCharge - DesignCharge) / DesignCharge, of the heat pump per ANSI/RESNET/ACCA Standard 310. A value of zero means no refrigerant charge defect. Applies to all heat pump types.</description>
2671
+ <description>The refrigerant charge defect ratio, defined as (InstalledCharge - DesignCharge) / DesignCharge, of the heat pump per ANSI/RESNET/ACCA Standard 310. A value of zero means no refrigerant charge defect. Applies to all heat pump types. If not provided, assumes no defect.</description>
2506
2672
  <type>Double</type>
2507
2673
  <units>Frac</units>
2508
2674
  <required>false</required>
@@ -2603,12 +2769,11 @@
2603
2769
  <argument>
2604
2770
  <name>heating_system_2_heating_capacity</name>
2605
2771
  <display_name>Heating System 2: Heating Capacity</display_name>
2606
- <description>The output heating capacity of the second heating system. Enter 'auto' to size the capacity based on ACCA Manual J/S.</description>
2607
- <type>String</type>
2772
+ <description>The output heating capacity of the second heating system. If not provided, the OS-HPXML autosized default is used.</description>
2773
+ <type>Double</type>
2608
2774
  <units>Btu/hr</units>
2609
- <required>true</required>
2775
+ <required>false</required>
2610
2776
  <model_dependent>false</model_dependent>
2611
- <default_value>auto</default_value>
2612
2777
  </argument>
2613
2778
  <argument>
2614
2779
  <name>heating_system_2_fraction_heat_load_served</name>
@@ -2623,47 +2788,43 @@
2623
2788
  <argument>
2624
2789
  <name>hvac_control_heating_weekday_setpoint</name>
2625
2790
  <display_name>HVAC Control: Heating Weekday Setpoint Schedule</display_name>
2626
- <description>Specify the constant or 24-hour comma-separated weekday heating setpoint schedule.</description>
2791
+ <description>Specify the constant or 24-hour comma-separated weekday heating setpoint schedule. Required unless a detailed CSV schedule is provided.</description>
2627
2792
  <type>String</type>
2628
2793
  <units>deg-F</units>
2629
- <required>true</required>
2794
+ <required>false</required>
2630
2795
  <model_dependent>false</model_dependent>
2631
- <default_value>auto</default_value>
2632
2796
  </argument>
2633
2797
  <argument>
2634
2798
  <name>hvac_control_heating_weekend_setpoint</name>
2635
2799
  <display_name>HVAC Control: Heating Weekend Setpoint Schedule</display_name>
2636
- <description>Specify the constant or 24-hour comma-separated weekend heating setpoint schedule.</description>
2800
+ <description>Specify the constant or 24-hour comma-separated weekend heating setpoint schedule. Required unless a detailed CSV schedule is provided.</description>
2637
2801
  <type>String</type>
2638
2802
  <units>deg-F</units>
2639
- <required>true</required>
2803
+ <required>false</required>
2640
2804
  <model_dependent>false</model_dependent>
2641
- <default_value>auto</default_value>
2642
2805
  </argument>
2643
2806
  <argument>
2644
2807
  <name>hvac_control_cooling_weekday_setpoint</name>
2645
2808
  <display_name>HVAC Control: Cooling Weekday Setpoint Schedule</display_name>
2646
- <description>Specify the constant or 24-hour comma-separated weekday cooling setpoint schedule.</description>
2809
+ <description>Specify the constant or 24-hour comma-separated weekday cooling setpoint schedule. Required unless a detailed CSV schedule is provided.</description>
2647
2810
  <type>String</type>
2648
2811
  <units>deg-F</units>
2649
- <required>true</required>
2812
+ <required>false</required>
2650
2813
  <model_dependent>false</model_dependent>
2651
- <default_value>auto</default_value>
2652
2814
  </argument>
2653
2815
  <argument>
2654
2816
  <name>hvac_control_cooling_weekend_setpoint</name>
2655
2817
  <display_name>HVAC Control: Cooling Weekend Setpoint Schedule</display_name>
2656
- <description>Specify the constant or 24-hour comma-separated weekend cooling setpoint schedule.</description>
2818
+ <description>Specify the constant or 24-hour comma-separated weekend cooling setpoint schedule. Required unless a detailed CSV schedule is provided.</description>
2657
2819
  <type>String</type>
2658
2820
  <units>deg-F</units>
2659
- <required>true</required>
2821
+ <required>false</required>
2660
2822
  <model_dependent>false</model_dependent>
2661
- <default_value>auto</default_value>
2662
2823
  </argument>
2663
2824
  <argument>
2664
2825
  <name>hvac_control_heating_season_period</name>
2665
2826
  <display_name>HVAC Control: Heating Season Period</display_name>
2666
- <description>Enter a date like "Nov 1 - Jun 30".</description>
2827
+ <description>Enter a date like 'Nov 1 - Jun 30'. If not provided, the OS-HPXML default is used. Can also provide 'BuildingAmerica' to use automatic seasons from the Building America House Simulation Protocols.</description>
2667
2828
  <type>String</type>
2668
2829
  <required>false</required>
2669
2830
  <model_dependent>false</model_dependent>
@@ -2671,7 +2832,7 @@
2671
2832
  <argument>
2672
2833
  <name>hvac_control_cooling_season_period</name>
2673
2834
  <display_name>HVAC Control: Cooling Season Period</display_name>
2674
- <description>Enter a date like "Jun 1 - Oct 31".</description>
2835
+ <description>Enter a date like 'Jun 1 - Oct 31'. If not provided, the OS-HPXML default is used. Can also provide 'BuildingAmerica' to use automatic seasons from the Building America House Simulation Protocols.</description>
2675
2836
  <type>String</type>
2676
2837
  <required>false</required>
2677
2838
  <model_dependent>false</model_dependent>
@@ -2720,16 +2881,11 @@
2720
2881
  <argument>
2721
2882
  <name>ducts_supply_location</name>
2722
2883
  <display_name>Ducts: Supply Location</display_name>
2723
- <description>The location of the supply ducts.</description>
2884
+ <description>The location of the supply ducts. If not provided, the OS-HPXML default is used.</description>
2724
2885
  <type>Choice</type>
2725
- <required>true</required>
2886
+ <required>false</required>
2726
2887
  <model_dependent>false</model_dependent>
2727
- <default_value>auto</default_value>
2728
2888
  <choices>
2729
- <choice>
2730
- <value>auto</value>
2731
- <display_name>auto</display_name>
2732
- </choice>
2733
2889
  <choice>
2734
2890
  <value>living space</value>
2735
2891
  <display_name>living space</display_name>
@@ -2813,26 +2969,20 @@
2813
2969
  <argument>
2814
2970
  <name>ducts_supply_surface_area</name>
2815
2971
  <display_name>Ducts: Supply Surface Area</display_name>
2816
- <description>The surface area of the supply ducts.</description>
2817
- <type>String</type>
2972
+ <description>The surface area of the supply ducts. If not provided, the OS-HPXML default is used.</description>
2973
+ <type>Double</type>
2818
2974
  <units>ft^2</units>
2819
- <required>true</required>
2975
+ <required>false</required>
2820
2976
  <model_dependent>false</model_dependent>
2821
- <default_value>auto</default_value>
2822
2977
  </argument>
2823
2978
  <argument>
2824
2979
  <name>ducts_return_location</name>
2825
2980
  <display_name>Ducts: Return Location</display_name>
2826
- <description>The location of the return ducts.</description>
2981
+ <description>The location of the return ducts. If not provided, the OS-HPXML default is used.</description>
2827
2982
  <type>Choice</type>
2828
- <required>true</required>
2983
+ <required>false</required>
2829
2984
  <model_dependent>false</model_dependent>
2830
- <default_value>auto</default_value>
2831
2985
  <choices>
2832
- <choice>
2833
- <value>auto</value>
2834
- <display_name>auto</display_name>
2835
- </choice>
2836
2986
  <choice>
2837
2987
  <value>living space</value>
2838
2988
  <display_name>living space</display_name>
@@ -2916,22 +3066,20 @@
2916
3066
  <argument>
2917
3067
  <name>ducts_return_surface_area</name>
2918
3068
  <display_name>Ducts: Return Surface Area</display_name>
2919
- <description>The surface area of the return ducts.</description>
2920
- <type>String</type>
3069
+ <description>The surface area of the return ducts. If not provided, the OS-HPXML default is used.</description>
3070
+ <type>Double</type>
2921
3071
  <units>ft^2</units>
2922
- <required>true</required>
3072
+ <required>false</required>
2923
3073
  <model_dependent>false</model_dependent>
2924
- <default_value>auto</default_value>
2925
3074
  </argument>
2926
3075
  <argument>
2927
3076
  <name>ducts_number_of_return_registers</name>
2928
3077
  <display_name>Ducts: Number of Return Registers</display_name>
2929
- <description>The number of return registers of the ducts. Only used if duct surface areas are set to auto.</description>
2930
- <type>String</type>
3078
+ <description>The number of return registers of the ducts. Only used to calculate default return duct surface area. If not provided, the OS-HPXML default is used.</description>
3079
+ <type>Integer</type>
2931
3080
  <units>#</units>
2932
3081
  <required>false</required>
2933
3082
  <model_dependent>false</model_dependent>
2934
- <default_value>auto</default_value>
2935
3083
  </argument>
2936
3084
  <argument>
2937
3085
  <name>mech_vent_fan_type</name>
@@ -2975,22 +3123,20 @@
2975
3123
  <argument>
2976
3124
  <name>mech_vent_flow_rate</name>
2977
3125
  <display_name>Mechanical Ventilation: Flow Rate</display_name>
2978
- <description>The flow rate of the mechanical ventilation.</description>
2979
- <type>String</type>
3126
+ <description>The flow rate of the mechanical ventilation. If not provided, the OS-HPXML default is used.</description>
3127
+ <type>Double</type>
2980
3128
  <units>CFM</units>
2981
- <required>true</required>
3129
+ <required>false</required>
2982
3130
  <model_dependent>false</model_dependent>
2983
- <default_value>auto</default_value>
2984
3131
  </argument>
2985
3132
  <argument>
2986
3133
  <name>mech_vent_hours_in_operation</name>
2987
3134
  <display_name>Mechanical Ventilation: Hours In Operation</display_name>
2988
- <description>The hours in operation of the mechanical ventilation.</description>
2989
- <type>String</type>
3135
+ <description>The hours in operation of the mechanical ventilation. If not provided, the OS-HPXML default is used.</description>
3136
+ <type>Double</type>
2990
3137
  <units>hrs/day</units>
2991
- <required>true</required>
3138
+ <required>false</required>
2992
3139
  <model_dependent>false</model_dependent>
2993
- <default_value>auto</default_value>
2994
3140
  </argument>
2995
3141
  <argument>
2996
3142
  <name>mech_vent_recovery_efficiency_type</name>
@@ -3034,12 +3180,11 @@
3034
3180
  <argument>
3035
3181
  <name>mech_vent_fan_power</name>
3036
3182
  <display_name>Mechanical Ventilation: Fan Power</display_name>
3037
- <description>The fan power of the mechanical ventilation.</description>
3038
- <type>String</type>
3183
+ <description>The fan power of the mechanical ventilation. If not provided, the OS-HPXML default is used.</description>
3184
+ <type>Double</type>
3039
3185
  <units>W</units>
3040
- <required>true</required>
3186
+ <required>false</required>
3041
3187
  <model_dependent>false</model_dependent>
3042
- <default_value>auto</default_value>
3043
3188
  </argument>
3044
3189
  <argument>
3045
3190
  <name>mech_vent_num_units_served</name>
@@ -3054,7 +3199,7 @@
3054
3199
  <argument>
3055
3200
  <name>mech_vent_shared_frac_recirculation</name>
3056
3201
  <display_name>Shared Mechanical Ventilation: Fraction Recirculation</display_name>
3057
- <description>Fraction of the total supply air that is recirculated, with the remainder assumed to be outdoor air. The value must be 0 for exhaust only systems. This is required for a shared mechanical ventilation system.</description>
3202
+ <description>Fraction of the total supply air that is recirculated, with the remainder assumed to be outdoor air. The value must be 0 for exhaust only systems. Required for a shared mechanical ventilation system.</description>
3058
3203
  <type>Double</type>
3059
3204
  <units>Frac</units>
3060
3205
  <required>false</required>
@@ -3063,7 +3208,7 @@
3063
3208
  <argument>
3064
3209
  <name>mech_vent_shared_preheating_fuel</name>
3065
3210
  <display_name>Shared Mechanical Ventilation: Preheating Fuel</display_name>
3066
- <description>Fuel type of the preconditioning heating equipment. Only used for a shared mechanical ventilation system.</description>
3211
+ <description>Fuel type of the preconditioning heating equipment. Only used for a shared mechanical ventilation system. If not provided, assumes no preheating.</description>
3067
3212
  <type>Choice</type>
3068
3213
  <required>false</required>
3069
3214
  <model_dependent>false</model_dependent>
@@ -3101,7 +3246,7 @@
3101
3246
  <argument>
3102
3247
  <name>mech_vent_shared_preheating_efficiency</name>
3103
3248
  <display_name>Shared Mechanical Ventilation: Preheating Efficiency</display_name>
3104
- <description>Efficiency of the preconditioning heating equipment. Only used for a shared mechanical ventilation system.</description>
3249
+ <description>Efficiency of the preconditioning heating equipment. Only used for a shared mechanical ventilation system. If not provided, assumes no preheating.</description>
3105
3250
  <type>Double</type>
3106
3251
  <units>COP</units>
3107
3252
  <required>false</required>
@@ -3110,7 +3255,7 @@
3110
3255
  <argument>
3111
3256
  <name>mech_vent_shared_preheating_fraction_heat_load_served</name>
3112
3257
  <display_name>Shared Mechanical Ventilation: Preheating Fraction Ventilation Heat Load Served</display_name>
3113
- <description>Fraction of heating load introduced by the shared ventilation system that is met by the preconditioning heating equipment.</description>
3258
+ <description>Fraction of heating load introduced by the shared ventilation system that is met by the preconditioning heating equipment. If not provided, assumes no preheating.</description>
3114
3259
  <type>Double</type>
3115
3260
  <units>Frac</units>
3116
3261
  <required>false</required>
@@ -3119,7 +3264,7 @@
3119
3264
  <argument>
3120
3265
  <name>mech_vent_shared_precooling_fuel</name>
3121
3266
  <display_name>Shared Mechanical Ventilation: Precooling Fuel</display_name>
3122
- <description>Fuel type of the preconditioning cooling equipment. Only used for a shared mechanical ventilation system.</description>
3267
+ <description>Fuel type of the preconditioning cooling equipment. Only used for a shared mechanical ventilation system. If not provided, assumes no precooling.</description>
3123
3268
  <type>Choice</type>
3124
3269
  <required>false</required>
3125
3270
  <model_dependent>false</model_dependent>
@@ -3133,7 +3278,7 @@
3133
3278
  <argument>
3134
3279
  <name>mech_vent_shared_precooling_efficiency</name>
3135
3280
  <display_name>Shared Mechanical Ventilation: Precooling Efficiency</display_name>
3136
- <description>Efficiency of the preconditioning cooling equipment. Only used for a shared mechanical ventilation system.</description>
3281
+ <description>Efficiency of the preconditioning cooling equipment. Only used for a shared mechanical ventilation system. If not provided, assumes no precooling.</description>
3137
3282
  <type>Double</type>
3138
3283
  <units>COP</units>
3139
3284
  <required>false</required>
@@ -3142,7 +3287,7 @@
3142
3287
  <argument>
3143
3288
  <name>mech_vent_shared_precooling_fraction_cool_load_served</name>
3144
3289
  <display_name>Shared Mechanical Ventilation: Precooling Fraction Ventilation Cool Load Served</display_name>
3145
- <description>Fraction of cooling load introduced by the shared ventilation system that is met by the preconditioning cooling equipment.</description>
3290
+ <description>Fraction of cooling load introduced by the shared ventilation system that is met by the preconditioning cooling equipment. If not provided, assumes no precooling.</description>
3146
3291
  <type>Double</type>
3147
3292
  <units>Frac</units>
3148
3293
  <required>false</required>
@@ -3255,102 +3400,92 @@
3255
3400
  <argument>
3256
3401
  <name>kitchen_fans_quantity</name>
3257
3402
  <display_name>Kitchen Fans: Quantity</display_name>
3258
- <description>The quantity of the kitchen fans.</description>
3259
- <type>String</type>
3403
+ <description>The quantity of the kitchen fans. If not provided, the OS-HPXML default is used.</description>
3404
+ <type>Integer</type>
3260
3405
  <units>#</units>
3261
- <required>true</required>
3406
+ <required>false</required>
3262
3407
  <model_dependent>false</model_dependent>
3263
- <default_value>auto</default_value>
3264
3408
  </argument>
3265
3409
  <argument>
3266
3410
  <name>kitchen_fans_flow_rate</name>
3267
3411
  <display_name>Kitchen Fans: Flow Rate</display_name>
3268
- <description>The flow rate of the kitchen fan.</description>
3269
- <type>String</type>
3412
+ <description>The flow rate of the kitchen fan. If not provided, the OS-HPXML default is used.</description>
3413
+ <type>Double</type>
3270
3414
  <units>CFM</units>
3271
3415
  <required>false</required>
3272
3416
  <model_dependent>false</model_dependent>
3273
- <default_value>auto</default_value>
3274
3417
  </argument>
3275
3418
  <argument>
3276
3419
  <name>kitchen_fans_hours_in_operation</name>
3277
3420
  <display_name>Kitchen Fans: Hours In Operation</display_name>
3278
- <description>The hours in operation of the kitchen fan.</description>
3279
- <type>String</type>
3421
+ <description>The hours in operation of the kitchen fan. If not provided, the OS-HPXML default is used.</description>
3422
+ <type>Double</type>
3280
3423
  <units>hrs/day</units>
3281
3424
  <required>false</required>
3282
3425
  <model_dependent>false</model_dependent>
3283
- <default_value>auto</default_value>
3284
3426
  </argument>
3285
3427
  <argument>
3286
3428
  <name>kitchen_fans_power</name>
3287
3429
  <display_name>Kitchen Fans: Fan Power</display_name>
3288
- <description>The fan power of the kitchen fan.</description>
3289
- <type>String</type>
3430
+ <description>The fan power of the kitchen fan. If not provided, the OS-HPXML default is used.</description>
3431
+ <type>Double</type>
3290
3432
  <units>W</units>
3291
3433
  <required>false</required>
3292
3434
  <model_dependent>false</model_dependent>
3293
- <default_value>auto</default_value>
3294
3435
  </argument>
3295
3436
  <argument>
3296
3437
  <name>kitchen_fans_start_hour</name>
3297
3438
  <display_name>Kitchen Fans: Start Hour</display_name>
3298
- <description>The start hour of the kitchen fan.</description>
3299
- <type>String</type>
3439
+ <description>The start hour of the kitchen fan. If not provided, the OS-HPXML default is used.</description>
3440
+ <type>Integer</type>
3300
3441
  <units>hr</units>
3301
3442
  <required>false</required>
3302
3443
  <model_dependent>false</model_dependent>
3303
- <default_value>auto</default_value>
3304
3444
  </argument>
3305
3445
  <argument>
3306
3446
  <name>bathroom_fans_quantity</name>
3307
3447
  <display_name>Bathroom Fans: Quantity</display_name>
3308
- <description>The quantity of the bathroom fans.</description>
3309
- <type>String</type>
3448
+ <description>The quantity of the bathroom fans. If not provided, the OS-HPXML default is used.</description>
3449
+ <type>Integer</type>
3310
3450
  <units>#</units>
3311
- <required>true</required>
3451
+ <required>false</required>
3312
3452
  <model_dependent>false</model_dependent>
3313
- <default_value>auto</default_value>
3314
3453
  </argument>
3315
3454
  <argument>
3316
3455
  <name>bathroom_fans_flow_rate</name>
3317
3456
  <display_name>Bathroom Fans: Flow Rate</display_name>
3318
- <description>The flow rate of the bathroom fans.</description>
3319
- <type>String</type>
3457
+ <description>The flow rate of the bathroom fans. If not provided, the OS-HPXML default is used.</description>
3458
+ <type>Double</type>
3320
3459
  <units>CFM</units>
3321
3460
  <required>false</required>
3322
3461
  <model_dependent>false</model_dependent>
3323
- <default_value>auto</default_value>
3324
3462
  </argument>
3325
3463
  <argument>
3326
3464
  <name>bathroom_fans_hours_in_operation</name>
3327
3465
  <display_name>Bathroom Fans: Hours In Operation</display_name>
3328
- <description>The hours in operation of the bathroom fans.</description>
3329
- <type>String</type>
3466
+ <description>The hours in operation of the bathroom fans. If not provided, the OS-HPXML default is used.</description>
3467
+ <type>Double</type>
3330
3468
  <units>hrs/day</units>
3331
3469
  <required>false</required>
3332
3470
  <model_dependent>false</model_dependent>
3333
- <default_value>auto</default_value>
3334
3471
  </argument>
3335
3472
  <argument>
3336
3473
  <name>bathroom_fans_power</name>
3337
3474
  <display_name>Bathroom Fans: Fan Power</display_name>
3338
- <description>The fan power of the bathroom fans.</description>
3339
- <type>String</type>
3475
+ <description>The fan power of the bathroom fans. If not provided, the OS-HPXML default is used.</description>
3476
+ <type>Double</type>
3340
3477
  <units>W</units>
3341
3478
  <required>false</required>
3342
3479
  <model_dependent>false</model_dependent>
3343
- <default_value>auto</default_value>
3344
3480
  </argument>
3345
3481
  <argument>
3346
3482
  <name>bathroom_fans_start_hour</name>
3347
3483
  <display_name>Bathroom Fans: Start Hour</display_name>
3348
- <description>The start hour of the bathroom fans.</description>
3349
- <type>String</type>
3484
+ <description>The start hour of the bathroom fans. If not provided, the OS-HPXML default is used.</description>
3485
+ <type>Integer</type>
3350
3486
  <units>hr</units>
3351
3487
  <required>false</required>
3352
3488
  <model_dependent>false</model_dependent>
3353
- <default_value>auto</default_value>
3354
3489
  </argument>
3355
3490
  <argument>
3356
3491
  <name>whole_house_fan_present</name>
@@ -3374,22 +3509,20 @@
3374
3509
  <argument>
3375
3510
  <name>whole_house_fan_flow_rate</name>
3376
3511
  <display_name>Whole House Fan: Flow Rate</display_name>
3377
- <description>The flow rate of the whole house fan.</description>
3378
- <type>String</type>
3512
+ <description>The flow rate of the whole house fan. If not provided, the OS-HPXML default is used.</description>
3513
+ <type>Double</type>
3379
3514
  <units>CFM</units>
3380
3515
  <required>false</required>
3381
3516
  <model_dependent>false</model_dependent>
3382
- <default_value>auto</default_value>
3383
3517
  </argument>
3384
3518
  <argument>
3385
3519
  <name>whole_house_fan_power</name>
3386
3520
  <display_name>Whole House Fan: Fan Power</display_name>
3387
- <description>The fan power of the whole house fan.</description>
3388
- <type>String</type>
3521
+ <description>The fan power of the whole house fan. If not provided, the OS-HPXML default is used.</description>
3522
+ <type>Double</type>
3389
3523
  <units>W</units>
3390
3524
  <required>false</required>
3391
3525
  <model_dependent>false</model_dependent>
3392
- <default_value>auto</default_value>
3393
3526
  </argument>
3394
3527
  <argument>
3395
3528
  <name>water_heater_type</name>
@@ -3464,16 +3597,11 @@
3464
3597
  <argument>
3465
3598
  <name>water_heater_location</name>
3466
3599
  <display_name>Water Heater: Location</display_name>
3467
- <description>The location of water heater.</description>
3600
+ <description>The location of water heater. If not provided, the OS-HPXML default is used.</description>
3468
3601
  <type>Choice</type>
3469
- <required>true</required>
3602
+ <required>false</required>
3470
3603
  <model_dependent>false</model_dependent>
3471
- <default_value>auto</default_value>
3472
3604
  <choices>
3473
- <choice>
3474
- <value>auto</value>
3475
- <display_name>auto</display_name>
3476
- </choice>
3477
3605
  <choice>
3478
3606
  <value>living space</value>
3479
3607
  <display_name>living space</display_name>
@@ -3535,12 +3663,11 @@
3535
3663
  <argument>
3536
3664
  <name>water_heater_tank_volume</name>
3537
3665
  <display_name>Water Heater: Tank Volume</display_name>
3538
- <description>Nominal volume of water heater tank. Set to 'auto' to have volume autosized. Only applies to storage water heater, heat pump water heater, and space-heating boiler with storage tank.</description>
3539
- <type>String</type>
3666
+ <description>Nominal volume of water heater tank. Only applies to storage water heater, heat pump water heater, and space-heating boiler with storage tank. If not provided, the OS-HPXML default is used.</description>
3667
+ <type>Double</type>
3540
3668
  <units>gal</units>
3541
- <required>true</required>
3669
+ <required>false</required>
3542
3670
  <model_dependent>false</model_dependent>
3543
- <default_value>auto</default_value>
3544
3671
  </argument>
3545
3672
  <argument>
3546
3673
  <name>water_heater_efficiency_type</name>
@@ -3573,7 +3700,7 @@
3573
3700
  <argument>
3574
3701
  <name>water_heater_usage_bin</name>
3575
3702
  <display_name>Water Heater: Usage Bin</display_name>
3576
- <description>The usage of the water heater. Required if Efficiency Type is UniformEnergyFactor and Type is not instantaneous water heater. Does not apply to space-heating boilers.</description>
3703
+ <description>The usage of the water heater. Only applies if Efficiency Type is UniformEnergyFactor and Type is not instantaneous water heater. Does not apply to space-heating boilers. If not provided, the OS-HPXML default is used.</description>
3577
3704
  <type>Choice</type>
3578
3705
  <required>false</required>
3579
3706
  <model_dependent>false</model_dependent>
@@ -3599,27 +3726,25 @@
3599
3726
  <argument>
3600
3727
  <name>water_heater_recovery_efficiency</name>
3601
3728
  <display_name>Water Heater: Recovery Efficiency</display_name>
3602
- <description>Ratio of energy delivered to water heater to the energy content of the fuel consumed by the water heater. Only used for non-electric storage water heaters.</description>
3603
- <type>String</type>
3729
+ <description>Ratio of energy delivered to water heater to the energy content of the fuel consumed by the water heater. Only used for non-electric storage water heaters. If not provided, the OS-HPXML default is used.</description>
3730
+ <type>Double</type>
3604
3731
  <units>Frac</units>
3605
- <required>true</required>
3732
+ <required>false</required>
3606
3733
  <model_dependent>false</model_dependent>
3607
- <default_value>auto</default_value>
3608
3734
  </argument>
3609
3735
  <argument>
3610
3736
  <name>water_heater_heating_capacity</name>
3611
3737
  <display_name>Water Heater: Heating Capacity</display_name>
3612
- <description>Heating capacity. Set to 'auto' to have heating capacity defaulted. Only applies to storage water heater.</description>
3613
- <type>String</type>
3738
+ <description>Heating capacity. Only applies to storage water heater. If not provided, the OS-HPXML default is used.</description>
3739
+ <type>Double</type>
3614
3740
  <units>Btu/hr</units>
3615
- <required>true</required>
3741
+ <required>false</required>
3616
3742
  <model_dependent>false</model_dependent>
3617
- <default_value>auto</default_value>
3618
3743
  </argument>
3619
3744
  <argument>
3620
3745
  <name>water_heater_standby_loss</name>
3621
3746
  <display_name>Water Heater: Standby Loss</display_name>
3622
- <description>The standby loss of water heater. Only applies to space-heating boilers.</description>
3747
+ <description>The standby loss of water heater. Only applies to space-heating boilers. If not provided, the OS-HPXML default is used.</description>
3623
3748
  <type>Double</type>
3624
3749
  <units>deg-F/hr</units>
3625
3750
  <required>false</required>
@@ -3628,7 +3753,7 @@
3628
3753
  <argument>
3629
3754
  <name>water_heater_jacket_rvalue</name>
3630
3755
  <display_name>Water Heater: Jacket R-value</display_name>
3631
- <description>The jacket R-value of water heater. Doesn't apply to instantaneous water heater or space-heating boiler with tankless coil.</description>
3756
+ <description>The jacket R-value of water heater. Doesn't apply to instantaneous water heater or space-heating boiler with tankless coil. If not provided, defaults to no jacket insulation.</description>
3632
3757
  <type>Double</type>
3633
3758
  <units>h-ft^2-R/Btu</units>
3634
3759
  <required>false</required>
@@ -3637,12 +3762,11 @@
3637
3762
  <argument>
3638
3763
  <name>water_heater_setpoint_temperature</name>
3639
3764
  <display_name>Water Heater: Setpoint Temperature</display_name>
3640
- <description>The setpoint temperature of water heater.</description>
3641
- <type>String</type>
3765
+ <description>The setpoint temperature of water heater. If not provided, the OS-HPXML default is used.</description>
3766
+ <type>Double</type>
3642
3767
  <units>deg-F</units>
3643
- <required>true</required>
3768
+ <required>false</required>
3644
3769
  <model_dependent>false</model_dependent>
3645
- <default_value>auto</default_value>
3646
3770
  </argument>
3647
3771
  <argument>
3648
3772
  <name>water_heater_num_units_served</name>
@@ -3657,7 +3781,7 @@
3657
3781
  <argument>
3658
3782
  <name>water_heater_uses_desuperheater</name>
3659
3783
  <display_name>Water Heater: Uses Desuperheater</display_name>
3660
- <description>Requires that the dwelling unit has a air-to-air, mini-split, or ground-to-air heat pump or a central air conditioner or mini-split air conditioner.</description>
3784
+ <description>Requires that the dwelling unit has a air-to-air, mini-split, or ground-to-air heat pump or a central air conditioner or mini-split air conditioner. If not provided, assumes no desuperheater.</description>
3661
3785
  <type>Boolean</type>
3662
3786
  <required>false</required>
3663
3787
  <model_dependent>false</model_dependent>
@@ -3675,7 +3799,7 @@
3675
3799
  <argument>
3676
3800
  <name>water_heater_tank_model_type</name>
3677
3801
  <display_name>Water Heater: Tank Type</display_name>
3678
- <description>Type of tank model to use. The 'stratified' tank generally provide more accurate results, but may significantly increase run time. Applies only to storage water heater.</description>
3802
+ <description>Type of tank model to use. The 'stratified' tank generally provide more accurate results, but may significantly increase run time. Applies only to storage water heater. If not provided, the OS-HPXML default is used.</description>
3679
3803
  <type>Choice</type>
3680
3804
  <required>false</required>
3681
3805
  <model_dependent>false</model_dependent>
@@ -3693,7 +3817,7 @@
3693
3817
  <argument>
3694
3818
  <name>water_heater_operating_mode</name>
3695
3819
  <display_name>Water Heater: Operating Mode</display_name>
3696
- <description>The water heater operating mode. The 'heat pump only' option only uses the heat pump, while 'standard' allows the backup electric resistance to come on in high demand situations. This is ignored if a scheduled operating mode type is selected. Applies only to heat pump water heater.</description>
3820
+ <description>The water heater operating mode. The 'heat pump only' option only uses the heat pump, while 'standard' allows the backup electric resistance to come on in high demand situations. This is ignored if a scheduled operating mode type is selected. Applies only to heat pump water heater. If not provided, the OS-HPXML default is used.</description>
3697
3821
  <type>Choice</type>
3698
3822
  <required>false</required>
3699
3823
  <model_dependent>false</model_dependent>
@@ -3730,12 +3854,11 @@
3730
3854
  <argument>
3731
3855
  <name>hot_water_distribution_standard_piping_length</name>
3732
3856
  <display_name>Hot Water Distribution: Standard Piping Length</display_name>
3733
- <description>If the distribution system is Standard, the length of the piping. A value of 'auto' will use a default.</description>
3734
- <type>String</type>
3857
+ <description>If the distribution system is Standard, the length of the piping. If not provided, the OS-HPXML default is used.</description>
3858
+ <type>Double</type>
3735
3859
  <units>ft</units>
3736
- <required>true</required>
3860
+ <required>false</required>
3737
3861
  <model_dependent>false</model_dependent>
3738
- <default_value>auto</default_value>
3739
3862
  </argument>
3740
3863
  <argument>
3741
3864
  <name>hot_water_distribution_recirc_control_type</name>
@@ -3771,42 +3894,38 @@
3771
3894
  <argument>
3772
3895
  <name>hot_water_distribution_recirc_piping_length</name>
3773
3896
  <display_name>Hot Water Distribution: Recirculation Piping Length</display_name>
3774
- <description>If the distribution system is Recirculation, the length of the recirculation piping.</description>
3775
- <type>String</type>
3897
+ <description>If the distribution system is Recirculation, the length of the recirculation piping. If not provided, the OS-HPXML default is used.</description>
3898
+ <type>Double</type>
3776
3899
  <units>ft</units>
3777
- <required>true</required>
3900
+ <required>false</required>
3778
3901
  <model_dependent>false</model_dependent>
3779
- <default_value>auto</default_value>
3780
3902
  </argument>
3781
3903
  <argument>
3782
3904
  <name>hot_water_distribution_recirc_branch_piping_length</name>
3783
3905
  <display_name>Hot Water Distribution: Recirculation Branch Piping Length</display_name>
3784
- <description>If the distribution system is Recirculation, the length of the recirculation branch piping.</description>
3785
- <type>String</type>
3906
+ <description>If the distribution system is Recirculation, the length of the recirculation branch piping. If not provided, the OS-HPXML default is used.</description>
3907
+ <type>Double</type>
3786
3908
  <units>ft</units>
3787
- <required>true</required>
3909
+ <required>false</required>
3788
3910
  <model_dependent>false</model_dependent>
3789
- <default_value>auto</default_value>
3790
3911
  </argument>
3791
3912
  <argument>
3792
3913
  <name>hot_water_distribution_recirc_pump_power</name>
3793
3914
  <display_name>Hot Water Distribution: Recirculation Pump Power</display_name>
3794
- <description>If the distribution system is Recirculation, the recirculation pump power.</description>
3795
- <type>String</type>
3915
+ <description>If the distribution system is Recirculation, the recirculation pump power. If not provided, the OS-HPXML default is used.</description>
3916
+ <type>Double</type>
3796
3917
  <units>W</units>
3797
- <required>true</required>
3918
+ <required>false</required>
3798
3919
  <model_dependent>false</model_dependent>
3799
- <default_value>auto</default_value>
3800
3920
  </argument>
3801
3921
  <argument>
3802
3922
  <name>hot_water_distribution_pipe_r</name>
3803
3923
  <display_name>Hot Water Distribution: Pipe Insulation Nominal R-Value</display_name>
3804
- <description>Nominal R-value of the pipe insulation.</description>
3805
- <type>String</type>
3924
+ <description>Nominal R-value of the pipe insulation. If not provided, the OS-HPXML default is used.</description>
3925
+ <type>Double</type>
3806
3926
  <units>h-ft^2-R/Btu</units>
3807
- <required>true</required>
3927
+ <required>false</required>
3808
3928
  <model_dependent>false</model_dependent>
3809
- <default_value>auto</default_value>
3810
3929
  </argument>
3811
3930
  <argument>
3812
3931
  <name>dwhr_facilities_connected</name>
@@ -3901,11 +4020,10 @@
3901
4020
  <argument>
3902
4021
  <name>water_fixtures_usage_multiplier</name>
3903
4022
  <display_name>Hot Water Fixtures: Usage Multiplier</display_name>
3904
- <description>Multiplier on the hot water usage that can reflect, e.g., high/low usage occupants.</description>
4023
+ <description>Multiplier on the hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
3905
4024
  <type>Double</type>
3906
- <required>true</required>
4025
+ <required>false</required>
3907
4026
  <model_dependent>false</model_dependent>
3908
- <default_value>1</default_value>
3909
4027
  </argument>
3910
4028
  <argument>
3911
4029
  <name>solar_thermal_system_type</name>
@@ -4021,7 +4139,7 @@
4021
4139
  <display_name>Solar Thermal: Collector Rated Thermal Losses</display_name>
4022
4140
  <description>The collector rated thermal losses of the solar thermal system.</description>
4023
4141
  <type>Double</type>
4024
- <units>Frac</units>
4142
+ <units>Btu/hr-ft^2-R</units>
4025
4143
  <required>true</required>
4026
4144
  <model_dependent>false</model_dependent>
4027
4145
  <default_value>0.2799</default_value>
@@ -4029,12 +4147,11 @@
4029
4147
  <argument>
4030
4148
  <name>solar_thermal_storage_volume</name>
4031
4149
  <display_name>Solar Thermal: Storage Volume</display_name>
4032
- <description>The storage volume of the solar thermal system.</description>
4033
- <type>String</type>
4034
- <units>Frac</units>
4035
- <required>true</required>
4150
+ <description>The storage volume of the solar thermal system. If not provided, the OS-HPXML default is used.</description>
4151
+ <type>Double</type>
4152
+ <units>gal</units>
4153
+ <required>false</required>
4036
4154
  <model_dependent>false</model_dependent>
4037
- <default_value>auto</default_value>
4038
4155
  </argument>
4039
4156
  <argument>
4040
4157
  <name>solar_thermal_solar_fraction</name>
@@ -4047,22 +4164,32 @@
4047
4164
  <default_value>0</default_value>
4048
4165
  </argument>
4049
4166
  <argument>
4050
- <name>pv_system_module_type</name>
4051
- <display_name>PV System: Module Type</display_name>
4052
- <description>Module type of the PV system. Use 'none' if there is no PV system.</description>
4053
- <type>Choice</type>
4167
+ <name>pv_system_present</name>
4168
+ <display_name>PV System: Present</display_name>
4169
+ <description>Whether there is a PV system present.</description>
4170
+ <type>Boolean</type>
4054
4171
  <required>true</required>
4055
4172
  <model_dependent>false</model_dependent>
4056
- <default_value>none</default_value>
4173
+ <default_value>false</default_value>
4057
4174
  <choices>
4058
4175
  <choice>
4059
- <value>none</value>
4060
- <display_name>none</display_name>
4176
+ <value>true</value>
4177
+ <display_name>true</display_name>
4061
4178
  </choice>
4062
4179
  <choice>
4063
- <value>auto</value>
4064
- <display_name>auto</display_name>
4180
+ <value>false</value>
4181
+ <display_name>false</display_name>
4065
4182
  </choice>
4183
+ </choices>
4184
+ </argument>
4185
+ <argument>
4186
+ <name>pv_system_module_type</name>
4187
+ <display_name>PV System: Module Type</display_name>
4188
+ <description>Module type of the PV system. If not provided, the OS-HPXML default is used.</description>
4189
+ <type>Choice</type>
4190
+ <required>false</required>
4191
+ <model_dependent>false</model_dependent>
4192
+ <choices>
4066
4193
  <choice>
4067
4194
  <value>standard</value>
4068
4195
  <display_name>standard</display_name>
@@ -4080,16 +4207,11 @@
4080
4207
  <argument>
4081
4208
  <name>pv_system_location</name>
4082
4209
  <display_name>PV System: Location</display_name>
4083
- <description>Location of the PV system.</description>
4210
+ <description>Location of the PV system. If not provided, the OS-HPXML default is used.</description>
4084
4211
  <type>Choice</type>
4085
- <required>true</required>
4212
+ <required>false</required>
4086
4213
  <model_dependent>false</model_dependent>
4087
- <default_value>auto</default_value>
4088
4214
  <choices>
4089
- <choice>
4090
- <value>auto</value>
4091
- <display_name>auto</display_name>
4092
- </choice>
4093
4215
  <choice>
4094
4216
  <value>roof</value>
4095
4217
  <display_name>roof</display_name>
@@ -4103,16 +4225,11 @@
4103
4225
  <argument>
4104
4226
  <name>pv_system_tracking</name>
4105
4227
  <display_name>PV System: Tracking</display_name>
4106
- <description>Tracking of the PV system.</description>
4228
+ <description>Type of tracking for the PV system. If not provided, the OS-HPXML default is used.</description>
4107
4229
  <type>Choice</type>
4108
- <required>true</required>
4230
+ <required>false</required>
4109
4231
  <model_dependent>false</model_dependent>
4110
- <default_value>auto</default_value>
4111
4232
  <choices>
4112
- <choice>
4113
- <value>auto</value>
4114
- <display_name>auto</display_name>
4115
- </choice>
4116
4233
  <choice>
4117
4234
  <value>fixed</value>
4118
4235
  <display_name>fixed</display_name>
@@ -4164,7 +4281,7 @@
4164
4281
  <argument>
4165
4282
  <name>pv_system_inverter_efficiency</name>
4166
4283
  <display_name>PV System: Inverter Efficiency</display_name>
4167
- <description>Inverter efficiency of the PV system. If there are two PV systems, this will apply to both.</description>
4284
+ <description>Inverter efficiency of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default is used.</description>
4168
4285
  <type>Double</type>
4169
4286
  <units>Frac</units>
4170
4287
  <required>false</required>
@@ -4173,7 +4290,7 @@
4173
4290
  <argument>
4174
4291
  <name>pv_system_system_losses_fraction</name>
4175
4292
  <display_name>PV System: System Losses Fraction</display_name>
4176
- <description>System losses fraction of the PV system. If there are two PV systems, this will apply to both.</description>
4293
+ <description>System losses fraction of the PV system. If there are two PV systems, this will apply to both. If not provided, the OS-HPXML default is used.</description>
4177
4294
  <type>Double</type>
4178
4295
  <units>Frac</units>
4179
4296
  <required>false</required>
@@ -4182,30 +4299,39 @@
4182
4299
  <argument>
4183
4300
  <name>pv_system_num_bedrooms_served</name>
4184
4301
  <display_name>PV System: Number of Bedrooms Served</display_name>
4185
- <description>Number of bedrooms served by PV system. Ignored if single-family detached. Used to apportion PV generation to the unit of a SFA/MF building. If there are two PV systems, this will apply to both.</description>
4302
+ <description>Number of bedrooms served by PV system. Required if single-family attached or apartment unit. Used to apportion PV generation to the unit of a SFA/MF building. If there are two PV systems, this will apply to both.</description>
4186
4303
  <type>Integer</type>
4187
4304
  <units>#</units>
4188
- <required>true</required>
4305
+ <required>false</required>
4189
4306
  <model_dependent>false</model_dependent>
4190
- <default_value>3</default_value>
4191
4307
  </argument>
4192
4308
  <argument>
4193
- <name>pv_system_2_module_type</name>
4194
- <display_name>PV System 2: Module Type</display_name>
4195
- <description>Module type of the second PV system. Use 'none' if there is no PV system 2.</description>
4196
- <type>Choice</type>
4309
+ <name>pv_system_2_present</name>
4310
+ <display_name>PV System 2: Present</display_name>
4311
+ <description>Whether there is a second PV system present.</description>
4312
+ <type>Boolean</type>
4197
4313
  <required>true</required>
4198
4314
  <model_dependent>false</model_dependent>
4199
- <default_value>none</default_value>
4315
+ <default_value>false</default_value>
4200
4316
  <choices>
4201
4317
  <choice>
4202
- <value>none</value>
4203
- <display_name>none</display_name>
4318
+ <value>true</value>
4319
+ <display_name>true</display_name>
4204
4320
  </choice>
4205
4321
  <choice>
4206
- <value>auto</value>
4207
- <display_name>auto</display_name>
4322
+ <value>false</value>
4323
+ <display_name>false</display_name>
4208
4324
  </choice>
4325
+ </choices>
4326
+ </argument>
4327
+ <argument>
4328
+ <name>pv_system_2_module_type</name>
4329
+ <display_name>PV System 2: Module Type</display_name>
4330
+ <description>Module type of the second PV system. If not provided, the OS-HPXML default is used.</description>
4331
+ <type>Choice</type>
4332
+ <required>false</required>
4333
+ <model_dependent>false</model_dependent>
4334
+ <choices>
4209
4335
  <choice>
4210
4336
  <value>standard</value>
4211
4337
  <display_name>standard</display_name>
@@ -4223,16 +4349,11 @@
4223
4349
  <argument>
4224
4350
  <name>pv_system_2_location</name>
4225
4351
  <display_name>PV System 2: Location</display_name>
4226
- <description>Location of the second PV system.</description>
4352
+ <description>Location of the second PV system. If not provided, the OS-HPXML default is used.</description>
4227
4353
  <type>Choice</type>
4228
- <required>true</required>
4354
+ <required>false</required>
4229
4355
  <model_dependent>false</model_dependent>
4230
- <default_value>auto</default_value>
4231
4356
  <choices>
4232
- <choice>
4233
- <value>auto</value>
4234
- <display_name>auto</display_name>
4235
- </choice>
4236
4357
  <choice>
4237
4358
  <value>roof</value>
4238
4359
  <display_name>roof</display_name>
@@ -4246,16 +4367,11 @@
4246
4367
  <argument>
4247
4368
  <name>pv_system_2_tracking</name>
4248
4369
  <display_name>PV System 2: Tracking</display_name>
4249
- <description>Tracking of the second PV system.</description>
4370
+ <description>Type of tracking for the second PV system. If not provided, the OS-HPXML default is used.</description>
4250
4371
  <type>Choice</type>
4251
- <required>true</required>
4372
+ <required>false</required>
4252
4373
  <model_dependent>false</model_dependent>
4253
- <default_value>auto</default_value>
4254
4374
  <choices>
4255
- <choice>
4256
- <value>auto</value>
4257
- <display_name>auto</display_name>
4258
- </choice>
4259
4375
  <choice>
4260
4376
  <value>fixed</value>
4261
4377
  <display_name>fixed</display_name>
@@ -4305,22 +4421,32 @@
4305
4421
  <default_value>4000</default_value>
4306
4422
  </argument>
4307
4423
  <argument>
4308
- <name>battery_location</name>
4309
- <display_name>Battery: Location</display_name>
4310
- <description>The space type for the lithium ion battery location.</description>
4311
- <type>Choice</type>
4424
+ <name>battery_present</name>
4425
+ <display_name>Battery: Present</display_name>
4426
+ <description>Whether there is a lithium ion battery present.</description>
4427
+ <type>Boolean</type>
4312
4428
  <required>true</required>
4313
4429
  <model_dependent>false</model_dependent>
4314
- <default_value>none</default_value>
4430
+ <default_value>false</default_value>
4315
4431
  <choices>
4316
4432
  <choice>
4317
- <value>auto</value>
4318
- <display_name>auto</display_name>
4433
+ <value>true</value>
4434
+ <display_name>true</display_name>
4319
4435
  </choice>
4320
4436
  <choice>
4321
- <value>none</value>
4322
- <display_name>none</display_name>
4437
+ <value>false</value>
4438
+ <display_name>false</display_name>
4323
4439
  </choice>
4440
+ </choices>
4441
+ </argument>
4442
+ <argument>
4443
+ <name>battery_location</name>
4444
+ <display_name>Battery: Location</display_name>
4445
+ <description>The space type for the lithium ion battery location. If not provided, the OS-HPXML default is used.</description>
4446
+ <type>Choice</type>
4447
+ <required>false</required>
4448
+ <model_dependent>false</model_dependent>
4449
+ <choices>
4324
4450
  <choice>
4325
4451
  <value>living space</value>
4326
4452
  <display_name>living space</display_name>
@@ -4366,38 +4492,45 @@
4366
4492
  <argument>
4367
4493
  <name>battery_power</name>
4368
4494
  <display_name>Battery: Rated Power Output</display_name>
4369
- <description>The rated power output of the lithium ion battery.</description>
4370
- <type>String</type>
4495
+ <description>The rated power output of the lithium ion battery. If not provided, the OS-HPXML default is used.</description>
4496
+ <type>Double</type>
4371
4497
  <units>W</units>
4372
- <required>true</required>
4498
+ <required>false</required>
4373
4499
  <model_dependent>false</model_dependent>
4374
- <default_value>auto</default_value>
4375
4500
  </argument>
4376
4501
  <argument>
4377
4502
  <name>battery_capacity</name>
4378
4503
  <display_name>Battery: Nominal Capacity</display_name>
4379
- <description>The nominal capacity of the lithium ion battery.</description>
4380
- <type>String</type>
4504
+ <description>The nominal capacity of the lithium ion battery. If not provided, the OS-HPXML default is used.</description>
4505
+ <type>Double</type>
4381
4506
  <units>kWh</units>
4382
- <required>true</required>
4507
+ <required>false</required>
4383
4508
  <model_dependent>false</model_dependent>
4384
- <default_value>auto</default_value>
4385
4509
  </argument>
4386
4510
  <argument>
4387
4511
  <name>battery_usable_capacity</name>
4388
4512
  <display_name>Battery: Usable Capacity</display_name>
4389
- <description>The usable capacity of the lithium ion battery.</description>
4390
- <type>String</type>
4513
+ <description>The usable capacity of the lithium ion battery. If not provided, the OS-HPXML default is used.</description>
4514
+ <type>Double</type>
4391
4515
  <units>kWh</units>
4392
4516
  <required>false</required>
4393
4517
  <model_dependent>false</model_dependent>
4394
4518
  </argument>
4519
+ <argument>
4520
+ <name>battery_round_trip_efficiency</name>
4521
+ <display_name>Battery: Round Trip Efficiency</display_name>
4522
+ <description>The round trip efficiency of the lithium ion battery. If not provided, the OS-HPXML default is used.</description>
4523
+ <type>Double</type>
4524
+ <units>Frac</units>
4525
+ <required>false</required>
4526
+ <model_dependent>false</model_dependent>
4527
+ </argument>
4395
4528
  <argument>
4396
4529
  <name>lighting_present</name>
4397
4530
  <display_name>Lighting: Present</display_name>
4398
4531
  <description>Whether there is lighting energy use.</description>
4399
4532
  <type>Boolean</type>
4400
- <required>false</required>
4533
+ <required>true</required>
4401
4534
  <model_dependent>false</model_dependent>
4402
4535
  <default_value>true</default_value>
4403
4536
  <choices>
@@ -4441,11 +4574,10 @@
4441
4574
  <argument>
4442
4575
  <name>lighting_interior_usage_multiplier</name>
4443
4576
  <display_name>Lighting: Interior Usage Multiplier</display_name>
4444
- <description>Multiplier on the lighting energy usage (interior) that can reflect, e.g., high/low usage occupants.</description>
4577
+ <description>Multiplier on the lighting energy usage (interior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
4445
4578
  <type>Double</type>
4446
- <required>true</required>
4579
+ <required>false</required>
4447
4580
  <model_dependent>false</model_dependent>
4448
- <default_value>1</default_value>
4449
4581
  </argument>
4450
4582
  <argument>
4451
4583
  <name>lighting_exterior_fraction_cfl</name>
@@ -4477,11 +4609,10 @@
4477
4609
  <argument>
4478
4610
  <name>lighting_exterior_usage_multiplier</name>
4479
4611
  <display_name>Lighting: Exterior Usage Multiplier</display_name>
4480
- <description>Multiplier on the lighting energy usage (exterior) that can reflect, e.g., high/low usage occupants.</description>
4612
+ <description>Multiplier on the lighting energy usage (exterior) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
4481
4613
  <type>Double</type>
4482
- <required>true</required>
4614
+ <required>false</required>
4483
4615
  <model_dependent>false</model_dependent>
4484
- <default_value>1</default_value>
4485
4616
  </argument>
4486
4617
  <argument>
4487
4618
  <name>lighting_garage_fraction_cfl</name>
@@ -4513,11 +4644,10 @@
4513
4644
  <argument>
4514
4645
  <name>lighting_garage_usage_multiplier</name>
4515
4646
  <display_name>Lighting: Garage Usage Multiplier</display_name>
4516
- <description>Multiplier on the lighting energy usage (garage) that can reflect, e.g., high/low usage occupants.</description>
4647
+ <description>Multiplier on the lighting energy usage (garage) that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
4517
4648
  <type>Double</type>
4518
- <required>true</required>
4649
+ <required>false</required>
4519
4650
  <model_dependent>false</model_dependent>
4520
- <default_value>1</default_value>
4521
4651
  </argument>
4522
4652
  <argument>
4523
4653
  <name>holiday_lighting_present</name>
@@ -4541,17 +4671,16 @@
4541
4671
  <argument>
4542
4672
  <name>holiday_lighting_daily_kwh</name>
4543
4673
  <display_name>Holiday Lighting: Daily Consumption</display_name>
4544
- <description>The daily energy consumption for holiday lighting (exterior).</description>
4545
- <type>String</type>
4674
+ <description>The daily energy consumption for holiday lighting (exterior). If not provided, the OS-HPXML default is used.</description>
4675
+ <type>Double</type>
4546
4676
  <units>kWh/day</units>
4547
- <required>true</required>
4677
+ <required>false</required>
4548
4678
  <model_dependent>false</model_dependent>
4549
- <default_value>auto</default_value>
4550
4679
  </argument>
4551
4680
  <argument>
4552
4681
  <name>holiday_lighting_period</name>
4553
4682
  <display_name>Holiday Lighting: Period</display_name>
4554
- <description>Enter a date like "Nov 25 - Jan 5".</description>
4683
+ <description>Enter a date like "Nov 25 - Jan 5". If not provided, the OS-HPXML default is used.</description>
4555
4684
  <type>String</type>
4556
4685
  <required>false</required>
4557
4686
  <model_dependent>false</model_dependent>
@@ -4639,22 +4768,32 @@
4639
4768
  <default_value>1</default_value>
4640
4769
  </argument>
4641
4770
  <argument>
4642
- <name>clothes_washer_location</name>
4643
- <display_name>Clothes Washer: Location</display_name>
4644
- <description>The space type for the clothes washer location.</description>
4645
- <type>Choice</type>
4771
+ <name>clothes_washer_present</name>
4772
+ <display_name>Clothes Washer: Present</display_name>
4773
+ <description>Whether there is a clothes washer present.</description>
4774
+ <type>Boolean</type>
4646
4775
  <required>true</required>
4647
4776
  <model_dependent>false</model_dependent>
4648
- <default_value>auto</default_value>
4777
+ <default_value>true</default_value>
4649
4778
  <choices>
4650
4779
  <choice>
4651
- <value>auto</value>
4652
- <display_name>auto</display_name>
4780
+ <value>true</value>
4781
+ <display_name>true</display_name>
4653
4782
  </choice>
4654
4783
  <choice>
4655
- <value>none</value>
4656
- <display_name>none</display_name>
4784
+ <value>false</value>
4785
+ <display_name>false</display_name>
4657
4786
  </choice>
4787
+ </choices>
4788
+ </argument>
4789
+ <argument>
4790
+ <name>clothes_washer_location</name>
4791
+ <display_name>Clothes Washer: Location</display_name>
4792
+ <description>The space type for the clothes washer location. If not provided, the OS-HPXML default is used.</description>
4793
+ <type>Choice</type>
4794
+ <required>false</required>
4795
+ <model_dependent>false</model_dependent>
4796
+ <choices>
4658
4797
  <choice>
4659
4798
  <value>living space</value>
4660
4799
  <display_name>living space</display_name>
@@ -4711,99 +4850,101 @@
4711
4850
  <argument>
4712
4851
  <name>clothes_washer_efficiency</name>
4713
4852
  <display_name>Clothes Washer: Efficiency</display_name>
4714
- <description>The efficiency of the clothes washer.</description>
4715
- <type>String</type>
4853
+ <description>The efficiency of the clothes washer. If not provided, the OS-HPXML default is used.</description>
4854
+ <type>Double</type>
4716
4855
  <units>ft^3/kWh-cyc</units>
4717
- <required>true</required>
4856
+ <required>false</required>
4718
4857
  <model_dependent>false</model_dependent>
4719
- <default_value>auto</default_value>
4720
4858
  </argument>
4721
4859
  <argument>
4722
4860
  <name>clothes_washer_rated_annual_kwh</name>
4723
4861
  <display_name>Clothes Washer: Rated Annual Consumption</display_name>
4724
- <description>The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating.</description>
4725
- <type>String</type>
4862
+ <description>The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default is used.</description>
4863
+ <type>Double</type>
4726
4864
  <units>kWh/yr</units>
4727
- <required>true</required>
4865
+ <required>false</required>
4728
4866
  <model_dependent>false</model_dependent>
4729
- <default_value>auto</default_value>
4730
4867
  </argument>
4731
4868
  <argument>
4732
4869
  <name>clothes_washer_label_electric_rate</name>
4733
4870
  <display_name>Clothes Washer: Label Electric Rate</display_name>
4734
- <description>The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating.</description>
4735
- <type>String</type>
4871
+ <description>The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default is used.</description>
4872
+ <type>Double</type>
4736
4873
  <units>$/kWh</units>
4737
- <required>true</required>
4874
+ <required>false</required>
4738
4875
  <model_dependent>false</model_dependent>
4739
- <default_value>auto</default_value>
4740
4876
  </argument>
4741
4877
  <argument>
4742
4878
  <name>clothes_washer_label_gas_rate</name>
4743
4879
  <display_name>Clothes Washer: Label Gas Rate</display_name>
4744
- <description>The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating.</description>
4745
- <type>String</type>
4880
+ <description>The annual energy consumed by the clothes washer, as rated, obtained from the EnergyGuide label. This includes both the appliance electricity consumption and the energy required for water heating. If not provided, the OS-HPXML default is used.</description>
4881
+ <type>Double</type>
4746
4882
  <units>$/therm</units>
4747
- <required>true</required>
4883
+ <required>false</required>
4748
4884
  <model_dependent>false</model_dependent>
4749
- <default_value>auto</default_value>
4750
4885
  </argument>
4751
4886
  <argument>
4752
4887
  <name>clothes_washer_label_annual_gas_cost</name>
4753
4888
  <display_name>Clothes Washer: Label Annual Cost with Gas DHW</display_name>
4754
- <description>The annual cost of using the system under test conditions. Input is obtained from the EnergyGuide label.</description>
4755
- <type>String</type>
4889
+ <description>The annual cost of using the system under test conditions. Input is obtained from the EnergyGuide label. If not provided, the OS-HPXML default is used.</description>
4890
+ <type>Double</type>
4756
4891
  <units>$</units>
4757
- <required>true</required>
4892
+ <required>false</required>
4758
4893
  <model_dependent>false</model_dependent>
4759
- <default_value>auto</default_value>
4760
4894
  </argument>
4761
4895
  <argument>
4762
4896
  <name>clothes_washer_label_usage</name>
4763
4897
  <display_name>Clothes Washer: Label Usage</display_name>
4764
- <description>The clothes washer loads per week.</description>
4765
- <type>String</type>
4898
+ <description>The clothes washer loads per week. If not provided, the OS-HPXML default is used.</description>
4899
+ <type>Double</type>
4766
4900
  <units>cyc/wk</units>
4767
- <required>true</required>
4901
+ <required>false</required>
4768
4902
  <model_dependent>false</model_dependent>
4769
- <default_value>auto</default_value>
4770
4903
  </argument>
4771
4904
  <argument>
4772
4905
  <name>clothes_washer_capacity</name>
4773
4906
  <display_name>Clothes Washer: Drum Volume</display_name>
4774
- <description>Volume of the washer drum. Obtained from the EnergyStar website or the manufacturer's literature.</description>
4775
- <type>String</type>
4907
+ <description>Volume of the washer drum. Obtained from the EnergyStar website or the manufacturer's literature. If not provided, the OS-HPXML default is used.</description>
4908
+ <type>Double</type>
4776
4909
  <units>ft^3</units>
4777
- <required>true</required>
4910
+ <required>false</required>
4778
4911
  <model_dependent>false</model_dependent>
4779
- <default_value>auto</default_value>
4780
4912
  </argument>
4781
4913
  <argument>
4782
4914
  <name>clothes_washer_usage_multiplier</name>
4783
4915
  <display_name>Clothes Washer: Usage Multiplier</display_name>
4784
- <description>Multiplier on the clothes washer energy and hot water usage that can reflect, e.g., high/low usage occupants.</description>
4916
+ <description>Multiplier on the clothes washer energy and hot water usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
4785
4917
  <type>Double</type>
4786
- <required>true</required>
4918
+ <required>false</required>
4787
4919
  <model_dependent>false</model_dependent>
4788
- <default_value>1</default_value>
4789
4920
  </argument>
4790
4921
  <argument>
4791
- <name>clothes_dryer_location</name>
4792
- <display_name>Clothes Dryer: Location</display_name>
4793
- <description>The space type for the clothes dryer location.</description>
4794
- <type>Choice</type>
4922
+ <name>clothes_dryer_present</name>
4923
+ <display_name>Clothes Dryer: Present</display_name>
4924
+ <description>Whether there is a clothes dryer present.</description>
4925
+ <type>Boolean</type>
4795
4926
  <required>true</required>
4796
4927
  <model_dependent>false</model_dependent>
4797
- <default_value>auto</default_value>
4928
+ <default_value>true</default_value>
4798
4929
  <choices>
4799
4930
  <choice>
4800
- <value>auto</value>
4801
- <display_name>auto</display_name>
4931
+ <value>true</value>
4932
+ <display_name>true</display_name>
4802
4933
  </choice>
4803
4934
  <choice>
4804
- <value>none</value>
4805
- <display_name>none</display_name>
4935
+ <value>false</value>
4936
+ <display_name>false</display_name>
4806
4937
  </choice>
4938
+ </choices>
4939
+ </argument>
4940
+ <argument>
4941
+ <name>clothes_dryer_location</name>
4942
+ <display_name>Clothes Dryer: Location</display_name>
4943
+ <description>The space type for the clothes dryer location. If not provided, the OS-HPXML default is used.</description>
4944
+ <type>Choice</type>
4945
+ <required>false</required>
4946
+ <model_dependent>false</model_dependent>
4947
+ <choices>
4807
4948
  <choice>
4808
4949
  <value>living space</value>
4809
4950
  <display_name>living space</display_name>
@@ -4895,49 +5036,56 @@
4895
5036
  <argument>
4896
5037
  <name>clothes_dryer_efficiency</name>
4897
5038
  <display_name>Clothes Dryer: Efficiency</display_name>
4898
- <description>The efficiency of the clothes dryer.</description>
4899
- <type>String</type>
5039
+ <description>The efficiency of the clothes dryer. If not provided, the OS-HPXML default is used.</description>
5040
+ <type>Double</type>
4900
5041
  <units>lb/kWh</units>
4901
- <required>true</required>
5042
+ <required>false</required>
4902
5043
  <model_dependent>false</model_dependent>
4903
- <default_value>auto</default_value>
4904
5044
  </argument>
4905
5045
  <argument>
4906
5046
  <name>clothes_dryer_vented_flow_rate</name>
4907
5047
  <display_name>Clothes Dryer: Vented Flow Rate</display_name>
4908
- <description>The exhaust flow rate of the vented clothes dryer.</description>
4909
- <type>String</type>
5048
+ <description>The exhaust flow rate of the vented clothes dryer. If not provided, the OS-HPXML default is used.</description>
5049
+ <type>Double</type>
4910
5050
  <units>CFM</units>
4911
- <required>true</required>
5051
+ <required>false</required>
4912
5052
  <model_dependent>false</model_dependent>
4913
- <default_value>auto</default_value>
4914
5053
  </argument>
4915
5054
  <argument>
4916
5055
  <name>clothes_dryer_usage_multiplier</name>
4917
5056
  <display_name>Clothes Dryer: Usage Multiplier</display_name>
4918
- <description>Multiplier on the clothes dryer energy usage that can reflect, e.g., high/low usage occupants.</description>
5057
+ <description>Multiplier on the clothes dryer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
4919
5058
  <type>Double</type>
4920
- <required>true</required>
5059
+ <required>false</required>
4921
5060
  <model_dependent>false</model_dependent>
4922
- <default_value>1</default_value>
4923
5061
  </argument>
4924
5062
  <argument>
4925
- <name>dishwasher_location</name>
4926
- <display_name>Dishwasher: Location</display_name>
4927
- <description>The space type for the dishwasher location.</description>
4928
- <type>Choice</type>
5063
+ <name>dishwasher_present</name>
5064
+ <display_name>Dishwasher: Present</display_name>
5065
+ <description>Whether there is a dishwasher present.</description>
5066
+ <type>Boolean</type>
4929
5067
  <required>true</required>
4930
5068
  <model_dependent>false</model_dependent>
4931
- <default_value>auto</default_value>
5069
+ <default_value>true</default_value>
4932
5070
  <choices>
4933
5071
  <choice>
4934
- <value>auto</value>
4935
- <display_name>auto</display_name>
5072
+ <value>true</value>
5073
+ <display_name>true</display_name>
4936
5074
  </choice>
4937
5075
  <choice>
4938
- <value>none</value>
4939
- <display_name>none</display_name>
5076
+ <value>false</value>
5077
+ <display_name>false</display_name>
4940
5078
  </choice>
5079
+ </choices>
5080
+ </argument>
5081
+ <argument>
5082
+ <name>dishwasher_location</name>
5083
+ <display_name>Dishwasher: Location</display_name>
5084
+ <description>The space type for the dishwasher location. If not provided, the OS-HPXML default is used.</description>
5085
+ <type>Choice</type>
5086
+ <required>false</required>
5087
+ <model_dependent>false</model_dependent>
5088
+ <choices>
4941
5089
  <choice>
4942
5090
  <value>living space</value>
4943
5091
  <display_name>living space</display_name>
@@ -4994,89 +5142,92 @@
4994
5142
  <argument>
4995
5143
  <name>dishwasher_efficiency</name>
4996
5144
  <display_name>Dishwasher: Efficiency</display_name>
4997
- <description>The efficiency of the dishwasher.</description>
4998
- <type>String</type>
5145
+ <description>The efficiency of the dishwasher. If not provided, the OS-HPXML default is used.</description>
5146
+ <type>Double</type>
4999
5147
  <units>RatedAnnualkWh or EnergyFactor</units>
5000
- <required>true</required>
5148
+ <required>false</required>
5001
5149
  <model_dependent>false</model_dependent>
5002
- <default_value>auto</default_value>
5003
5150
  </argument>
5004
5151
  <argument>
5005
5152
  <name>dishwasher_label_electric_rate</name>
5006
5153
  <display_name>Dishwasher: Label Electric Rate</display_name>
5007
- <description>The label electric rate of the dishwasher.</description>
5008
- <type>String</type>
5154
+ <description>The label electric rate of the dishwasher. If not provided, the OS-HPXML default is used.</description>
5155
+ <type>Double</type>
5009
5156
  <units>$/kWh</units>
5010
- <required>true</required>
5157
+ <required>false</required>
5011
5158
  <model_dependent>false</model_dependent>
5012
- <default_value>auto</default_value>
5013
5159
  </argument>
5014
5160
  <argument>
5015
5161
  <name>dishwasher_label_gas_rate</name>
5016
5162
  <display_name>Dishwasher: Label Gas Rate</display_name>
5017
- <description>The label gas rate of the dishwasher.</description>
5018
- <type>String</type>
5163
+ <description>The label gas rate of the dishwasher. If not provided, the OS-HPXML default is used.</description>
5164
+ <type>Double</type>
5019
5165
  <units>$/therm</units>
5020
- <required>true</required>
5166
+ <required>false</required>
5021
5167
  <model_dependent>false</model_dependent>
5022
- <default_value>auto</default_value>
5023
5168
  </argument>
5024
5169
  <argument>
5025
5170
  <name>dishwasher_label_annual_gas_cost</name>
5026
5171
  <display_name>Dishwasher: Label Annual Gas Cost</display_name>
5027
- <description>The label annual gas cost of the dishwasher.</description>
5028
- <type>String</type>
5172
+ <description>The label annual gas cost of the dishwasher. If not provided, the OS-HPXML default is used.</description>
5173
+ <type>Double</type>
5029
5174
  <units>$</units>
5030
- <required>true</required>
5175
+ <required>false</required>
5031
5176
  <model_dependent>false</model_dependent>
5032
- <default_value>auto</default_value>
5033
5177
  </argument>
5034
5178
  <argument>
5035
5179
  <name>dishwasher_label_usage</name>
5036
5180
  <display_name>Dishwasher: Label Usage</display_name>
5037
- <description>The dishwasher loads per week.</description>
5038
- <type>String</type>
5181
+ <description>The dishwasher loads per week. If not provided, the OS-HPXML default is used.</description>
5182
+ <type>Double</type>
5039
5183
  <units>cyc/wk</units>
5040
- <required>true</required>
5184
+ <required>false</required>
5041
5185
  <model_dependent>false</model_dependent>
5042
- <default_value>auto</default_value>
5043
5186
  </argument>
5044
5187
  <argument>
5045
5188
  <name>dishwasher_place_setting_capacity</name>
5046
5189
  <display_name>Dishwasher: Number of Place Settings</display_name>
5047
- <description>The number of place settings for the unit. Data obtained from manufacturer's literature.</description>
5048
- <type>String</type>
5190
+ <description>The number of place settings for the unit. Data obtained from manufacturer's literature. If not provided, the OS-HPXML default is used.</description>
5191
+ <type>Integer</type>
5049
5192
  <units>#</units>
5050
- <required>true</required>
5193
+ <required>false</required>
5051
5194
  <model_dependent>false</model_dependent>
5052
- <default_value>auto</default_value>
5053
5195
  </argument>
5054
5196
  <argument>
5055
5197
  <name>dishwasher_usage_multiplier</name>
5056
5198
  <display_name>Dishwasher: Usage Multiplier</display_name>
5057
- <description>Multiplier on the dishwasher energy usage that can reflect, e.g., high/low usage occupants.</description>
5199
+ <description>Multiplier on the dishwasher energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
5058
5200
  <type>Double</type>
5059
- <required>true</required>
5201
+ <required>false</required>
5060
5202
  <model_dependent>false</model_dependent>
5061
- <default_value>1</default_value>
5062
5203
  </argument>
5063
5204
  <argument>
5064
- <name>refrigerator_location</name>
5065
- <display_name>Refrigerator: Location</display_name>
5066
- <description>The space type for the refrigerator location.</description>
5067
- <type>Choice</type>
5205
+ <name>refrigerator_present</name>
5206
+ <display_name>Refrigerator: Present</display_name>
5207
+ <description>Whether there is a refrigerator present.</description>
5208
+ <type>Boolean</type>
5068
5209
  <required>true</required>
5069
5210
  <model_dependent>false</model_dependent>
5070
- <default_value>auto</default_value>
5211
+ <default_value>true</default_value>
5071
5212
  <choices>
5072
5213
  <choice>
5073
- <value>auto</value>
5074
- <display_name>auto</display_name>
5214
+ <value>true</value>
5215
+ <display_name>true</display_name>
5075
5216
  </choice>
5076
5217
  <choice>
5077
- <value>none</value>
5078
- <display_name>none</display_name>
5218
+ <value>false</value>
5219
+ <display_name>false</display_name>
5079
5220
  </choice>
5221
+ </choices>
5222
+ </argument>
5223
+ <argument>
5224
+ <name>refrigerator_location</name>
5225
+ <display_name>Refrigerator: Location</display_name>
5226
+ <description>The space type for the refrigerator location. If not provided, the OS-HPXML default is used.</description>
5227
+ <type>Choice</type>
5228
+ <required>false</required>
5229
+ <model_dependent>false</model_dependent>
5230
+ <choices>
5080
5231
  <choice>
5081
5232
  <value>living space</value>
5082
5233
  <display_name>living space</display_name>
@@ -5114,39 +5265,47 @@
5114
5265
  <argument>
5115
5266
  <name>refrigerator_rated_annual_kwh</name>
5116
5267
  <display_name>Refrigerator: Rated Annual Consumption</display_name>
5117
- <description>The EnergyGuide rated annual energy consumption for a refrigerator.</description>
5118
- <type>String</type>
5268
+ <description>The EnergyGuide rated annual energy consumption for a refrigerator. If not provided, the OS-HPXML default is used.</description>
5269
+ <type>Double</type>
5119
5270
  <units>kWh/yr</units>
5120
- <required>true</required>
5271
+ <required>false</required>
5121
5272
  <model_dependent>false</model_dependent>
5122
- <default_value>auto</default_value>
5123
5273
  </argument>
5124
5274
  <argument>
5125
5275
  <name>refrigerator_usage_multiplier</name>
5126
5276
  <display_name>Refrigerator: Usage Multiplier</display_name>
5127
- <description>Multiplier on the refrigerator energy usage that can reflect, e.g., high/low usage occupants.</description>
5277
+ <description>Multiplier on the refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
5128
5278
  <type>Double</type>
5129
- <required>true</required>
5279
+ <required>false</required>
5130
5280
  <model_dependent>false</model_dependent>
5131
- <default_value>1</default_value>
5132
5281
  </argument>
5133
5282
  <argument>
5134
- <name>extra_refrigerator_location</name>
5135
- <display_name>Extra Refrigerator: Location</display_name>
5136
- <description>The space type for the extra refrigerator location.</description>
5137
- <type>Choice</type>
5283
+ <name>extra_refrigerator_present</name>
5284
+ <display_name>Extra Refrigerator: Present</display_name>
5285
+ <description>Whether there is an extra refrigerator present.</description>
5286
+ <type>Boolean</type>
5138
5287
  <required>true</required>
5139
5288
  <model_dependent>false</model_dependent>
5140
- <default_value>none</default_value>
5289
+ <default_value>false</default_value>
5141
5290
  <choices>
5142
5291
  <choice>
5143
- <value>auto</value>
5144
- <display_name>auto</display_name>
5292
+ <value>true</value>
5293
+ <display_name>true</display_name>
5145
5294
  </choice>
5146
5295
  <choice>
5147
- <value>none</value>
5148
- <display_name>none</display_name>
5296
+ <value>false</value>
5297
+ <display_name>false</display_name>
5149
5298
  </choice>
5299
+ </choices>
5300
+ </argument>
5301
+ <argument>
5302
+ <name>extra_refrigerator_location</name>
5303
+ <display_name>Extra Refrigerator: Location</display_name>
5304
+ <description>The space type for the extra refrigerator location. If not provided, the OS-HPXML default is used.</description>
5305
+ <type>Choice</type>
5306
+ <required>false</required>
5307
+ <model_dependent>false</model_dependent>
5308
+ <choices>
5150
5309
  <choice>
5151
5310
  <value>living space</value>
5152
5311
  <display_name>living space</display_name>
@@ -5184,39 +5343,47 @@
5184
5343
  <argument>
5185
5344
  <name>extra_refrigerator_rated_annual_kwh</name>
5186
5345
  <display_name>Extra Refrigerator: Rated Annual Consumption</display_name>
5187
- <description>The EnergyGuide rated annual energy consumption for an extra rrefrigerator.</description>
5188
- <type>String</type>
5346
+ <description>The EnergyGuide rated annual energy consumption for an extra rrefrigerator. If not provided, the OS-HPXML default is used.</description>
5347
+ <type>Double</type>
5189
5348
  <units>kWh/yr</units>
5190
- <required>true</required>
5349
+ <required>false</required>
5191
5350
  <model_dependent>false</model_dependent>
5192
- <default_value>auto</default_value>
5193
5351
  </argument>
5194
5352
  <argument>
5195
5353
  <name>extra_refrigerator_usage_multiplier</name>
5196
5354
  <display_name>Extra Refrigerator: Usage Multiplier</display_name>
5197
- <description>Multiplier on the extra refrigerator energy usage that can reflect, e.g., high/low usage occupants.</description>
5355
+ <description>Multiplier on the extra refrigerator energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
5198
5356
  <type>Double</type>
5199
- <required>true</required>
5357
+ <required>false</required>
5200
5358
  <model_dependent>false</model_dependent>
5201
- <default_value>1</default_value>
5202
5359
  </argument>
5203
5360
  <argument>
5204
- <name>freezer_location</name>
5205
- <display_name>Freezer: Location</display_name>
5206
- <description>The space type for the freezer location.</description>
5207
- <type>Choice</type>
5361
+ <name>freezer_present</name>
5362
+ <display_name>Freezer: Present</display_name>
5363
+ <description>Whether there is a freezer present.</description>
5364
+ <type>Boolean</type>
5208
5365
  <required>true</required>
5209
5366
  <model_dependent>false</model_dependent>
5210
- <default_value>none</default_value>
5367
+ <default_value>false</default_value>
5211
5368
  <choices>
5212
5369
  <choice>
5213
- <value>auto</value>
5214
- <display_name>auto</display_name>
5370
+ <value>true</value>
5371
+ <display_name>true</display_name>
5215
5372
  </choice>
5216
5373
  <choice>
5217
- <value>none</value>
5218
- <display_name>none</display_name>
5374
+ <value>false</value>
5375
+ <display_name>false</display_name>
5219
5376
  </choice>
5377
+ </choices>
5378
+ </argument>
5379
+ <argument>
5380
+ <name>freezer_location</name>
5381
+ <display_name>Freezer: Location</display_name>
5382
+ <description>The space type for the freezer location. If not provided, the OS-HPXML default is used.</description>
5383
+ <type>Choice</type>
5384
+ <required>false</required>
5385
+ <model_dependent>false</model_dependent>
5386
+ <choices>
5220
5387
  <choice>
5221
5388
  <value>living space</value>
5222
5389
  <display_name>living space</display_name>
@@ -5254,39 +5421,47 @@
5254
5421
  <argument>
5255
5422
  <name>freezer_rated_annual_kwh</name>
5256
5423
  <display_name>Freezer: Rated Annual Consumption</display_name>
5257
- <description>The EnergyGuide rated annual energy consumption for a freezer.</description>
5258
- <type>String</type>
5424
+ <description>The EnergyGuide rated annual energy consumption for a freezer. If not provided, the OS-HPXML default is used.</description>
5425
+ <type>Double</type>
5259
5426
  <units>kWh/yr</units>
5260
- <required>true</required>
5427
+ <required>false</required>
5261
5428
  <model_dependent>false</model_dependent>
5262
- <default_value>auto</default_value>
5263
5429
  </argument>
5264
5430
  <argument>
5265
5431
  <name>freezer_usage_multiplier</name>
5266
5432
  <display_name>Freezer: Usage Multiplier</display_name>
5267
- <description>Multiplier on the freezer energy usage that can reflect, e.g., high/low usage occupants.</description>
5433
+ <description>Multiplier on the freezer energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
5268
5434
  <type>Double</type>
5269
- <required>true</required>
5435
+ <required>false</required>
5270
5436
  <model_dependent>false</model_dependent>
5271
- <default_value>1</default_value>
5272
5437
  </argument>
5273
5438
  <argument>
5274
- <name>cooking_range_oven_location</name>
5275
- <display_name>Cooking Range/Oven: Location</display_name>
5276
- <description>The space type for the cooking range/oven location.</description>
5277
- <type>Choice</type>
5439
+ <name>cooking_range_oven_present</name>
5440
+ <display_name>Cooking Range/Oven: Present</display_name>
5441
+ <description>Whether there is a cooking range/oven present.</description>
5442
+ <type>Boolean</type>
5278
5443
  <required>true</required>
5279
5444
  <model_dependent>false</model_dependent>
5280
- <default_value>auto</default_value>
5445
+ <default_value>true</default_value>
5281
5446
  <choices>
5282
5447
  <choice>
5283
- <value>auto</value>
5284
- <display_name>auto</display_name>
5448
+ <value>true</value>
5449
+ <display_name>true</display_name>
5285
5450
  </choice>
5286
5451
  <choice>
5287
- <value>none</value>
5288
- <display_name>none</display_name>
5452
+ <value>false</value>
5453
+ <display_name>false</display_name>
5289
5454
  </choice>
5455
+ </choices>
5456
+ </argument>
5457
+ <argument>
5458
+ <name>cooking_range_oven_location</name>
5459
+ <display_name>Cooking Range/Oven: Location</display_name>
5460
+ <description>The space type for the cooking range/oven location. If not provided, the OS-HPXML default is used.</description>
5461
+ <type>Choice</type>
5462
+ <required>false</required>
5463
+ <model_dependent>false</model_dependent>
5464
+ <choices>
5290
5465
  <choice>
5291
5466
  <value>living space</value>
5292
5467
  <display_name>living space</display_name>
@@ -5359,7 +5534,7 @@
5359
5534
  <argument>
5360
5535
  <name>cooking_range_oven_is_induction</name>
5361
5536
  <display_name>Cooking Range/Oven: Is Induction</display_name>
5362
- <description>Whether the cooking range is induction.</description>
5537
+ <description>Whether the cooking range is induction. If not provided, the OS-HPXML default is used.</description>
5363
5538
  <type>Boolean</type>
5364
5539
  <required>false</required>
5365
5540
  <model_dependent>false</model_dependent>
@@ -5377,7 +5552,7 @@
5377
5552
  <argument>
5378
5553
  <name>cooking_range_oven_is_convection</name>
5379
5554
  <display_name>Cooking Range/Oven: Is Convection</display_name>
5380
- <description>Whether the oven is convection.</description>
5555
+ <description>Whether the oven is convection. If not provided, the OS-HPXML default is used.</description>
5381
5556
  <type>Boolean</type>
5382
5557
  <required>false</required>
5383
5558
  <model_dependent>false</model_dependent>
@@ -5395,16 +5570,15 @@
5395
5570
  <argument>
5396
5571
  <name>cooking_range_oven_usage_multiplier</name>
5397
5572
  <display_name>Cooking Range/Oven: Usage Multiplier</display_name>
5398
- <description>Multiplier on the cooking range/oven energy usage that can reflect, e.g., high/low usage occupants.</description>
5573
+ <description>Multiplier on the cooking range/oven energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
5399
5574
  <type>Double</type>
5400
- <required>true</required>
5575
+ <required>false</required>
5401
5576
  <model_dependent>false</model_dependent>
5402
- <default_value>1</default_value>
5403
5577
  </argument>
5404
5578
  <argument>
5405
5579
  <name>ceiling_fan_present</name>
5406
5580
  <display_name>Ceiling Fan: Present</display_name>
5407
- <description>Whether there is are any ceiling fans.</description>
5581
+ <description>Whether there are any ceiling fans.</description>
5408
5582
  <type>Boolean</type>
5409
5583
  <required>true</required>
5410
5584
  <model_dependent>false</model_dependent>
@@ -5423,32 +5597,29 @@
5423
5597
  <argument>
5424
5598
  <name>ceiling_fan_efficiency</name>
5425
5599
  <display_name>Ceiling Fan: Efficiency</display_name>
5426
- <description>The efficiency rating of the ceiling fan(s) at medium speed.</description>
5427
- <type>String</type>
5600
+ <description>The efficiency rating of the ceiling fan(s) at medium speed. If not provided, the OS-HPXML default is used.</description>
5601
+ <type>Double</type>
5428
5602
  <units>CFM/W</units>
5429
- <required>true</required>
5603
+ <required>false</required>
5430
5604
  <model_dependent>false</model_dependent>
5431
- <default_value>auto</default_value>
5432
5605
  </argument>
5433
5606
  <argument>
5434
5607
  <name>ceiling_fan_quantity</name>
5435
5608
  <display_name>Ceiling Fan: Quantity</display_name>
5436
- <description>Total number of ceiling fans.</description>
5437
- <type>String</type>
5609
+ <description>Total number of ceiling fans. If not provided, the OS-HPXML default is used.</description>
5610
+ <type>Integer</type>
5438
5611
  <units>#</units>
5439
- <required>true</required>
5612
+ <required>false</required>
5440
5613
  <model_dependent>false</model_dependent>
5441
- <default_value>auto</default_value>
5442
5614
  </argument>
5443
5615
  <argument>
5444
5616
  <name>ceiling_fan_cooling_setpoint_temp_offset</name>
5445
5617
  <display_name>Ceiling Fan: Cooling Setpoint Temperature Offset</display_name>
5446
- <description>The setpoint temperature offset during cooling season for the ceiling fan(s). Only applies if ceiling fan quantity is greater than zero.</description>
5618
+ <description>The setpoint temperature offset during cooling season for the ceiling fan(s). Only applies if ceiling fan quantity is greater than zero. If not provided, the OS-HPXML default is used.</description>
5447
5619
  <type>Double</type>
5448
5620
  <units>deg-F</units>
5449
- <required>true</required>
5621
+ <required>false</required>
5450
5622
  <model_dependent>false</model_dependent>
5451
- <default_value>0</default_value>
5452
5623
  </argument>
5453
5624
  <argument>
5454
5625
  <name>misc_plug_loads_television_present</name>
@@ -5472,60 +5643,54 @@
5472
5643
  <argument>
5473
5644
  <name>misc_plug_loads_television_annual_kwh</name>
5474
5645
  <display_name>Misc Plug Loads: Television Annual kWh</display_name>
5475
- <description>The annual energy consumption of the television plug loads.</description>
5476
- <type>String</type>
5646
+ <description>The annual energy consumption of the television plug loads. If not provided, the OS-HPXML default is used.</description>
5647
+ <type>Double</type>
5477
5648
  <units>kWh/yr</units>
5478
- <required>true</required>
5649
+ <required>false</required>
5479
5650
  <model_dependent>false</model_dependent>
5480
- <default_value>auto</default_value>
5481
5651
  </argument>
5482
5652
  <argument>
5483
5653
  <name>misc_plug_loads_television_usage_multiplier</name>
5484
5654
  <display_name>Misc Plug Loads: Television Usage Multiplier</display_name>
5485
- <description>Multiplier on the television energy usage that can reflect, e.g., high/low usage occupants.</description>
5655
+ <description>Multiplier on the television energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
5486
5656
  <type>Double</type>
5487
- <required>true</required>
5657
+ <required>false</required>
5488
5658
  <model_dependent>false</model_dependent>
5489
- <default_value>1</default_value>
5490
5659
  </argument>
5491
5660
  <argument>
5492
5661
  <name>misc_plug_loads_other_annual_kwh</name>
5493
5662
  <display_name>Misc Plug Loads: Other Annual kWh</display_name>
5494
- <description>The annual energy consumption of the other residual plug loads.</description>
5495
- <type>String</type>
5663
+ <description>The annual energy consumption of the other residual plug loads. If not provided, the OS-HPXML default is used.</description>
5664
+ <type>Double</type>
5496
5665
  <units>kWh/yr</units>
5497
- <required>true</required>
5666
+ <required>false</required>
5498
5667
  <model_dependent>false</model_dependent>
5499
- <default_value>auto</default_value>
5500
5668
  </argument>
5501
5669
  <argument>
5502
5670
  <name>misc_plug_loads_other_frac_sensible</name>
5503
5671
  <display_name>Misc Plug Loads: Other Sensible Fraction</display_name>
5504
- <description>Fraction of other residual plug loads' internal gains that are sensible.</description>
5505
- <type>String</type>
5672
+ <description>Fraction of other residual plug loads' internal gains that are sensible. If not provided, the OS-HPXML default is used.</description>
5673
+ <type>Double</type>
5506
5674
  <units>Frac</units>
5507
- <required>true</required>
5675
+ <required>false</required>
5508
5676
  <model_dependent>false</model_dependent>
5509
- <default_value>auto</default_value>
5510
5677
  </argument>
5511
5678
  <argument>
5512
5679
  <name>misc_plug_loads_other_frac_latent</name>
5513
5680
  <display_name>Misc Plug Loads: Other Latent Fraction</display_name>
5514
- <description>Fraction of other residual plug loads' internal gains that are latent.</description>
5515
- <type>String</type>
5681
+ <description>Fraction of other residual plug loads' internal gains that are latent. If not provided, the OS-HPXML default is used.</description>
5682
+ <type>Double</type>
5516
5683
  <units>Frac</units>
5517
- <required>true</required>
5684
+ <required>false</required>
5518
5685
  <model_dependent>false</model_dependent>
5519
- <default_value>auto</default_value>
5520
5686
  </argument>
5521
5687
  <argument>
5522
5688
  <name>misc_plug_loads_other_usage_multiplier</name>
5523
5689
  <display_name>Misc Plug Loads: Other Usage Multiplier</display_name>
5524
- <description>Multiplier on the other energy usage that can reflect, e.g., high/low usage occupants.</description>
5690
+ <description>Multiplier on the other energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
5525
5691
  <type>Double</type>
5526
- <required>true</required>
5692
+ <required>false</required>
5527
5693
  <model_dependent>false</model_dependent>
5528
- <default_value>1</default_value>
5529
5694
  </argument>
5530
5695
  <argument>
5531
5696
  <name>misc_plug_loads_well_pump_present</name>
@@ -5549,21 +5714,19 @@
5549
5714
  <argument>
5550
5715
  <name>misc_plug_loads_well_pump_annual_kwh</name>
5551
5716
  <display_name>Misc Plug Loads: Well Pump Annual kWh</display_name>
5552
- <description>The annual energy consumption of the well pump plug loads.</description>
5553
- <type>String</type>
5717
+ <description>The annual energy consumption of the well pump plug loads. If not provided, the OS-HPXML default is used.</description>
5718
+ <type>Double</type>
5554
5719
  <units>kWh/yr</units>
5555
- <required>true</required>
5720
+ <required>false</required>
5556
5721
  <model_dependent>false</model_dependent>
5557
- <default_value>auto</default_value>
5558
5722
  </argument>
5559
5723
  <argument>
5560
5724
  <name>misc_plug_loads_well_pump_usage_multiplier</name>
5561
5725
  <display_name>Misc Plug Loads: Well Pump Usage Multiplier</display_name>
5562
- <description>Multiplier on the well pump energy usage that can reflect, e.g., high/low usage occupants.</description>
5726
+ <description>Multiplier on the well pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
5563
5727
  <type>Double</type>
5564
- <required>true</required>
5728
+ <required>false</required>
5565
5729
  <model_dependent>false</model_dependent>
5566
- <default_value>1</default_value>
5567
5730
  </argument>
5568
5731
  <argument>
5569
5732
  <name>misc_plug_loads_vehicle_present</name>
@@ -5587,21 +5750,19 @@
5587
5750
  <argument>
5588
5751
  <name>misc_plug_loads_vehicle_annual_kwh</name>
5589
5752
  <display_name>Misc Plug Loads: Vehicle Annual kWh</display_name>
5590
- <description>The annual energy consumption of the electric vehicle plug loads.</description>
5591
- <type>String</type>
5753
+ <description>The annual energy consumption of the electric vehicle plug loads. If not provided, the OS-HPXML default is used.</description>
5754
+ <type>Double</type>
5592
5755
  <units>kWh/yr</units>
5593
- <required>true</required>
5756
+ <required>false</required>
5594
5757
  <model_dependent>false</model_dependent>
5595
- <default_value>auto</default_value>
5596
5758
  </argument>
5597
5759
  <argument>
5598
5760
  <name>misc_plug_loads_vehicle_usage_multiplier</name>
5599
5761
  <display_name>Misc Plug Loads: Vehicle Usage Multiplier</display_name>
5600
- <description>Multiplier on the electric vehicle energy usage that can reflect, e.g., high/low usage occupants.</description>
5762
+ <description>Multiplier on the electric vehicle energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
5601
5763
  <type>Double</type>
5602
- <required>true</required>
5764
+ <required>false</required>
5603
5765
  <model_dependent>false</model_dependent>
5604
- <default_value>1</default_value>
5605
5766
  </argument>
5606
5767
  <argument>
5607
5768
  <name>misc_fuel_loads_grill_present</name>
@@ -5656,21 +5817,19 @@
5656
5817
  <argument>
5657
5818
  <name>misc_fuel_loads_grill_annual_therm</name>
5658
5819
  <display_name>Misc Fuel Loads: Grill Annual therm</display_name>
5659
- <description>The annual energy consumption of the fuel loads grill.</description>
5660
- <type>String</type>
5820
+ <description>The annual energy consumption of the fuel loads grill. If not provided, the OS-HPXML default is used.</description>
5821
+ <type>Double</type>
5661
5822
  <units>therm/yr</units>
5662
- <required>true</required>
5823
+ <required>false</required>
5663
5824
  <model_dependent>false</model_dependent>
5664
- <default_value>auto</default_value>
5665
5825
  </argument>
5666
5826
  <argument>
5667
5827
  <name>misc_fuel_loads_grill_usage_multiplier</name>
5668
5828
  <display_name>Misc Fuel Loads: Grill Usage Multiplier</display_name>
5669
- <description>Multiplier on the fuel loads grill energy usage that can reflect, e.g., high/low usage occupants.</description>
5829
+ <description>Multiplier on the fuel loads grill energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
5670
5830
  <type>Double</type>
5671
- <required>true</required>
5831
+ <required>false</required>
5672
5832
  <model_dependent>false</model_dependent>
5673
- <default_value>0</default_value>
5674
5833
  </argument>
5675
5834
  <argument>
5676
5835
  <name>misc_fuel_loads_lighting_present</name>
@@ -5725,21 +5884,19 @@
5725
5884
  <argument>
5726
5885
  <name>misc_fuel_loads_lighting_annual_therm</name>
5727
5886
  <display_name>Misc Fuel Loads: Lighting Annual therm</display_name>
5728
- <description>The annual energy consumption of the fuel loads lighting.</description>
5729
- <type>String</type>
5887
+ <description>The annual energy consumption of the fuel loads lighting. If not provided, the OS-HPXML default is used.</description>
5888
+ <type>Double</type>
5730
5889
  <units>therm/yr</units>
5731
- <required>true</required>
5890
+ <required>false</required>
5732
5891
  <model_dependent>false</model_dependent>
5733
- <default_value>auto</default_value>
5734
5892
  </argument>
5735
5893
  <argument>
5736
5894
  <name>misc_fuel_loads_lighting_usage_multiplier</name>
5737
5895
  <display_name>Misc Fuel Loads: Lighting Usage Multiplier</display_name>
5738
- <description>Multiplier on the fuel loads lighting energy usage that can reflect, e.g., high/low usage occupants.</description>
5896
+ <description>Multiplier on the fuel loads lighting energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
5739
5897
  <type>Double</type>
5740
- <required>true</required>
5898
+ <required>false</required>
5741
5899
  <model_dependent>false</model_dependent>
5742
- <default_value>0</default_value>
5743
5900
  </argument>
5744
5901
  <argument>
5745
5902
  <name>misc_fuel_loads_fireplace_present</name>
@@ -5794,41 +5951,37 @@
5794
5951
  <argument>
5795
5952
  <name>misc_fuel_loads_fireplace_annual_therm</name>
5796
5953
  <display_name>Misc Fuel Loads: Fireplace Annual therm</display_name>
5797
- <description>The annual energy consumption of the fuel loads fireplace.</description>
5798
- <type>String</type>
5954
+ <description>The annual energy consumption of the fuel loads fireplace. If not provided, the OS-HPXML default is used.</description>
5955
+ <type>Double</type>
5799
5956
  <units>therm/yr</units>
5800
- <required>true</required>
5957
+ <required>false</required>
5801
5958
  <model_dependent>false</model_dependent>
5802
- <default_value>auto</default_value>
5803
5959
  </argument>
5804
5960
  <argument>
5805
5961
  <name>misc_fuel_loads_fireplace_frac_sensible</name>
5806
5962
  <display_name>Misc Fuel Loads: Fireplace Sensible Fraction</display_name>
5807
- <description>Fraction of fireplace residual fuel loads' internal gains that are sensible.</description>
5808
- <type>String</type>
5963
+ <description>Fraction of fireplace residual fuel loads' internal gains that are sensible. If not provided, the OS-HPXML default is used.</description>
5964
+ <type>Double</type>
5809
5965
  <units>Frac</units>
5810
- <required>true</required>
5966
+ <required>false</required>
5811
5967
  <model_dependent>false</model_dependent>
5812
- <default_value>auto</default_value>
5813
5968
  </argument>
5814
5969
  <argument>
5815
5970
  <name>misc_fuel_loads_fireplace_frac_latent</name>
5816
5971
  <display_name>Misc Fuel Loads: Fireplace Latent Fraction</display_name>
5817
- <description>Fraction of fireplace residual fuel loads' internal gains that are latent.</description>
5818
- <type>String</type>
5972
+ <description>Fraction of fireplace residual fuel loads' internal gains that are latent. If not provided, the OS-HPXML default is used.</description>
5973
+ <type>Double</type>
5819
5974
  <units>Frac</units>
5820
- <required>true</required>
5975
+ <required>false</required>
5821
5976
  <model_dependent>false</model_dependent>
5822
- <default_value>auto</default_value>
5823
5977
  </argument>
5824
5978
  <argument>
5825
5979
  <name>misc_fuel_loads_fireplace_usage_multiplier</name>
5826
5980
  <display_name>Misc Fuel Loads: Fireplace Usage Multiplier</display_name>
5827
- <description>Multiplier on the fuel loads fireplace energy usage that can reflect, e.g., high/low usage occupants.</description>
5981
+ <description>Multiplier on the fuel loads fireplace energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
5828
5982
  <type>Double</type>
5829
- <required>true</required>
5983
+ <required>false</required>
5830
5984
  <model_dependent>false</model_dependent>
5831
- <default_value>0</default_value>
5832
5985
  </argument>
5833
5986
  <argument>
5834
5987
  <name>pool_present</name>
@@ -5852,21 +6005,19 @@
5852
6005
  <argument>
5853
6006
  <name>pool_pump_annual_kwh</name>
5854
6007
  <display_name>Pool: Pump Annual kWh</display_name>
5855
- <description>The annual energy consumption of the pool pump.</description>
5856
- <type>String</type>
6008
+ <description>The annual energy consumption of the pool pump. If not provided, the OS-HPXML default is used.</description>
6009
+ <type>Double</type>
5857
6010
  <units>kWh/yr</units>
5858
- <required>true</required>
6011
+ <required>false</required>
5859
6012
  <model_dependent>false</model_dependent>
5860
- <default_value>auto</default_value>
5861
6013
  </argument>
5862
6014
  <argument>
5863
6015
  <name>pool_pump_usage_multiplier</name>
5864
6016
  <display_name>Pool: Pump Usage Multiplier</display_name>
5865
- <description>Multiplier on the pool pump energy usage that can reflect, e.g., high/low usage occupants.</description>
6017
+ <description>Multiplier on the pool pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
5866
6018
  <type>Double</type>
5867
- <required>true</required>
6019
+ <required>false</required>
5868
6020
  <model_dependent>false</model_dependent>
5869
- <default_value>1</default_value>
5870
6021
  </argument>
5871
6022
  <argument>
5872
6023
  <name>pool_heater_type</name>
@@ -5898,31 +6049,28 @@
5898
6049
  <argument>
5899
6050
  <name>pool_heater_annual_kwh</name>
5900
6051
  <display_name>Pool: Heater Annual kWh</display_name>
5901
- <description>The annual energy consumption of the electric resistance pool heater.</description>
5902
- <type>String</type>
6052
+ <description>The annual energy consumption of the electric resistance pool heater. If not provided, the OS-HPXML default is used.</description>
6053
+ <type>Double</type>
5903
6054
  <units>kWh/yr</units>
5904
- <required>true</required>
6055
+ <required>false</required>
5905
6056
  <model_dependent>false</model_dependent>
5906
- <default_value>auto</default_value>
5907
6057
  </argument>
5908
6058
  <argument>
5909
6059
  <name>pool_heater_annual_therm</name>
5910
6060
  <display_name>Pool: Heater Annual therm</display_name>
5911
- <description>The annual energy consumption of the gas fired pool heater.</description>
5912
- <type>String</type>
6061
+ <description>The annual energy consumption of the gas fired pool heater. If not provided, the OS-HPXML default is used.</description>
6062
+ <type>Double</type>
5913
6063
  <units>therm/yr</units>
5914
- <required>true</required>
6064
+ <required>false</required>
5915
6065
  <model_dependent>false</model_dependent>
5916
- <default_value>auto</default_value>
5917
6066
  </argument>
5918
6067
  <argument>
5919
6068
  <name>pool_heater_usage_multiplier</name>
5920
6069
  <display_name>Pool: Heater Usage Multiplier</display_name>
5921
- <description>Multiplier on the pool heater energy usage that can reflect, e.g., high/low usage occupants.</description>
6070
+ <description>Multiplier on the pool heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
5922
6071
  <type>Double</type>
5923
- <required>true</required>
6072
+ <required>false</required>
5924
6073
  <model_dependent>false</model_dependent>
5925
- <default_value>1</default_value>
5926
6074
  </argument>
5927
6075
  <argument>
5928
6076
  <name>hot_tub_present</name>
@@ -5946,21 +6094,19 @@
5946
6094
  <argument>
5947
6095
  <name>hot_tub_pump_annual_kwh</name>
5948
6096
  <display_name>Hot Tub: Pump Annual kWh</display_name>
5949
- <description>The annual energy consumption of the hot tub pump.</description>
5950
- <type>String</type>
6097
+ <description>The annual energy consumption of the hot tub pump. If not provided, the OS-HPXML default is used.</description>
6098
+ <type>Double</type>
5951
6099
  <units>kWh/yr</units>
5952
- <required>true</required>
6100
+ <required>false</required>
5953
6101
  <model_dependent>false</model_dependent>
5954
- <default_value>auto</default_value>
5955
6102
  </argument>
5956
6103
  <argument>
5957
6104
  <name>hot_tub_pump_usage_multiplier</name>
5958
6105
  <display_name>Hot Tub: Pump Usage Multiplier</display_name>
5959
- <description>Multiplier on the hot tub pump energy usage that can reflect, e.g., high/low usage occupants.</description>
6106
+ <description>Multiplier on the hot tub pump energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
5960
6107
  <type>Double</type>
5961
- <required>true</required>
6108
+ <required>false</required>
5962
6109
  <model_dependent>false</model_dependent>
5963
- <default_value>1</default_value>
5964
6110
  </argument>
5965
6111
  <argument>
5966
6112
  <name>hot_tub_heater_type</name>
@@ -5992,36 +6138,33 @@
5992
6138
  <argument>
5993
6139
  <name>hot_tub_heater_annual_kwh</name>
5994
6140
  <display_name>Hot Tub: Heater Annual kWh</display_name>
5995
- <description>The annual energy consumption of the electric resistance hot tub heater.</description>
5996
- <type>String</type>
6141
+ <description>The annual energy consumption of the electric resistance hot tub heater. If not provided, the OS-HPXML default is used.</description>
6142
+ <type>Double</type>
5997
6143
  <units>kWh/yr</units>
5998
- <required>true</required>
6144
+ <required>false</required>
5999
6145
  <model_dependent>false</model_dependent>
6000
- <default_value>auto</default_value>
6001
6146
  </argument>
6002
6147
  <argument>
6003
6148
  <name>hot_tub_heater_annual_therm</name>
6004
6149
  <display_name>Hot Tub: Heater Annual therm</display_name>
6005
- <description>The annual energy consumption of the gas fired hot tub heater.</description>
6006
- <type>String</type>
6150
+ <description>The annual energy consumption of the gas fired hot tub heater. If not provided, the OS-HPXML default is used.</description>
6151
+ <type>Double</type>
6007
6152
  <units>therm/yr</units>
6008
- <required>true</required>
6153
+ <required>false</required>
6009
6154
  <model_dependent>false</model_dependent>
6010
- <default_value>auto</default_value>
6011
6155
  </argument>
6012
6156
  <argument>
6013
6157
  <name>hot_tub_heater_usage_multiplier</name>
6014
6158
  <display_name>Hot Tub: Heater Usage Multiplier</display_name>
6015
- <description>Multiplier on the hot tub heater energy usage that can reflect, e.g., high/low usage occupants.</description>
6159
+ <description>Multiplier on the hot tub heater energy usage that can reflect, e.g., high/low usage occupants. If not provided, the OS-HPXML default is used.</description>
6016
6160
  <type>Double</type>
6017
- <required>true</required>
6161
+ <required>false</required>
6018
6162
  <model_dependent>false</model_dependent>
6019
- <default_value>1</default_value>
6020
6163
  </argument>
6021
6164
  <argument>
6022
6165
  <name>emissions_scenario_names</name>
6023
6166
  <display_name>Emissions: Scenario Names</display_name>
6024
- <description>Names of emissions scenarios. If multiple scenarios, use a comma-separated list.</description>
6167
+ <description>Names of emissions scenarios. If multiple scenarios, use a comma-separated list. If not provided, no emissions scenarios are calculated.</description>
6025
6168
  <type>String</type>
6026
6169
  <required>false</required>
6027
6170
  <model_dependent>false</model_dependent>
@@ -6122,6 +6265,182 @@
6122
6265
  <required>false</required>
6123
6266
  <model_dependent>false</model_dependent>
6124
6267
  </argument>
6268
+ <argument>
6269
+ <name>utility_bill_scenario_names</name>
6270
+ <display_name>Utility Bills: Scenario Names</display_name>
6271
+ <description>Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If not provided, no utility bills scenarios are calculated.</description>
6272
+ <type>String</type>
6273
+ <required>false</required>
6274
+ <model_dependent>false</model_dependent>
6275
+ </argument>
6276
+ <argument>
6277
+ <name>utility_bill_electricity_filepaths</name>
6278
+ <display_name>Utility Bills: Electricity File Paths</display_name>
6279
+ <description>Electricity tariff file specified as an absolute/relative path to a file with utility rate structure information. Tariff file must be formatted to OpenEI API version 7. If multiple scenarios, use a comma-separated list.</description>
6280
+ <type>String</type>
6281
+ <required>false</required>
6282
+ <model_dependent>false</model_dependent>
6283
+ </argument>
6284
+ <argument>
6285
+ <name>utility_bill_electricity_fixed_charges</name>
6286
+ <display_name>Utility Bills: Electricity Fixed Charges</display_name>
6287
+ <description>Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list.</description>
6288
+ <type>String</type>
6289
+ <required>false</required>
6290
+ <model_dependent>false</model_dependent>
6291
+ </argument>
6292
+ <argument>
6293
+ <name>utility_bill_natural_gas_fixed_charges</name>
6294
+ <display_name>Utility Bills: Natural Gas Fixed Charges</display_name>
6295
+ <description>Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list.</description>
6296
+ <type>String</type>
6297
+ <required>false</required>
6298
+ <model_dependent>false</model_dependent>
6299
+ </argument>
6300
+ <argument>
6301
+ <name>utility_bill_propane_fixed_charges</name>
6302
+ <display_name>Utility Bills: Propane Fixed Charges</display_name>
6303
+ <description>Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list.</description>
6304
+ <type>String</type>
6305
+ <required>false</required>
6306
+ <model_dependent>false</model_dependent>
6307
+ </argument>
6308
+ <argument>
6309
+ <name>utility_bill_fuel_oil_fixed_charges</name>
6310
+ <display_name>Utility Bills: Fuel Oil Fixed Charges</display_name>
6311
+ <description>Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list.</description>
6312
+ <type>String</type>
6313
+ <required>false</required>
6314
+ <model_dependent>false</model_dependent>
6315
+ </argument>
6316
+ <argument>
6317
+ <name>utility_bill_coal_fixed_charges</name>
6318
+ <display_name>Utility Bills: Coal Fixed Charges</display_name>
6319
+ <description>Coal utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list.</description>
6320
+ <type>String</type>
6321
+ <required>false</required>
6322
+ <model_dependent>false</model_dependent>
6323
+ </argument>
6324
+ <argument>
6325
+ <name>utility_bill_wood_fixed_charges</name>
6326
+ <display_name>Utility Bills: Wood Fixed Charges</display_name>
6327
+ <description>Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list.</description>
6328
+ <type>String</type>
6329
+ <required>false</required>
6330
+ <model_dependent>false</model_dependent>
6331
+ </argument>
6332
+ <argument>
6333
+ <name>utility_bill_wood_pellets_fixed_charges</name>
6334
+ <display_name>Utility Bills: Wood Pellets Fixed Charges</display_name>
6335
+ <description>Wood pellets utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list.</description>
6336
+ <type>String</type>
6337
+ <required>false</required>
6338
+ <model_dependent>false</model_dependent>
6339
+ </argument>
6340
+ <argument>
6341
+ <name>utility_bill_electricity_marginal_rates</name>
6342
+ <display_name>Utility Bills: Electricity Marginal Rates</display_name>
6343
+ <description>Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list.</description>
6344
+ <type>String</type>
6345
+ <required>false</required>
6346
+ <model_dependent>false</model_dependent>
6347
+ </argument>
6348
+ <argument>
6349
+ <name>utility_bill_natural_gas_marginal_rates</name>
6350
+ <display_name>Utility Bills: Natural Gas Marginal Rates</display_name>
6351
+ <description>Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list.</description>
6352
+ <type>String</type>
6353
+ <required>false</required>
6354
+ <model_dependent>false</model_dependent>
6355
+ </argument>
6356
+ <argument>
6357
+ <name>utility_bill_propane_marginal_rates</name>
6358
+ <display_name>Utility Bills: Propane Marginal Rates</display_name>
6359
+ <description>Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list.</description>
6360
+ <type>String</type>
6361
+ <required>false</required>
6362
+ <model_dependent>false</model_dependent>
6363
+ </argument>
6364
+ <argument>
6365
+ <name>utility_bill_fuel_oil_marginal_rates</name>
6366
+ <display_name>Utility Bills: Fuel Oil Marginal Rates</display_name>
6367
+ <description>Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list.</description>
6368
+ <type>String</type>
6369
+ <required>false</required>
6370
+ <model_dependent>false</model_dependent>
6371
+ </argument>
6372
+ <argument>
6373
+ <name>utility_bill_coal_marginal_rates</name>
6374
+ <display_name>Utility Bills: Coal Marginal Rates</display_name>
6375
+ <description>Coal utility bill marginal rates. If multiple scenarios, use a comma-separated list.</description>
6376
+ <type>String</type>
6377
+ <required>false</required>
6378
+ <model_dependent>false</model_dependent>
6379
+ </argument>
6380
+ <argument>
6381
+ <name>utility_bill_wood_marginal_rates</name>
6382
+ <display_name>Utility Bills: Wood Marginal Rates</display_name>
6383
+ <description>Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list.</description>
6384
+ <type>String</type>
6385
+ <required>false</required>
6386
+ <model_dependent>false</model_dependent>
6387
+ </argument>
6388
+ <argument>
6389
+ <name>utility_bill_wood_pellets_marginal_rates</name>
6390
+ <display_name>Utility Bills: Wood Pellets Marginal Rates</display_name>
6391
+ <description>Wood pellets utility bill marginal rates. If multiple scenarios, use a comma-separated list.</description>
6392
+ <type>String</type>
6393
+ <required>false</required>
6394
+ <model_dependent>false</model_dependent>
6395
+ </argument>
6396
+ <argument>
6397
+ <name>utility_bill_pv_compensation_types</name>
6398
+ <display_name>Utility Bills: PV Compensation Types</display_name>
6399
+ <description>Utility bill PV compensation types. If multiple scenarios, use a comma-separated list.</description>
6400
+ <type>String</type>
6401
+ <required>false</required>
6402
+ <model_dependent>false</model_dependent>
6403
+ </argument>
6404
+ <argument>
6405
+ <name>utility_bill_pv_net_metering_annual_excess_sellback_rate_types</name>
6406
+ <display_name>Utility Bills: PV Net Metering Annual Excess Sellback Rate Types</display_name>
6407
+ <description>Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list.</description>
6408
+ <type>String</type>
6409
+ <required>false</required>
6410
+ <model_dependent>false</model_dependent>
6411
+ </argument>
6412
+ <argument>
6413
+ <name>utility_bill_pv_net_metering_annual_excess_sellback_rates</name>
6414
+ <display_name>Utility Bills: PV Net Metering Annual Excess Sellback Rates</display_name>
6415
+ <description>Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list.</description>
6416
+ <type>String</type>
6417
+ <required>false</required>
6418
+ <model_dependent>false</model_dependent>
6419
+ </argument>
6420
+ <argument>
6421
+ <name>utility_bill_pv_feed_in_tariff_rates</name>
6422
+ <display_name>Utility Bills: PV Feed-In Tariff Rates</display_name>
6423
+ <description>Utility bill PV annual full/gross feed-in tariff rates. Only applies if the PV compensation type is 'FeedInTariff'. If multiple scenarios, use a comma-separated list.</description>
6424
+ <type>String</type>
6425
+ <required>false</required>
6426
+ <model_dependent>false</model_dependent>
6427
+ </argument>
6428
+ <argument>
6429
+ <name>utility_bill_pv_monthly_grid_connection_fee_units</name>
6430
+ <display_name>Utility Bills: PV Monthly Grid Connection Fee Units</display_name>
6431
+ <description>Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list.</description>
6432
+ <type>String</type>
6433
+ <required>false</required>
6434
+ <model_dependent>false</model_dependent>
6435
+ </argument>
6436
+ <argument>
6437
+ <name>utility_bill_pv_monthly_grid_connection_fees</name>
6438
+ <display_name>Utility Bills: PV Monthly Grid Connection Fees</display_name>
6439
+ <description>Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list.</description>
6440
+ <type>String</type>
6441
+ <required>false</required>
6442
+ <model_dependent>false</model_dependent>
6443
+ </argument>
6125
6444
  <argument>
6126
6445
  <name>additional_properties</name>
6127
6446
  <display_name>Additional Properties</display_name>
@@ -6186,13 +6505,13 @@
6186
6505
  <filename>geometry.rb</filename>
6187
6506
  <filetype>rb</filetype>
6188
6507
  <usage_type>resource</usage_type>
6189
- <checksum>4E620D45</checksum>
6508
+ <checksum>D9E75C2E</checksum>
6190
6509
  </file>
6191
6510
  <file>
6192
6511
  <filename>build_residential_hpxml_test.rb</filename>
6193
6512
  <filetype>rb</filetype>
6194
6513
  <usage_type>test</usage_type>
6195
- <checksum>AFBDA179</checksum>
6514
+ <checksum>B16976B9</checksum>
6196
6515
  </file>
6197
6516
  <file>
6198
6517
  <version>
@@ -6203,7 +6522,7 @@
6203
6522
  <filename>measure.rb</filename>
6204
6523
  <filetype>rb</filetype>
6205
6524
  <usage_type>script</usage_type>
6206
- <checksum>F0DC5B81</checksum>
6525
+ <checksum>9D41E280</checksum>
6207
6526
  </file>
6208
6527
  </files>
6209
6528
  </measure>