urbanopt-cli 0.8.2 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (650) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +5 -6
  3. data/CHANGELOG.md +21 -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 +601 -101
  635. data/scripts/setup-env.bat +6 -7
  636. data/uo_cli.gemspec +6 -5
  637. metadata +121 -36
  638. data/example_files/residential/exhaust.tsv +0 -3
  639. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/hvac_equipment_efficiency.csv +0 -493
  640. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/water_heater_efficiency.csv +0 -157
  641. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/HPXMLvalidator.xml +0 -620
  642. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/validator.rb +0 -107
  643. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/measure.rb +0 -450
  644. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/measure.xml +0 -85
  645. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/resources/constants.rb +0 -72
  646. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/tests/hpxml_output_report_test.rb +0 -290
  647. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/PV_10kW.csv +0 -8761
  648. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/PV_1kW.csv +0 -8761
  649. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/PV_None.csv +0 -8761
  650. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_hvac_sizing.csv +0 -410
@@ -3,8 +3,8 @@
3
3
  <schema_version>3.0</schema_version>
4
4
  <name>build_residential_model</name>
5
5
  <uid>259dc35f-65e8-47d4-913f-69efede5a267</uid>
6
- <version_id>c8f1b72c-3011-45a1-8af8-c05cbcc2a334</version_id>
7
- <version_modified>20220308T195926Z</version_modified>
6
+ <version_id>8bb0bd12-8c25-4c05-9477-e045ca9cde27</version_id>
7
+ <version_modified>20221205T204142Z</version_modified>
8
8
  <xml_checksum>2C38F48B</xml_checksum>
9
9
  <class_name>BuildResidentialModel</class_name>
10
10
  <display_name>Build Residential Model</display_name>
@@ -98,10 +98,36 @@
98
98
  <required>false</required>
99
99
  <model_dependent>false</model_dependent>
100
100
  </argument>
101
+ <argument>
102
+ <name>occupancy_calculation_type</name>
103
+ <display_name>Occupancy Calculation Type</display_name>
104
+ <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>
105
+ <type>Choice</type>
106
+ <required>false</required>
107
+ <model_dependent>false</model_dependent>
108
+ <choices>
109
+ <choice>
110
+ <value>asset</value>
111
+ <display_name>asset</display_name>
112
+ </choice>
113
+ <choice>
114
+ <value>operational</value>
115
+ <display_name>operational</display_name>
116
+ </choice>
117
+ </choices>
118
+ </argument>
119
+ <argument>
120
+ <name>schedules_filepaths</name>
121
+ <display_name>Schedules: CSV File Paths</display_name>
122
+ <description>Absolute/relative paths of csv files containing user-specified detailed schedules. If multiple files, use a comma-separated list.</description>
123
+ <type>String</type>
124
+ <required>false</required>
125
+ <model_dependent>false</model_dependent>
126
+ </argument>
101
127
  <argument>
102
128
  <name>simulation_control_timestep</name>
103
129
  <display_name>Simulation Control: Timestep</display_name>
104
- <description>Value must be a divisor of 60.</description>
130
+ <description>Value must be a divisor of 60. If not provided, the OS-HPXML default is used.</description>
105
131
  <type>Integer</type>
106
132
  <units>min</units>
107
133
  <required>false</required>
@@ -110,7 +136,7 @@
110
136
  <argument>
111
137
  <name>simulation_control_run_period</name>
112
138
  <display_name>Simulation Control: Run Period</display_name>
113
- <description>Enter a date like "Jan 1 - Dec 31".</description>
139
+ <description>Enter a date like "Jan 1 - Dec 31". If not provided, the OS-HPXML default is used.</description>
114
140
  <type>String</type>
115
141
  <required>false</required>
116
142
  <model_dependent>false</model_dependent>
@@ -118,7 +144,7 @@
118
144
  <argument>
119
145
  <name>simulation_control_run_period_calendar_year</name>
120
146
  <display_name>Simulation Control: Run Period Calendar Year</display_name>
121
- <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>
147
+ <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>
122
148
  <type>Integer</type>
123
149
  <units>year</units>
124
150
  <required>false</required>
@@ -127,7 +153,7 @@
127
153
  <argument>
128
154
  <name>simulation_control_daylight_saving_enabled</name>
129
155
  <display_name>Simulation Control: Daylight Saving Enabled</display_name>
130
- <description>Whether to use daylight saving.</description>
156
+ <description>Whether to use daylight saving. If not provided, the OS-HPXML default is used.</description>
131
157
  <type>Boolean</type>
132
158
  <required>false</required>
133
159
  <model_dependent>false</model_dependent>
@@ -145,7 +171,15 @@
145
171
  <argument>
146
172
  <name>simulation_control_daylight_saving_period</name>
147
173
  <display_name>Simulation Control: Daylight Saving Period</display_name>
148
- <description>Enter a date like "Mar 15 - Dec 15".</description>
174
+ <description>Enter a date like "Mar 15 - Dec 15". If not provided, the OS-HPXML default is used.</description>
175
+ <type>String</type>
176
+ <required>false</required>
177
+ <model_dependent>false</model_dependent>
178
+ </argument>
179
+ <argument>
180
+ <name>simulation_control_temperature_capacitance_multiplier</name>
181
+ <display_name>Simulation Control: Temperature Capacitance Multiplier</display_name>
182
+ <description>Affects the transient calculation of indoor air temperatures. If not provided, the OS-HPXML default is used.</description>
149
183
  <type>String</type>
150
184
  <required>false</required>
151
185
  <model_dependent>false</model_dependent>
@@ -153,7 +187,7 @@
153
187
  <argument>
154
188
  <name>site_type</name>
155
189
  <display_name>Site: Type</display_name>
156
- <description>The type of site.</description>
190
+ <description>The type of site. If not provided, the OS-HPXML default is used.</description>
157
191
  <type>Choice</type>
158
192
  <required>false</required>
159
193
  <model_dependent>false</model_dependent>
@@ -175,16 +209,11 @@
175
209
  <argument>
176
210
  <name>site_shielding_of_home</name>
177
211
  <display_name>Site: Shielding of Home</display_name>
178
- <description>Presence of nearby buildings, trees, obstructions for infiltration model. A value of 'auto' will use 'normal'.</description>
212
+ <description>Presence of nearby buildings, trees, obstructions for infiltration model. If not provided, the OS-HPXML default is used.</description>
179
213
  <type>Choice</type>
180
- <required>true</required>
214
+ <required>false</required>
181
215
  <model_dependent>false</model_dependent>
182
- <default_value>auto</default_value>
183
216
  <choices>
184
- <choice>
185
- <value>auto</value>
186
- <display_name>auto</display_name>
187
- </choice>
188
217
  <choice>
189
218
  <value>exposed</value>
190
219
  <display_name>exposed</display_name>
@@ -200,9 +229,18 @@
200
229
  </choices>
201
230
  </argument>
202
231
  <argument>
203
- <name>zip_code</name>
204
- <display_name>Zip Code</display_name>
205
- <description>Zip code - used for informational purposes only</description>
232
+ <name>site_ground_conductivity</name>
233
+ <display_name>Site: Ground Conductivity</display_name>
234
+ <description>Conductivity of the ground soil. If not provided, the OS-HPXML default is used.</description>
235
+ <type>Double</type>
236
+ <units>Btu/hr-ft-F</units>
237
+ <required>false</required>
238
+ <model_dependent>false</model_dependent>
239
+ </argument>
240
+ <argument>
241
+ <name>site_zip_code</name>
242
+ <display_name>Site: Zip Code</display_name>
243
+ <description>Zip code of the home address.</description>
206
244
  <type>String</type>
207
245
  <required>false</required>
208
246
  <model_dependent>false</model_dependent>
@@ -210,7 +248,7 @@
210
248
  <argument>
211
249
  <name>site_iecc_zone</name>
212
250
  <display_name>Site: IECC Zone</display_name>
213
- <description>IECC zone of the home address. If not provided, uses the IECC zone corresponding to the EPW weather file.</description>
251
+ <description>IECC zone of the home address.</description>
214
252
  <type>Choice</type>
215
253
  <required>false</required>
216
254
  <model_dependent>false</model_dependent>
@@ -300,7 +338,7 @@
300
338
  <argument>
301
339
  <name>site_state_code</name>
302
340
  <display_name>Site: State Code</display_name>
303
- <description>State code of the home address. If not provided, uses the EPW weather file state code.</description>
341
+ <description>State code of the home address.</description>
304
342
  <type>Choice</type>
305
343
  <required>false</required>
306
344
  <model_dependent>false</model_dependent>
@@ -511,6 +549,15 @@
511
549
  </choice>
512
550
  </choices>
513
551
  </argument>
552
+ <argument>
553
+ <name>site_time_zone_utc_offset</name>
554
+ <display_name>Site: Time Zone UTC Offset</display_name>
555
+ <description>Time zone UTC offset of the home address. Must be between -12 and 14.</description>
556
+ <type>Double</type>
557
+ <units>hr</units>
558
+ <required>false</required>
559
+ <model_dependent>false</model_dependent>
560
+ </argument>
514
561
  <argument>
515
562
  <name>weather_station_epw_filepath</name>
516
563
  <display_name>Weather Station: EnergyPlus Weather (EPW) Filepath</display_name>
@@ -523,7 +570,7 @@
523
570
  <argument>
524
571
  <name>year_built</name>
525
572
  <display_name>Building Construction: Year Built</display_name>
526
- <description>The year the building was built</description>
573
+ <description>The year the building was built.</description>
527
574
  <type>Integer</type>
528
575
  <required>false</required>
529
576
  <model_dependent>false</model_dependent>
@@ -630,7 +677,7 @@
630
677
  <argument>
631
678
  <name>geometry_unit_num_floors_above_grade</name>
632
679
  <display_name>Geometry: Unit Number of Floors Above Grade</display_name>
633
- <description>The number of floors above grade in the unit. Conditioned attics are included. Assumed to be 1 if apartment unit.</description>
680
+ <description>The number of floors above grade in the unit. Attic type ConditionedAttic is included. Assumed to be 1 for apartment units.</description>
634
681
  <type>Integer</type>
635
682
  <units>#</units>
636
683
  <required>true</required>
@@ -652,7 +699,7 @@
652
699
  <display_name>Geometry: Unit Aspect Ratio</display_name>
653
700
  <description>The ratio of front/back wall length to left/right wall length for the unit, excluding any protruding garage wall area.</description>
654
701
  <type>Double</type>
655
- <units>FB/LR</units>
702
+ <units>Frac</units>
656
703
  <required>true</required>
657
704
  <model_dependent>false</model_dependent>
658
705
  <default_value>2</default_value>
@@ -680,27 +727,25 @@
680
727
  <argument>
681
728
  <name>geometry_unit_num_bathrooms</name>
682
729
  <display_name>Geometry: Unit Number of Bathrooms</display_name>
683
- <description>The number of bathrooms in the unit. A value of 'auto' will default the value based on the number of bedrooms.</description>
684
- <type>String</type>
730
+ <description>The number of bathrooms in the unit. If not provided, the OS-HPXML default is used.</description>
731
+ <type>Integer</type>
685
732
  <units>#</units>
686
- <required>true</required>
733
+ <required>false</required>
687
734
  <model_dependent>false</model_dependent>
688
- <default_value>auto</default_value>
689
735
  </argument>
690
736
  <argument>
691
737
  <name>geometry_unit_num_occupants</name>
692
738
  <display_name>Geometry: Unit Number of Occupants</display_name>
693
- <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>
694
- <type>String</type>
739
+ <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>
740
+ <type>Double</type>
695
741
  <units>#</units>
696
- <required>true</required>
742
+ <required>false</required>
697
743
  <model_dependent>false</model_dependent>
698
- <default_value>auto</default_value>
699
744
  </argument>
700
745
  <argument>
701
746
  <name>geometry_building_num_units</name>
702
747
  <display_name>Geometry: Building Number of Units</display_name>
703
- <description>The number of units in the building. This is required for single-family attached and apartment units.</description>
748
+ <description>The number of units in the building. Required for single-family attached and apartment units.</description>
704
749
  <type>Integer</type>
705
750
  <units>#</units>
706
751
  <required>false</required>
@@ -741,7 +786,7 @@
741
786
  <display_name>Geometry: Garage Protrusion</display_name>
742
787
  <description>The fraction of the garage that is protruding from the living space. Only applies to single-family detached units.</description>
743
788
  <type>Double</type>
744
- <units>frac</units>
789
+ <units>Frac</units>
745
790
  <required>true</required>
746
791
  <model_dependent>false</model_dependent>
747
792
  <default_value>0</default_value>
@@ -768,7 +813,7 @@
768
813
  <argument>
769
814
  <name>geometry_foundation_type</name>
770
815
  <display_name>Geometry: Foundation Type</display_name>
771
- <description>The foundation type of the building.</description>
816
+ <description>The foundation type of the building. Foundation types ConditionedBasement and ConditionedCrawlspace are not allowed for apartment units.</description>
772
817
  <type>Choice</type>
773
818
  <required>true</required>
774
819
  <model_dependent>false</model_dependent>
@@ -840,7 +885,7 @@
840
885
  <argument>
841
886
  <name>geometry_attic_type</name>
842
887
  <display_name>Geometry: Attic Type</display_name>
843
- <description>The attic type of the building.</description>
888
+ <description>The attic type of the building. Attic type ConditionedAttic is not allowed for apartment units.</description>
844
889
  <type>Choice</type>
845
890
  <required>true</required>
846
891
  <model_dependent>false</model_dependent>
@@ -959,11 +1004,20 @@
959
1004
  <argument>
960
1005
  <name>geometry_has_flue_or_chimney</name>
961
1006
  <display_name>Geometry: Has Flue or Chimney</display_name>
962
- <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>
963
- <type>String</type>
964
- <required>true</required>
1007
+ <description>Presence of flue or chimney for infiltration model. If not provided, the OS-HPXML default is used.</description>
1008
+ <type>Boolean</type>
1009
+ <required>false</required>
965
1010
  <model_dependent>false</model_dependent>
966
- <default_value>auto</default_value>
1011
+ <choices>
1012
+ <choice>
1013
+ <value>true</value>
1014
+ <display_name>true</display_name>
1015
+ </choice>
1016
+ <choice>
1017
+ <value>false</value>
1018
+ <display_name>false</display_name>
1019
+ </choice>
1020
+ </choices>
967
1021
  </argument>
968
1022
  <argument>
969
1023
  <name>neighbor_front_distance</name>
@@ -1008,42 +1062,38 @@
1008
1062
  <argument>
1009
1063
  <name>neighbor_front_height</name>
1010
1064
  <display_name>Neighbor: Front Height</display_name>
1011
- <description>The height of the neighboring building to the front. A value of 'auto' will use the same height as this building.</description>
1012
- <type>String</type>
1065
+ <description>The height of the neighboring building to the front. If not provided, the OS-HPXML default is used.</description>
1066
+ <type>Double</type>
1013
1067
  <units>ft</units>
1014
- <required>true</required>
1068
+ <required>false</required>
1015
1069
  <model_dependent>false</model_dependent>
1016
- <default_value>auto</default_value>
1017
1070
  </argument>
1018
1071
  <argument>
1019
1072
  <name>neighbor_back_height</name>
1020
1073
  <display_name>Neighbor: Back Height</display_name>
1021
- <description>The height of the neighboring building to the back. A value of 'auto' will use the same height as this building.</description>
1022
- <type>String</type>
1074
+ <description>The height of the neighboring building to the back. If not provided, the OS-HPXML default is used.</description>
1075
+ <type>Double</type>
1023
1076
  <units>ft</units>
1024
- <required>true</required>
1077
+ <required>false</required>
1025
1078
  <model_dependent>false</model_dependent>
1026
- <default_value>auto</default_value>
1027
1079
  </argument>
1028
1080
  <argument>
1029
1081
  <name>neighbor_left_height</name>
1030
1082
  <display_name>Neighbor: Left Height</display_name>
1031
- <description>The height of the neighboring building to the left. A value of 'auto' will use the same height as this building.</description>
1032
- <type>String</type>
1083
+ <description>The height of the neighboring building to the left. If not provided, the OS-HPXML default is used.</description>
1084
+ <type>Double</type>
1033
1085
  <units>ft</units>
1034
- <required>true</required>
1086
+ <required>false</required>
1035
1087
  <model_dependent>false</model_dependent>
1036
- <default_value>auto</default_value>
1037
1088
  </argument>
1038
1089
  <argument>
1039
1090
  <name>neighbor_right_height</name>
1040
1091
  <display_name>Neighbor: Right Height</display_name>
1041
- <description>The height of the neighboring building to the right. A value of 'auto' will use the same height as this building.</description>
1042
- <type>String</type>
1092
+ <description>The height of the neighboring building to the right. If not provided, the OS-HPXML default is used.</description>
1093
+ <type>Double</type>
1043
1094
  <units>ft</units>
1044
- <required>true</required>
1095
+ <required>false</required>
1045
1096
  <model_dependent>false</model_dependent>
1046
- <default_value>auto</default_value>
1047
1097
  </argument>
1048
1098
  <argument>
1049
1099
  <name>floor_over_foundation_assembly_r</name>
@@ -1065,23 +1115,83 @@
1065
1115
  <model_dependent>false</model_dependent>
1066
1116
  <default_value>28.1</default_value>
1067
1117
  </argument>
1118
+ <argument>
1119
+ <name>floor_type</name>
1120
+ <display_name>Floor: Type</display_name>
1121
+ <description>The type of floors.</description>
1122
+ <type>Choice</type>
1123
+ <required>true</required>
1124
+ <model_dependent>false</model_dependent>
1125
+ <default_value>WoodFrame</default_value>
1126
+ <choices>
1127
+ <choice>
1128
+ <value>WoodFrame</value>
1129
+ <display_name>WoodFrame</display_name>
1130
+ </choice>
1131
+ <choice>
1132
+ <value>StructuralInsulatedPanel</value>
1133
+ <display_name>StructuralInsulatedPanel</display_name>
1134
+ </choice>
1135
+ <choice>
1136
+ <value>SolidConcrete</value>
1137
+ <display_name>SolidConcrete</display_name>
1138
+ </choice>
1139
+ <choice>
1140
+ <value>SteelFrame</value>
1141
+ <display_name>SteelFrame</display_name>
1142
+ </choice>
1143
+ </choices>
1144
+ </argument>
1068
1145
  <argument>
1069
1146
  <name>foundation_wall_type</name>
1070
1147
  <display_name>Foundation Wall: Type</display_name>
1071
- <description>The material type of the foundation wall.</description>
1072
- <type>String</type>
1073
- <required>true</required>
1148
+ <description>The material type of the foundation wall. If not provided, the OS-HPXML default is used.</description>
1149
+ <type>Choice</type>
1150
+ <required>false</required>
1074
1151
  <model_dependent>false</model_dependent>
1075
- <default_value>auto</default_value>
1152
+ <choices>
1153
+ <choice>
1154
+ <value>solid concrete</value>
1155
+ <display_name>solid concrete</display_name>
1156
+ </choice>
1157
+ <choice>
1158
+ <value>concrete block</value>
1159
+ <display_name>concrete block</display_name>
1160
+ </choice>
1161
+ <choice>
1162
+ <value>concrete block foam core</value>
1163
+ <display_name>concrete block foam core</display_name>
1164
+ </choice>
1165
+ <choice>
1166
+ <value>concrete block perlite core</value>
1167
+ <display_name>concrete block perlite core</display_name>
1168
+ </choice>
1169
+ <choice>
1170
+ <value>concrete block vermiculite core</value>
1171
+ <display_name>concrete block vermiculite core</display_name>
1172
+ </choice>
1173
+ <choice>
1174
+ <value>concrete block solid core</value>
1175
+ <display_name>concrete block solid core</display_name>
1176
+ </choice>
1177
+ <choice>
1178
+ <value>double brick</value>
1179
+ <display_name>double brick</display_name>
1180
+ </choice>
1181
+ <choice>
1182
+ <value>wood</value>
1183
+ <display_name>wood</display_name>
1184
+ </choice>
1185
+ </choices>
1076
1186
  </argument>
1077
1187
  <argument>
1078
1188
  <name>foundation_wall_thickness</name>
1079
1189
  <display_name>Foundation Wall: Thickness</display_name>
1080
- <description>The thickness of the foundation wall.</description>
1081
- <type>String</type>
1082
- <required>true</required>
1190
+ <description>The thickness of the foundation wall. If not provided, the OS-HPXML default is used.</description>
1191
+ <type>Double</type>
1192
+ <units>in</units>
1193
+ <required>false</required>
1083
1194
  <model_dependent>false</model_dependent>
1084
- <default_value>auto</default_value>
1085
1195
  </argument>
1086
1196
  <argument>
1087
1197
  <name>foundation_wall_insulation_r</name>
@@ -1116,27 +1226,25 @@
1116
1226
  <argument>
1117
1227
  <name>foundation_wall_insulation_distance_to_top</name>
1118
1228
  <display_name>Foundation Wall: Insulation Distance To Top</display_name>
1119
- <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>
1120
- <type>String</type>
1229
+ <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>
1230
+ <type>Double</type>
1121
1231
  <units>ft</units>
1122
- <required>true</required>
1232
+ <required>false</required>
1123
1233
  <model_dependent>false</model_dependent>
1124
- <default_value>auto</default_value>
1125
1234
  </argument>
1126
1235
  <argument>
1127
1236
  <name>foundation_wall_insulation_distance_to_bottom</name>
1128
1237
  <display_name>Foundation Wall: Insulation Distance To Bottom</display_name>
1129
- <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>
1130
- <type>String</type>
1238
+ <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>
1239
+ <type>Double</type>
1131
1240
  <units>ft</units>
1132
- <required>true</required>
1241
+ <required>false</required>
1133
1242
  <model_dependent>false</model_dependent>
1134
- <default_value>auto</default_value>
1135
1243
  </argument>
1136
1244
  <argument>
1137
1245
  <name>foundation_wall_assembly_r</name>
1138
1246
  <display_name>Foundation Wall: Assembly R-value</display_name>
1139
- <description>Assembly R-value for the foundation walls. Only applies to basements/crawlspaces. If provided, overrides the previous foundation wall insulation inputs.</description>
1247
+ <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>
1140
1248
  <type>Double</type>
1141
1249
  <units>h-ft^2-R/Btu</units>
1142
1250
  <required>false</required>
@@ -1145,7 +1253,7 @@
1145
1253
  <argument>
1146
1254
  <name>rim_joist_assembly_r</name>
1147
1255
  <display_name>Rim Joist: Assembly R-value</display_name>
1148
- <description>Assembly R-value for the rim joists. Only applies to basements/crawlspaces.</description>
1256
+ <description>Assembly R-value for the rim joists. Only applies to basements/crawlspaces. Required if a rim joist height is provided.</description>
1149
1257
  <type>Double</type>
1150
1258
  <units>h-ft^2-R/Btu</units>
1151
1259
  <required>false</required>
@@ -1194,31 +1302,29 @@
1194
1302
  <argument>
1195
1303
  <name>slab_thickness</name>
1196
1304
  <display_name>Slab: Thickness</display_name>
1197
- <description>The thickness of the slab. Zero can be entered if there is a dirt floor instead of a slab.</description>
1198
- <type>String</type>
1199
- <required>true</required>
1305
+ <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>
1306
+ <type>Double</type>
1307
+ <units>in</units>
1308
+ <required>false</required>
1200
1309
  <model_dependent>false</model_dependent>
1201
- <default_value>auto</default_value>
1202
1310
  </argument>
1203
1311
  <argument>
1204
1312
  <name>slab_carpet_fraction</name>
1205
1313
  <display_name>Slab: Carpet Fraction</display_name>
1206
- <description>Fraction of the slab floor area that is carpeted.</description>
1207
- <type>String</type>
1314
+ <description>Fraction of the slab floor area that is carpeted. If not provided, the OS-HPXML default is used.</description>
1315
+ <type>Double</type>
1208
1316
  <units>Frac</units>
1209
- <required>true</required>
1317
+ <required>false</required>
1210
1318
  <model_dependent>false</model_dependent>
1211
- <default_value>auto</default_value>
1212
1319
  </argument>
1213
1320
  <argument>
1214
1321
  <name>slab_carpet_r</name>
1215
1322
  <display_name>Slab: Carpet R-value</display_name>
1216
- <description>R-value of the slab carpet.</description>
1217
- <type>String</type>
1323
+ <description>R-value of the slab carpet. If not provided, the OS-HPXML default is used.</description>
1324
+ <type>Double</type>
1218
1325
  <units>h-ft^2-R/Btu</units>
1219
- <required>true</required>
1326
+ <required>false</required>
1220
1327
  <model_dependent>false</model_dependent>
1221
- <default_value>auto</default_value>
1222
1328
  </argument>
1223
1329
  <argument>
1224
1330
  <name>ceiling_assembly_r</name>
@@ -1233,7 +1339,7 @@
1233
1339
  <argument>
1234
1340
  <name>roof_material_type</name>
1235
1341
  <display_name>Roof: Material Type</display_name>
1236
- <description>The material type of the roof.</description>
1342
+ <description>The material type of the roof. If not provided, the OS-HPXML default is used.</description>
1237
1343
  <type>Choice</type>
1238
1344
  <required>false</required>
1239
1345
  <model_dependent>false</model_dependent>
@@ -1279,11 +1385,10 @@
1279
1385
  <argument>
1280
1386
  <name>roof_color</name>
1281
1387
  <display_name>Roof: Color</display_name>
1282
- <description>The color of the roof.</description>
1388
+ <description>The color of the roof. If not provided, the OS-HPXML default is used.</description>
1283
1389
  <type>Choice</type>
1284
- <required>true</required>
1390
+ <required>false</required>
1285
1391
  <model_dependent>false</model_dependent>
1286
- <default_value>medium</default_value>
1287
1392
  <choices>
1288
1393
  <choice>
1289
1394
  <value>dark</value>
@@ -1389,8 +1494,8 @@
1389
1494
  <display_name>LogWall</display_name>
1390
1495
  </choice>
1391
1496
  <choice>
1392
- <value>StructurallyInsulatedPanel</value>
1393
- <display_name>StructurallyInsulatedPanel</display_name>
1497
+ <value>StructuralInsulatedPanel</value>
1498
+ <display_name>StructuralInsulatedPanel</display_name>
1394
1499
  </choice>
1395
1500
  <choice>
1396
1501
  <value>SolidConcrete</value>
@@ -1417,7 +1522,7 @@
1417
1522
  <argument>
1418
1523
  <name>wall_siding_type</name>
1419
1524
  <display_name>Wall: Siding Type</display_name>
1420
- <description>The siding type of the walls. Also applies to rim joists.</description>
1525
+ <description>The siding type of the walls. Also applies to rim joists. If not provided, the OS-HPXML default is used.</description>
1421
1526
  <type>Choice</type>
1422
1527
  <required>false</required>
1423
1528
  <model_dependent>false</model_dependent>
@@ -1471,11 +1576,10 @@
1471
1576
  <argument>
1472
1577
  <name>wall_color</name>
1473
1578
  <display_name>Wall: Color</display_name>
1474
- <description>The color of the walls. Also applies to rim joists.</description>
1579
+ <description>The color of the walls. Also applies to rim joists. If not provided, the OS-HPXML default is used.</description>
1475
1580
  <type>Choice</type>
1476
- <required>true</required>
1581
+ <required>false</required>
1477
1582
  <model_dependent>false</model_dependent>
1478
- <default_value>medium</default_value>
1479
1583
  <choices>
1480
1584
  <choice>
1481
1585
  <value>dark</value>
@@ -1514,6 +1618,7 @@
1514
1618
  <display_name>Windows: Front Window-to-Wall Ratio</display_name>
1515
1619
  <description>The ratio of window area to wall area for the unit's front facade. Enter 0 if specifying Front Window Area instead.</description>
1516
1620
  <type>Double</type>
1621
+ <units>Frac</units>
1517
1622
  <required>true</required>
1518
1623
  <model_dependent>false</model_dependent>
1519
1624
  <default_value>0.18</default_value>
@@ -1523,6 +1628,7 @@
1523
1628
  <display_name>Windows: Back Window-to-Wall Ratio</display_name>
1524
1629
  <description>The ratio of window area to wall area for the unit's back facade. Enter 0 if specifying Back Window Area instead.</description>
1525
1630
  <type>Double</type>
1631
+ <units>Frac</units>
1526
1632
  <required>true</required>
1527
1633
  <model_dependent>false</model_dependent>
1528
1634
  <default_value>0.18</default_value>
@@ -1532,6 +1638,7 @@
1532
1638
  <display_name>Windows: Left Window-to-Wall Ratio</display_name>
1533
1639
  <description>The ratio of window area to wall area for the unit's left facade (when viewed from the front). Enter 0 if specifying Left Window Area instead.</description>
1534
1640
  <type>Double</type>
1641
+ <units>Frac</units>
1535
1642
  <required>true</required>
1536
1643
  <model_dependent>false</model_dependent>
1537
1644
  <default_value>0.18</default_value>
@@ -1541,6 +1648,7 @@
1541
1648
  <display_name>Windows: Right Window-to-Wall Ratio</display_name>
1542
1649
  <description>The ratio of window area to wall area for the unit's right facade (when viewed from the front). Enter 0 if specifying Right Window Area instead.</description>
1543
1650
  <type>Double</type>
1651
+ <units>Frac</units>
1544
1652
  <required>true</required>
1545
1653
  <model_dependent>false</model_dependent>
1546
1654
  <default_value>0.18</default_value>
@@ -1550,6 +1658,7 @@
1550
1658
  <display_name>Windows: Front Window Area</display_name>
1551
1659
  <description>The amount of window area on the unit's front facade. Enter 0 if specifying Front Window-to-Wall Ratio instead.</description>
1552
1660
  <type>Double</type>
1661
+ <units>ft^2</units>
1553
1662
  <required>true</required>
1554
1663
  <model_dependent>false</model_dependent>
1555
1664
  <default_value>0</default_value>
@@ -1559,6 +1668,7 @@
1559
1668
  <display_name>Windows: Back Window Area</display_name>
1560
1669
  <description>The amount of window area on the unit's back facade. Enter 0 if specifying Back Window-to-Wall Ratio instead.</description>
1561
1670
  <type>Double</type>
1671
+ <units>ft^2</units>
1562
1672
  <required>true</required>
1563
1673
  <model_dependent>false</model_dependent>
1564
1674
  <default_value>0</default_value>
@@ -1568,6 +1678,7 @@
1568
1678
  <display_name>Windows: Left Window Area</display_name>
1569
1679
  <description>The amount of window area on the unit's left facade (when viewed from the front). Enter 0 if specifying Left Window-to-Wall Ratio instead.</description>
1570
1680
  <type>Double</type>
1681
+ <units>ft^2</units>
1571
1682
  <required>true</required>
1572
1683
  <model_dependent>false</model_dependent>
1573
1684
  <default_value>0</default_value>
@@ -1577,6 +1688,7 @@
1577
1688
  <display_name>Windows: Right Window Area</display_name>
1578
1689
  <description>The amount of window area on the unit's right facade (when viewed from the front). Enter 0 if specifying Right Window-to-Wall Ratio instead.</description>
1579
1690
  <type>Double</type>
1691
+ <units>ft^2</units>
1580
1692
  <required>true</required>
1581
1693
  <model_dependent>false</model_dependent>
1582
1694
  <default_value>0</default_value>
@@ -1586,6 +1698,7 @@
1586
1698
  <display_name>Windows: Aspect Ratio</display_name>
1587
1699
  <description>Ratio of window height to width.</description>
1588
1700
  <type>Double</type>
1701
+ <units>Frac</units>
1589
1702
  <required>true</required>
1590
1703
  <model_dependent>false</model_dependent>
1591
1704
  <default_value>1.333</default_value>
@@ -1593,8 +1706,18 @@
1593
1706
  <argument>
1594
1707
  <name>window_fraction_operable</name>
1595
1708
  <display_name>Windows: Fraction Operable</display_name>
1596
- <description>Fraction of windows that are operable.</description>
1709
+ <description>Fraction of windows that are operable. If not provided, the OS-HPXML default is used.</description>
1597
1710
  <type>Double</type>
1711
+ <units>Frac</units>
1712
+ <required>false</required>
1713
+ <model_dependent>false</model_dependent>
1714
+ </argument>
1715
+ <argument>
1716
+ <name>window_natvent_availability</name>
1717
+ <display_name>Windows: Natural Ventilation Availability</display_name>
1718
+ <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>
1719
+ <type>Integer</type>
1720
+ <units>Days/week</units>
1598
1721
  <required>false</required>
1599
1722
  <model_dependent>false</model_dependent>
1600
1723
  </argument>
@@ -1620,40 +1743,63 @@
1620
1743
  <argument>
1621
1744
  <name>window_interior_shading_winter</name>
1622
1745
  <display_name>Windows: Winter Interior Shading</display_name>
1623
- <description>Interior shading multiplier for the heating season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc.</description>
1746
+ <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>
1624
1747
  <type>Double</type>
1748
+ <units>Frac</units>
1625
1749
  <required>false</required>
1626
1750
  <model_dependent>false</model_dependent>
1627
1751
  </argument>
1628
1752
  <argument>
1629
1753
  <name>window_interior_shading_summer</name>
1630
1754
  <display_name>Windows: Summer Interior Shading</display_name>
1631
- <description>Interior shading multiplier for the cooling season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc.</description>
1755
+ <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>
1632
1756
  <type>Double</type>
1757
+ <units>Frac</units>
1633
1758
  <required>false</required>
1634
1759
  <model_dependent>false</model_dependent>
1635
1760
  </argument>
1636
1761
  <argument>
1637
1762
  <name>window_exterior_shading_winter</name>
1638
1763
  <display_name>Windows: Winter Exterior Shading</display_name>
1639
- <description>Exterior shading multiplier for the heating season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc.</description>
1764
+ <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>
1640
1765
  <type>Double</type>
1766
+ <units>Frac</units>
1641
1767
  <required>false</required>
1642
1768
  <model_dependent>false</model_dependent>
1643
1769
  </argument>
1644
1770
  <argument>
1645
1771
  <name>window_exterior_shading_summer</name>
1646
1772
  <display_name>Windows: Summer Exterior Shading</display_name>
1647
- <description>Exterior shading multiplier for the cooling season. 1.0 indicates no reduction in solar gain, 0.85 indicates 15% reduction, etc.</description>
1773
+ <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>
1648
1774
  <type>Double</type>
1775
+ <units>Frac</units>
1649
1776
  <required>false</required>
1650
1777
  <model_dependent>false</model_dependent>
1651
1778
  </argument>
1779
+ <argument>
1780
+ <name>window_storm_type</name>
1781
+ <display_name>Windows: Storm Type</display_name>
1782
+ <description>The type of storm, if present. If not provided, assumes there is no storm.</description>
1783
+ <type>Choice</type>
1784
+ <required>false</required>
1785
+ <model_dependent>false</model_dependent>
1786
+ <choices>
1787
+ <choice>
1788
+ <value>clear</value>
1789
+ <display_name>clear</display_name>
1790
+ </choice>
1791
+ <choice>
1792
+ <value>low-e</value>
1793
+ <display_name>low-e</display_name>
1794
+ </choice>
1795
+ </choices>
1796
+ </argument>
1652
1797
  <argument>
1653
1798
  <name>overhangs_front_depth</name>
1654
1799
  <display_name>Overhangs: Front Depth</display_name>
1655
1800
  <description>The depth of overhangs for windows for the front facade.</description>
1656
1801
  <type>Double</type>
1802
+ <units>ft</units>
1657
1803
  <required>true</required>
1658
1804
  <model_dependent>false</model_dependent>
1659
1805
  <default_value>0</default_value>
@@ -1663,6 +1809,7 @@
1663
1809
  <display_name>Overhangs: Front Distance to Top of Window</display_name>
1664
1810
  <description>The overhangs distance to the top of window for the front facade.</description>
1665
1811
  <type>Double</type>
1812
+ <units>ft</units>
1666
1813
  <required>true</required>
1667
1814
  <model_dependent>false</model_dependent>
1668
1815
  <default_value>0</default_value>
@@ -1672,6 +1819,7 @@
1672
1819
  <display_name>Overhangs: Front Distance to Bottom of Window</display_name>
1673
1820
  <description>The overhangs distance to the bottom of window for the front facade.</description>
1674
1821
  <type>Double</type>
1822
+ <units>ft</units>
1675
1823
  <required>true</required>
1676
1824
  <model_dependent>false</model_dependent>
1677
1825
  <default_value>4</default_value>
@@ -1681,6 +1829,7 @@
1681
1829
  <display_name>Overhangs: Back Depth</display_name>
1682
1830
  <description>The depth of overhangs for windows for the back facade.</description>
1683
1831
  <type>Double</type>
1832
+ <units>ft</units>
1684
1833
  <required>true</required>
1685
1834
  <model_dependent>false</model_dependent>
1686
1835
  <default_value>0</default_value>
@@ -1690,6 +1839,7 @@
1690
1839
  <display_name>Overhangs: Back Distance to Top of Window</display_name>
1691
1840
  <description>The overhangs distance to the top of window for the back facade.</description>
1692
1841
  <type>Double</type>
1842
+ <units>ft</units>
1693
1843
  <required>true</required>
1694
1844
  <model_dependent>false</model_dependent>
1695
1845
  <default_value>0</default_value>
@@ -1699,6 +1849,7 @@
1699
1849
  <display_name>Overhangs: Back Distance to Bottom of Window</display_name>
1700
1850
  <description>The overhangs distance to the bottom of window for the back facade.</description>
1701
1851
  <type>Double</type>
1852
+ <units>ft</units>
1702
1853
  <required>true</required>
1703
1854
  <model_dependent>false</model_dependent>
1704
1855
  <default_value>4</default_value>
@@ -1708,6 +1859,7 @@
1708
1859
  <display_name>Overhangs: Left Depth</display_name>
1709
1860
  <description>The depth of overhangs for windows for the left facade.</description>
1710
1861
  <type>Double</type>
1862
+ <units>ft</units>
1711
1863
  <required>true</required>
1712
1864
  <model_dependent>false</model_dependent>
1713
1865
  <default_value>0</default_value>
@@ -1717,6 +1869,7 @@
1717
1869
  <display_name>Overhangs: Left Distance to Top of Window</display_name>
1718
1870
  <description>The overhangs distance to the top of window for the left facade.</description>
1719
1871
  <type>Double</type>
1872
+ <units>ft</units>
1720
1873
  <required>true</required>
1721
1874
  <model_dependent>false</model_dependent>
1722
1875
  <default_value>0</default_value>
@@ -1726,6 +1879,7 @@
1726
1879
  <display_name>Overhangs: Left Distance to Bottom of Window</display_name>
1727
1880
  <description>The overhangs distance to the bottom of window for the left facade.</description>
1728
1881
  <type>Double</type>
1882
+ <units>ft</units>
1729
1883
  <required>true</required>
1730
1884
  <model_dependent>false</model_dependent>
1731
1885
  <default_value>4</default_value>
@@ -1735,6 +1889,7 @@
1735
1889
  <display_name>Overhangs: Right Depth</display_name>
1736
1890
  <description>The depth of overhangs for windows for the right facade.</description>
1737
1891
  <type>Double</type>
1892
+ <units>ft</units>
1738
1893
  <required>true</required>
1739
1894
  <model_dependent>false</model_dependent>
1740
1895
  <default_value>0</default_value>
@@ -1744,6 +1899,7 @@
1744
1899
  <display_name>Overhangs: Right Distance to Top of Window</display_name>
1745
1900
  <description>The overhangs distance to the top of window for the right facade.</description>
1746
1901
  <type>Double</type>
1902
+ <units>ft</units>
1747
1903
  <required>true</required>
1748
1904
  <model_dependent>false</model_dependent>
1749
1905
  <default_value>0</default_value>
@@ -1753,6 +1909,7 @@
1753
1909
  <display_name>Overhangs: Right Distance to Bottom of Window</display_name>
1754
1910
  <description>The overhangs distance to the bottom of window for the right facade.</description>
1755
1911
  <type>Double</type>
1912
+ <units>ft</units>
1756
1913
  <required>true</required>
1757
1914
  <model_dependent>false</model_dependent>
1758
1915
  <default_value>4</default_value>
@@ -1762,6 +1919,7 @@
1762
1919
  <display_name>Skylights: Front Roof Area</display_name>
1763
1920
  <description>The amount of skylight area on the unit's front conditioned roof facade.</description>
1764
1921
  <type>Double</type>
1922
+ <units>ft^2</units>
1765
1923
  <required>true</required>
1766
1924
  <model_dependent>false</model_dependent>
1767
1925
  <default_value>0</default_value>
@@ -1771,6 +1929,7 @@
1771
1929
  <display_name>Skylights: Back Roof Area</display_name>
1772
1930
  <description>The amount of skylight area on the unit's back conditioned roof facade.</description>
1773
1931
  <type>Double</type>
1932
+ <units>ft^2</units>
1774
1933
  <required>true</required>
1775
1934
  <model_dependent>false</model_dependent>
1776
1935
  <default_value>0</default_value>
@@ -1780,6 +1939,7 @@
1780
1939
  <display_name>Skylights: Left Roof Area</display_name>
1781
1940
  <description>The amount of skylight area on the unit's left conditioned roof facade (when viewed from the front).</description>
1782
1941
  <type>Double</type>
1942
+ <units>ft^2</units>
1783
1943
  <required>true</required>
1784
1944
  <model_dependent>false</model_dependent>
1785
1945
  <default_value>0</default_value>
@@ -1789,6 +1949,7 @@
1789
1949
  <display_name>Skylights: Right Roof Area</display_name>
1790
1950
  <description>The amount of skylight area on the unit's right conditioned roof facade (when viewed from the front).</description>
1791
1951
  <type>Double</type>
1952
+ <units>ft^2</units>
1792
1953
  <required>true</required>
1793
1954
  <model_dependent>false</model_dependent>
1794
1955
  <default_value>0</default_value>
@@ -1812,6 +1973,24 @@
1812
1973
  <model_dependent>false</model_dependent>
1813
1974
  <default_value>0.45</default_value>
1814
1975
  </argument>
1976
+ <argument>
1977
+ <name>skylight_storm_type</name>
1978
+ <display_name>Skylights: Storm Type</display_name>
1979
+ <description>The type of storm, if present. If not provided, assumes there is no storm.</description>
1980
+ <type>Choice</type>
1981
+ <required>false</required>
1982
+ <model_dependent>false</model_dependent>
1983
+ <choices>
1984
+ <choice>
1985
+ <value>clear</value>
1986
+ <display_name>clear</display_name>
1987
+ </choice>
1988
+ <choice>
1989
+ <value>low-e</value>
1990
+ <display_name>low-e</display_name>
1991
+ </choice>
1992
+ </choices>
1993
+ </argument>
1815
1994
  <argument>
1816
1995
  <name>door_area</name>
1817
1996
  <display_name>Doors: Area</display_name>
@@ -1877,7 +2056,7 @@
1877
2056
  <argument>
1878
2057
  <name>heating_system_type</name>
1879
2058
  <display_name>Heating System: Type</display_name>
1880
- <description>The type of heating system. Use 'none' if there is no heating system.</description>
2059
+ <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>
1881
2060
  <type>Choice</type>
1882
2061
  <required>true</required>
1883
2062
  <model_dependent>false</model_dependent>
@@ -1923,10 +2102,6 @@
1923
2102
  <value>FixedHeater</value>
1924
2103
  <display_name>FixedHeater</display_name>
1925
2104
  </choice>
1926
- <choice>
1927
- <value>PackagedTerminalAirConditionerHeating</value>
1928
- <display_name>PackagedTerminalAirConditionerHeating</display_name>
1929
- </choice>
1930
2105
  <choice>
1931
2106
  <value>Shared Boiler w/ Baseboard</value>
1932
2107
  <display_name>Shared Boiler w/ Baseboard</display_name>
@@ -1940,7 +2115,7 @@
1940
2115
  <argument>
1941
2116
  <name>heating_system_fuel</name>
1942
2117
  <display_name>Heating System: Fuel Type</display_name>
1943
- <description>The fuel type of the heating system. Ignored for ElectricResistance and PackagedTerminalAirConditionerHeating.</description>
2118
+ <description>The fuel type of the heating system. Ignored for ElectricResistance.</description>
1944
2119
  <type>Choice</type>
1945
2120
  <required>true</required>
1946
2121
  <model_dependent>false</model_dependent>
@@ -1989,12 +2164,11 @@
1989
2164
  <argument>
1990
2165
  <name>heating_system_heating_capacity</name>
1991
2166
  <display_name>Heating System: Heating Capacity</display_name>
1992
- <description>The output heating capacity of the heating system. Enter 'auto' to size the capacity based on ACCA Manual J/S.</description>
1993
- <type>String</type>
2167
+ <description>The output heating capacity of the heating system. If not provided, the OS-HPXML autosized default is used.</description>
2168
+ <type>Double</type>
1994
2169
  <units>Btu/hr</units>
1995
- <required>true</required>
2170
+ <required>false</required>
1996
2171
  <model_dependent>false</model_dependent>
1997
- <default_value>auto</default_value>
1998
2172
  </argument>
1999
2173
  <argument>
2000
2174
  <name>heating_system_fraction_heat_load_served</name>
@@ -2009,7 +2183,7 @@
2009
2183
  <argument>
2010
2184
  <name>heating_system_airflow_defect_ratio</name>
2011
2185
  <display_name>Heating System: Airflow Defect Ratio</display_name>
2012
- <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>
2186
+ <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>
2013
2187
  <type>Double</type>
2014
2188
  <units>Frac</units>
2015
2189
  <required>false</required>
@@ -2018,7 +2192,7 @@
2018
2192
  <argument>
2019
2193
  <name>cooling_system_type</name>
2020
2194
  <display_name>Cooling System: Type</display_name>
2021
- <description>The type of cooling system. Use 'none' if there is no cooling system.</description>
2195
+ <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>
2022
2196
  <type>Choice</type>
2023
2197
  <required>true</required>
2024
2198
  <model_dependent>false</model_dependent>
@@ -2053,7 +2227,7 @@
2053
2227
  <argument>
2054
2228
  <name>cooling_system_cooling_efficiency_type</name>
2055
2229
  <display_name>Cooling System: Efficiency Type</display_name>
2056
- <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>
2230
+ <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>
2057
2231
  <type>Choice</type>
2058
2232
  <required>true</required>
2059
2233
  <model_dependent>false</model_dependent>
@@ -2063,6 +2237,10 @@
2063
2237
  <value>SEER</value>
2064
2238
  <display_name>SEER</display_name>
2065
2239
  </choice>
2240
+ <choice>
2241
+ <value>SEER2</value>
2242
+ <display_name>SEER2</display_name>
2243
+ </choice>
2066
2244
  <choice>
2067
2245
  <value>EER</value>
2068
2246
  <display_name>EER</display_name>
@@ -2078,7 +2256,6 @@
2078
2256
  <display_name>Cooling System: Efficiency</display_name>
2079
2257
  <description>The rated efficiency value of the cooling system. Ignored for evaporative cooler.</description>
2080
2258
  <type>Double</type>
2081
- <units>SEER or EER or CEER</units>
2082
2259
  <required>true</required>
2083
2260
  <model_dependent>false</model_dependent>
2084
2261
  <default_value>13</default_value>
@@ -2086,7 +2263,7 @@
2086
2263
  <argument>
2087
2264
  <name>cooling_system_cooling_compressor_type</name>
2088
2265
  <display_name>Cooling System: Cooling Compressor Type</display_name>
2089
- <description>The compressor type of the cooling system. Only applies to central air conditioner.</description>
2266
+ <description>The compressor type of the cooling system. Only applies to central air conditioner. If not provided, the OS-HPXML default is used.</description>
2090
2267
  <type>Choice</type>
2091
2268
  <required>false</required>
2092
2269
  <model_dependent>false</model_dependent>
@@ -2108,7 +2285,7 @@
2108
2285
  <argument>
2109
2286
  <name>cooling_system_cooling_sensible_heat_fraction</name>
2110
2287
  <display_name>Cooling System: Cooling Sensible Heat Fraction</display_name>
2111
- <description>The sensible heat fraction of the cooling system. Ignored for evaporative cooler.</description>
2288
+ <description>The sensible heat fraction of the cooling system. Ignored for evaporative cooler. If not provided, the OS-HPXML default is used.</description>
2112
2289
  <type>Double</type>
2113
2290
  <units>Frac</units>
2114
2291
  <required>false</required>
@@ -2117,12 +2294,11 @@
2117
2294
  <argument>
2118
2295
  <name>cooling_system_cooling_capacity</name>
2119
2296
  <display_name>Cooling System: Cooling Capacity</display_name>
2120
- <description>The output cooling capacity of the cooling system. Enter 'auto' to size the capacity based on ACCA Manual J/S.</description>
2121
- <type>String</type>
2122
- <units>tons</units>
2123
- <required>true</required>
2297
+ <description>The output cooling capacity of the cooling system. If not provided, the OS-HPXML autosized default is used.</description>
2298
+ <type>Double</type>
2299
+ <units>Btu/hr</units>
2300
+ <required>false</required>
2124
2301
  <model_dependent>false</model_dependent>
2125
- <default_value>auto</default_value>
2126
2302
  </argument>
2127
2303
  <argument>
2128
2304
  <name>cooling_system_fraction_cool_load_served</name>
@@ -2156,7 +2332,7 @@
2156
2332
  <argument>
2157
2333
  <name>cooling_system_airflow_defect_ratio</name>
2158
2334
  <display_name>Cooling System: Airflow Defect Ratio</display_name>
2159
- <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>
2335
+ <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>
2160
2336
  <type>Double</type>
2161
2337
  <units>Frac</units>
2162
2338
  <required>false</required>
@@ -2165,48 +2341,117 @@
2165
2341
  <argument>
2166
2342
  <name>cooling_system_charge_defect_ratio</name>
2167
2343
  <display_name>Cooling System: Charge Defect Ratio</display_name>
2168
- <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>
2344
+ <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>
2169
2345
  <type>Double</type>
2170
2346
  <units>Frac</units>
2171
2347
  <required>false</required>
2172
2348
  <model_dependent>false</model_dependent>
2173
2349
  </argument>
2174
2350
  <argument>
2175
- <name>heat_pump_type</name>
2176
- <display_name>Heat Pump: Type</display_name>
2177
- <description>The type of heat pump. Use 'none' if there is no heat pump.</description>
2351
+ <name>cooling_system_integrated_heating_system_fuel</name>
2352
+ <display_name>Cooling System: Integrated Heating System Fuel Type</display_name>
2353
+ <description>The fuel type of the heating system integrated into cooling system. Only used for packaged terminal air conditioner and room air conditioner.</description>
2178
2354
  <type>Choice</type>
2179
- <required>true</required>
2355
+ <required>false</required>
2180
2356
  <model_dependent>false</model_dependent>
2181
- <default_value>none</default_value>
2182
2357
  <choices>
2183
2358
  <choice>
2184
- <value>none</value>
2185
- <display_name>none</display_name>
2359
+ <value>electricity</value>
2360
+ <display_name>electricity</display_name>
2186
2361
  </choice>
2187
2362
  <choice>
2188
- <value>air-to-air</value>
2189
- <display_name>air-to-air</display_name>
2363
+ <value>natural gas</value>
2364
+ <display_name>natural gas</display_name>
2190
2365
  </choice>
2191
2366
  <choice>
2192
- <value>mini-split</value>
2193
- <display_name>mini-split</display_name>
2367
+ <value>fuel oil</value>
2368
+ <display_name>fuel oil</display_name>
2194
2369
  </choice>
2195
2370
  <choice>
2196
- <value>ground-to-air</value>
2197
- <display_name>ground-to-air</display_name>
2371
+ <value>propane</value>
2372
+ <display_name>propane</display_name>
2198
2373
  </choice>
2199
2374
  <choice>
2200
- <value>packaged terminal heat pump</value>
2201
- <display_name>packaged terminal heat pump</display_name>
2375
+ <value>wood</value>
2376
+ <display_name>wood</display_name>
2377
+ </choice>
2378
+ <choice>
2379
+ <value>wood pellets</value>
2380
+ <display_name>wood pellets</display_name>
2381
+ </choice>
2382
+ <choice>
2383
+ <value>coal</value>
2384
+ <display_name>coal</display_name>
2202
2385
  </choice>
2203
2386
  </choices>
2204
2387
  </argument>
2205
2388
  <argument>
2206
- <name>heat_pump_heating_efficiency_type</name>
2207
- <display_name>Heat Pump: Heating Efficiency Type</display_name>
2208
- <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>
2209
- <type>Choice</type>
2389
+ <name>cooling_system_integrated_heating_system_efficiency_percent</name>
2390
+ <display_name>Cooling System: Integrated Heating System Efficiency</display_name>
2391
+ <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>
2392
+ <type>Double</type>
2393
+ <units>Frac</units>
2394
+ <required>false</required>
2395
+ <model_dependent>false</model_dependent>
2396
+ </argument>
2397
+ <argument>
2398
+ <name>cooling_system_integrated_heating_system_capacity</name>
2399
+ <display_name>Cooling System: Integrated Heating System Heating Capacity</display_name>
2400
+ <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>
2401
+ <type>Double</type>
2402
+ <units>Btu/hr</units>
2403
+ <required>false</required>
2404
+ <model_dependent>false</model_dependent>
2405
+ </argument>
2406
+ <argument>
2407
+ <name>cooling_system_integrated_heating_system_fraction_heat_load_served</name>
2408
+ <display_name>Cooling System: Integrated Heating System Fraction Heat Load Served</display_name>
2409
+ <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>
2410
+ <type>Double</type>
2411
+ <units>Frac</units>
2412
+ <required>false</required>
2413
+ <model_dependent>false</model_dependent>
2414
+ </argument>
2415
+ <argument>
2416
+ <name>heat_pump_type</name>
2417
+ <display_name>Heat Pump: Type</display_name>
2418
+ <description>The type of heat pump. Use 'none' if there is no heat pump.</description>
2419
+ <type>Choice</type>
2420
+ <required>true</required>
2421
+ <model_dependent>false</model_dependent>
2422
+ <default_value>none</default_value>
2423
+ <choices>
2424
+ <choice>
2425
+ <value>none</value>
2426
+ <display_name>none</display_name>
2427
+ </choice>
2428
+ <choice>
2429
+ <value>air-to-air</value>
2430
+ <display_name>air-to-air</display_name>
2431
+ </choice>
2432
+ <choice>
2433
+ <value>mini-split</value>
2434
+ <display_name>mini-split</display_name>
2435
+ </choice>
2436
+ <choice>
2437
+ <value>ground-to-air</value>
2438
+ <display_name>ground-to-air</display_name>
2439
+ </choice>
2440
+ <choice>
2441
+ <value>packaged terminal heat pump</value>
2442
+ <display_name>packaged terminal heat pump</display_name>
2443
+ </choice>
2444
+ <choice>
2445
+ <value>room air conditioner with reverse cycle</value>
2446
+ <display_name>room air conditioner with reverse cycle</display_name>
2447
+ </choice>
2448
+ </choices>
2449
+ </argument>
2450
+ <argument>
2451
+ <name>heat_pump_heating_efficiency_type</name>
2452
+ <display_name>Heat Pump: Heating Efficiency Type</display_name>
2453
+ <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>
2454
+ <type>Choice</type>
2210
2455
  <required>true</required>
2211
2456
  <model_dependent>false</model_dependent>
2212
2457
  <default_value>HSPF</default_value>
@@ -2215,6 +2460,10 @@
2215
2460
  <value>HSPF</value>
2216
2461
  <display_name>HSPF</display_name>
2217
2462
  </choice>
2463
+ <choice>
2464
+ <value>HSPF2</value>
2465
+ <display_name>HSPF2</display_name>
2466
+ </choice>
2218
2467
  <choice>
2219
2468
  <value>COP</value>
2220
2469
  <display_name>COP</display_name>
@@ -2226,7 +2475,6 @@
2226
2475
  <display_name>Heat Pump: Heating Efficiency</display_name>
2227
2476
  <description>The rated heating efficiency value of the heat pump.</description>
2228
2477
  <type>Double</type>
2229
- <units>HSPF or COP</units>
2230
2478
  <required>true</required>
2231
2479
  <model_dependent>false</model_dependent>
2232
2480
  <default_value>7.7</default_value>
@@ -2234,7 +2482,7 @@
2234
2482
  <argument>
2235
2483
  <name>heat_pump_cooling_efficiency_type</name>
2236
2484
  <display_name>Heat Pump: Cooling Efficiency Type</display_name>
2237
- <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>
2485
+ <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>
2238
2486
  <type>Choice</type>
2239
2487
  <required>true</required>
2240
2488
  <model_dependent>false</model_dependent>
@@ -2244,6 +2492,10 @@
2244
2492
  <value>SEER</value>
2245
2493
  <display_name>SEER</display_name>
2246
2494
  </choice>
2495
+ <choice>
2496
+ <value>SEER2</value>
2497
+ <display_name>SEER2</display_name>
2498
+ </choice>
2247
2499
  <choice>
2248
2500
  <value>EER</value>
2249
2501
  <display_name>EER</display_name>
@@ -2259,7 +2511,6 @@
2259
2511
  <display_name>Heat Pump: Cooling Efficiency</display_name>
2260
2512
  <description>The rated cooling efficiency value of the heat pump.</description>
2261
2513
  <type>Double</type>
2262
- <units>SEER or EER</units>
2263
2514
  <required>true</required>
2264
2515
  <model_dependent>false</model_dependent>
2265
2516
  <default_value>13</default_value>
@@ -2267,7 +2518,7 @@
2267
2518
  <argument>
2268
2519
  <name>heat_pump_cooling_compressor_type</name>
2269
2520
  <display_name>Heat Pump: Cooling Compressor Type</display_name>
2270
- <description>The compressor type of the heat pump. Only applies to air-to-air.</description>
2521
+ <description>The compressor type of the heat pump. Only applies to air-to-air. If not provided, the OS-HPXML default is used.</description>
2271
2522
  <type>Choice</type>
2272
2523
  <required>false</required>
2273
2524
  <model_dependent>false</model_dependent>
@@ -2289,7 +2540,7 @@
2289
2540
  <argument>
2290
2541
  <name>heat_pump_cooling_sensible_heat_fraction</name>
2291
2542
  <display_name>Heat Pump: Cooling Sensible Heat Fraction</display_name>
2292
- <description>The sensible heat fraction of the heat pump.</description>
2543
+ <description>The sensible heat fraction of the heat pump. If not provided, the OS-HPXML default is used.</description>
2293
2544
  <type>Double</type>
2294
2545
  <units>Frac</units>
2295
2546
  <required>false</required>
@@ -2298,32 +2549,29 @@
2298
2549
  <argument>
2299
2550
  <name>heat_pump_heating_capacity</name>
2300
2551
  <display_name>Heat Pump: Heating Capacity</display_name>
2301
- <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.</description>
2302
- <type>String</type>
2552
+ <description>The output heating capacity of the heat pump. If not provided, the OS-HPXML autosized default is used.</description>
2553
+ <type>Double</type>
2303
2554
  <units>Btu/hr</units>
2304
- <required>true</required>
2555
+ <required>false</required>
2305
2556
  <model_dependent>false</model_dependent>
2306
- <default_value>auto</default_value>
2307
2557
  </argument>
2308
2558
  <argument>
2309
2559
  <name>heat_pump_heating_capacity_17_f</name>
2310
2560
  <display_name>Heat Pump: Heating Capacity 17F</display_name>
2311
- <description>The output heating capacity of the heat pump at 17F. Only applies to air-to-air and mini-split.</description>
2312
- <type>String</type>
2561
+ <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>
2562
+ <type>Double</type>
2313
2563
  <units>Btu/hr</units>
2314
- <required>true</required>
2564
+ <required>false</required>
2315
2565
  <model_dependent>false</model_dependent>
2316
- <default_value>auto</default_value>
2317
2566
  </argument>
2318
2567
  <argument>
2319
2568
  <name>heat_pump_cooling_capacity</name>
2320
2569
  <display_name>Heat Pump: Cooling Capacity</display_name>
2321
- <description>The output cooling capacity of the heat pump. Enter 'auto' to size the capacity based on ACCA Manual J/S.</description>
2322
- <type>String</type>
2570
+ <description>The output cooling capacity of the heat pump. If not provided, the OS-HPXML autosized default is used.</description>
2571
+ <type>Double</type>
2323
2572
  <units>Btu/hr</units>
2324
- <required>true</required>
2573
+ <required>false</required>
2325
2574
  <model_dependent>false</model_dependent>
2326
- <default_value>auto</default_value>
2327
2575
  </argument>
2328
2576
  <argument>
2329
2577
  <name>heat_pump_fraction_heat_load_served</name>
@@ -2407,26 +2655,56 @@
2407
2655
  <argument>
2408
2656
  <name>heat_pump_backup_heating_capacity</name>
2409
2657
  <display_name>Heat Pump: Backup Heating Capacity</display_name>
2410
- <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>
2411
- <type>String</type>
2658
+ <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>
2659
+ <type>Double</type>
2412
2660
  <units>Btu/hr</units>
2413
- <required>true</required>
2661
+ <required>false</required>
2414
2662
  <model_dependent>false</model_dependent>
2415
- <default_value>auto</default_value>
2416
2663
  </argument>
2417
2664
  <argument>
2418
2665
  <name>heat_pump_backup_heating_switchover_temp</name>
2419
2666
  <display_name>Heat Pump: Backup Heating Switchover Temperature</display_name>
2420
- <description>The temperature at which the heat pump stops operating and the backup heating system starts running. Only applies to air-to-air and mini-split. If not provided, backup heating will operate as needed when heat pump capacity is insufficient. Applies if Backup Type is either 'integrated' or 'separate'.</description>
2667
+ <description>The temperature at which the heat pump stops operating and the backup heating system starts running. Only applies to air-to-air and mini-split. If not provided, backup heating will operate as needed when heat pump capacity is insufficient. Applies if Backup Type is either 'integrated' or 'separate'. Both Switchover Temperature and Lockout Temperature cannot be specified.</description>
2668
+ <type>Double</type>
2669
+ <units>deg-F</units>
2670
+ <required>false</required>
2671
+ <model_dependent>false</model_dependent>
2672
+ </argument>
2673
+ <argument>
2674
+ <name>heat_pump_backup_heating_lockout_temp</name>
2675
+ <display_name>Heat Pump: Backup Heating Lockout Temperature</display_name>
2676
+ <description>The temperature above which the backup system is disabled in order to prevent backup heating operation during, e.g., a thermostat heating setback recovery event. If not provided, backup heating will operate as needed when heat pump capacity is insufficient. Only applies if Backup Type is 'integrated'. Both Switchover Temperature and Lockout Temperature cannot be specified.</description>
2421
2677
  <type>Double</type>
2422
2678
  <units>deg-F</units>
2423
2679
  <required>false</required>
2424
2680
  <model_dependent>false</model_dependent>
2425
2681
  </argument>
2682
+ <argument>
2683
+ <name>heat_pump_sizing_methodology</name>
2684
+ <display_name>Heat Pump: Sizing Methodology</display_name>
2685
+ <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>
2686
+ <type>Choice</type>
2687
+ <required>false</required>
2688
+ <model_dependent>false</model_dependent>
2689
+ <choices>
2690
+ <choice>
2691
+ <value>ACCA</value>
2692
+ <display_name>ACCA</display_name>
2693
+ </choice>
2694
+ <choice>
2695
+ <value>HERS</value>
2696
+ <display_name>HERS</display_name>
2697
+ </choice>
2698
+ <choice>
2699
+ <value>MaxLoad</value>
2700
+ <display_name>MaxLoad</display_name>
2701
+ </choice>
2702
+ </choices>
2703
+ </argument>
2426
2704
  <argument>
2427
2705
  <name>heat_pump_is_ducted</name>
2428
2706
  <display_name>Heat Pump: Is Ducted</display_name>
2429
- <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>
2707
+ <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>
2430
2708
  <type>Boolean</type>
2431
2709
  <required>false</required>
2432
2710
  <model_dependent>false</model_dependent>
@@ -2444,7 +2722,7 @@
2444
2722
  <argument>
2445
2723
  <name>heat_pump_airflow_defect_ratio</name>
2446
2724
  <display_name>Heat Pump: Airflow Defect Ratio</display_name>
2447
- <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>
2725
+ <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>
2448
2726
  <type>Double</type>
2449
2727
  <units>Frac</units>
2450
2728
  <required>false</required>
@@ -2453,7 +2731,7 @@
2453
2731
  <argument>
2454
2732
  <name>heat_pump_charge_defect_ratio</name>
2455
2733
  <display_name>Heat Pump: Charge Defect Ratio</display_name>
2456
- <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>
2734
+ <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>
2457
2735
  <type>Double</type>
2458
2736
  <units>Frac</units>
2459
2737
  <required>false</required>
@@ -2554,12 +2832,11 @@
2554
2832
  <argument>
2555
2833
  <name>heating_system_2_heating_capacity</name>
2556
2834
  <display_name>Heating System 2: Heating Capacity</display_name>
2557
- <description>The output heating capacity of the second heating system. Enter 'auto' to size the capacity based on ACCA Manual J/S.</description>
2558
- <type>String</type>
2835
+ <description>The output heating capacity of the second heating system. If not provided, the OS-HPXML autosized default is used.</description>
2836
+ <type>Double</type>
2559
2837
  <units>Btu/hr</units>
2560
- <required>true</required>
2838
+ <required>false</required>
2561
2839
  <model_dependent>false</model_dependent>
2562
- <default_value>auto</default_value>
2563
2840
  </argument>
2564
2841
  <argument>
2565
2842
  <name>heating_system_2_fraction_heat_load_served</name>
@@ -2571,69 +2848,46 @@
2571
2848
  <model_dependent>false</model_dependent>
2572
2849
  <default_value>0.25</default_value>
2573
2850
  </argument>
2574
- <argument>
2575
- <name>hvac_control_type</name>
2576
- <display_name>HVAC Control: Type</display_name>
2577
- <description>The type of thermostat.</description>
2578
- <type>Choice</type>
2579
- <required>false</required>
2580
- <model_dependent>false</model_dependent>
2581
- <default_value>manual thermostat</default_value>
2582
- <choices>
2583
- <choice>
2584
- <value>manual thermostat</value>
2585
- <display_name>manual thermostat</display_name>
2586
- </choice>
2587
- <choice>
2588
- <value>programmable thermostat</value>
2589
- <display_name>programmable thermostat</display_name>
2590
- </choice>
2591
- </choices>
2592
- </argument>
2593
2851
  <argument>
2594
2852
  <name>hvac_control_heating_weekday_setpoint</name>
2595
2853
  <display_name>HVAC Control: Heating Weekday Setpoint Schedule</display_name>
2596
- <description>Specify the constant or 24-hour comma-separated weekday heating setpoint schedule.</description>
2854
+ <description>Specify the constant or 24-hour comma-separated weekday heating setpoint schedule. Required unless a detailed CSV schedule is provided.</description>
2597
2855
  <type>String</type>
2598
2856
  <units>deg-F</units>
2599
- <required>true</required>
2857
+ <required>false</required>
2600
2858
  <model_dependent>false</model_dependent>
2601
- <default_value>71</default_value>
2602
2859
  </argument>
2603
2860
  <argument>
2604
2861
  <name>hvac_control_heating_weekend_setpoint</name>
2605
2862
  <display_name>HVAC Control: Heating Weekend Setpoint Schedule</display_name>
2606
- <description>Specify the constant or 24-hour comma-separated weekend heating setpoint schedule.</description>
2863
+ <description>Specify the constant or 24-hour comma-separated weekend heating setpoint schedule. Required unless a detailed CSV schedule is provided.</description>
2607
2864
  <type>String</type>
2608
2865
  <units>deg-F</units>
2609
- <required>true</required>
2866
+ <required>false</required>
2610
2867
  <model_dependent>false</model_dependent>
2611
- <default_value>71</default_value>
2612
2868
  </argument>
2613
2869
  <argument>
2614
2870
  <name>hvac_control_cooling_weekday_setpoint</name>
2615
2871
  <display_name>HVAC Control: Cooling Weekday Setpoint Schedule</display_name>
2616
- <description>Specify the constant or 24-hour comma-separated weekday cooling setpoint schedule.</description>
2872
+ <description>Specify the constant or 24-hour comma-separated weekday cooling setpoint schedule. Required unless a detailed CSV schedule is provided.</description>
2617
2873
  <type>String</type>
2618
2874
  <units>deg-F</units>
2619
- <required>true</required>
2875
+ <required>false</required>
2620
2876
  <model_dependent>false</model_dependent>
2621
- <default_value>76</default_value>
2622
2877
  </argument>
2623
2878
  <argument>
2624
2879
  <name>hvac_control_cooling_weekend_setpoint</name>
2625
2880
  <display_name>HVAC Control: Cooling Weekend Setpoint Schedule</display_name>
2626
- <description>Specify the constant or 24-hour comma-separated weekend cooling setpoint schedule.</description>
2881
+ <description>Specify the constant or 24-hour comma-separated weekend cooling setpoint schedule. Required unless a detailed CSV schedule is provided.</description>
2627
2882
  <type>String</type>
2628
2883
  <units>deg-F</units>
2629
- <required>true</required>
2884
+ <required>false</required>
2630
2885
  <model_dependent>false</model_dependent>
2631
- <default_value>76</default_value>
2632
2886
  </argument>
2633
2887
  <argument>
2634
2888
  <name>hvac_control_heating_season_period</name>
2635
2889
  <display_name>HVAC Control: Heating Season Period</display_name>
2636
- <description>Enter a date like "Nov 1 - Jun 30".</description>
2890
+ <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>
2637
2891
  <type>String</type>
2638
2892
  <required>false</required>
2639
2893
  <model_dependent>false</model_dependent>
@@ -2641,7 +2895,7 @@
2641
2895
  <argument>
2642
2896
  <name>hvac_control_cooling_season_period</name>
2643
2897
  <display_name>HVAC Control: Cooling Season Period</display_name>
2644
- <description>Enter a date like "Jun 1 - Oct 31".</description>
2898
+ <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>
2645
2899
  <type>String</type>
2646
2900
  <required>false</required>
2647
2901
  <model_dependent>false</model_dependent>
@@ -2690,16 +2944,11 @@
2690
2944
  <argument>
2691
2945
  <name>ducts_supply_location</name>
2692
2946
  <display_name>Ducts: Supply Location</display_name>
2693
- <description>The location of the supply ducts.</description>
2947
+ <description>The location of the supply ducts. If not provided, the OS-HPXML default is used.</description>
2694
2948
  <type>Choice</type>
2695
- <required>true</required>
2949
+ <required>false</required>
2696
2950
  <model_dependent>false</model_dependent>
2697
- <default_value>auto</default_value>
2698
2951
  <choices>
2699
- <choice>
2700
- <value>auto</value>
2701
- <display_name>auto</display_name>
2702
- </choice>
2703
2952
  <choice>
2704
2953
  <value>living space</value>
2705
2954
  <display_name>living space</display_name>
@@ -2783,26 +3032,20 @@
2783
3032
  <argument>
2784
3033
  <name>ducts_supply_surface_area</name>
2785
3034
  <display_name>Ducts: Supply Surface Area</display_name>
2786
- <description>The surface area of the supply ducts.</description>
2787
- <type>String</type>
3035
+ <description>The surface area of the supply ducts. If not provided, the OS-HPXML default is used.</description>
3036
+ <type>Double</type>
2788
3037
  <units>ft^2</units>
2789
- <required>true</required>
3038
+ <required>false</required>
2790
3039
  <model_dependent>false</model_dependent>
2791
- <default_value>auto</default_value>
2792
3040
  </argument>
2793
3041
  <argument>
2794
3042
  <name>ducts_return_location</name>
2795
3043
  <display_name>Ducts: Return Location</display_name>
2796
- <description>The location of the return ducts.</description>
3044
+ <description>The location of the return ducts. If not provided, the OS-HPXML default is used.</description>
2797
3045
  <type>Choice</type>
2798
- <required>true</required>
3046
+ <required>false</required>
2799
3047
  <model_dependent>false</model_dependent>
2800
- <default_value>auto</default_value>
2801
3048
  <choices>
2802
- <choice>
2803
- <value>auto</value>
2804
- <display_name>auto</display_name>
2805
- </choice>
2806
3049
  <choice>
2807
3050
  <value>living space</value>
2808
3051
  <display_name>living space</display_name>
@@ -2886,22 +3129,20 @@
2886
3129
  <argument>
2887
3130
  <name>ducts_return_surface_area</name>
2888
3131
  <display_name>Ducts: Return Surface Area</display_name>
2889
- <description>The surface area of the return ducts.</description>
2890
- <type>String</type>
3132
+ <description>The surface area of the return ducts. If not provided, the OS-HPXML default is used.</description>
3133
+ <type>Double</type>
2891
3134
  <units>ft^2</units>
2892
- <required>true</required>
3135
+ <required>false</required>
2893
3136
  <model_dependent>false</model_dependent>
2894
- <default_value>auto</default_value>
2895
3137
  </argument>
2896
3138
  <argument>
2897
3139
  <name>ducts_number_of_return_registers</name>
2898
3140
  <display_name>Ducts: Number of Return Registers</display_name>
2899
- <description>The number of return registers of the ducts. Ignored for ducted evaporative cooler.</description>
2900
- <type>String</type>
3141
+ <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>
3142
+ <type>Integer</type>
2901
3143
  <units>#</units>
2902
- <required>true</required>
3144
+ <required>false</required>
2903
3145
  <model_dependent>false</model_dependent>
2904
- <default_value>auto</default_value>
2905
3146
  </argument>
2906
3147
  <argument>
2907
3148
  <name>mech_vent_fan_type</name>
@@ -2945,22 +3186,20 @@
2945
3186
  <argument>
2946
3187
  <name>mech_vent_flow_rate</name>
2947
3188
  <display_name>Mechanical Ventilation: Flow Rate</display_name>
2948
- <description>The flow rate of the mechanical ventilation.</description>
2949
- <type>String</type>
3189
+ <description>The flow rate of the mechanical ventilation. If not provided, the OS-HPXML default is used.</description>
3190
+ <type>Double</type>
2950
3191
  <units>CFM</units>
2951
- <required>true</required>
3192
+ <required>false</required>
2952
3193
  <model_dependent>false</model_dependent>
2953
- <default_value>auto</default_value>
2954
3194
  </argument>
2955
3195
  <argument>
2956
3196
  <name>mech_vent_hours_in_operation</name>
2957
3197
  <display_name>Mechanical Ventilation: Hours In Operation</display_name>
2958
- <description>The hours in operation of the mechanical ventilation.</description>
2959
- <type>String</type>
3198
+ <description>The hours in operation of the mechanical ventilation. If not provided, the OS-HPXML default is used.</description>
3199
+ <type>Double</type>
2960
3200
  <units>hrs/day</units>
2961
- <required>true</required>
3201
+ <required>false</required>
2962
3202
  <model_dependent>false</model_dependent>
2963
- <default_value>auto</default_value>
2964
3203
  </argument>
2965
3204
  <argument>
2966
3205
  <name>mech_vent_recovery_efficiency_type</name>
@@ -3004,12 +3243,11 @@
3004
3243
  <argument>
3005
3244
  <name>mech_vent_fan_power</name>
3006
3245
  <display_name>Mechanical Ventilation: Fan Power</display_name>
3007
- <description>The fan power of the mechanical ventilation.</description>
3008
- <type>String</type>
3246
+ <description>The fan power of the mechanical ventilation. If not provided, the OS-HPXML default is used.</description>
3247
+ <type>Double</type>
3009
3248
  <units>W</units>
3010
- <required>true</required>
3249
+ <required>false</required>
3011
3250
  <model_dependent>false</model_dependent>
3012
- <default_value>auto</default_value>
3013
3251
  </argument>
3014
3252
  <argument>
3015
3253
  <name>mech_vent_num_units_served</name>
@@ -3024,7 +3262,7 @@
3024
3262
  <argument>
3025
3263
  <name>mech_vent_shared_frac_recirculation</name>
3026
3264
  <display_name>Shared Mechanical Ventilation: Fraction Recirculation</display_name>
3027
- <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>
3265
+ <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>
3028
3266
  <type>Double</type>
3029
3267
  <units>Frac</units>
3030
3268
  <required>false</required>
@@ -3033,7 +3271,7 @@
3033
3271
  <argument>
3034
3272
  <name>mech_vent_shared_preheating_fuel</name>
3035
3273
  <display_name>Shared Mechanical Ventilation: Preheating Fuel</display_name>
3036
- <description>Fuel type of the preconditioning heating equipment. Only used for a shared mechanical ventilation system.</description>
3274
+ <description>Fuel type of the preconditioning heating equipment. Only used for a shared mechanical ventilation system. If not provided, assumes no preheating.</description>
3037
3275
  <type>Choice</type>
3038
3276
  <required>false</required>
3039
3277
  <model_dependent>false</model_dependent>
@@ -3071,7 +3309,7 @@
3071
3309
  <argument>
3072
3310
  <name>mech_vent_shared_preheating_efficiency</name>
3073
3311
  <display_name>Shared Mechanical Ventilation: Preheating Efficiency</display_name>
3074
- <description>Efficiency of the preconditioning heating equipment. Only used for a shared mechanical ventilation system.</description>
3312
+ <description>Efficiency of the preconditioning heating equipment. Only used for a shared mechanical ventilation system. If not provided, assumes no preheating.</description>
3075
3313
  <type>Double</type>
3076
3314
  <units>COP</units>
3077
3315
  <required>false</required>
@@ -3080,7 +3318,7 @@
3080
3318
  <argument>
3081
3319
  <name>mech_vent_shared_preheating_fraction_heat_load_served</name>
3082
3320
  <display_name>Shared Mechanical Ventilation: Preheating Fraction Ventilation Heat Load Served</display_name>
3083
- <description>Fraction of heating load introduced by the shared ventilation system that is met by the preconditioning heating equipment.</description>
3321
+ <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>
3084
3322
  <type>Double</type>
3085
3323
  <units>Frac</units>
3086
3324
  <required>false</required>
@@ -3089,7 +3327,7 @@
3089
3327
  <argument>
3090
3328
  <name>mech_vent_shared_precooling_fuel</name>
3091
3329
  <display_name>Shared Mechanical Ventilation: Precooling Fuel</display_name>
3092
- <description>Fuel type of the preconditioning cooling equipment. Only used for a shared mechanical ventilation system.</description>
3330
+ <description>Fuel type of the preconditioning cooling equipment. Only used for a shared mechanical ventilation system. If not provided, assumes no precooling.</description>
3093
3331
  <type>Choice</type>
3094
3332
  <required>false</required>
3095
3333
  <model_dependent>false</model_dependent>
@@ -3103,7 +3341,7 @@
3103
3341
  <argument>
3104
3342
  <name>mech_vent_shared_precooling_efficiency</name>
3105
3343
  <display_name>Shared Mechanical Ventilation: Precooling Efficiency</display_name>
3106
- <description>Efficiency of the preconditioning cooling equipment. Only used for a shared mechanical ventilation system.</description>
3344
+ <description>Efficiency of the preconditioning cooling equipment. Only used for a shared mechanical ventilation system. If not provided, assumes no precooling.</description>
3107
3345
  <type>Double</type>
3108
3346
  <units>COP</units>
3109
3347
  <required>false</required>
@@ -3112,7 +3350,7 @@
3112
3350
  <argument>
3113
3351
  <name>mech_vent_shared_precooling_fraction_cool_load_served</name>
3114
3352
  <display_name>Shared Mechanical Ventilation: Precooling Fraction Ventilation Cool Load Served</display_name>
3115
- <description>Fraction of cooling load introduced by the shared ventilation system that is met by the preconditioning cooling equipment.</description>
3353
+ <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>
3116
3354
  <type>Double</type>
3117
3355
  <units>Frac</units>
3118
3356
  <required>false</required>
@@ -3225,102 +3463,92 @@
3225
3463
  <argument>
3226
3464
  <name>kitchen_fans_quantity</name>
3227
3465
  <display_name>Kitchen Fans: Quantity</display_name>
3228
- <description>The quantity of the kitchen fans.</description>
3229
- <type>String</type>
3466
+ <description>The quantity of the kitchen fans. If not provided, the OS-HPXML default is used.</description>
3467
+ <type>Integer</type>
3230
3468
  <units>#</units>
3231
- <required>true</required>
3469
+ <required>false</required>
3232
3470
  <model_dependent>false</model_dependent>
3233
- <default_value>auto</default_value>
3234
3471
  </argument>
3235
3472
  <argument>
3236
3473
  <name>kitchen_fans_flow_rate</name>
3237
3474
  <display_name>Kitchen Fans: Flow Rate</display_name>
3238
- <description>The flow rate of the kitchen fan.</description>
3239
- <type>String</type>
3475
+ <description>The flow rate of the kitchen fan. If not provided, the OS-HPXML default is used.</description>
3476
+ <type>Double</type>
3240
3477
  <units>CFM</units>
3241
3478
  <required>false</required>
3242
3479
  <model_dependent>false</model_dependent>
3243
- <default_value>auto</default_value>
3244
3480
  </argument>
3245
3481
  <argument>
3246
3482
  <name>kitchen_fans_hours_in_operation</name>
3247
3483
  <display_name>Kitchen Fans: Hours In Operation</display_name>
3248
- <description>The hours in operation of the kitchen fan.</description>
3249
- <type>String</type>
3484
+ <description>The hours in operation of the kitchen fan. If not provided, the OS-HPXML default is used.</description>
3485
+ <type>Double</type>
3250
3486
  <units>hrs/day</units>
3251
3487
  <required>false</required>
3252
3488
  <model_dependent>false</model_dependent>
3253
- <default_value>auto</default_value>
3254
3489
  </argument>
3255
3490
  <argument>
3256
3491
  <name>kitchen_fans_power</name>
3257
3492
  <display_name>Kitchen Fans: Fan Power</display_name>
3258
- <description>The fan power of the kitchen fan.</description>
3259
- <type>String</type>
3493
+ <description>The fan power of the kitchen fan. If not provided, the OS-HPXML default is used.</description>
3494
+ <type>Double</type>
3260
3495
  <units>W</units>
3261
3496
  <required>false</required>
3262
3497
  <model_dependent>false</model_dependent>
3263
- <default_value>auto</default_value>
3264
3498
  </argument>
3265
3499
  <argument>
3266
3500
  <name>kitchen_fans_start_hour</name>
3267
3501
  <display_name>Kitchen Fans: Start Hour</display_name>
3268
- <description>The start hour of the kitchen fan.</description>
3269
- <type>String</type>
3502
+ <description>The start hour of the kitchen fan. If not provided, the OS-HPXML default is used.</description>
3503
+ <type>Integer</type>
3270
3504
  <units>hr</units>
3271
3505
  <required>false</required>
3272
3506
  <model_dependent>false</model_dependent>
3273
- <default_value>auto</default_value>
3274
3507
  </argument>
3275
3508
  <argument>
3276
3509
  <name>bathroom_fans_quantity</name>
3277
3510
  <display_name>Bathroom Fans: Quantity</display_name>
3278
- <description>The quantity of the bathroom fans.</description>
3279
- <type>String</type>
3511
+ <description>The quantity of the bathroom fans. If not provided, the OS-HPXML default is used.</description>
3512
+ <type>Integer</type>
3280
3513
  <units>#</units>
3281
- <required>true</required>
3514
+ <required>false</required>
3282
3515
  <model_dependent>false</model_dependent>
3283
- <default_value>auto</default_value>
3284
3516
  </argument>
3285
3517
  <argument>
3286
3518
  <name>bathroom_fans_flow_rate</name>
3287
3519
  <display_name>Bathroom Fans: Flow Rate</display_name>
3288
- <description>The flow rate of the bathroom fans.</description>
3289
- <type>String</type>
3520
+ <description>The flow rate of the bathroom fans. If not provided, the OS-HPXML default is used.</description>
3521
+ <type>Double</type>
3290
3522
  <units>CFM</units>
3291
3523
  <required>false</required>
3292
3524
  <model_dependent>false</model_dependent>
3293
- <default_value>auto</default_value>
3294
3525
  </argument>
3295
3526
  <argument>
3296
3527
  <name>bathroom_fans_hours_in_operation</name>
3297
3528
  <display_name>Bathroom Fans: Hours In Operation</display_name>
3298
- <description>The hours in operation of the bathroom fans.</description>
3299
- <type>String</type>
3529
+ <description>The hours in operation of the bathroom fans. If not provided, the OS-HPXML default is used.</description>
3530
+ <type>Double</type>
3300
3531
  <units>hrs/day</units>
3301
3532
  <required>false</required>
3302
3533
  <model_dependent>false</model_dependent>
3303
- <default_value>auto</default_value>
3304
3534
  </argument>
3305
3535
  <argument>
3306
3536
  <name>bathroom_fans_power</name>
3307
3537
  <display_name>Bathroom Fans: Fan Power</display_name>
3308
- <description>The fan power of the bathroom fans.</description>
3309
- <type>String</type>
3538
+ <description>The fan power of the bathroom fans. If not provided, the OS-HPXML default is used.</description>
3539
+ <type>Double</type>
3310
3540
  <units>W</units>
3311
3541
  <required>false</required>
3312
3542
  <model_dependent>false</model_dependent>
3313
- <default_value>auto</default_value>
3314
3543
  </argument>
3315
3544
  <argument>
3316
3545
  <name>bathroom_fans_start_hour</name>
3317
3546
  <display_name>Bathroom Fans: Start Hour</display_name>
3318
- <description>The start hour of the bathroom fans.</description>
3319
- <type>String</type>
3547
+ <description>The start hour of the bathroom fans. If not provided, the OS-HPXML default is used.</description>
3548
+ <type>Integer</type>
3320
3549
  <units>hr</units>
3321
3550
  <required>false</required>
3322
3551
  <model_dependent>false</model_dependent>
3323
- <default_value>auto</default_value>
3324
3552
  </argument>
3325
3553
  <argument>
3326
3554
  <name>whole_house_fan_present</name>
@@ -3344,22 +3572,20 @@
3344
3572
  <argument>
3345
3573
  <name>whole_house_fan_flow_rate</name>
3346
3574
  <display_name>Whole House Fan: Flow Rate</display_name>
3347
- <description>The flow rate of the whole house fan.</description>
3348
- <type>String</type>
3575
+ <description>The flow rate of the whole house fan. If not provided, the OS-HPXML default is used.</description>
3576
+ <type>Double</type>
3349
3577
  <units>CFM</units>
3350
3578
  <required>false</required>
3351
3579
  <model_dependent>false</model_dependent>
3352
- <default_value>auto</default_value>
3353
3580
  </argument>
3354
3581
  <argument>
3355
3582
  <name>whole_house_fan_power</name>
3356
3583
  <display_name>Whole House Fan: Fan Power</display_name>
3357
- <description>The fan power of the whole house fan.</description>
3358
- <type>String</type>
3584
+ <description>The fan power of the whole house fan. If not provided, the OS-HPXML default is used.</description>
3585
+ <type>Double</type>
3359
3586
  <units>W</units>
3360
3587
  <required>false</required>
3361
3588
  <model_dependent>false</model_dependent>
3362
- <default_value>auto</default_value>
3363
3589
  </argument>
3364
3590
  <argument>
3365
3591
  <name>water_heater_type</name>
@@ -3434,16 +3660,11 @@
3434
3660
  <argument>
3435
3661
  <name>water_heater_location</name>
3436
3662
  <display_name>Water Heater: Location</display_name>
3437
- <description>The location of water heater.</description>
3663
+ <description>The location of water heater. If not provided, the OS-HPXML default is used.</description>
3438
3664
  <type>Choice</type>
3439
- <required>true</required>
3665
+ <required>false</required>
3440
3666
  <model_dependent>false</model_dependent>
3441
- <default_value>auto</default_value>
3442
3667
  <choices>
3443
- <choice>
3444
- <value>auto</value>
3445
- <display_name>auto</display_name>
3446
- </choice>
3447
3668
  <choice>
3448
3669
  <value>living space</value>
3449
3670
  <display_name>living space</display_name>
@@ -3505,12 +3726,11 @@
3505
3726
  <argument>
3506
3727
  <name>water_heater_tank_volume</name>
3507
3728
  <display_name>Water Heater: Tank Volume</display_name>
3508
- <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>
3509
- <type>String</type>
3729
+ <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>
3730
+ <type>Double</type>
3510
3731
  <units>gal</units>
3511
- <required>true</required>
3732
+ <required>false</required>
3512
3733
  <model_dependent>false</model_dependent>
3513
- <default_value>auto</default_value>
3514
3734
  </argument>
3515
3735
  <argument>
3516
3736
  <name>water_heater_efficiency_type</name>
@@ -3543,7 +3763,7 @@
3543
3763
  <argument>
3544
3764
  <name>water_heater_usage_bin</name>
3545
3765
  <display_name>Water Heater: Usage Bin</display_name>
3546
- <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>
3766
+ <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>
3547
3767
  <type>Choice</type>
3548
3768
  <required>false</required>
3549
3769
  <model_dependent>false</model_dependent>
@@ -3569,27 +3789,25 @@
3569
3789
  <argument>
3570
3790
  <name>water_heater_recovery_efficiency</name>
3571
3791
  <display_name>Water Heater: Recovery Efficiency</display_name>
3572
- <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>
3573
- <type>String</type>
3792
+ <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>
3793
+ <type>Double</type>
3574
3794
  <units>Frac</units>
3575
- <required>true</required>
3795
+ <required>false</required>
3576
3796
  <model_dependent>false</model_dependent>
3577
- <default_value>auto</default_value>
3578
3797
  </argument>
3579
3798
  <argument>
3580
3799
  <name>water_heater_heating_capacity</name>
3581
3800
  <display_name>Water Heater: Heating Capacity</display_name>
3582
- <description>Heating capacity. Set to 'auto' to have heating capacity defaulted. Only applies to storage water heater.</description>
3583
- <type>String</type>
3801
+ <description>Heating capacity. Only applies to storage water heater. If not provided, the OS-HPXML default is used.</description>
3802
+ <type>Double</type>
3584
3803
  <units>Btu/hr</units>
3585
- <required>true</required>
3804
+ <required>false</required>
3586
3805
  <model_dependent>false</model_dependent>
3587
- <default_value>auto</default_value>
3588
3806
  </argument>
3589
3807
  <argument>
3590
3808
  <name>water_heater_standby_loss</name>
3591
3809
  <display_name>Water Heater: Standby Loss</display_name>
3592
- <description>The standby loss of water heater. Only applies to space-heating boilers.</description>
3810
+ <description>The standby loss of water heater. Only applies to space-heating boilers. If not provided, the OS-HPXML default is used.</description>
3593
3811
  <type>Double</type>
3594
3812
  <units>deg-F/hr</units>
3595
3813
  <required>false</required>
@@ -3598,7 +3816,7 @@
3598
3816
  <argument>
3599
3817
  <name>water_heater_jacket_rvalue</name>
3600
3818
  <display_name>Water Heater: Jacket R-value</display_name>
3601
- <description>The jacket R-value of water heater. Doesn't apply to instantaneous water heater or space-heating boiler with tankless coil.</description>
3819
+ <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>
3602
3820
  <type>Double</type>
3603
3821
  <units>h-ft^2-R/Btu</units>
3604
3822
  <required>false</required>
@@ -3607,12 +3825,11 @@
3607
3825
  <argument>
3608
3826
  <name>water_heater_setpoint_temperature</name>
3609
3827
  <display_name>Water Heater: Setpoint Temperature</display_name>
3610
- <description>The setpoint temperature of water heater.</description>
3611
- <type>String</type>
3828
+ <description>The setpoint temperature of water heater. If not provided, the OS-HPXML default is used.</description>
3829
+ <type>Double</type>
3612
3830
  <units>deg-F</units>
3613
- <required>true</required>
3831
+ <required>false</required>
3614
3832
  <model_dependent>false</model_dependent>
3615
- <default_value>auto</default_value>
3616
3833
  </argument>
3617
3834
  <argument>
3618
3835
  <name>water_heater_num_units_served</name>
@@ -3627,7 +3844,7 @@
3627
3844
  <argument>
3628
3845
  <name>water_heater_uses_desuperheater</name>
3629
3846
  <display_name>Water Heater: Uses Desuperheater</display_name>
3630
- <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>
3847
+ <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>
3631
3848
  <type>Boolean</type>
3632
3849
  <required>false</required>
3633
3850
  <model_dependent>false</model_dependent>
@@ -3642,6 +3859,42 @@
3642
3859
  </choice>
3643
3860
  </choices>
3644
3861
  </argument>
3862
+ <argument>
3863
+ <name>water_heater_tank_model_type</name>
3864
+ <display_name>Water Heater: Tank Type</display_name>
3865
+ <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>
3866
+ <type>Choice</type>
3867
+ <required>false</required>
3868
+ <model_dependent>false</model_dependent>
3869
+ <choices>
3870
+ <choice>
3871
+ <value>mixed</value>
3872
+ <display_name>mixed</display_name>
3873
+ </choice>
3874
+ <choice>
3875
+ <value>stratified</value>
3876
+ <display_name>stratified</display_name>
3877
+ </choice>
3878
+ </choices>
3879
+ </argument>
3880
+ <argument>
3881
+ <name>water_heater_operating_mode</name>
3882
+ <display_name>Water Heater: Operating Mode</display_name>
3883
+ <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>
3884
+ <type>Choice</type>
3885
+ <required>false</required>
3886
+ <model_dependent>false</model_dependent>
3887
+ <choices>
3888
+ <choice>
3889
+ <value>standard</value>
3890
+ <display_name>standard</display_name>
3891
+ </choice>
3892
+ <choice>
3893
+ <value>heat pump only</value>
3894
+ <display_name>heat pump only</display_name>
3895
+ </choice>
3896
+ </choices>
3897
+ </argument>
3645
3898
  <argument>
3646
3899
  <name>hot_water_distribution_system_type</name>
3647
3900
  <display_name>Hot Water Distribution: System Type</display_name>
@@ -3664,12 +3917,11 @@
3664
3917
  <argument>
3665
3918
  <name>hot_water_distribution_standard_piping_length</name>
3666
3919
  <display_name>Hot Water Distribution: Standard Piping Length</display_name>
3667
- <description>If the distribution system is Standard, the length of the piping. A value of 'auto' will use a default.</description>
3668
- <type>String</type>
3920
+ <description>If the distribution system is Standard, the length of the piping. If not provided, the OS-HPXML default is used.</description>
3921
+ <type>Double</type>
3669
3922
  <units>ft</units>
3670
- <required>true</required>
3923
+ <required>false</required>
3671
3924
  <model_dependent>false</model_dependent>
3672
- <default_value>auto</default_value>
3673
3925
  </argument>
3674
3926
  <argument>
3675
3927
  <name>hot_water_distribution_recirc_control_type</name>
@@ -3705,42 +3957,38 @@
3705
3957
  <argument>
3706
3958
  <name>hot_water_distribution_recirc_piping_length</name>
3707
3959
  <display_name>Hot Water Distribution: Recirculation Piping Length</display_name>
3708
- <description>If the distribution system is Recirculation, the length of the recirculation piping.</description>
3709
- <type>String</type>
3960
+ <description>If the distribution system is Recirculation, the length of the recirculation piping. If not provided, the OS-HPXML default is used.</description>
3961
+ <type>Double</type>
3710
3962
  <units>ft</units>
3711
- <required>true</required>
3963
+ <required>false</required>
3712
3964
  <model_dependent>false</model_dependent>
3713
- <default_value>auto</default_value>
3714
3965
  </argument>
3715
3966
  <argument>
3716
3967
  <name>hot_water_distribution_recirc_branch_piping_length</name>
3717
3968
  <display_name>Hot Water Distribution: Recirculation Branch Piping Length</display_name>
3718
- <description>If the distribution system is Recirculation, the length of the recirculation branch piping.</description>
3719
- <type>String</type>
3969
+ <description>If the distribution system is Recirculation, the length of the recirculation branch piping. If not provided, the OS-HPXML default is used.</description>
3970
+ <type>Double</type>
3720
3971
  <units>ft</units>
3721
- <required>true</required>
3972
+ <required>false</required>
3722
3973
  <model_dependent>false</model_dependent>
3723
- <default_value>auto</default_value>
3724
3974
  </argument>
3725
3975
  <argument>
3726
3976
  <name>hot_water_distribution_recirc_pump_power</name>
3727
3977
  <display_name>Hot Water Distribution: Recirculation Pump Power</display_name>
3728
- <description>If the distribution system is Recirculation, the recirculation pump power.</description>
3729
- <type>String</type>
3978
+ <description>If the distribution system is Recirculation, the recirculation pump power. If not provided, the OS-HPXML default is used.</description>
3979
+ <type>Double</type>
3730
3980
  <units>W</units>
3731
- <required>true</required>
3981
+ <required>false</required>
3732
3982
  <model_dependent>false</model_dependent>
3733
- <default_value>auto</default_value>
3734
3983
  </argument>
3735
3984
  <argument>
3736
3985
  <name>hot_water_distribution_pipe_r</name>
3737
3986
  <display_name>Hot Water Distribution: Pipe Insulation Nominal R-Value</display_name>
3738
- <description>Nominal R-value of the pipe insulation.</description>
3739
- <type>String</type>
3987
+ <description>Nominal R-value of the pipe insulation. If not provided, the OS-HPXML default is used.</description>
3988
+ <type>Double</type>
3740
3989
  <units>h-ft^2-R/Btu</units>
3741
- <required>true</required>
3990
+ <required>false</required>
3742
3991
  <model_dependent>false</model_dependent>
3743
- <default_value>auto</default_value>
3744
3992
  </argument>
3745
3993
  <argument>
3746
3994
  <name>dwhr_facilities_connected</name>
@@ -3835,11 +4083,10 @@
3835
4083
  <argument>
3836
4084
  <name>water_fixtures_usage_multiplier</name>
3837
4085
  <display_name>Hot Water Fixtures: Usage Multiplier</display_name>
3838
- <description>Multiplier on the hot water usage that can reflect, e.g., high/low usage occupants.</description>
4086
+ <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>
3839
4087
  <type>Double</type>
3840
- <required>true</required>
4088
+ <required>false</required>
3841
4089
  <model_dependent>false</model_dependent>
3842
- <default_value>1</default_value>
3843
4090
  </argument>
3844
4091
  <argument>
3845
4092
  <name>solar_thermal_system_type</name>
@@ -3955,7 +4202,7 @@
3955
4202
  <display_name>Solar Thermal: Collector Rated Thermal Losses</display_name>
3956
4203
  <description>The collector rated thermal losses of the solar thermal system.</description>
3957
4204
  <type>Double</type>
3958
- <units>Frac</units>
4205
+ <units>Btu/hr-ft^2-R</units>
3959
4206
  <required>true</required>
3960
4207
  <model_dependent>false</model_dependent>
3961
4208
  <default_value>0.2799</default_value>
@@ -3963,12 +4210,11 @@
3963
4210
  <argument>
3964
4211
  <name>solar_thermal_storage_volume</name>
3965
4212
  <display_name>Solar Thermal: Storage Volume</display_name>
3966
- <description>The storage volume of the solar thermal system.</description>
3967
- <type>String</type>
3968
- <units>Frac</units>
3969
- <required>true</required>
4213
+ <description>The storage volume of the solar thermal system. If not provided, the OS-HPXML default is used.</description>
4214
+ <type>Double</type>
4215
+ <units>gal</units>
4216
+ <required>false</required>
3970
4217
  <model_dependent>false</model_dependent>
3971
- <default_value>auto</default_value>
3972
4218
  </argument>
3973
4219
  <argument>
3974
4220
  <name>solar_thermal_solar_fraction</name>
@@ -3981,22 +4227,32 @@
3981
4227
  <default_value>0</default_value>
3982
4228
  </argument>
3983
4229
  <argument>
3984
- <name>pv_system_module_type</name>
3985
- <display_name>PV System: Module Type</display_name>
3986
- <description>Module type of the PV system. Use 'none' if there is no PV system.</description>
3987
- <type>Choice</type>
4230
+ <name>pv_system_present</name>
4231
+ <display_name>PV System: Present</display_name>
4232
+ <description>Whether there is a PV system present.</description>
4233
+ <type>Boolean</type>
3988
4234
  <required>true</required>
3989
4235
  <model_dependent>false</model_dependent>
3990
- <default_value>none</default_value>
4236
+ <default_value>false</default_value>
3991
4237
  <choices>
3992
4238
  <choice>
3993
- <value>none</value>
3994
- <display_name>none</display_name>
4239
+ <value>true</value>
4240
+ <display_name>true</display_name>
3995
4241
  </choice>
3996
4242
  <choice>
3997
- <value>auto</value>
3998
- <display_name>auto</display_name>
4243
+ <value>false</value>
4244
+ <display_name>false</display_name>
3999
4245
  </choice>
4246
+ </choices>
4247
+ </argument>
4248
+ <argument>
4249
+ <name>pv_system_module_type</name>
4250
+ <display_name>PV System: Module Type</display_name>
4251
+ <description>Module type of the PV system. If not provided, the OS-HPXML default is used.</description>
4252
+ <type>Choice</type>
4253
+ <required>false</required>
4254
+ <model_dependent>false</model_dependent>
4255
+ <choices>
4000
4256
  <choice>
4001
4257
  <value>standard</value>
4002
4258
  <display_name>standard</display_name>
@@ -4014,16 +4270,11 @@
4014
4270
  <argument>
4015
4271
  <name>pv_system_location</name>
4016
4272
  <display_name>PV System: Location</display_name>
4017
- <description>Location of the PV system.</description>
4273
+ <description>Location of the PV system. If not provided, the OS-HPXML default is used.</description>
4018
4274
  <type>Choice</type>
4019
- <required>true</required>
4275
+ <required>false</required>
4020
4276
  <model_dependent>false</model_dependent>
4021
- <default_value>auto</default_value>
4022
4277
  <choices>
4023
- <choice>
4024
- <value>auto</value>
4025
- <display_name>auto</display_name>
4026
- </choice>
4027
4278
  <choice>
4028
4279
  <value>roof</value>
4029
4280
  <display_name>roof</display_name>
@@ -4037,16 +4288,11 @@
4037
4288
  <argument>
4038
4289
  <name>pv_system_tracking</name>
4039
4290
  <display_name>PV System: Tracking</display_name>
4040
- <description>Tracking of the PV system.</description>
4291
+ <description>Type of tracking for the PV system. If not provided, the OS-HPXML default is used.</description>
4041
4292
  <type>Choice</type>
4042
- <required>true</required>
4293
+ <required>false</required>
4043
4294
  <model_dependent>false</model_dependent>
4044
- <default_value>auto</default_value>
4045
4295
  <choices>
4046
- <choice>
4047
- <value>auto</value>
4048
- <display_name>auto</display_name>
4049
- </choice>
4050
4296
  <choice>
4051
4297
  <value>fixed</value>
4052
4298
  <display_name>fixed</display_name>
@@ -4098,7 +4344,7 @@
4098
4344
  <argument>
4099
4345
  <name>pv_system_inverter_efficiency</name>
4100
4346
  <display_name>PV System: Inverter Efficiency</display_name>
4101
- <description>Inverter efficiency of the PV system. If there are two PV systems, this will apply to both.</description>
4347
+ <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>
4102
4348
  <type>Double</type>
4103
4349
  <units>Frac</units>
4104
4350
  <required>false</required>
@@ -4107,7 +4353,7 @@
4107
4353
  <argument>
4108
4354
  <name>pv_system_system_losses_fraction</name>
4109
4355
  <display_name>PV System: System Losses Fraction</display_name>
4110
- <description>System losses fraction of the PV system. If there are two PV systems, this will apply to both.</description>
4356
+ <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>
4111
4357
  <type>Double</type>
4112
4358
  <units>Frac</units>
4113
4359
  <required>false</required>
@@ -4116,30 +4362,39 @@
4116
4362
  <argument>
4117
4363
  <name>pv_system_num_bedrooms_served</name>
4118
4364
  <display_name>PV System: Number of Bedrooms Served</display_name>
4119
- <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>
4365
+ <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>
4120
4366
  <type>Integer</type>
4121
4367
  <units>#</units>
4122
- <required>true</required>
4368
+ <required>false</required>
4123
4369
  <model_dependent>false</model_dependent>
4124
- <default_value>3</default_value>
4125
4370
  </argument>
4126
4371
  <argument>
4127
- <name>pv_system_2_module_type</name>
4128
- <display_name>PV System 2: Module Type</display_name>
4129
- <description>Module type of the second PV system. Use 'none' if there is no PV system 2.</description>
4130
- <type>Choice</type>
4372
+ <name>pv_system_2_present</name>
4373
+ <display_name>PV System 2: Present</display_name>
4374
+ <description>Whether there is a second PV system present.</description>
4375
+ <type>Boolean</type>
4131
4376
  <required>true</required>
4132
4377
  <model_dependent>false</model_dependent>
4133
- <default_value>none</default_value>
4378
+ <default_value>false</default_value>
4134
4379
  <choices>
4135
4380
  <choice>
4136
- <value>none</value>
4137
- <display_name>none</display_name>
4381
+ <value>true</value>
4382
+ <display_name>true</display_name>
4138
4383
  </choice>
4139
4384
  <choice>
4140
- <value>auto</value>
4141
- <display_name>auto</display_name>
4385
+ <value>false</value>
4386
+ <display_name>false</display_name>
4142
4387
  </choice>
4388
+ </choices>
4389
+ </argument>
4390
+ <argument>
4391
+ <name>pv_system_2_module_type</name>
4392
+ <display_name>PV System 2: Module Type</display_name>
4393
+ <description>Module type of the second PV system. If not provided, the OS-HPXML default is used.</description>
4394
+ <type>Choice</type>
4395
+ <required>false</required>
4396
+ <model_dependent>false</model_dependent>
4397
+ <choices>
4143
4398
  <choice>
4144
4399
  <value>standard</value>
4145
4400
  <display_name>standard</display_name>
@@ -4157,16 +4412,11 @@
4157
4412
  <argument>
4158
4413
  <name>pv_system_2_location</name>
4159
4414
  <display_name>PV System 2: Location</display_name>
4160
- <description>Location of the second PV system.</description>
4415
+ <description>Location of the second PV system. If not provided, the OS-HPXML default is used.</description>
4161
4416
  <type>Choice</type>
4162
- <required>true</required>
4417
+ <required>false</required>
4163
4418
  <model_dependent>false</model_dependent>
4164
- <default_value>auto</default_value>
4165
4419
  <choices>
4166
- <choice>
4167
- <value>auto</value>
4168
- <display_name>auto</display_name>
4169
- </choice>
4170
4420
  <choice>
4171
4421
  <value>roof</value>
4172
4422
  <display_name>roof</display_name>
@@ -4180,16 +4430,11 @@
4180
4430
  <argument>
4181
4431
  <name>pv_system_2_tracking</name>
4182
4432
  <display_name>PV System 2: Tracking</display_name>
4183
- <description>Tracking of the second PV system.</description>
4433
+ <description>Type of tracking for the second PV system. If not provided, the OS-HPXML default is used.</description>
4184
4434
  <type>Choice</type>
4185
- <required>true</required>
4435
+ <required>false</required>
4186
4436
  <model_dependent>false</model_dependent>
4187
- <default_value>auto</default_value>
4188
4437
  <choices>
4189
- <choice>
4190
- <value>auto</value>
4191
- <display_name>auto</display_name>
4192
- </choice>
4193
4438
  <choice>
4194
4439
  <value>fixed</value>
4195
4440
  <display_name>fixed</display_name>
@@ -4239,22 +4484,32 @@
4239
4484
  <default_value>4000</default_value>
4240
4485
  </argument>
4241
4486
  <argument>
4242
- <name>battery_location</name>
4243
- <display_name>Battery: Location</display_name>
4244
- <description>The space type for the lithium ion battery location.</description>
4245
- <type>Choice</type>
4487
+ <name>battery_present</name>
4488
+ <display_name>Battery: Present</display_name>
4489
+ <description>Whether there is a lithium ion battery present.</description>
4490
+ <type>Boolean</type>
4246
4491
  <required>true</required>
4247
4492
  <model_dependent>false</model_dependent>
4248
- <default_value>none</default_value>
4493
+ <default_value>false</default_value>
4249
4494
  <choices>
4250
4495
  <choice>
4251
- <value>auto</value>
4252
- <display_name>auto</display_name>
4496
+ <value>true</value>
4497
+ <display_name>true</display_name>
4253
4498
  </choice>
4254
4499
  <choice>
4255
- <value>none</value>
4256
- <display_name>none</display_name>
4500
+ <value>false</value>
4501
+ <display_name>false</display_name>
4257
4502
  </choice>
4503
+ </choices>
4504
+ </argument>
4505
+ <argument>
4506
+ <name>battery_location</name>
4507
+ <display_name>Battery: Location</display_name>
4508
+ <description>The space type for the lithium ion battery location. If not provided, the OS-HPXML default is used.</description>
4509
+ <type>Choice</type>
4510
+ <required>false</required>
4511
+ <model_dependent>false</model_dependent>
4512
+ <choices>
4258
4513
  <choice>
4259
4514
  <value>living space</value>
4260
4515
  <display_name>living space</display_name>
@@ -4300,29 +4555,45 @@
4300
4555
  <argument>
4301
4556
  <name>battery_power</name>
4302
4557
  <display_name>Battery: Rated Power Output</display_name>
4303
- <description>The rated power output of the lithium ion battery.</description>
4304
- <type>String</type>
4558
+ <description>The rated power output of the lithium ion battery. If not provided, the OS-HPXML default is used.</description>
4559
+ <type>Double</type>
4305
4560
  <units>W</units>
4306
- <required>true</required>
4561
+ <required>false</required>
4307
4562
  <model_dependent>false</model_dependent>
4308
- <default_value>auto</default_value>
4309
4563
  </argument>
4310
4564
  <argument>
4311
4565
  <name>battery_capacity</name>
4312
4566
  <display_name>Battery: Nominal Capacity</display_name>
4313
- <description>The nominal capacity of the lithium ion battery.</description>
4314
- <type>String</type>
4567
+ <description>The nominal capacity of the lithium ion battery. If not provided, the OS-HPXML default is used.</description>
4568
+ <type>Double</type>
4315
4569
  <units>kWh</units>
4316
- <required>true</required>
4570
+ <required>false</required>
4571
+ <model_dependent>false</model_dependent>
4572
+ </argument>
4573
+ <argument>
4574
+ <name>battery_usable_capacity</name>
4575
+ <display_name>Battery: Usable Capacity</display_name>
4576
+ <description>The usable capacity of the lithium ion battery. If not provided, the OS-HPXML default is used.</description>
4577
+ <type>Double</type>
4578
+ <units>kWh</units>
4579
+ <required>false</required>
4580
+ <model_dependent>false</model_dependent>
4581
+ </argument>
4582
+ <argument>
4583
+ <name>battery_round_trip_efficiency</name>
4584
+ <display_name>Battery: Round Trip Efficiency</display_name>
4585
+ <description>The round trip efficiency of the lithium ion battery. If not provided, the OS-HPXML default is used.</description>
4586
+ <type>Double</type>
4587
+ <units>Frac</units>
4588
+ <required>false</required>
4317
4589
  <model_dependent>false</model_dependent>
4318
- <default_value>auto</default_value>
4319
4590
  </argument>
4320
4591
  <argument>
4321
4592
  <name>lighting_present</name>
4322
4593
  <display_name>Lighting: Present</display_name>
4323
4594
  <description>Whether there is lighting energy use.</description>
4324
4595
  <type>Boolean</type>
4325
- <required>false</required>
4596
+ <required>true</required>
4326
4597
  <model_dependent>false</model_dependent>
4327
4598
  <default_value>true</default_value>
4328
4599
  <choices>
@@ -4366,11 +4637,10 @@
4366
4637
  <argument>
4367
4638
  <name>lighting_interior_usage_multiplier</name>
4368
4639
  <display_name>Lighting: Interior Usage Multiplier</display_name>
4369
- <description>Multiplier on the lighting energy usage (interior) that can reflect, e.g., high/low usage occupants.</description>
4640
+ <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>
4370
4641
  <type>Double</type>
4371
- <required>true</required>
4642
+ <required>false</required>
4372
4643
  <model_dependent>false</model_dependent>
4373
- <default_value>1</default_value>
4374
4644
  </argument>
4375
4645
  <argument>
4376
4646
  <name>lighting_exterior_fraction_cfl</name>
@@ -4402,11 +4672,10 @@
4402
4672
  <argument>
4403
4673
  <name>lighting_exterior_usage_multiplier</name>
4404
4674
  <display_name>Lighting: Exterior Usage Multiplier</display_name>
4405
- <description>Multiplier on the lighting energy usage (exterior) that can reflect, e.g., high/low usage occupants.</description>
4675
+ <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>
4406
4676
  <type>Double</type>
4407
- <required>true</required>
4677
+ <required>false</required>
4408
4678
  <model_dependent>false</model_dependent>
4409
- <default_value>1</default_value>
4410
4679
  </argument>
4411
4680
  <argument>
4412
4681
  <name>lighting_garage_fraction_cfl</name>
@@ -4438,11 +4707,10 @@
4438
4707
  <argument>
4439
4708
  <name>lighting_garage_usage_multiplier</name>
4440
4709
  <display_name>Lighting: Garage Usage Multiplier</display_name>
4441
- <description>Multiplier on the lighting energy usage (garage) that can reflect, e.g., high/low usage occupants.</description>
4710
+ <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>
4442
4711
  <type>Double</type>
4443
- <required>true</required>
4712
+ <required>false</required>
4444
4713
  <model_dependent>false</model_dependent>
4445
- <default_value>1</default_value>
4446
4714
  </argument>
4447
4715
  <argument>
4448
4716
  <name>holiday_lighting_present</name>
@@ -4466,17 +4734,16 @@
4466
4734
  <argument>
4467
4735
  <name>holiday_lighting_daily_kwh</name>
4468
4736
  <display_name>Holiday Lighting: Daily Consumption</display_name>
4469
- <description>The daily energy consumption for holiday lighting (exterior).</description>
4470
- <type>String</type>
4737
+ <description>The daily energy consumption for holiday lighting (exterior). If not provided, the OS-HPXML default is used.</description>
4738
+ <type>Double</type>
4471
4739
  <units>kWh/day</units>
4472
- <required>true</required>
4740
+ <required>false</required>
4473
4741
  <model_dependent>false</model_dependent>
4474
- <default_value>auto</default_value>
4475
4742
  </argument>
4476
4743
  <argument>
4477
4744
  <name>holiday_lighting_period</name>
4478
4745
  <display_name>Holiday Lighting: Period</display_name>
4479
- <description>Enter a date like "Nov 25 - Jan 5".</description>
4746
+ <description>Enter a date like "Nov 25 - Jan 5". If not provided, the OS-HPXML default is used.</description>
4480
4747
  <type>String</type>
4481
4748
  <required>false</required>
4482
4749
  <model_dependent>false</model_dependent>
@@ -4564,22 +4831,32 @@
4564
4831
  <default_value>1</default_value>
4565
4832
  </argument>
4566
4833
  <argument>
4567
- <name>clothes_washer_location</name>
4568
- <display_name>Clothes Washer: Location</display_name>
4569
- <description>The space type for the clothes washer location.</description>
4570
- <type>Choice</type>
4834
+ <name>clothes_washer_present</name>
4835
+ <display_name>Clothes Washer: Present</display_name>
4836
+ <description>Whether there is a clothes washer present.</description>
4837
+ <type>Boolean</type>
4571
4838
  <required>true</required>
4572
4839
  <model_dependent>false</model_dependent>
4573
- <default_value>auto</default_value>
4840
+ <default_value>true</default_value>
4574
4841
  <choices>
4575
4842
  <choice>
4576
- <value>auto</value>
4577
- <display_name>auto</display_name>
4843
+ <value>true</value>
4844
+ <display_name>true</display_name>
4578
4845
  </choice>
4579
4846
  <choice>
4580
- <value>none</value>
4581
- <display_name>none</display_name>
4847
+ <value>false</value>
4848
+ <display_name>false</display_name>
4582
4849
  </choice>
4850
+ </choices>
4851
+ </argument>
4852
+ <argument>
4853
+ <name>clothes_washer_location</name>
4854
+ <display_name>Clothes Washer: Location</display_name>
4855
+ <description>The space type for the clothes washer location. If not provided, the OS-HPXML default is used.</description>
4856
+ <type>Choice</type>
4857
+ <required>false</required>
4858
+ <model_dependent>false</model_dependent>
4859
+ <choices>
4583
4860
  <choice>
4584
4861
  <value>living space</value>
4585
4862
  <display_name>living space</display_name>
@@ -4636,99 +4913,101 @@
4636
4913
  <argument>
4637
4914
  <name>clothes_washer_efficiency</name>
4638
4915
  <display_name>Clothes Washer: Efficiency</display_name>
4639
- <description>The efficiency of the clothes washer.</description>
4640
- <type>String</type>
4916
+ <description>The efficiency of the clothes washer. If not provided, the OS-HPXML default is used.</description>
4917
+ <type>Double</type>
4641
4918
  <units>ft^3/kWh-cyc</units>
4642
- <required>true</required>
4919
+ <required>false</required>
4643
4920
  <model_dependent>false</model_dependent>
4644
- <default_value>auto</default_value>
4645
4921
  </argument>
4646
4922
  <argument>
4647
4923
  <name>clothes_washer_rated_annual_kwh</name>
4648
4924
  <display_name>Clothes Washer: Rated Annual Consumption</display_name>
4649
- <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>
4650
- <type>String</type>
4925
+ <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>
4926
+ <type>Double</type>
4651
4927
  <units>kWh/yr</units>
4652
- <required>true</required>
4928
+ <required>false</required>
4653
4929
  <model_dependent>false</model_dependent>
4654
- <default_value>auto</default_value>
4655
4930
  </argument>
4656
4931
  <argument>
4657
4932
  <name>clothes_washer_label_electric_rate</name>
4658
4933
  <display_name>Clothes Washer: Label Electric Rate</display_name>
4659
- <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>
4660
- <type>String</type>
4934
+ <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>
4935
+ <type>Double</type>
4661
4936
  <units>$/kWh</units>
4662
- <required>true</required>
4937
+ <required>false</required>
4663
4938
  <model_dependent>false</model_dependent>
4664
- <default_value>auto</default_value>
4665
4939
  </argument>
4666
4940
  <argument>
4667
4941
  <name>clothes_washer_label_gas_rate</name>
4668
4942
  <display_name>Clothes Washer: Label Gas Rate</display_name>
4669
- <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>
4670
- <type>String</type>
4943
+ <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>
4944
+ <type>Double</type>
4671
4945
  <units>$/therm</units>
4672
- <required>true</required>
4946
+ <required>false</required>
4673
4947
  <model_dependent>false</model_dependent>
4674
- <default_value>auto</default_value>
4675
4948
  </argument>
4676
4949
  <argument>
4677
4950
  <name>clothes_washer_label_annual_gas_cost</name>
4678
4951
  <display_name>Clothes Washer: Label Annual Cost with Gas DHW</display_name>
4679
- <description>The annual cost of using the system under test conditions. Input is obtained from the EnergyGuide label.</description>
4680
- <type>String</type>
4952
+ <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>
4953
+ <type>Double</type>
4681
4954
  <units>$</units>
4682
- <required>true</required>
4955
+ <required>false</required>
4683
4956
  <model_dependent>false</model_dependent>
4684
- <default_value>auto</default_value>
4685
4957
  </argument>
4686
4958
  <argument>
4687
4959
  <name>clothes_washer_label_usage</name>
4688
4960
  <display_name>Clothes Washer: Label Usage</display_name>
4689
- <description>The clothes washer loads per week.</description>
4690
- <type>String</type>
4961
+ <description>The clothes washer loads per week. If not provided, the OS-HPXML default is used.</description>
4962
+ <type>Double</type>
4691
4963
  <units>cyc/wk</units>
4692
- <required>true</required>
4964
+ <required>false</required>
4693
4965
  <model_dependent>false</model_dependent>
4694
- <default_value>auto</default_value>
4695
4966
  </argument>
4696
4967
  <argument>
4697
4968
  <name>clothes_washer_capacity</name>
4698
4969
  <display_name>Clothes Washer: Drum Volume</display_name>
4699
- <description>Volume of the washer drum. Obtained from the EnergyStar website or the manufacturer's literature.</description>
4700
- <type>String</type>
4970
+ <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>
4971
+ <type>Double</type>
4701
4972
  <units>ft^3</units>
4702
- <required>true</required>
4973
+ <required>false</required>
4703
4974
  <model_dependent>false</model_dependent>
4704
- <default_value>auto</default_value>
4705
4975
  </argument>
4706
4976
  <argument>
4707
4977
  <name>clothes_washer_usage_multiplier</name>
4708
4978
  <display_name>Clothes Washer: Usage Multiplier</display_name>
4709
- <description>Multiplier on the clothes washer energy and hot water usage that can reflect, e.g., high/low usage occupants.</description>
4979
+ <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>
4710
4980
  <type>Double</type>
4711
- <required>true</required>
4981
+ <required>false</required>
4712
4982
  <model_dependent>false</model_dependent>
4713
- <default_value>1</default_value>
4714
4983
  </argument>
4715
4984
  <argument>
4716
- <name>clothes_dryer_location</name>
4717
- <display_name>Clothes Dryer: Location</display_name>
4718
- <description>The space type for the clothes dryer location.</description>
4719
- <type>Choice</type>
4985
+ <name>clothes_dryer_present</name>
4986
+ <display_name>Clothes Dryer: Present</display_name>
4987
+ <description>Whether there is a clothes dryer present.</description>
4988
+ <type>Boolean</type>
4720
4989
  <required>true</required>
4721
4990
  <model_dependent>false</model_dependent>
4722
- <default_value>auto</default_value>
4991
+ <default_value>true</default_value>
4723
4992
  <choices>
4724
4993
  <choice>
4725
- <value>auto</value>
4726
- <display_name>auto</display_name>
4994
+ <value>true</value>
4995
+ <display_name>true</display_name>
4727
4996
  </choice>
4728
4997
  <choice>
4729
- <value>none</value>
4730
- <display_name>none</display_name>
4998
+ <value>false</value>
4999
+ <display_name>false</display_name>
4731
5000
  </choice>
5001
+ </choices>
5002
+ </argument>
5003
+ <argument>
5004
+ <name>clothes_dryer_location</name>
5005
+ <display_name>Clothes Dryer: Location</display_name>
5006
+ <description>The space type for the clothes dryer location. If not provided, the OS-HPXML default is used.</description>
5007
+ <type>Choice</type>
5008
+ <required>false</required>
5009
+ <model_dependent>false</model_dependent>
5010
+ <choices>
4732
5011
  <choice>
4733
5012
  <value>living space</value>
4734
5013
  <display_name>living space</display_name>
@@ -4820,49 +5099,56 @@
4820
5099
  <argument>
4821
5100
  <name>clothes_dryer_efficiency</name>
4822
5101
  <display_name>Clothes Dryer: Efficiency</display_name>
4823
- <description>The efficiency of the clothes dryer.</description>
4824
- <type>String</type>
5102
+ <description>The efficiency of the clothes dryer. If not provided, the OS-HPXML default is used.</description>
5103
+ <type>Double</type>
4825
5104
  <units>lb/kWh</units>
4826
- <required>true</required>
5105
+ <required>false</required>
4827
5106
  <model_dependent>false</model_dependent>
4828
- <default_value>auto</default_value>
4829
5107
  </argument>
4830
5108
  <argument>
4831
5109
  <name>clothes_dryer_vented_flow_rate</name>
4832
5110
  <display_name>Clothes Dryer: Vented Flow Rate</display_name>
4833
- <description>The exhaust flow rate of the vented clothes dryer.</description>
4834
- <type>String</type>
5111
+ <description>The exhaust flow rate of the vented clothes dryer. If not provided, the OS-HPXML default is used.</description>
5112
+ <type>Double</type>
4835
5113
  <units>CFM</units>
4836
- <required>true</required>
5114
+ <required>false</required>
4837
5115
  <model_dependent>false</model_dependent>
4838
- <default_value>auto</default_value>
4839
5116
  </argument>
4840
5117
  <argument>
4841
5118
  <name>clothes_dryer_usage_multiplier</name>
4842
5119
  <display_name>Clothes Dryer: Usage Multiplier</display_name>
4843
- <description>Multiplier on the clothes dryer energy usage that can reflect, e.g., high/low usage occupants.</description>
5120
+ <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>
4844
5121
  <type>Double</type>
4845
- <required>true</required>
5122
+ <required>false</required>
4846
5123
  <model_dependent>false</model_dependent>
4847
- <default_value>1</default_value>
4848
5124
  </argument>
4849
5125
  <argument>
4850
- <name>dishwasher_location</name>
4851
- <display_name>Dishwasher: Location</display_name>
4852
- <description>The space type for the dishwasher location.</description>
4853
- <type>Choice</type>
5126
+ <name>dishwasher_present</name>
5127
+ <display_name>Dishwasher: Present</display_name>
5128
+ <description>Whether there is a dishwasher present.</description>
5129
+ <type>Boolean</type>
4854
5130
  <required>true</required>
4855
5131
  <model_dependent>false</model_dependent>
4856
- <default_value>auto</default_value>
5132
+ <default_value>true</default_value>
4857
5133
  <choices>
4858
5134
  <choice>
4859
- <value>auto</value>
4860
- <display_name>auto</display_name>
5135
+ <value>true</value>
5136
+ <display_name>true</display_name>
4861
5137
  </choice>
4862
5138
  <choice>
4863
- <value>none</value>
4864
- <display_name>none</display_name>
5139
+ <value>false</value>
5140
+ <display_name>false</display_name>
4865
5141
  </choice>
5142
+ </choices>
5143
+ </argument>
5144
+ <argument>
5145
+ <name>dishwasher_location</name>
5146
+ <display_name>Dishwasher: Location</display_name>
5147
+ <description>The space type for the dishwasher location. If not provided, the OS-HPXML default is used.</description>
5148
+ <type>Choice</type>
5149
+ <required>false</required>
5150
+ <model_dependent>false</model_dependent>
5151
+ <choices>
4866
5152
  <choice>
4867
5153
  <value>living space</value>
4868
5154
  <display_name>living space</display_name>
@@ -4919,92 +5205,95 @@
4919
5205
  <argument>
4920
5206
  <name>dishwasher_efficiency</name>
4921
5207
  <display_name>Dishwasher: Efficiency</display_name>
4922
- <description>The efficiency of the dishwasher.</description>
4923
- <type>String</type>
5208
+ <description>The efficiency of the dishwasher. If not provided, the OS-HPXML default is used.</description>
5209
+ <type>Double</type>
4924
5210
  <units>RatedAnnualkWh or EnergyFactor</units>
4925
- <required>true</required>
5211
+ <required>false</required>
4926
5212
  <model_dependent>false</model_dependent>
4927
- <default_value>auto</default_value>
4928
5213
  </argument>
4929
5214
  <argument>
4930
5215
  <name>dishwasher_label_electric_rate</name>
4931
5216
  <display_name>Dishwasher: Label Electric Rate</display_name>
4932
- <description>The label electric rate of the dishwasher.</description>
4933
- <type>String</type>
5217
+ <description>The label electric rate of the dishwasher. If not provided, the OS-HPXML default is used.</description>
5218
+ <type>Double</type>
4934
5219
  <units>$/kWh</units>
4935
- <required>true</required>
5220
+ <required>false</required>
4936
5221
  <model_dependent>false</model_dependent>
4937
- <default_value>auto</default_value>
4938
5222
  </argument>
4939
5223
  <argument>
4940
5224
  <name>dishwasher_label_gas_rate</name>
4941
5225
  <display_name>Dishwasher: Label Gas Rate</display_name>
4942
- <description>The label gas rate of the dishwasher.</description>
4943
- <type>String</type>
5226
+ <description>The label gas rate of the dishwasher. If not provided, the OS-HPXML default is used.</description>
5227
+ <type>Double</type>
4944
5228
  <units>$/therm</units>
4945
- <required>true</required>
5229
+ <required>false</required>
4946
5230
  <model_dependent>false</model_dependent>
4947
- <default_value>auto</default_value>
4948
5231
  </argument>
4949
5232
  <argument>
4950
5233
  <name>dishwasher_label_annual_gas_cost</name>
4951
5234
  <display_name>Dishwasher: Label Annual Gas Cost</display_name>
4952
- <description>The label annual gas cost of the dishwasher.</description>
4953
- <type>String</type>
5235
+ <description>The label annual gas cost of the dishwasher. If not provided, the OS-HPXML default is used.</description>
5236
+ <type>Double</type>
4954
5237
  <units>$</units>
4955
- <required>true</required>
5238
+ <required>false</required>
4956
5239
  <model_dependent>false</model_dependent>
4957
- <default_value>auto</default_value>
4958
5240
  </argument>
4959
5241
  <argument>
4960
5242
  <name>dishwasher_label_usage</name>
4961
5243
  <display_name>Dishwasher: Label Usage</display_name>
4962
- <description>The dishwasher loads per week.</description>
4963
- <type>String</type>
5244
+ <description>The dishwasher loads per week. If not provided, the OS-HPXML default is used.</description>
5245
+ <type>Double</type>
4964
5246
  <units>cyc/wk</units>
4965
- <required>true</required>
5247
+ <required>false</required>
4966
5248
  <model_dependent>false</model_dependent>
4967
- <default_value>auto</default_value>
4968
5249
  </argument>
4969
5250
  <argument>
4970
5251
  <name>dishwasher_place_setting_capacity</name>
4971
5252
  <display_name>Dishwasher: Number of Place Settings</display_name>
4972
- <description>The number of place settings for the unit. Data obtained from manufacturer's literature.</description>
4973
- <type>String</type>
5253
+ <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>
5254
+ <type>Integer</type>
4974
5255
  <units>#</units>
4975
- <required>true</required>
5256
+ <required>false</required>
4976
5257
  <model_dependent>false</model_dependent>
4977
- <default_value>auto</default_value>
4978
5258
  </argument>
4979
5259
  <argument>
4980
5260
  <name>dishwasher_usage_multiplier</name>
4981
5261
  <display_name>Dishwasher: Usage Multiplier</display_name>
4982
- <description>Multiplier on the dishwasher energy usage that can reflect, e.g., high/low usage occupants.</description>
5262
+ <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>
4983
5263
  <type>Double</type>
4984
- <required>true</required>
5264
+ <required>false</required>
4985
5265
  <model_dependent>false</model_dependent>
4986
- <default_value>1</default_value>
4987
5266
  </argument>
4988
5267
  <argument>
4989
- <name>refrigerator_location</name>
4990
- <display_name>Refrigerator: Location</display_name>
4991
- <description>The space type for the refrigerator location.</description>
4992
- <type>Choice</type>
5268
+ <name>refrigerator_present</name>
5269
+ <display_name>Refrigerator: Present</display_name>
5270
+ <description>Whether there is a refrigerator present.</description>
5271
+ <type>Boolean</type>
4993
5272
  <required>true</required>
4994
5273
  <model_dependent>false</model_dependent>
4995
- <default_value>auto</default_value>
5274
+ <default_value>true</default_value>
4996
5275
  <choices>
4997
5276
  <choice>
4998
- <value>auto</value>
4999
- <display_name>auto</display_name>
5000
- </choice>
5001
- <choice>
5002
- <value>none</value>
5003
- <display_name>none</display_name>
5277
+ <value>true</value>
5278
+ <display_name>true</display_name>
5004
5279
  </choice>
5005
5280
  <choice>
5006
- <value>living space</value>
5007
- <display_name>living space</display_name>
5281
+ <value>false</value>
5282
+ <display_name>false</display_name>
5283
+ </choice>
5284
+ </choices>
5285
+ </argument>
5286
+ <argument>
5287
+ <name>refrigerator_location</name>
5288
+ <display_name>Refrigerator: Location</display_name>
5289
+ <description>The space type for the refrigerator location. If not provided, the OS-HPXML default is used.</description>
5290
+ <type>Choice</type>
5291
+ <required>false</required>
5292
+ <model_dependent>false</model_dependent>
5293
+ <choices>
5294
+ <choice>
5295
+ <value>living space</value>
5296
+ <display_name>living space</display_name>
5008
5297
  </choice>
5009
5298
  <choice>
5010
5299
  <value>basement - conditioned</value>
@@ -5039,39 +5328,47 @@
5039
5328
  <argument>
5040
5329
  <name>refrigerator_rated_annual_kwh</name>
5041
5330
  <display_name>Refrigerator: Rated Annual Consumption</display_name>
5042
- <description>The EnergyGuide rated annual energy consumption for a refrigerator.</description>
5043
- <type>String</type>
5331
+ <description>The EnergyGuide rated annual energy consumption for a refrigerator. If not provided, the OS-HPXML default is used.</description>
5332
+ <type>Double</type>
5044
5333
  <units>kWh/yr</units>
5045
- <required>true</required>
5334
+ <required>false</required>
5046
5335
  <model_dependent>false</model_dependent>
5047
- <default_value>auto</default_value>
5048
5336
  </argument>
5049
5337
  <argument>
5050
5338
  <name>refrigerator_usage_multiplier</name>
5051
5339
  <display_name>Refrigerator: Usage Multiplier</display_name>
5052
- <description>Multiplier on the refrigerator energy usage that can reflect, e.g., high/low usage occupants.</description>
5340
+ <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>
5053
5341
  <type>Double</type>
5054
- <required>true</required>
5342
+ <required>false</required>
5055
5343
  <model_dependent>false</model_dependent>
5056
- <default_value>1</default_value>
5057
5344
  </argument>
5058
5345
  <argument>
5059
- <name>extra_refrigerator_location</name>
5060
- <display_name>Extra Refrigerator: Location</display_name>
5061
- <description>The space type for the extra refrigerator location.</description>
5062
- <type>Choice</type>
5346
+ <name>extra_refrigerator_present</name>
5347
+ <display_name>Extra Refrigerator: Present</display_name>
5348
+ <description>Whether there is an extra refrigerator present.</description>
5349
+ <type>Boolean</type>
5063
5350
  <required>true</required>
5064
5351
  <model_dependent>false</model_dependent>
5065
- <default_value>none</default_value>
5352
+ <default_value>false</default_value>
5066
5353
  <choices>
5067
5354
  <choice>
5068
- <value>auto</value>
5069
- <display_name>auto</display_name>
5355
+ <value>true</value>
5356
+ <display_name>true</display_name>
5070
5357
  </choice>
5071
5358
  <choice>
5072
- <value>none</value>
5073
- <display_name>none</display_name>
5359
+ <value>false</value>
5360
+ <display_name>false</display_name>
5074
5361
  </choice>
5362
+ </choices>
5363
+ </argument>
5364
+ <argument>
5365
+ <name>extra_refrigerator_location</name>
5366
+ <display_name>Extra Refrigerator: Location</display_name>
5367
+ <description>The space type for the extra refrigerator location. If not provided, the OS-HPXML default is used.</description>
5368
+ <type>Choice</type>
5369
+ <required>false</required>
5370
+ <model_dependent>false</model_dependent>
5371
+ <choices>
5075
5372
  <choice>
5076
5373
  <value>living space</value>
5077
5374
  <display_name>living space</display_name>
@@ -5109,39 +5406,47 @@
5109
5406
  <argument>
5110
5407
  <name>extra_refrigerator_rated_annual_kwh</name>
5111
5408
  <display_name>Extra Refrigerator: Rated Annual Consumption</display_name>
5112
- <description>The EnergyGuide rated annual energy consumption for an extra rrefrigerator.</description>
5113
- <type>String</type>
5409
+ <description>The EnergyGuide rated annual energy consumption for an extra rrefrigerator. If not provided, the OS-HPXML default is used.</description>
5410
+ <type>Double</type>
5114
5411
  <units>kWh/yr</units>
5115
- <required>true</required>
5412
+ <required>false</required>
5116
5413
  <model_dependent>false</model_dependent>
5117
- <default_value>auto</default_value>
5118
5414
  </argument>
5119
5415
  <argument>
5120
5416
  <name>extra_refrigerator_usage_multiplier</name>
5121
5417
  <display_name>Extra Refrigerator: Usage Multiplier</display_name>
5122
- <description>Multiplier on the extra refrigerator energy usage that can reflect, e.g., high/low usage occupants.</description>
5418
+ <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>
5123
5419
  <type>Double</type>
5124
- <required>true</required>
5420
+ <required>false</required>
5125
5421
  <model_dependent>false</model_dependent>
5126
- <default_value>1</default_value>
5127
5422
  </argument>
5128
5423
  <argument>
5129
- <name>freezer_location</name>
5130
- <display_name>Freezer: Location</display_name>
5131
- <description>The space type for the freezer location.</description>
5132
- <type>Choice</type>
5424
+ <name>freezer_present</name>
5425
+ <display_name>Freezer: Present</display_name>
5426
+ <description>Whether there is a freezer present.</description>
5427
+ <type>Boolean</type>
5133
5428
  <required>true</required>
5134
5429
  <model_dependent>false</model_dependent>
5135
- <default_value>none</default_value>
5430
+ <default_value>false</default_value>
5136
5431
  <choices>
5137
5432
  <choice>
5138
- <value>auto</value>
5139
- <display_name>auto</display_name>
5433
+ <value>true</value>
5434
+ <display_name>true</display_name>
5140
5435
  </choice>
5141
5436
  <choice>
5142
- <value>none</value>
5143
- <display_name>none</display_name>
5437
+ <value>false</value>
5438
+ <display_name>false</display_name>
5144
5439
  </choice>
5440
+ </choices>
5441
+ </argument>
5442
+ <argument>
5443
+ <name>freezer_location</name>
5444
+ <display_name>Freezer: Location</display_name>
5445
+ <description>The space type for the freezer location. If not provided, the OS-HPXML default is used.</description>
5446
+ <type>Choice</type>
5447
+ <required>false</required>
5448
+ <model_dependent>false</model_dependent>
5449
+ <choices>
5145
5450
  <choice>
5146
5451
  <value>living space</value>
5147
5452
  <display_name>living space</display_name>
@@ -5179,39 +5484,47 @@
5179
5484
  <argument>
5180
5485
  <name>freezer_rated_annual_kwh</name>
5181
5486
  <display_name>Freezer: Rated Annual Consumption</display_name>
5182
- <description>The EnergyGuide rated annual energy consumption for a freezer.</description>
5183
- <type>String</type>
5487
+ <description>The EnergyGuide rated annual energy consumption for a freezer. If not provided, the OS-HPXML default is used.</description>
5488
+ <type>Double</type>
5184
5489
  <units>kWh/yr</units>
5185
- <required>true</required>
5490
+ <required>false</required>
5186
5491
  <model_dependent>false</model_dependent>
5187
- <default_value>auto</default_value>
5188
5492
  </argument>
5189
5493
  <argument>
5190
5494
  <name>freezer_usage_multiplier</name>
5191
5495
  <display_name>Freezer: Usage Multiplier</display_name>
5192
- <description>Multiplier on the freezer energy usage that can reflect, e.g., high/low usage occupants.</description>
5496
+ <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>
5193
5497
  <type>Double</type>
5194
- <required>true</required>
5498
+ <required>false</required>
5195
5499
  <model_dependent>false</model_dependent>
5196
- <default_value>1</default_value>
5197
5500
  </argument>
5198
5501
  <argument>
5199
- <name>cooking_range_oven_location</name>
5200
- <display_name>Cooking Range/Oven: Location</display_name>
5201
- <description>The space type for the cooking range/oven location.</description>
5202
- <type>Choice</type>
5502
+ <name>cooking_range_oven_present</name>
5503
+ <display_name>Cooking Range/Oven: Present</display_name>
5504
+ <description>Whether there is a cooking range/oven present.</description>
5505
+ <type>Boolean</type>
5203
5506
  <required>true</required>
5204
5507
  <model_dependent>false</model_dependent>
5205
- <default_value>auto</default_value>
5508
+ <default_value>true</default_value>
5206
5509
  <choices>
5207
5510
  <choice>
5208
- <value>auto</value>
5209
- <display_name>auto</display_name>
5511
+ <value>true</value>
5512
+ <display_name>true</display_name>
5210
5513
  </choice>
5211
5514
  <choice>
5212
- <value>none</value>
5213
- <display_name>none</display_name>
5515
+ <value>false</value>
5516
+ <display_name>false</display_name>
5214
5517
  </choice>
5518
+ </choices>
5519
+ </argument>
5520
+ <argument>
5521
+ <name>cooking_range_oven_location</name>
5522
+ <display_name>Cooking Range/Oven: Location</display_name>
5523
+ <description>The space type for the cooking range/oven location. If not provided, the OS-HPXML default is used.</description>
5524
+ <type>Choice</type>
5525
+ <required>false</required>
5526
+ <model_dependent>false</model_dependent>
5527
+ <choices>
5215
5528
  <choice>
5216
5529
  <value>living space</value>
5217
5530
  <display_name>living space</display_name>
@@ -5284,7 +5597,7 @@
5284
5597
  <argument>
5285
5598
  <name>cooking_range_oven_is_induction</name>
5286
5599
  <display_name>Cooking Range/Oven: Is Induction</display_name>
5287
- <description>Whether the cooking range is induction.</description>
5600
+ <description>Whether the cooking range is induction. If not provided, the OS-HPXML default is used.</description>
5288
5601
  <type>Boolean</type>
5289
5602
  <required>false</required>
5290
5603
  <model_dependent>false</model_dependent>
@@ -5302,7 +5615,7 @@
5302
5615
  <argument>
5303
5616
  <name>cooking_range_oven_is_convection</name>
5304
5617
  <display_name>Cooking Range/Oven: Is Convection</display_name>
5305
- <description>Whether the oven is convection.</description>
5618
+ <description>Whether the oven is convection. If not provided, the OS-HPXML default is used.</description>
5306
5619
  <type>Boolean</type>
5307
5620
  <required>false</required>
5308
5621
  <model_dependent>false</model_dependent>
@@ -5320,16 +5633,15 @@
5320
5633
  <argument>
5321
5634
  <name>cooking_range_oven_usage_multiplier</name>
5322
5635
  <display_name>Cooking Range/Oven: Usage Multiplier</display_name>
5323
- <description>Multiplier on the cooking range/oven energy usage that can reflect, e.g., high/low usage occupants.</description>
5636
+ <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>
5324
5637
  <type>Double</type>
5325
- <required>true</required>
5638
+ <required>false</required>
5326
5639
  <model_dependent>false</model_dependent>
5327
- <default_value>1</default_value>
5328
5640
  </argument>
5329
5641
  <argument>
5330
5642
  <name>ceiling_fan_present</name>
5331
5643
  <display_name>Ceiling Fan: Present</display_name>
5332
- <description>Whether there is are any ceiling fans.</description>
5644
+ <description>Whether there are any ceiling fans.</description>
5333
5645
  <type>Boolean</type>
5334
5646
  <required>true</required>
5335
5647
  <model_dependent>false</model_dependent>
@@ -5348,32 +5660,29 @@
5348
5660
  <argument>
5349
5661
  <name>ceiling_fan_efficiency</name>
5350
5662
  <display_name>Ceiling Fan: Efficiency</display_name>
5351
- <description>The efficiency rating of the ceiling fan(s) at medium speed.</description>
5352
- <type>String</type>
5663
+ <description>The efficiency rating of the ceiling fan(s) at medium speed. If not provided, the OS-HPXML default is used.</description>
5664
+ <type>Double</type>
5353
5665
  <units>CFM/W</units>
5354
- <required>true</required>
5666
+ <required>false</required>
5355
5667
  <model_dependent>false</model_dependent>
5356
- <default_value>auto</default_value>
5357
5668
  </argument>
5358
5669
  <argument>
5359
5670
  <name>ceiling_fan_quantity</name>
5360
5671
  <display_name>Ceiling Fan: Quantity</display_name>
5361
- <description>Total number of ceiling fans.</description>
5362
- <type>String</type>
5672
+ <description>Total number of ceiling fans. If not provided, the OS-HPXML default is used.</description>
5673
+ <type>Integer</type>
5363
5674
  <units>#</units>
5364
- <required>true</required>
5675
+ <required>false</required>
5365
5676
  <model_dependent>false</model_dependent>
5366
- <default_value>auto</default_value>
5367
5677
  </argument>
5368
5678
  <argument>
5369
5679
  <name>ceiling_fan_cooling_setpoint_temp_offset</name>
5370
5680
  <display_name>Ceiling Fan: Cooling Setpoint Temperature Offset</display_name>
5371
- <description>The setpoint temperature offset during cooling season for the ceiling fan(s). Only applies if ceiling fan quantity is greater than zero.</description>
5681
+ <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>
5372
5682
  <type>Double</type>
5373
5683
  <units>deg-F</units>
5374
- <required>true</required>
5684
+ <required>false</required>
5375
5685
  <model_dependent>false</model_dependent>
5376
- <default_value>0</default_value>
5377
5686
  </argument>
5378
5687
  <argument>
5379
5688
  <name>misc_plug_loads_television_present</name>
@@ -5397,60 +5706,54 @@
5397
5706
  <argument>
5398
5707
  <name>misc_plug_loads_television_annual_kwh</name>
5399
5708
  <display_name>Misc Plug Loads: Television Annual kWh</display_name>
5400
- <description>The annual energy consumption of the television plug loads.</description>
5401
- <type>String</type>
5709
+ <description>The annual energy consumption of the television plug loads. If not provided, the OS-HPXML default is used.</description>
5710
+ <type>Double</type>
5402
5711
  <units>kWh/yr</units>
5403
- <required>true</required>
5712
+ <required>false</required>
5404
5713
  <model_dependent>false</model_dependent>
5405
- <default_value>auto</default_value>
5406
5714
  </argument>
5407
5715
  <argument>
5408
5716
  <name>misc_plug_loads_television_usage_multiplier</name>
5409
5717
  <display_name>Misc Plug Loads: Television Usage Multiplier</display_name>
5410
- <description>Multiplier on the television energy usage that can reflect, e.g., high/low usage occupants.</description>
5718
+ <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>
5411
5719
  <type>Double</type>
5412
- <required>true</required>
5720
+ <required>false</required>
5413
5721
  <model_dependent>false</model_dependent>
5414
- <default_value>1</default_value>
5415
5722
  </argument>
5416
5723
  <argument>
5417
5724
  <name>misc_plug_loads_other_annual_kwh</name>
5418
5725
  <display_name>Misc Plug Loads: Other Annual kWh</display_name>
5419
- <description>The annual energy consumption of the other residual plug loads.</description>
5420
- <type>String</type>
5726
+ <description>The annual energy consumption of the other residual plug loads. If not provided, the OS-HPXML default is used.</description>
5727
+ <type>Double</type>
5421
5728
  <units>kWh/yr</units>
5422
- <required>true</required>
5729
+ <required>false</required>
5423
5730
  <model_dependent>false</model_dependent>
5424
- <default_value>auto</default_value>
5425
5731
  </argument>
5426
5732
  <argument>
5427
5733
  <name>misc_plug_loads_other_frac_sensible</name>
5428
5734
  <display_name>Misc Plug Loads: Other Sensible Fraction</display_name>
5429
- <description>Fraction of other residual plug loads' internal gains that are sensible.</description>
5430
- <type>String</type>
5735
+ <description>Fraction of other residual plug loads' internal gains that are sensible. If not provided, the OS-HPXML default is used.</description>
5736
+ <type>Double</type>
5431
5737
  <units>Frac</units>
5432
- <required>true</required>
5738
+ <required>false</required>
5433
5739
  <model_dependent>false</model_dependent>
5434
- <default_value>auto</default_value>
5435
5740
  </argument>
5436
5741
  <argument>
5437
5742
  <name>misc_plug_loads_other_frac_latent</name>
5438
5743
  <display_name>Misc Plug Loads: Other Latent Fraction</display_name>
5439
- <description>Fraction of other residual plug loads' internal gains that are latent.</description>
5440
- <type>String</type>
5744
+ <description>Fraction of other residual plug loads' internal gains that are latent. If not provided, the OS-HPXML default is used.</description>
5745
+ <type>Double</type>
5441
5746
  <units>Frac</units>
5442
- <required>true</required>
5747
+ <required>false</required>
5443
5748
  <model_dependent>false</model_dependent>
5444
- <default_value>auto</default_value>
5445
5749
  </argument>
5446
5750
  <argument>
5447
5751
  <name>misc_plug_loads_other_usage_multiplier</name>
5448
5752
  <display_name>Misc Plug Loads: Other Usage Multiplier</display_name>
5449
- <description>Multiplier on the other energy usage that can reflect, e.g., high/low usage occupants.</description>
5753
+ <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>
5450
5754
  <type>Double</type>
5451
- <required>true</required>
5755
+ <required>false</required>
5452
5756
  <model_dependent>false</model_dependent>
5453
- <default_value>1</default_value>
5454
5757
  </argument>
5455
5758
  <argument>
5456
5759
  <name>misc_plug_loads_well_pump_present</name>
@@ -5474,21 +5777,19 @@
5474
5777
  <argument>
5475
5778
  <name>misc_plug_loads_well_pump_annual_kwh</name>
5476
5779
  <display_name>Misc Plug Loads: Well Pump Annual kWh</display_name>
5477
- <description>The annual energy consumption of the well pump plug loads.</description>
5478
- <type>String</type>
5780
+ <description>The annual energy consumption of the well pump plug loads. If not provided, the OS-HPXML default is used.</description>
5781
+ <type>Double</type>
5479
5782
  <units>kWh/yr</units>
5480
- <required>true</required>
5783
+ <required>false</required>
5481
5784
  <model_dependent>false</model_dependent>
5482
- <default_value>auto</default_value>
5483
5785
  </argument>
5484
5786
  <argument>
5485
5787
  <name>misc_plug_loads_well_pump_usage_multiplier</name>
5486
5788
  <display_name>Misc Plug Loads: Well Pump Usage Multiplier</display_name>
5487
- <description>Multiplier on the well pump energy usage that can reflect, e.g., high/low usage occupants.</description>
5789
+ <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>
5488
5790
  <type>Double</type>
5489
- <required>true</required>
5791
+ <required>false</required>
5490
5792
  <model_dependent>false</model_dependent>
5491
- <default_value>1</default_value>
5492
5793
  </argument>
5493
5794
  <argument>
5494
5795
  <name>misc_plug_loads_vehicle_present</name>
@@ -5512,21 +5813,19 @@
5512
5813
  <argument>
5513
5814
  <name>misc_plug_loads_vehicle_annual_kwh</name>
5514
5815
  <display_name>Misc Plug Loads: Vehicle Annual kWh</display_name>
5515
- <description>The annual energy consumption of the electric vehicle plug loads.</description>
5516
- <type>String</type>
5816
+ <description>The annual energy consumption of the electric vehicle plug loads. If not provided, the OS-HPXML default is used.</description>
5817
+ <type>Double</type>
5517
5818
  <units>kWh/yr</units>
5518
- <required>true</required>
5819
+ <required>false</required>
5519
5820
  <model_dependent>false</model_dependent>
5520
- <default_value>auto</default_value>
5521
5821
  </argument>
5522
5822
  <argument>
5523
5823
  <name>misc_plug_loads_vehicle_usage_multiplier</name>
5524
5824
  <display_name>Misc Plug Loads: Vehicle Usage Multiplier</display_name>
5525
- <description>Multiplier on the electric vehicle energy usage that can reflect, e.g., high/low usage occupants.</description>
5825
+ <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>
5526
5826
  <type>Double</type>
5527
- <required>true</required>
5827
+ <required>false</required>
5528
5828
  <model_dependent>false</model_dependent>
5529
- <default_value>1</default_value>
5530
5829
  </argument>
5531
5830
  <argument>
5532
5831
  <name>misc_fuel_loads_grill_present</name>
@@ -5581,21 +5880,19 @@
5581
5880
  <argument>
5582
5881
  <name>misc_fuel_loads_grill_annual_therm</name>
5583
5882
  <display_name>Misc Fuel Loads: Grill Annual therm</display_name>
5584
- <description>The annual energy consumption of the fuel loads grill.</description>
5585
- <type>String</type>
5883
+ <description>The annual energy consumption of the fuel loads grill. If not provided, the OS-HPXML default is used.</description>
5884
+ <type>Double</type>
5586
5885
  <units>therm/yr</units>
5587
- <required>true</required>
5886
+ <required>false</required>
5588
5887
  <model_dependent>false</model_dependent>
5589
- <default_value>auto</default_value>
5590
5888
  </argument>
5591
5889
  <argument>
5592
5890
  <name>misc_fuel_loads_grill_usage_multiplier</name>
5593
5891
  <display_name>Misc Fuel Loads: Grill Usage Multiplier</display_name>
5594
- <description>Multiplier on the fuel loads grill energy usage that can reflect, e.g., high/low usage occupants.</description>
5892
+ <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>
5595
5893
  <type>Double</type>
5596
- <required>true</required>
5894
+ <required>false</required>
5597
5895
  <model_dependent>false</model_dependent>
5598
- <default_value>0</default_value>
5599
5896
  </argument>
5600
5897
  <argument>
5601
5898
  <name>misc_fuel_loads_lighting_present</name>
@@ -5650,21 +5947,19 @@
5650
5947
  <argument>
5651
5948
  <name>misc_fuel_loads_lighting_annual_therm</name>
5652
5949
  <display_name>Misc Fuel Loads: Lighting Annual therm</display_name>
5653
- <description>The annual energy consumption of the fuel loads lighting.</description>
5654
- <type>String</type>
5950
+ <description>The annual energy consumption of the fuel loads lighting. If not provided, the OS-HPXML default is used.</description>
5951
+ <type>Double</type>
5655
5952
  <units>therm/yr</units>
5656
- <required>true</required>
5953
+ <required>false</required>
5657
5954
  <model_dependent>false</model_dependent>
5658
- <default_value>auto</default_value>
5659
5955
  </argument>
5660
5956
  <argument>
5661
5957
  <name>misc_fuel_loads_lighting_usage_multiplier</name>
5662
5958
  <display_name>Misc Fuel Loads: Lighting Usage Multiplier</display_name>
5663
- <description>Multiplier on the fuel loads lighting energy usage that can reflect, e.g., high/low usage occupants.</description>
5959
+ <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>
5664
5960
  <type>Double</type>
5665
- <required>true</required>
5961
+ <required>false</required>
5666
5962
  <model_dependent>false</model_dependent>
5667
- <default_value>0</default_value>
5668
5963
  </argument>
5669
5964
  <argument>
5670
5965
  <name>misc_fuel_loads_fireplace_present</name>
@@ -5719,41 +6014,37 @@
5719
6014
  <argument>
5720
6015
  <name>misc_fuel_loads_fireplace_annual_therm</name>
5721
6016
  <display_name>Misc Fuel Loads: Fireplace Annual therm</display_name>
5722
- <description>The annual energy consumption of the fuel loads fireplace.</description>
5723
- <type>String</type>
6017
+ <description>The annual energy consumption of the fuel loads fireplace. If not provided, the OS-HPXML default is used.</description>
6018
+ <type>Double</type>
5724
6019
  <units>therm/yr</units>
5725
- <required>true</required>
6020
+ <required>false</required>
5726
6021
  <model_dependent>false</model_dependent>
5727
- <default_value>auto</default_value>
5728
6022
  </argument>
5729
6023
  <argument>
5730
6024
  <name>misc_fuel_loads_fireplace_frac_sensible</name>
5731
6025
  <display_name>Misc Fuel Loads: Fireplace Sensible Fraction</display_name>
5732
- <description>Fraction of fireplace residual fuel loads' internal gains that are sensible.</description>
5733
- <type>String</type>
6026
+ <description>Fraction of fireplace residual fuel loads' internal gains that are sensible. If not provided, the OS-HPXML default is used.</description>
6027
+ <type>Double</type>
5734
6028
  <units>Frac</units>
5735
- <required>true</required>
6029
+ <required>false</required>
5736
6030
  <model_dependent>false</model_dependent>
5737
- <default_value>auto</default_value>
5738
6031
  </argument>
5739
6032
  <argument>
5740
6033
  <name>misc_fuel_loads_fireplace_frac_latent</name>
5741
6034
  <display_name>Misc Fuel Loads: Fireplace Latent Fraction</display_name>
5742
- <description>Fraction of fireplace residual fuel loads' internal gains that are latent.</description>
5743
- <type>String</type>
6035
+ <description>Fraction of fireplace residual fuel loads' internal gains that are latent. If not provided, the OS-HPXML default is used.</description>
6036
+ <type>Double</type>
5744
6037
  <units>Frac</units>
5745
- <required>true</required>
6038
+ <required>false</required>
5746
6039
  <model_dependent>false</model_dependent>
5747
- <default_value>auto</default_value>
5748
6040
  </argument>
5749
6041
  <argument>
5750
6042
  <name>misc_fuel_loads_fireplace_usage_multiplier</name>
5751
6043
  <display_name>Misc Fuel Loads: Fireplace Usage Multiplier</display_name>
5752
- <description>Multiplier on the fuel loads fireplace energy usage that can reflect, e.g., high/low usage occupants.</description>
6044
+ <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>
5753
6045
  <type>Double</type>
5754
- <required>true</required>
6046
+ <required>false</required>
5755
6047
  <model_dependent>false</model_dependent>
5756
- <default_value>0</default_value>
5757
6048
  </argument>
5758
6049
  <argument>
5759
6050
  <name>pool_present</name>
@@ -5777,21 +6068,19 @@
5777
6068
  <argument>
5778
6069
  <name>pool_pump_annual_kwh</name>
5779
6070
  <display_name>Pool: Pump Annual kWh</display_name>
5780
- <description>The annual energy consumption of the pool pump.</description>
5781
- <type>String</type>
6071
+ <description>The annual energy consumption of the pool pump. If not provided, the OS-HPXML default is used.</description>
6072
+ <type>Double</type>
5782
6073
  <units>kWh/yr</units>
5783
- <required>true</required>
6074
+ <required>false</required>
5784
6075
  <model_dependent>false</model_dependent>
5785
- <default_value>auto</default_value>
5786
6076
  </argument>
5787
6077
  <argument>
5788
6078
  <name>pool_pump_usage_multiplier</name>
5789
6079
  <display_name>Pool: Pump Usage Multiplier</display_name>
5790
- <description>Multiplier on the pool pump energy usage that can reflect, e.g., high/low usage occupants.</description>
6080
+ <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>
5791
6081
  <type>Double</type>
5792
- <required>true</required>
6082
+ <required>false</required>
5793
6083
  <model_dependent>false</model_dependent>
5794
- <default_value>1</default_value>
5795
6084
  </argument>
5796
6085
  <argument>
5797
6086
  <name>pool_heater_type</name>
@@ -5823,31 +6112,28 @@
5823
6112
  <argument>
5824
6113
  <name>pool_heater_annual_kwh</name>
5825
6114
  <display_name>Pool: Heater Annual kWh</display_name>
5826
- <description>The annual energy consumption of the electric resistance pool heater.</description>
5827
- <type>String</type>
6115
+ <description>The annual energy consumption of the electric resistance pool heater. If not provided, the OS-HPXML default is used.</description>
6116
+ <type>Double</type>
5828
6117
  <units>kWh/yr</units>
5829
- <required>true</required>
6118
+ <required>false</required>
5830
6119
  <model_dependent>false</model_dependent>
5831
- <default_value>auto</default_value>
5832
6120
  </argument>
5833
6121
  <argument>
5834
6122
  <name>pool_heater_annual_therm</name>
5835
6123
  <display_name>Pool: Heater Annual therm</display_name>
5836
- <description>The annual energy consumption of the gas fired pool heater.</description>
5837
- <type>String</type>
6124
+ <description>The annual energy consumption of the gas fired pool heater. If not provided, the OS-HPXML default is used.</description>
6125
+ <type>Double</type>
5838
6126
  <units>therm/yr</units>
5839
- <required>true</required>
6127
+ <required>false</required>
5840
6128
  <model_dependent>false</model_dependent>
5841
- <default_value>auto</default_value>
5842
6129
  </argument>
5843
6130
  <argument>
5844
6131
  <name>pool_heater_usage_multiplier</name>
5845
6132
  <display_name>Pool: Heater Usage Multiplier</display_name>
5846
- <description>Multiplier on the pool heater energy usage that can reflect, e.g., high/low usage occupants.</description>
6133
+ <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>
5847
6134
  <type>Double</type>
5848
- <required>true</required>
6135
+ <required>false</required>
5849
6136
  <model_dependent>false</model_dependent>
5850
- <default_value>1</default_value>
5851
6137
  </argument>
5852
6138
  <argument>
5853
6139
  <name>hot_tub_present</name>
@@ -5871,21 +6157,19 @@
5871
6157
  <argument>
5872
6158
  <name>hot_tub_pump_annual_kwh</name>
5873
6159
  <display_name>Hot Tub: Pump Annual kWh</display_name>
5874
- <description>The annual energy consumption of the hot tub pump.</description>
5875
- <type>String</type>
6160
+ <description>The annual energy consumption of the hot tub pump. If not provided, the OS-HPXML default is used.</description>
6161
+ <type>Double</type>
5876
6162
  <units>kWh/yr</units>
5877
- <required>true</required>
6163
+ <required>false</required>
5878
6164
  <model_dependent>false</model_dependent>
5879
- <default_value>auto</default_value>
5880
6165
  </argument>
5881
6166
  <argument>
5882
6167
  <name>hot_tub_pump_usage_multiplier</name>
5883
6168
  <display_name>Hot Tub: Pump Usage Multiplier</display_name>
5884
- <description>Multiplier on the hot tub pump energy usage that can reflect, e.g., high/low usage occupants.</description>
6169
+ <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>
5885
6170
  <type>Double</type>
5886
- <required>true</required>
6171
+ <required>false</required>
5887
6172
  <model_dependent>false</model_dependent>
5888
- <default_value>1</default_value>
5889
6173
  </argument>
5890
6174
  <argument>
5891
6175
  <name>hot_tub_heater_type</name>
@@ -5917,31 +6201,354 @@
5917
6201
  <argument>
5918
6202
  <name>hot_tub_heater_annual_kwh</name>
5919
6203
  <display_name>Hot Tub: Heater Annual kWh</display_name>
5920
- <description>The annual energy consumption of the electric resistance hot tub heater.</description>
5921
- <type>String</type>
6204
+ <description>The annual energy consumption of the electric resistance hot tub heater. If not provided, the OS-HPXML default is used.</description>
6205
+ <type>Double</type>
5922
6206
  <units>kWh/yr</units>
5923
- <required>true</required>
6207
+ <required>false</required>
5924
6208
  <model_dependent>false</model_dependent>
5925
- <default_value>auto</default_value>
5926
6209
  </argument>
5927
6210
  <argument>
5928
6211
  <name>hot_tub_heater_annual_therm</name>
5929
6212
  <display_name>Hot Tub: Heater Annual therm</display_name>
5930
- <description>The annual energy consumption of the gas fired hot tub heater.</description>
5931
- <type>String</type>
6213
+ <description>The annual energy consumption of the gas fired hot tub heater. If not provided, the OS-HPXML default is used.</description>
6214
+ <type>Double</type>
5932
6215
  <units>therm/yr</units>
5933
- <required>true</required>
6216
+ <required>false</required>
5934
6217
  <model_dependent>false</model_dependent>
5935
- <default_value>auto</default_value>
5936
6218
  </argument>
5937
6219
  <argument>
5938
6220
  <name>hot_tub_heater_usage_multiplier</name>
5939
6221
  <display_name>Hot Tub: Heater Usage Multiplier</display_name>
5940
- <description>Multiplier on the hot tub heater energy usage that can reflect, e.g., high/low usage occupants.</description>
6222
+ <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>
5941
6223
  <type>Double</type>
5942
- <required>true</required>
6224
+ <required>false</required>
5943
6225
  <model_dependent>false</model_dependent>
5944
- <default_value>1</default_value>
6226
+ </argument>
6227
+ <argument>
6228
+ <name>emissions_scenario_names</name>
6229
+ <display_name>Emissions: Scenario Names</display_name>
6230
+ <description>Names of emissions scenarios. If multiple scenarios, use a comma-separated list. If not provided, no emissions scenarios are calculated.</description>
6231
+ <type>String</type>
6232
+ <required>false</required>
6233
+ <model_dependent>false</model_dependent>
6234
+ </argument>
6235
+ <argument>
6236
+ <name>emissions_types</name>
6237
+ <display_name>Emissions: Types</display_name>
6238
+ <description>Types of emissions (e.g., CO2e, NOx, etc.). If multiple scenarios, use a comma-separated list.</description>
6239
+ <type>String</type>
6240
+ <required>false</required>
6241
+ <model_dependent>false</model_dependent>
6242
+ </argument>
6243
+ <argument>
6244
+ <name>emissions_electricity_units</name>
6245
+ <display_name>Emissions: Electricity Units</display_name>
6246
+ <description>Electricity emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MWh and kg/MWh are allowed.</description>
6247
+ <type>String</type>
6248
+ <required>false</required>
6249
+ <model_dependent>false</model_dependent>
6250
+ </argument>
6251
+ <argument>
6252
+ <name>emissions_electricity_values_or_filepaths</name>
6253
+ <display_name>Emissions: Electricity Values or File Paths</display_name>
6254
+ <description>Electricity emissions factors values, specified as either an annual factor or an absolute/relative path to a file with hourly factors. If multiple scenarios, use a comma-separated list.</description>
6255
+ <type>String</type>
6256
+ <required>false</required>
6257
+ <model_dependent>false</model_dependent>
6258
+ </argument>
6259
+ <argument>
6260
+ <name>emissions_electricity_number_of_header_rows</name>
6261
+ <display_name>Emissions: Electricity Files Number of Header Rows</display_name>
6262
+ <description>The number of header rows in the electricity emissions factor file. Only applies when an electricity filepath is used. If multiple scenarios, use a comma-separated list.</description>
6263
+ <type>String</type>
6264
+ <required>false</required>
6265
+ <model_dependent>false</model_dependent>
6266
+ </argument>
6267
+ <argument>
6268
+ <name>emissions_electricity_column_numbers</name>
6269
+ <display_name>Emissions: Electricity Files Column Numbers</display_name>
6270
+ <description>The column number in the electricity emissions factor file. Only applies when an electricity filepath is used. If multiple scenarios, use a comma-separated list.</description>
6271
+ <type>String</type>
6272
+ <required>false</required>
6273
+ <model_dependent>false</model_dependent>
6274
+ </argument>
6275
+ <argument>
6276
+ <name>emissions_fossil_fuel_units</name>
6277
+ <display_name>Emissions: Fossil Fuel Units</display_name>
6278
+ <description>Fossil fuel emissions factors units. If multiple scenarios, use a comma-separated list. Only lb/MBtu and kg/MBtu are allowed.</description>
6279
+ <type>String</type>
6280
+ <required>false</required>
6281
+ <model_dependent>false</model_dependent>
6282
+ </argument>
6283
+ <argument>
6284
+ <name>emissions_natural_gas_values</name>
6285
+ <display_name>Emissions: Natural Gas Values</display_name>
6286
+ <description>Natural gas emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list.</description>
6287
+ <type>String</type>
6288
+ <required>false</required>
6289
+ <model_dependent>false</model_dependent>
6290
+ </argument>
6291
+ <argument>
6292
+ <name>emissions_propane_values</name>
6293
+ <display_name>Emissions: Propane Values</display_name>
6294
+ <description>Propane emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list.</description>
6295
+ <type>String</type>
6296
+ <required>false</required>
6297
+ <model_dependent>false</model_dependent>
6298
+ </argument>
6299
+ <argument>
6300
+ <name>emissions_fuel_oil_values</name>
6301
+ <display_name>Emissions: Fuel Oil Values</display_name>
6302
+ <description>Fuel oil emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list.</description>
6303
+ <type>String</type>
6304
+ <required>false</required>
6305
+ <model_dependent>false</model_dependent>
6306
+ </argument>
6307
+ <argument>
6308
+ <name>emissions_coal_values</name>
6309
+ <display_name>Emissions: Coal Values</display_name>
6310
+ <description>Coal emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list.</description>
6311
+ <type>String</type>
6312
+ <required>false</required>
6313
+ <model_dependent>false</model_dependent>
6314
+ </argument>
6315
+ <argument>
6316
+ <name>emissions_wood_values</name>
6317
+ <display_name>Emissions: Wood Values</display_name>
6318
+ <description>Wood emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list.</description>
6319
+ <type>String</type>
6320
+ <required>false</required>
6321
+ <model_dependent>false</model_dependent>
6322
+ </argument>
6323
+ <argument>
6324
+ <name>emissions_wood_pellets_values</name>
6325
+ <display_name>Emissions: Wood Pellets Values</display_name>
6326
+ <description>Wood pellets emissions factors values, specified as an annual factor. If multiple scenarios, use a comma-separated list.</description>
6327
+ <type>String</type>
6328
+ <required>false</required>
6329
+ <model_dependent>false</model_dependent>
6330
+ </argument>
6331
+ <argument>
6332
+ <name>utility_bill_scenario_names</name>
6333
+ <display_name>Utility Bills: Scenario Names</display_name>
6334
+ <description>Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If not provided, no utility bills scenarios are calculated.</description>
6335
+ <type>String</type>
6336
+ <required>false</required>
6337
+ <model_dependent>false</model_dependent>
6338
+ </argument>
6339
+ <argument>
6340
+ <name>utility_bill_electricity_filepaths</name>
6341
+ <display_name>Utility Bills: Electricity File Paths</display_name>
6342
+ <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>
6343
+ <type>String</type>
6344
+ <required>false</required>
6345
+ <model_dependent>false</model_dependent>
6346
+ </argument>
6347
+ <argument>
6348
+ <name>utility_bill_electricity_fixed_charges</name>
6349
+ <display_name>Utility Bills: Electricity Fixed Charges</display_name>
6350
+ <description>Electricity utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list.</description>
6351
+ <type>String</type>
6352
+ <required>false</required>
6353
+ <model_dependent>false</model_dependent>
6354
+ </argument>
6355
+ <argument>
6356
+ <name>utility_bill_natural_gas_fixed_charges</name>
6357
+ <display_name>Utility Bills: Natural Gas Fixed Charges</display_name>
6358
+ <description>Natural gas utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list.</description>
6359
+ <type>String</type>
6360
+ <required>false</required>
6361
+ <model_dependent>false</model_dependent>
6362
+ </argument>
6363
+ <argument>
6364
+ <name>utility_bill_propane_fixed_charges</name>
6365
+ <display_name>Utility Bills: Propane Fixed Charges</display_name>
6366
+ <description>Propane utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list.</description>
6367
+ <type>String</type>
6368
+ <required>false</required>
6369
+ <model_dependent>false</model_dependent>
6370
+ </argument>
6371
+ <argument>
6372
+ <name>utility_bill_fuel_oil_fixed_charges</name>
6373
+ <display_name>Utility Bills: Fuel Oil Fixed Charges</display_name>
6374
+ <description>Fuel oil utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list.</description>
6375
+ <type>String</type>
6376
+ <required>false</required>
6377
+ <model_dependent>false</model_dependent>
6378
+ </argument>
6379
+ <argument>
6380
+ <name>utility_bill_coal_fixed_charges</name>
6381
+ <display_name>Utility Bills: Coal Fixed Charges</display_name>
6382
+ <description>Coal utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list.</description>
6383
+ <type>String</type>
6384
+ <required>false</required>
6385
+ <model_dependent>false</model_dependent>
6386
+ </argument>
6387
+ <argument>
6388
+ <name>utility_bill_wood_fixed_charges</name>
6389
+ <display_name>Utility Bills: Wood Fixed Charges</display_name>
6390
+ <description>Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list.</description>
6391
+ <type>String</type>
6392
+ <required>false</required>
6393
+ <model_dependent>false</model_dependent>
6394
+ </argument>
6395
+ <argument>
6396
+ <name>utility_bill_wood_pellets_fixed_charges</name>
6397
+ <display_name>Utility Bills: Wood Pellets Fixed Charges</display_name>
6398
+ <description>Wood pellets utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list.</description>
6399
+ <type>String</type>
6400
+ <required>false</required>
6401
+ <model_dependent>false</model_dependent>
6402
+ </argument>
6403
+ <argument>
6404
+ <name>utility_bill_electricity_marginal_rates</name>
6405
+ <display_name>Utility Bills: Electricity Marginal Rates</display_name>
6406
+ <description>Electricity utility bill marginal rates. If multiple scenarios, use a comma-separated list.</description>
6407
+ <type>String</type>
6408
+ <required>false</required>
6409
+ <model_dependent>false</model_dependent>
6410
+ </argument>
6411
+ <argument>
6412
+ <name>utility_bill_natural_gas_marginal_rates</name>
6413
+ <display_name>Utility Bills: Natural Gas Marginal Rates</display_name>
6414
+ <description>Natural gas utility bill marginal rates. If multiple scenarios, use a comma-separated list.</description>
6415
+ <type>String</type>
6416
+ <required>false</required>
6417
+ <model_dependent>false</model_dependent>
6418
+ </argument>
6419
+ <argument>
6420
+ <name>utility_bill_propane_marginal_rates</name>
6421
+ <display_name>Utility Bills: Propane Marginal Rates</display_name>
6422
+ <description>Propane utility bill marginal rates. If multiple scenarios, use a comma-separated list.</description>
6423
+ <type>String</type>
6424
+ <required>false</required>
6425
+ <model_dependent>false</model_dependent>
6426
+ </argument>
6427
+ <argument>
6428
+ <name>utility_bill_fuel_oil_marginal_rates</name>
6429
+ <display_name>Utility Bills: Fuel Oil Marginal Rates</display_name>
6430
+ <description>Fuel oil utility bill marginal rates. If multiple scenarios, use a comma-separated list.</description>
6431
+ <type>String</type>
6432
+ <required>false</required>
6433
+ <model_dependent>false</model_dependent>
6434
+ </argument>
6435
+ <argument>
6436
+ <name>utility_bill_coal_marginal_rates</name>
6437
+ <display_name>Utility Bills: Coal Marginal Rates</display_name>
6438
+ <description>Coal utility bill marginal rates. If multiple scenarios, use a comma-separated list.</description>
6439
+ <type>String</type>
6440
+ <required>false</required>
6441
+ <model_dependent>false</model_dependent>
6442
+ </argument>
6443
+ <argument>
6444
+ <name>utility_bill_wood_marginal_rates</name>
6445
+ <display_name>Utility Bills: Wood Marginal Rates</display_name>
6446
+ <description>Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list.</description>
6447
+ <type>String</type>
6448
+ <required>false</required>
6449
+ <model_dependent>false</model_dependent>
6450
+ </argument>
6451
+ <argument>
6452
+ <name>utility_bill_wood_pellets_marginal_rates</name>
6453
+ <display_name>Utility Bills: Wood Pellets Marginal Rates</display_name>
6454
+ <description>Wood pellets utility bill marginal rates. If multiple scenarios, use a comma-separated list.</description>
6455
+ <type>String</type>
6456
+ <required>false</required>
6457
+ <model_dependent>false</model_dependent>
6458
+ </argument>
6459
+ <argument>
6460
+ <name>utility_bill_pv_compensation_types</name>
6461
+ <display_name>Utility Bills: PV Compensation Types</display_name>
6462
+ <description>Utility bill PV compensation types. If multiple scenarios, use a comma-separated list.</description>
6463
+ <type>String</type>
6464
+ <required>false</required>
6465
+ <model_dependent>false</model_dependent>
6466
+ </argument>
6467
+ <argument>
6468
+ <name>utility_bill_pv_net_metering_annual_excess_sellback_rate_types</name>
6469
+ <display_name>Utility Bills: PV Net Metering Annual Excess Sellback Rate Types</display_name>
6470
+ <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>
6471
+ <type>String</type>
6472
+ <required>false</required>
6473
+ <model_dependent>false</model_dependent>
6474
+ </argument>
6475
+ <argument>
6476
+ <name>utility_bill_pv_net_metering_annual_excess_sellback_rates</name>
6477
+ <display_name>Utility Bills: PV Net Metering Annual Excess Sellback Rates</display_name>
6478
+ <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>
6479
+ <type>String</type>
6480
+ <required>false</required>
6481
+ <model_dependent>false</model_dependent>
6482
+ </argument>
6483
+ <argument>
6484
+ <name>utility_bill_pv_feed_in_tariff_rates</name>
6485
+ <display_name>Utility Bills: PV Feed-In Tariff Rates</display_name>
6486
+ <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>
6487
+ <type>String</type>
6488
+ <required>false</required>
6489
+ <model_dependent>false</model_dependent>
6490
+ </argument>
6491
+ <argument>
6492
+ <name>utility_bill_pv_monthly_grid_connection_fee_units</name>
6493
+ <display_name>Utility Bills: PV Monthly Grid Connection Fee Units</display_name>
6494
+ <description>Utility bill PV monthly grid connection fee units. If multiple scenarios, use a comma-separated list.</description>
6495
+ <type>String</type>
6496
+ <required>false</required>
6497
+ <model_dependent>false</model_dependent>
6498
+ </argument>
6499
+ <argument>
6500
+ <name>utility_bill_pv_monthly_grid_connection_fees</name>
6501
+ <display_name>Utility Bills: PV Monthly Grid Connection Fees</display_name>
6502
+ <description>Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list.</description>
6503
+ <type>String</type>
6504
+ <required>false</required>
6505
+ <model_dependent>false</model_dependent>
6506
+ </argument>
6507
+ <argument>
6508
+ <name>additional_properties</name>
6509
+ <display_name>Additional Properties</display_name>
6510
+ <description>Additional properties specified as key-value pairs (i.e., key=value). If multiple additional properties, use a |-separated list. For example, 'LowIncome=false|Remodeled|Description=2-story home in Denver'. These properties will be stored in the HPXML file under /HPXML/SoftwareInfo/extension/AdditionalProperties.</description>
6511
+ <type>String</type>
6512
+ <required>false</required>
6513
+ <model_dependent>false</model_dependent>
6514
+ </argument>
6515
+ <argument>
6516
+ <name>apply_defaults</name>
6517
+ <display_name>Apply Default Values?</display_name>
6518
+ <description>If true, applies OS-HPXML default values to the HPXML output file.</description>
6519
+ <type>Boolean</type>
6520
+ <required>false</required>
6521
+ <model_dependent>false</model_dependent>
6522
+ <default_value>false</default_value>
6523
+ <choices>
6524
+ <choice>
6525
+ <value>true</value>
6526
+ <display_name>true</display_name>
6527
+ </choice>
6528
+ <choice>
6529
+ <value>false</value>
6530
+ <display_name>false</display_name>
6531
+ </choice>
6532
+ </choices>
6533
+ </argument>
6534
+ <argument>
6535
+ <name>apply_validation</name>
6536
+ <display_name>Apply Validation?</display_name>
6537
+ <description>If true, validates the HPXML output file. Set to false for faster performance. Note that validation is not needed if the HPXML file will be validated downstream (e.g., via the HPXMLtoOpenStudio measure).</description>
6538
+ <type>Boolean</type>
6539
+ <required>false</required>
6540
+ <model_dependent>false</model_dependent>
6541
+ <default_value>false</default_value>
6542
+ <choices>
6543
+ <choice>
6544
+ <value>true</value>
6545
+ <display_name>true</display_name>
6546
+ </choice>
6547
+ <choice>
6548
+ <value>false</value>
6549
+ <display_name>false</display_name>
6550
+ </choice>
6551
+ </choices>
5945
6552
  </argument>
5946
6553
  </arguments>
5947
6554
  <outputs />
@@ -5961,25 +6568,25 @@
5961
6568
  <filename>constants.rb</filename>
5962
6569
  <filetype>rb</filetype>
5963
6570
  <usage_type>resource</usage_type>
5964
- <checksum>89EB6AEB</checksum>
6571
+ <checksum>2050FF10</checksum>
5965
6572
  </file>
5966
6573
  <file>
5967
6574
  <filename>geometry.rb</filename>
5968
6575
  <filetype>rb</filetype>
5969
6576
  <usage_type>resource</usage_type>
5970
- <checksum>A628308E</checksum>
6577
+ <checksum>58F1B7DD</checksum>
5971
6578
  </file>
5972
6579
  <file>
5973
6580
  <filename>unit_conversions.rb</filename>
5974
6581
  <filetype>rb</filetype>
5975
6582
  <usage_type>resource</usage_type>
5976
- <checksum>6B1FBD5D</checksum>
6583
+ <checksum>5E82ABE2</checksum>
5977
6584
  </file>
5978
6585
  <file>
5979
6586
  <filename>util.rb</filename>
5980
6587
  <filetype>rb</filetype>
5981
6588
  <usage_type>resource</usage_type>
5982
- <checksum>ECE5603C</checksum>
6589
+ <checksum>055F0A54</checksum>
5983
6590
  </file>
5984
6591
  <file>
5985
6592
  <version>
@@ -5990,7 +6597,7 @@
5990
6597
  <filename>measure.rb</filename>
5991
6598
  <filetype>rb</filetype>
5992
6599
  <usage_type>script</usage_type>
5993
- <checksum>938C3659</checksum>
6600
+ <checksum>079A37C9</checksum>
5994
6601
  </file>
5995
6602
  </files>
5996
6603
  </measure>