urbanopt-cli 0.8.3 → 0.9.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (657) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +5 -6
  3. data/CHANGELOG.md +20 -0
  4. data/CMakeLists.txt +7 -7
  5. data/Gemfile +3 -1
  6. data/LICENSE.md +1 -1
  7. data/README.md +9 -0
  8. data/Rakefile +1 -1
  9. data/example_files/Gemfile +23 -16
  10. data/example_files/Gemfile.lock +177 -0
  11. data/example_files/base_workflow_res.osw +57 -14
  12. data/example_files/class_project_coincident.json +1322 -0
  13. data/example_files/class_project_diverse.json +1322 -0
  14. data/example_files/disco/config.json +42 -0
  15. data/example_files/disco/cost_database.xlsx +0 -0
  16. data/example_files/disco/technical_catalog.json +12126 -0
  17. data/example_files/mappers/Baseline.rb +11 -8
  18. data/example_files/mappers/ChilledWaterStorage.rb +98 -0
  19. data/example_files/mappers/ClassProject.rb +110 -0
  20. data/example_files/mappers/CreateBar.rb +2 -1
  21. data/example_files/mappers/EvCharging.rb +1 -1
  22. data/example_files/mappers/FlexibleHotWater.rb +1 -1
  23. data/example_files/mappers/Floorspace.rb +1 -1
  24. data/example_files/mappers/HighEfficiency.rb +14 -12
  25. data/example_files/mappers/HighEfficiencyCreateBar.rb +1 -1
  26. data/example_files/mappers/HighEfficiencyFloorspace.rb +1 -1
  27. data/example_files/mappers/PeakHoursMelsShedding.rb +72 -0
  28. data/example_files/mappers/PeakHoursThermostatAdjust.rb +78 -0
  29. data/example_files/mappers/ThermalStorage.rb +2 -1
  30. data/example_files/mappers/base_workflow.osw +55 -14
  31. data/example_files/mappers/class_project_workflow.osw +328 -0
  32. data/example_files/mappers/createbar_workflow.osw +16 -16
  33. data/example_files/measures/BuildResidentialModel/measure.rb +7 -1
  34. data/example_files/measures/BuildResidentialModel/measure.xml +1313 -706
  35. data/example_files/opendss/electrical_database.json +1446 -1446
  36. data/example_files/python_deps/dependencies.json +5 -0
  37. data/example_files/python_deps/install_python.ps1 +96 -0
  38. data/example_files/python_deps/install_python.sh +120 -0
  39. data/example_files/residential/clothes_dryer.tsv +11 -11
  40. data/example_files/residential/clothes_washer.tsv +3 -3
  41. data/example_files/residential/dishwasher.tsv +3 -3
  42. data/example_files/resources/hpxml-measures/.github/pull_request_template.md +0 -1
  43. data/example_files/resources/hpxml-measures/.github/workflows/config.yml +8 -21
  44. data/example_files/resources/hpxml-measures/.gitignore +2 -0
  45. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +1272 -1094
  46. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +978 -659
  47. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb +52 -74
  48. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +77 -140
  49. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb +37 -27
  50. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml +42 -15
  51. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb +70 -51
  52. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb +142 -21
  53. data/example_files/resources/hpxml-measures/Changelog.md +95 -19
  54. data/example_files/resources/hpxml-measures/Gemfile +2 -4
  55. data/example_files/resources/hpxml-measures/Gemfile.lock +2 -13
  56. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb +276 -300
  57. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +220 -214
  58. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb +215 -170
  59. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/battery.rb +115 -18
  60. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb +24 -44
  61. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb +564 -197
  62. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/cambium/README.md +8 -8
  63. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/energyplus.rb +1 -0
  64. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb +7 -55
  65. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +24 -19
  66. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +541 -211
  67. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +305 -176
  68. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd +0 -2
  69. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLBaseElements.xsd +230 -141
  70. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLDataTypes.xsd +145 -137
  71. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +191 -97
  72. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/iso-schematron.xsd +391 -0
  73. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb +194 -198
  74. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +140 -145
  75. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb +11 -11
  76. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb +33 -1
  77. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/materials.rb +4 -4
  78. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb +17 -9
  79. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb +14 -12
  80. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/output.rb +39 -17
  81. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/psychrometrics.rb +1 -1
  82. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/battery.csv +8761 -0
  83. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +114 -57
  84. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb +1 -0
  85. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/utility_bills.rb +148 -0
  86. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb +2 -2
  87. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb +90 -128
  88. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb +26 -32
  89. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb +2 -14
  90. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlvalidator.rb +67 -0
  91. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb +117 -56
  92. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_battery.rb +141 -14
  93. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +471 -344
  94. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb +124 -20
  95. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb +1 -1
  96. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb +28 -32
  97. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +172 -79
  98. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +54 -8
  99. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb +3 -3
  100. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb +4 -4
  101. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb +7 -7
  102. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb +1 -1
  103. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb +6 -9
  104. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb +8 -8
  105. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +213 -95
  106. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb +1 -10
  107. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_weather.rb +76 -0
  108. data/example_files/resources/hpxml-measures/README.md +2 -3
  109. data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.rb +587 -284
  110. data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.xml +304 -352
  111. data/example_files/resources/hpxml-measures/ReportSimulationOutput/tests/output_report_test.rb +404 -279
  112. data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.rb +222 -501
  113. data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.xml +137 -200
  114. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json +649 -0
  115. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json +649 -0
  116. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json +647 -0
  117. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate Min Annual Charge.json +8776 -0
  118. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate Min Monthly Charge.json +8776 -0
  119. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json +8774 -0
  120. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate Min Annual Charge.json +659 -0
  121. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate Min Monthly Charge.json +659 -0
  122. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json +657 -0
  123. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate Min Annual Charge.json +670 -0
  124. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate Min Monthly Charge.json +670 -0
  125. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json +668 -0
  126. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate Min Annual Charge.json +655 -0
  127. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate Min Monthly Charge.json +655 -0
  128. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json +653 -0
  129. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/openei_rates.zip +0 -0
  130. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/Average_retail_price_of_electricity.csv +0 -0
  131. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/HouseholdConsumption.csv +0 -0
  132. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv +0 -0
  133. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv +0 -0
  134. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv +0 -0
  135. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/README.md +0 -0
  136. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/util.rb +506 -25
  137. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Contains Demand Charges.json +1312 -0
  138. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Invalid Fixed Charge Units.json +657 -0
  139. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Invalid Min Charge Units.json +659 -0
  140. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/JacksonElectricMemberCorp-ResidentialSeniorCitizenLowIncomeAssistance.json +681 -0
  141. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Missing Required Fields.json +54 -0
  142. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/data.csv +8761 -0
  143. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/utility_bills_test.rb +1006 -235
  144. data/example_files/resources/hpxml-measures/docs/source/conf.py +1 -1
  145. data/example_files/resources/hpxml-measures/docs/source/intro.rst +0 -1
  146. data/example_files/resources/hpxml-measures/docs/source/usage_instructions.rst +4 -3
  147. data/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst +468 -264
  148. data/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst +148 -154
  149. data/example_files/resources/hpxml-measures/tasks.rb +616 -802
  150. data/example_files/resources/hpxml-measures/workflow/real_homes/house001.xml +19 -11
  151. data/example_files/resources/hpxml-measures/workflow/real_homes/house002.xml +20 -12
  152. data/example_files/resources/hpxml-measures/workflow/real_homes/house003.xml +12 -7
  153. data/example_files/resources/hpxml-measures/workflow/real_homes/house004.xml +12 -7
  154. data/example_files/resources/hpxml-measures/workflow/real_homes/house005.xml +19 -11
  155. data/example_files/resources/hpxml-measures/workflow/real_homes/house006.xml +12 -7
  156. data/example_files/resources/hpxml-measures/workflow/real_homes/house007.xml +20 -12
  157. data/example_files/resources/hpxml-measures/workflow/real_homes/house008.xml +28 -16
  158. data/example_files/resources/hpxml-measures/workflow/real_homes/house009.xml +28 -17
  159. data/example_files/resources/hpxml-measures/workflow/real_homes/house010.xml +28 -16
  160. data/example_files/resources/hpxml-measures/workflow/real_homes/house011.xml +20 -12
  161. data/example_files/resources/hpxml-measures/workflow/real_homes/house012.xml +20 -12
  162. data/example_files/resources/hpxml-measures/workflow/real_homes/house013.xml +20 -12
  163. data/example_files/resources/hpxml-measures/workflow/real_homes/house014.xml +20 -12
  164. data/example_files/resources/hpxml-measures/workflow/real_homes/house015.xml +20 -12
  165. data/example_files/resources/hpxml-measures/workflow/real_homes/house016.xml +22 -12
  166. data/example_files/resources/hpxml-measures/workflow/real_homes/house017.xml +19 -11
  167. data/example_files/resources/hpxml-measures/workflow/real_homes/house018.xml +20 -12
  168. data/example_files/resources/hpxml-measures/workflow/real_homes/house019.xml +13 -7
  169. data/example_files/resources/hpxml-measures/workflow/real_homes/house020.xml +12 -7
  170. data/example_files/resources/hpxml-measures/workflow/real_homes/house021.xml +31 -16
  171. data/example_files/resources/hpxml-measures/workflow/real_homes/house022.xml +22 -12
  172. data/example_files/resources/hpxml-measures/workflow/real_homes/house023.xml +21 -12
  173. data/example_files/resources/hpxml-measures/workflow/real_homes/house024.xml +37 -22
  174. data/example_files/resources/hpxml-measures/workflow/real_homes/house025.xml +24 -12
  175. data/example_files/resources/hpxml-measures/workflow/real_homes/house026.xml +33 -21
  176. data/example_files/resources/hpxml-measures/workflow/real_homes/house027.xml +28 -16
  177. data/example_files/resources/hpxml-measures/workflow/real_homes/house028.xml +28 -16
  178. data/example_files/resources/hpxml-measures/workflow/real_homes/house029.xml +30 -17
  179. data/example_files/resources/hpxml-measures/workflow/real_homes/house030.xml +10 -7
  180. data/example_files/resources/hpxml-measures/workflow/real_homes/house031.xml +22 -11
  181. data/example_files/resources/hpxml-measures/workflow/real_homes/house032.xml +12 -7
  182. data/example_files/resources/hpxml-measures/workflow/real_homes/house033.xml +18 -12
  183. data/example_files/resources/hpxml-measures/workflow/real_homes/house034.xml +25 -16
  184. data/example_files/resources/hpxml-measures/workflow/real_homes/house035.xml +22 -12
  185. data/example_files/resources/hpxml-measures/workflow/real_homes/house036.xml +20 -12
  186. data/example_files/resources/hpxml-measures/workflow/real_homes/house037.xml +26 -17
  187. data/example_files/resources/hpxml-measures/workflow/real_homes/house038.xml +19 -11
  188. data/example_files/resources/hpxml-measures/workflow/real_homes/house039.xml +25 -16
  189. data/example_files/resources/hpxml-measures/workflow/real_homes/house040.xml +20 -12
  190. data/example_files/resources/hpxml-measures/workflow/real_homes/house041.xml +35 -21
  191. data/example_files/resources/hpxml-measures/workflow/real_homes/house042.xml +28 -17
  192. data/example_files/resources/hpxml-measures/workflow/real_homes/house043.xml +20 -12
  193. data/example_files/resources/hpxml-measures/workflow/real_homes/house044.xml +35 -21
  194. data/example_files/resources/hpxml-measures/workflow/real_homes/house045.xml +20 -12
  195. data/example_files/resources/hpxml-measures/workflow/real_homes/house046.xml +20 -13
  196. data/example_files/resources/hpxml-measures/workflow/real_homes/house047.xml +12 -9
  197. data/example_files/resources/hpxml-measures/workflow/real_homes/house048.xml +25 -14
  198. data/example_files/resources/hpxml-measures/workflow/real_homes/house049.xml +10 -7
  199. data/example_files/resources/hpxml-measures/workflow/real_homes/house050.xml +20 -11
  200. data/example_files/resources/hpxml-measures/workflow/run_simulation.rb +91 -88
  201. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +18 -7
  202. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +546 -535
  203. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +546 -535
  204. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +555 -544
  205. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +18 -7
  206. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +18 -7
  207. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +18 -7
  208. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml +18 -7
  209. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil-location-miami-fl.xml +580 -569
  210. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +18 -7
  211. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane-location-portland-or.xml +580 -569
  212. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +18 -7
  213. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +18 -7
  214. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +7 -0
  215. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +17 -6
  216. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +7 -0
  217. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +18 -7
  218. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +18 -7
  219. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +18 -7
  220. data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml +600 -0
  221. data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery.xml +598 -587
  222. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml +494 -485
  223. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml +606 -593
  224. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml +494 -485
  225. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml +494 -485
  226. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml +494 -485
  227. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-calctype-operational.xml +480 -471
  228. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml +464 -457
  229. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml +496 -487
  230. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml +466 -459
  231. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml +518 -509
  232. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml +513 -504
  233. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml +445 -438
  234. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml +476 -467
  235. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml +443 -436
  236. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml +446 -439
  237. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml +494 -485
  238. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml +445 -438
  239. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml +476 -467
  240. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml +446 -439
  241. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml +494 -485
  242. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml +489 -480
  243. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml +499 -490
  244. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +491 -482
  245. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml +510 -0
  246. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml +495 -486
  247. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml +709 -695
  248. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml +528 -519
  249. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml +512 -503
  250. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml +504 -495
  251. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml +497 -488
  252. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml +490 -481
  253. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml +487 -478
  254. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached-2stories.xml +639 -628
  255. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached-atticroof-cathedral.xml +587 -580
  256. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached.xml +639 -628
  257. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational-misc-defaults.xml +539 -528
  258. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational-misc-loads-large-uncommon.xml +644 -633
  259. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational-misc-loads-large-uncommon2.xml +644 -633
  260. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational.xml +575 -564
  261. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +16 -7
  262. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +16 -7
  263. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +18 -7
  264. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +585 -574
  265. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +18 -7
  266. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +18 -7
  267. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +18 -7
  268. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +18 -7
  269. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +18 -7
  270. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml +536 -0
  271. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +16 -7
  272. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +16 -7
  273. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +20 -8
  274. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +16 -7
  275. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +16 -7
  276. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +18 -7
  277. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +18 -7
  278. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +18 -7
  279. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +16 -7
  280. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +18 -7
  281. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +16 -7
  282. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml +18 -7
  283. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +19 -8
  284. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +19 -8
  285. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +19 -8
  286. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +19 -8
  287. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +19 -8
  288. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +18 -7
  289. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +18 -7
  290. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +18 -7
  291. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +18 -7
  292. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +18 -7
  293. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +18 -7
  294. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +18 -7
  295. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml +582 -571
  296. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +583 -572
  297. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +18 -7
  298. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +584 -573
  299. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +584 -573
  300. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +18 -7
  301. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml +583 -572
  302. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml +585 -574
  303. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +18 -7
  304. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +582 -571
  305. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +18 -7
  306. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +18 -7
  307. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +18 -7
  308. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml +586 -575
  309. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml +585 -574
  310. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +18 -7
  311. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +18 -7
  312. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml +580 -569
  313. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +18 -7
  314. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +580 -569
  315. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +18 -7
  316. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +580 -569
  317. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +18 -7
  318. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +18 -7
  319. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +18 -7
  320. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +18 -7
  321. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +28 -11
  322. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +20 -7
  323. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +18 -7
  324. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +18 -7
  325. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +18 -7
  326. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +18 -7
  327. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml +607 -0
  328. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml +550 -0
  329. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +27 -12
  330. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +18 -7
  331. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +18 -7
  332. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +18 -7
  333. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +18 -7
  334. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +18 -7
  335. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml +589 -578
  336. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +18 -7
  337. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml +18 -7
  338. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml +619 -608
  339. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml +620 -609
  340. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml +618 -607
  341. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +18 -7
  342. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +537 -526
  343. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces.xml +90 -43
  344. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces2.xml +2507 -2460
  345. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml +595 -584
  346. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +19 -8
  347. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml +584 -0
  348. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +18 -7
  349. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml +594 -583
  350. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml +597 -586
  351. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml +598 -587
  352. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +27 -12
  353. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml +671 -656
  354. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +18 -7
  355. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +18 -7
  356. 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
  357. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +582 -571
  358. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +35 -16
  359. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +18 -7
  360. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +27 -12
  361. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +27 -12
  362. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +27 -12
  363. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +27 -12
  364. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +27 -12
  365. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +27 -12
  366. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +18 -7
  367. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-backup-lockout-temperature.xml +586 -575
  368. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +573 -562
  369. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +580 -569
  370. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml +583 -0
  371. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +18 -7
  372. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +18 -7
  373. 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
  374. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +599 -588
  375. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml +629 -616
  376. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +18 -7
  377. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml +573 -562
  378. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml +579 -568
  379. 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
  380. 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
  381. 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
  382. 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
  383. 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
  384. 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
  385. 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
  386. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml +598 -587
  387. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml +628 -615
  388. 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
  389. 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
  390. 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
  391. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml +535 -526
  392. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml +589 -578
  393. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml +536 -527
  394. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml +18 -7
  395. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml +565 -554
  396. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml +565 -554
  397. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml +18 -7
  398. 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
  399. 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
  400. 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
  401. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml +18 -7
  402. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml +526 -517
  403. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml +573 -562
  404. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml +529 -520
  405. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml +565 -554
  406. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml +580 -569
  407. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml +580 -569
  408. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml +565 -554
  409. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml +578 -567
  410. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +575 -564
  411. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +581 -570
  412. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml +583 -572
  413. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml +583 -572
  414. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml +583 -572
  415. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml +18 -7
  416. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml +18 -7
  417. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml +18 -7
  418. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml +580 -569
  419. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml +580 -569
  420. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml +580 -569
  421. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml +551 -542
  422. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac-with-heating.xml +532 -530
  423. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac.xml +525 -516
  424. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml +541 -532
  425. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml +541 -532
  426. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml +541 -532
  427. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-only.xml +525 -516
  428. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-heating.xml +533 -0
  429. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml +542 -0
  430. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml +542 -0
  431. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml +542 -0
  432. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml +529 -520
  433. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml +529 -520
  434. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml +580 -569
  435. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +16 -7
  436. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +16 -7
  437. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +18 -7
  438. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +16 -7
  439. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +16 -7
  440. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +16 -7
  441. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +16 -7
  442. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml +567 -0
  443. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +18 -7
  444. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +18 -7
  445. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +18 -7
  446. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +18 -7
  447. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +16 -7
  448. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml +18 -7
  449. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +18 -7
  450. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +18 -7
  451. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +18 -7
  452. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +18 -7
  453. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml +611 -598
  454. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml +589 -0
  455. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +582 -571
  456. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +18 -7
  457. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +16 -7
  458. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +18 -7
  459. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +17 -7
  460. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml +16 -7
  461. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml +530 -521
  462. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml +530 -521
  463. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +530 -521
  464. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml +566 -555
  465. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +18 -7
  466. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +18 -7
  467. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +18 -7
  468. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +18 -7
  469. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml +566 -555
  470. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +566 -555
  471. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +18 -7
  472. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +18 -7
  473. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +18 -7
  474. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +18 -7
  475. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +16 -7
  476. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +574 -563
  477. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +581 -570
  478. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +583 -572
  479. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +587 -576
  480. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml +587 -576
  481. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml +587 -576
  482. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +591 -580
  483. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml +591 -580
  484. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml +591 -580
  485. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml +570 -559
  486. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +586 -575
  487. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +570 -559
  488. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +586 -575
  489. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +18 -7
  490. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +16 -7
  491. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +18 -7
  492. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +18 -7
  493. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +18 -7
  494. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +552 -543
  495. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +16 -7
  496. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +963 -938
  497. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml +33 -69
  498. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml +530 -521
  499. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +535 -0
  500. 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
  501. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml +526 -517
  502. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml +541 -532
  503. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +16 -7
  504. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +526 -517
  505. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml +526 -517
  506. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +16 -7
  507. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml +535 -0
  508. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml +542 -0
  509. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml +594 -583
  510. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml +586 -575
  511. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml +18 -7
  512. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +18 -7
  513. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml +530 -521
  514. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +530 -521
  515. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml +18 -7
  516. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +18 -7
  517. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +530 -521
  518. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml +18 -7
  519. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml +18 -7
  520. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml +18 -7
  521. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +18 -7
  522. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +27 -12
  523. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml +591 -576
  524. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +18 -7
  525. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +27 -12
  526. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml +582 -571
  527. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml +537 -526
  528. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +18 -7
  529. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml +537 -526
  530. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml +601 -586
  531. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +18 -7
  532. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +18 -7
  533. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +601 -587
  534. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +19 -7
  535. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +20 -7
  536. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +607 -0
  537. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml +607 -0
  538. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +21 -7
  539. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +18 -7
  540. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +18 -7
  541. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +18 -7
  542. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +18 -7
  543. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +18 -7
  544. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +18 -7
  545. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +37 -19
  546. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +18 -7
  547. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +18 -7
  548. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml +590 -579
  549. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-none.xml +578 -0
  550. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml +632 -0
  551. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml +614 -0
  552. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml +677 -0
  553. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml +593 -0
  554. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml +27 -9
  555. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml +676 -665
  556. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml +616 -0
  557. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml +615 -0
  558. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml +598 -587
  559. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml +586 -0
  560. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml +18 -7
  561. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml +18 -7
  562. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +18 -7
  563. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +18 -7
  564. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml +583 -572
  565. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +18 -7
  566. data/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml +1700 -1677
  567. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml +622 -611
  568. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml +697 -682
  569. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-pv-battery-lifetime-model.xml → base-pv-battery-round-trip-efficiency.xml} +20 -11
  570. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml +624 -0
  571. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml +622 -611
  572. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml +640 -0
  573. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml +639 -0
  574. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml +623 -0
  575. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml +606 -595
  576. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml +582 -571
  577. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-smooth.xml +583 -572
  578. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml +584 -0
  579. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml +583 -572
  580. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml +583 -572
  581. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml +581 -570
  582. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml +581 -570
  583. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml +581 -570
  584. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml +636 -625
  585. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +18 -7
  586. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +27 -14
  587. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +21 -10
  588. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +21 -10
  589. 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
  590. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml +584 -0
  591. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml +584 -0
  592. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +18 -7
  593. 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
  594. data/example_files/resources/hpxml-measures/workflow/sample_files/base.xml +18 -7
  595. data/example_files/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw +18 -13
  596. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw +64 -0
  597. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy.osw +12 -7
  598. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml.osw +8 -24
  599. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml +366 -358
  600. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml +369 -361
  601. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml +369 -361
  602. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml +369 -361
  603. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml +369 -361
  604. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml +369 -361
  605. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml +369 -361
  606. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml +369 -361
  607. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml +311 -303
  608. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml +311 -303
  609. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml +327 -319
  610. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml +327 -319
  611. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml +332 -324
  612. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml +332 -324
  613. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml +341 -333
  614. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml +341 -333
  615. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml +369 -361
  616. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml +369 -361
  617. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml +369 -361
  618. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml +369 -361
  619. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml +369 -361
  620. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml +369 -361
  621. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml +383 -379
  622. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml +383 -379
  623. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml +538 -534
  624. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml +550 -546
  625. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results.csv +444 -410
  626. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_ashrae_140.csv +8 -8
  627. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_bills.csv +444 -410
  628. data/example_files/resources/hpxml-measures/workflow/tests/compare.py +18 -4
  629. data/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb +163 -392
  630. data/example_files/scripts/convert_urbanopt_to_disco.py +130 -0
  631. data/example_files/scripts/default_control_changes.csv +8 -0
  632. data/example_files/scripts/default_voltage_regulators.csv +3 -0
  633. data/example_files/scripts/read_data.py +331 -0
  634. data/example_files/visualization/input_visualization_feature.html +172 -81
  635. data/example_files/visualization/input_visualization_scenario.html +178 -82
  636. data/example_files/xml_building/17/README.md +2 -2
  637. data/example_files/xml_building/17/unit 1.xml +40 -41
  638. data/example_files/xml_building/17/unit 2.xml +35 -36
  639. data/example_files/xml_building/17/unit 3.xml +35 -36
  640. data/example_files/xml_building/17/unit 4.xml +41 -42
  641. data/lib/uo_cli/version.rb +2 -2
  642. data/lib/uo_cli.rb +597 -97
  643. data/uo_cli.gemspec +6 -5
  644. metadata +122 -36
  645. data/example_files/residential/exhaust.tsv +0 -3
  646. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/hvac_equipment_efficiency.csv +0 -493
  647. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/water_heater_efficiency.csv +0 -157
  648. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/HPXMLvalidator.xml +0 -620
  649. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/validator.rb +0 -107
  650. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/measure.rb +0 -450
  651. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/measure.xml +0 -85
  652. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/resources/constants.rb +0 -72
  653. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/tests/hpxml_output_report_test.rb +0 -290
  654. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/PV_10kW.csv +0 -8761
  655. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/PV_1kW.csv +0 -8761
  656. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/PV_None.csv +0 -8761
  657. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_hvac_sizing.csv +0 -410
@@ -32,6 +32,32 @@
32
32
  </xs:sequence>
33
33
  <xs:attribute name="dataSource" type="DataSource"/>
34
34
  </xs:complexType>
35
+ <xs:complexType name="GeoLocationInformation">
36
+ <xs:sequence>
37
+ <xs:element minOccurs="0" name="Latitude" type="Latitude">
38
+ <xs:annotation>
39
+ <xs:documentation>[deg] North-south position of a point on the Earth's surface. Use negative values for southern hemisphere.</xs:documentation>
40
+ </xs:annotation>
41
+ </xs:element>
42
+ <xs:element minOccurs="0" name="Longitude" type="Longitude">
43
+ <xs:annotation>
44
+ <xs:documentation>[deg] East-west position of a point on the Earth's surface. Use negative values for the western hemisphere.</xs:documentation>
45
+ </xs:annotation>
46
+ </xs:element>
47
+ <xs:element minOccurs="0" name="PlusCode" type="HPXMLString">
48
+ <xs:annotation>
49
+ <xs:documentation>Also known as Open Location Code. See https://maps.google.com/pluscodes/</xs:documentation>
50
+ </xs:annotation>
51
+ </xs:element>
52
+ <xs:element minOccurs="0" name="UBID" type="HPXMLString">
53
+ <xs:annotation>
54
+ <xs:documentation>Unique Building ID. See https://ubid.pnnl.gov.</xs:documentation>
55
+ </xs:annotation>
56
+ </xs:element>
57
+ <xs:element minOccurs="0" ref="extension"/>
58
+ </xs:sequence>
59
+ <xs:attribute name="dataSource" type="DataSource"/>
60
+ </xs:complexType>
35
61
  <xs:complexType name="SystemIdentifiersInfoType">
36
62
  <xs:annotation>
37
63
  <xs:documentation>System identifiers contain type codes and an identifier for both a sending and a receiving system. These fields are needed to be able to transmit data between two
@@ -94,7 +120,7 @@
94
120
  </xs:sequence>
95
121
  <xs:attribute name="dataSource" type="DataSource"/>
96
122
  </xs:complexType>
97
- <xs:element name="extension" type="extensionType"> </xs:element>
123
+ <xs:element name="extension" type="extensionType"/>
98
124
  <xs:element name="ProjectStatus">
99
125
  <xs:complexType>
100
126
  <xs:sequence>
@@ -154,7 +180,7 @@
154
180
  </xs:element>
155
181
  <xs:complexType name="IECCClimateZoneType">
156
182
  <xs:sequence>
157
- <xs:element name="Year" type="IECCYear"> </xs:element>
183
+ <xs:element name="Year" type="IECCYear"/>
158
184
  <xs:element name="ClimateZone" type="ClimateZoneIECC"/>
159
185
  <xs:element minOccurs="0" ref="extension"/>
160
186
  </xs:sequence>
@@ -251,19 +277,6 @@
251
277
  </xs:sequence>
252
278
  <xs:attribute name="dataSource" type="DataSource"/>
253
279
  </xs:complexType>
254
- <xs:complexType name="InteriorFinishInfo">
255
- <xs:sequence>
256
- <xs:element minOccurs="0" name="Type" type="InteriorFinish"/>
257
- <xs:element minOccurs="0" name="Thickness" type="LengthMeasurement">
258
- <xs:annotation>
259
- <xs:documentation>[in]</xs:documentation>
260
- </xs:annotation>
261
- </xs:element>
262
- <xs:element minOccurs="0" name="Color" type="WallAndRoofColor"/>
263
- <xs:element ref="extension" minOccurs="0"/>
264
- </xs:sequence>
265
- <xs:attribute name="dataSource" type="DataSource"/>
266
- </xs:complexType>
267
280
  <xs:complexType name="InsulationLayerInfo">
268
281
  <xs:complexContent>
269
282
  <xs:extension base="InsulationLayerInfoBase">
@@ -298,7 +311,7 @@
298
311
  <xs:sequence>
299
312
  <xs:element name="InsulationDepth" type="LengthMeasurement" minOccurs="0">
300
313
  <xs:annotation>
301
- <xs:documentation>[ft] Depth from grade to bottom of vertical slab perimeter insulation</xs:documentation>
314
+ <xs:documentation>[ft] Depth from top of slab to bottom of vertical slab perimeter insulation</xs:documentation>
302
315
  </xs:annotation>
303
316
  </xs:element>
304
317
  <xs:element ref="extension" minOccurs="0"/>
@@ -325,6 +338,19 @@
325
338
  </xs:extension>
326
339
  </xs:complexContent>
327
340
  </xs:complexType>
341
+ <xs:complexType name="InteriorFinishInfo">
342
+ <xs:sequence>
343
+ <xs:element minOccurs="0" name="Type" type="InteriorFinish"/>
344
+ <xs:element minOccurs="0" name="Thickness" type="LengthMeasurement">
345
+ <xs:annotation>
346
+ <xs:documentation>[in]</xs:documentation>
347
+ </xs:annotation>
348
+ </xs:element>
349
+ <xs:element minOccurs="0" name="Color" type="WallAndRoofColor"/>
350
+ <xs:element ref="extension" minOccurs="0"/>
351
+ </xs:sequence>
352
+ <xs:attribute name="dataSource" type="DataSource"/>
353
+ </xs:complexType>
328
354
  <xs:element name="CoolingSystemInfo" type="CoolingSystemInfoType"/>
329
355
  <xs:element name="HeatPumpInfo" type="HeatPumpInfoType"/>
330
356
  <xs:element name="HeatingSystemInfo" type="HeatingSystemInfoType"/>
@@ -373,7 +399,7 @@
373
399
  drying cycle energy as well as energy consumed during Stand-by and Off modes.</xs:documentation>
374
400
  </xs:annotation>
375
401
  </xs:element>
376
- <xs:element maxOccurs="unbounded" minOccurs="0" name="ControlType" type="ClothesDryerControlType"> </xs:element>
402
+ <xs:element maxOccurs="unbounded" minOccurs="0" name="ControlType" type="ClothesDryerControlType"/>
377
403
  <xs:element minOccurs="0" name="Vented" type="HPXMLBoolean"/>
378
404
  <xs:element minOccurs="0" name="VentedFlowRate" type="FlowRate"/>
379
405
  <xs:element ref="extension" minOccurs="0"/>
@@ -562,11 +588,6 @@
562
588
  </xs:annotation>
563
589
  </xs:element>
564
590
  <xs:element minOccurs="0" name="Location" type="AdjacentTo"/>
565
- <xs:element minOccurs="0" name="Efficiency" type="HPXMLDouble">
566
- <xs:annotation>
567
- <xs:documentation>[L/kWh] DEPRECATED. This will be removed in v4.0. Use EnergyFactor or IntegratedEnergyFactor instead.</xs:documentation>
568
- </xs:annotation>
569
- </xs:element>
570
591
  <xs:element minOccurs="0" name="Capacity" type="HPXMLDouble">
571
592
  <xs:annotation>
572
593
  <xs:documentation>Rated water removal rate. This represents the expected performance in a basement for portable dehumidifiers and expected performance in the average home for whole-home dehumifiiers. [pints/day]</xs:documentation>
@@ -739,7 +760,7 @@
739
760
  <xs:sequence>
740
761
  <xs:group ref="SystemInfo"/>
741
762
  <xs:element name="ZoneName" type="HPXMLString" minOccurs="0"/>
742
- <xs:element name="ZoneType" type="ZoneType" minOccurs="0"> </xs:element>
763
+ <xs:element name="ZoneType" type="ZoneType" minOccurs="0"/>
743
764
  <xs:element name="Spaces" type="Spaces" minOccurs="0"/>
744
765
  <xs:element minOccurs="0" ref="extension"/>
745
766
  </xs:sequence>
@@ -754,7 +775,7 @@
754
775
  <xs:element name="AirInfiltration" minOccurs="0">
755
776
  <xs:complexType>
756
777
  <xs:sequence>
757
- <xs:element minOccurs="0" name="AirInfiltrationMeasurement" type="AirInfiltrationMeasurementType" maxOccurs="unbounded"> </xs:element>
778
+ <xs:element minOccurs="0" name="AirInfiltrationMeasurement" type="AirInfiltrationMeasurementType" maxOccurs="unbounded"/>
758
779
  <xs:element minOccurs="0" name="AirSealing" maxOccurs="unbounded">
759
780
  <xs:complexType>
760
781
  <xs:sequence>
@@ -810,13 +831,8 @@
810
831
  </xs:annotation>
811
832
  </xs:element>
812
833
  <xs:element minOccurs="0" name="AttachedToRoof" type="LocalReference" maxOccurs="unbounded"/>
813
- <xs:element minOccurs="0" name="AttachedToCeiling" type="LocalReference" maxOccurs="unbounded"/>
814
834
  <xs:element minOccurs="0" name="AttachedToWall" type="LocalReference" maxOccurs="unbounded"/>
815
- <xs:element minOccurs="0" name="AttachedToFrameFloor" type="LocalReference" maxOccurs="unbounded">
816
- <xs:annotation>
817
- <xs:documentation>DEPRECATION WARNING: AttachedToFrameFloor will be deprecated in the future. Use AttachedToCeiling instead.</xs:documentation>
818
- </xs:annotation>
819
- </xs:element>
835
+ <xs:element minOccurs="0" name="AttachedToFloor" type="LocalReference" maxOccurs="unbounded"/>
820
836
  <xs:element name="AnnualEnergyUse" minOccurs="0">
821
837
  <xs:complexType>
822
838
  <xs:sequence>
@@ -856,7 +872,7 @@
856
872
  <xs:element minOccurs="0" name="AttachedToRimJoist" type="LocalReference" maxOccurs="unbounded"/>
857
873
  <xs:element minOccurs="0" name="AttachedToWall" type="LocalReference" maxOccurs="unbounded"/>
858
874
  <xs:element minOccurs="0" name="AttachedToFoundationWall" type="LocalReference" maxOccurs="unbounded"/>
859
- <xs:element minOccurs="0" name="AttachedToFrameFloor" type="LocalReference" maxOccurs="unbounded"/>
875
+ <xs:element minOccurs="0" name="AttachedToFloor" type="LocalReference" maxOccurs="unbounded"/>
860
876
  <xs:element minOccurs="0" name="AttachedToSlab" type="LocalReference" maxOccurs="unbounded"/>
861
877
  <xs:element name="AnnualEnergyUse" minOccurs="0">
862
878
  <xs:complexType>
@@ -903,9 +919,8 @@
903
919
  </xs:element>
904
920
  <xs:element minOccurs="0" name="AttachedToRoof" type="LocalReference" maxOccurs="unbounded"/>
905
921
  <xs:element minOccurs="0" name="AttachedToWall" type="LocalReference" maxOccurs="unbounded"/>
906
- <xs:element minOccurs="0" name="AttachedToCeiling" type="LocalReference" maxOccurs="unbounded"/>
907
922
  <xs:element minOccurs="0" name="AttachedToFoundationWall" type="LocalReference" maxOccurs="unbounded"/>
908
- <xs:element minOccurs="0" name="AttachedToFrameFloor" type="LocalReference" maxOccurs="unbounded"/>
923
+ <xs:element minOccurs="0" name="AttachedToFloor" type="LocalReference" maxOccurs="unbounded"/>
909
924
  <xs:element minOccurs="0" name="AttachedToSlab" type="LocalReference" maxOccurs="unbounded"/>
910
925
  <xs:element name="AnnualEnergyUse" minOccurs="0">
911
926
  <xs:complexType>
@@ -951,7 +966,7 @@
951
966
  <xs:element minOccurs="0" name="RoofColor" type="WallAndRoofColor"/>
952
967
  <xs:element minOccurs="0" name="SolarAbsorptance" type="SolarAbsorptance"/>
953
968
  <xs:element minOccurs="0" name="Emittance" type="Emittance"/>
954
- <xs:element minOccurs="0" name="InteriorFinish" type="InteriorFinishInfo"> </xs:element>
969
+ <xs:element minOccurs="0" name="InteriorFinish" type="InteriorFinishInfo"/>
955
970
  <xs:element minOccurs="0" name="Rafters" type="StudProperties"/>
956
971
  <xs:element minOccurs="0" name="DeckType" type="DeckType"/>
957
972
  <xs:element minOccurs="0" name="Pitch" type="Pitch">
@@ -1025,20 +1040,17 @@
1025
1040
  <xs:complexType>
1026
1041
  <xs:sequence>
1027
1042
  <xs:element name="Wall" maxOccurs="unbounded">
1028
- <xs:annotation>
1029
- <xs:documentation>Interior partition surfaces should not be described using the Wall element.</xs:documentation>
1030
- </xs:annotation>
1031
1043
  <xs:complexType>
1032
1044
  <xs:sequence>
1033
1045
  <xs:group ref="SystemInfo"/>
1034
1046
  <xs:element minOccurs="0" ref="AttachedToSpace"/>
1035
- <xs:element name="ExteriorAdjacentTo" type="AdjacentTo" minOccurs="0"> </xs:element>
1047
+ <xs:element name="ExteriorAdjacentTo" type="AdjacentTo" minOccurs="0"/>
1036
1048
  <xs:element minOccurs="0" name="InteriorAdjacentTo" type="AdjacentTo"/>
1037
1049
  <xs:element minOccurs="0" name="AtticWallType" type="AtticWallType"/>
1038
- <xs:element name="WallType" type="WallType" minOccurs="0"> </xs:element>
1050
+ <xs:element name="WallType" type="WallType" minOccurs="0"/>
1039
1051
  <xs:element minOccurs="0" name="Thickness" type="LengthMeasurement">
1040
1052
  <xs:annotation>
1041
- <xs:documentation>[in] Thickness of the wall assembly</xs:documentation>
1053
+ <xs:documentation>[in] Thickness of the entire wall assembly, including any siding, sheathing, continuous insulation, and interior finish.</xs:documentation>
1042
1054
  </xs:annotation>
1043
1055
  </xs:element>
1044
1056
  <xs:element minOccurs="0" name="Area" type="SurfaceArea">
@@ -1057,7 +1069,7 @@
1057
1069
  <xs:element minOccurs="0" name="Color" type="WallAndRoofColor"/>
1058
1070
  <xs:element minOccurs="0" name="SolarAbsorptance" type="SolarAbsorptance"/>
1059
1071
  <xs:element minOccurs="0" name="Emittance" type="Emittance"/>
1060
- <xs:element minOccurs="0" name="InteriorFinish" type="InteriorFinishInfo"> </xs:element>
1072
+ <xs:element minOccurs="0" name="InteriorFinish" type="InteriorFinishInfo"/>
1061
1073
  <xs:element minOccurs="0" maxOccurs="1" name="Insulation" type="InsulationInfo"/>
1062
1074
  <xs:element minOccurs="0" name="Vented" type="HPXMLBoolean">
1063
1075
  <xs:annotation>
@@ -1089,7 +1101,7 @@
1089
1101
  <xs:sequence>
1090
1102
  <xs:group ref="SystemInfo"/>
1091
1103
  <xs:element minOccurs="0" ref="AttachedToSpace"/>
1092
- <xs:element name="ExteriorAdjacentTo" type="AdjacentTo" minOccurs="0"> </xs:element>
1104
+ <xs:element name="ExteriorAdjacentTo" type="AdjacentTo" minOccurs="0"/>
1093
1105
  <xs:element minOccurs="0" name="InteriorAdjacentTo" type="AdjacentTo"/>
1094
1106
  <xs:element minOccurs="0" name="Type" type="FoundationWallType"/>
1095
1107
  <xs:element minOccurs="0" name="Length" type="LengthMeasurement">
@@ -1115,7 +1127,7 @@
1115
1127
  </xs:element>
1116
1128
  <xs:element minOccurs="0" name="Thickness" type="LengthMeasurement">
1117
1129
  <xs:annotation>
1118
- <xs:documentation>[in] Thickness of foundation wall excluding interior framing.</xs:documentation>
1130
+ <xs:documentation>[in] Thickness of the foundation wall structural element (e.g., concrete), excluding any interior framing and continuous insulation.</xs:documentation>
1119
1131
  </xs:annotation>
1120
1132
  </xs:element>
1121
1133
  <xs:element minOccurs="0" name="DepthBelowGrade" type="LengthMeasurement">
@@ -1129,7 +1141,7 @@
1129
1141
  </xs:annotation>
1130
1142
  </xs:element>
1131
1143
  <xs:element minOccurs="0" name="InteriorStuds" type="StudProperties"/>
1132
- <xs:element minOccurs="0" name="InteriorFinish" type="InteriorFinishInfo"> </xs:element>
1144
+ <xs:element minOccurs="0" name="InteriorFinish" type="InteriorFinishInfo"/>
1133
1145
  <xs:element maxOccurs="1" minOccurs="0" name="Insulation" type="FoundationWallInsulationInfo"/>
1134
1146
  <xs:element minOccurs="0" ref="extension"/>
1135
1147
  </xs:sequence>
@@ -1140,53 +1152,26 @@
1140
1152
  <xs:attribute name="dataSource" type="DataSource"/>
1141
1153
  </xs:complexType>
1142
1154
  </xs:element>
1143
- <xs:element minOccurs="0" name="Ceilings">
1144
- <xs:annotation>
1145
- <xs:documentation>Use Ceilings for horizontal surfaces above living space (e.g., sufaces between living space and attic).</xs:documentation>
1146
- </xs:annotation>
1155
+ <xs:element minOccurs="0" name="Floors">
1147
1156
  <xs:complexType>
1148
1157
  <xs:sequence>
1149
- <xs:element name="Ceiling" maxOccurs="unbounded" minOccurs="1">
1158
+ <xs:element name="Floor" maxOccurs="unbounded" minOccurs="1">
1159
+ <xs:annotation>
1160
+ <xs:documentation>Use the Floor element for all floors/ceilings. For example, living space ceilings/attic floors, floors above foundations, floors under bonus
1161
+ rooms, cantilevered floors, etc.</xs:documentation>
1162
+ </xs:annotation>
1150
1163
  <xs:complexType>
1151
1164
  <xs:sequence>
1152
1165
  <xs:group ref="SystemInfo"/>
1153
1166
  <xs:element minOccurs="0" ref="AttachedToSpace"/>
1154
- <xs:element name="ExteriorAdjacentTo" type="AdjacentTo" minOccurs="0"> </xs:element>
1167
+ <xs:element name="ExteriorAdjacentTo" type="AdjacentTo" minOccurs="0"/>
1155
1168
  <xs:element minOccurs="0" name="InteriorAdjacentTo" type="AdjacentTo"/>
1156
- <xs:element minOccurs="0" name="CeilingJoists" type="StudProperties"/>
1157
- <xs:element minOccurs="0" name="CeilingTrusses" type="StudProperties"/>
1158
- <xs:element minOccurs="0" name="Area" type="SurfaceArea">
1169
+ <xs:element minOccurs="0" name="FloorOrCeiling" type="FloorOrCeiling">
1159
1170
  <xs:annotation>
1160
- <xs:documentation>[sq.ft.]</xs:documentation>
1171
+ <xs:documentation>From the perspective of the living/conditioned space.</xs:documentation>
1161
1172
  </xs:annotation>
1162
1173
  </xs:element>
1163
- <xs:element minOccurs="0" name="InteriorFinish" type="InteriorFinishInfo"> </xs:element>
1164
- <xs:element minOccurs="0" maxOccurs="1" name="Insulation" type="InsulationInfo"> </xs:element>
1165
- <xs:element minOccurs="0" ref="extension"/>
1166
- </xs:sequence>
1167
- <xs:attribute name="dataSource" type="DataSource"/>
1168
- </xs:complexType>
1169
- </xs:element>
1170
- </xs:sequence>
1171
- <xs:attribute name="dataSource" type="DataSource"/>
1172
- </xs:complexType>
1173
- </xs:element>
1174
- <xs:element minOccurs="0" name="FrameFloors">
1175
- <xs:annotation>
1176
- <xs:documentation>Use FrameFloors for horizontal surfaces below living space (e.g., sufaces between living space and crawlspace/basement/ambient foundations).</xs:documentation>
1177
- </xs:annotation>
1178
- <xs:complexType>
1179
- <xs:sequence>
1180
- <xs:element name="FrameFloor" maxOccurs="unbounded" minOccurs="1">
1181
- <xs:annotation>
1182
- <xs:documentation>Interior partition surfaces should not be described using the FrameFloor element.</xs:documentation>
1183
- </xs:annotation>
1184
- <xs:complexType>
1185
- <xs:sequence>
1186
- <xs:group ref="SystemInfo"/>
1187
- <xs:element minOccurs="0" ref="AttachedToSpace"/>
1188
- <xs:element name="ExteriorAdjacentTo" type="AdjacentTo" minOccurs="0"> </xs:element>
1189
- <xs:element minOccurs="0" name="InteriorAdjacentTo" type="AdjacentTo"/>
1174
+ <xs:element minOccurs="0" name="FloorType" type="FloorType"/>
1190
1175
  <xs:element minOccurs="0" name="FloorJoists" type="StudProperties"/>
1191
1176
  <xs:element minOccurs="0" name="FloorTrusses" type="StudProperties"/>
1192
1177
  <xs:element minOccurs="0" name="FloorCovering" type="FloorCovering"/>
@@ -1195,8 +1180,8 @@
1195
1180
  <xs:documentation>[sq.ft.]</xs:documentation>
1196
1181
  </xs:annotation>
1197
1182
  </xs:element>
1198
- <xs:element minOccurs="0" name="InteriorFinish" type="InteriorFinishInfo"> </xs:element>
1199
- <xs:element minOccurs="0" maxOccurs="1" name="Insulation" type="InsulationInfo"> </xs:element>
1183
+ <xs:element minOccurs="0" name="InteriorFinish" type="InteriorFinishInfo"/>
1184
+ <xs:element minOccurs="0" maxOccurs="1" name="Insulation" type="InsulationInfo"/>
1200
1185
  <xs:element minOccurs="0" ref="extension"/>
1201
1186
  </xs:sequence>
1202
1187
  <xs:attribute name="dataSource" type="DataSource"/>
@@ -1225,7 +1210,7 @@
1225
1210
  </xs:element>
1226
1211
  <xs:element minOccurs="0" name="Thickness" type="LengthMeasurement">
1227
1212
  <xs:annotation>
1228
- <xs:documentation>[in] Thickness of foundation slab.</xs:documentation>
1213
+ <xs:documentation>[in] Thickness of the foundation slab structural element (e.g., concrete), excluding any floor coverings and continuous insulation.</xs:documentation>
1229
1214
  </xs:annotation>
1230
1215
  </xs:element>
1231
1216
  <xs:element minOccurs="0" name="Perimeter" type="LengthMeasurement">
@@ -1407,7 +1392,7 @@
1407
1392
  <xs:attribute name="dataSource" type="DataSource"/>
1408
1393
  </xs:complexType>
1409
1394
  </xs:element>
1410
- <xs:element maxOccurs="unbounded" minOccurs="0" name="HVACControl" type="HVACControlType"> </xs:element>
1395
+ <xs:element maxOccurs="unbounded" minOccurs="0" name="HVACControl" type="HVACControlType"/>
1411
1396
  <xs:element maxOccurs="unbounded" minOccurs="0" name="HVACDistribution">
1412
1397
  <xs:complexType>
1413
1398
  <xs:sequence>
@@ -1490,6 +1475,31 @@
1490
1475
  </xs:annotation>
1491
1476
  </xs:element>
1492
1477
  <xs:element minOccurs="0" name="FanType" type="VentilationFanType"/>
1478
+ <xs:element minOccurs="0" name="CFISControls">
1479
+ <xs:annotation>
1480
+ <xs:documentation>Relevant when FanType="central fan integrated supply".</xs:documentation>
1481
+ </xs:annotation>
1482
+ <xs:complexType>
1483
+ <xs:sequence>
1484
+ <xs:element minOccurs="0" name="HasOutdoorAirControl" type="HPXMLBoolean">
1485
+ <xs:annotation>
1486
+ <xs:documentation>Has controls to block the flow of outside air when the CFIS system is not ventilating. For example, an electronically-controlled mechanical damper, or an in-line fan that substantially blocks the flow when not running.</xs:documentation>
1487
+ </xs:annotation>
1488
+ </xs:element>
1489
+ <xs:element minOccurs="0" name="AdditionalRuntimeOperatingMode" type="AdditionalRuntimeOperatingMode">
1490
+ <xs:annotation>
1491
+ <xs:documentation>Describes if/how the CFIS system provides additional ventilation beyond when the HVAC system is running to meet a given ventilation target.</xs:documentation>
1492
+ </xs:annotation>
1493
+ </xs:element>
1494
+ <xs:element name="SupplementalFan" type="LocalReference" minOccurs="0" maxOccurs="1">
1495
+ <xs:annotation>
1496
+ <xs:documentation>When AdditionalRuntimeOperatingMode="supplemental fan", specifies the VentilationFan that serves as that supplemental fan.</xs:documentation>
1497
+ </xs:annotation>
1498
+ </xs:element>
1499
+ <xs:element minOccurs="0" ref="extension"/>
1500
+ </xs:sequence>
1501
+ </xs:complexType>
1502
+ </xs:element>
1493
1503
  <xs:element minOccurs="0" name="RatedFlowRate" type="HPXMLDouble">
1494
1504
  <xs:annotation>
1495
1505
  <xs:documentation>[CFM] as rated by manufacturer</xs:documentation>
@@ -1587,9 +1597,6 @@
1587
1597
  to.</xs:documentation>
1588
1598
  </xs:annotation>
1589
1599
  </xs:element>
1590
- <xs:element minOccurs="0" name="PreconditioningHeatingSystem" type="HeatingSystemInfoType"/>
1591
- <xs:element minOccurs="0" name="PreconditioningCoolingSystem" type="CoolingSystemInfoType"/>
1592
- <xs:element minOccurs="0" name="PreconditioningHeatPump" type="HeatPumpInfoType"/>
1593
1600
  <xs:element minOccurs="0" ref="extension"/>
1594
1601
  </xs:sequence>
1595
1602
  <xs:attribute name="dataSource" type="DataSource"/>
@@ -1660,7 +1667,12 @@
1660
1667
  <xs:element minOccurs="0" name="ThirdPartyCertification" type="DHWThirdPartyCertification" maxOccurs="unbounded"/>
1661
1668
  <xs:element name="TankVolume" type="Volume" minOccurs="0">
1662
1669
  <xs:annotation>
1663
- <xs:documentation>[gal]</xs:documentation>
1670
+ <xs:documentation>[gal] Nominal capacity</xs:documentation>
1671
+ </xs:annotation>
1672
+ </xs:element>
1673
+ <xs:element name="MeasuredTankVolume" type="Volume" minOccurs="0">
1674
+ <xs:annotation>
1675
+ <xs:documentation>[gal] Measured capacity</xs:documentation>
1664
1676
  </xs:annotation>
1665
1677
  </xs:element>
1666
1678
  <xs:element minOccurs="0" name="FractionDHWLoadServed" type="Fraction"/>
@@ -1682,6 +1694,11 @@
1682
1694
  430, Subpart B, Appendix E.</xs:documentation>
1683
1695
  </xs:annotation>
1684
1696
  </xs:element>
1697
+ <xs:element minOccurs="0" name="HeatPumpCOP" type="Efficiency">
1698
+ <xs:annotation>
1699
+ <xs:documentation>The dimensionless coefficient of performance, used to measure the efficiency of a commercial heat pump water heater.</xs:documentation>
1700
+ </xs:annotation>
1701
+ </xs:element>
1685
1702
  <xs:element minOccurs="0" name="FirstHourRating" type="Volume">
1686
1703
  <xs:annotation>
1687
1704
  <xs:documentation>[gal per hour] An estimate of the maximum volume of hot water in gallons that a storage water heater can supply within an hour that begins
@@ -1747,9 +1764,9 @@
1747
1764
  <xs:attribute name="dataSource" type="DataSource"/>
1748
1765
  </xs:complexType>
1749
1766
  </xs:element>
1750
- <xs:element minOccurs="0" name="StandbyLoss" type="HPXMLDouble">
1767
+ <xs:element minOccurs="0" name="StandbyLoss" type="StandbyLossType">
1751
1768
  <xs:annotation>
1752
- <xs:documentation>[degF/hr] The standby heat loss rate for, e.g., indirect water heaters in degrees per hour. Published in the AHRI Consumer’s Directory of Certified Efficiency Ratings.</xs:documentation>
1769
+ <xs:documentation>The standby heat loss rate for, e.g., indirect or commercial water heaters. Published in the AHRI Consumer’s Directory of Certified Efficiency Ratings.</xs:documentation>
1753
1770
  </xs:annotation>
1754
1771
  </xs:element>
1755
1772
  <xs:element name="MeetsACCA5QIHVACSpecification" type="HPXMLBoolean" minOccurs="0"/>
@@ -1767,7 +1784,7 @@
1767
1784
  </xs:element>
1768
1785
  <xs:element minOccurs="0" name="HasSharedCombustionVentilation" type="HPXMLBoolean"/>
1769
1786
  <xs:element minOccurs="0" name="CombustionVentilationOrphaned" type="HPXMLBoolean"/>
1770
- <xs:element name="CombustionVentingSystem" minOccurs="0" type="LocalReference"> </xs:element>
1787
+ <xs:element name="CombustionVentingSystem" minOccurs="0" type="LocalReference"/>
1771
1788
  <xs:element minOccurs="0" name="AutomaticVentDamper" type="HPXMLBoolean"/>
1772
1789
  <xs:element minOccurs="0" name="PilotLight" type="HPXMLBoolean"/>
1773
1790
  <xs:element minOccurs="0" name="IntermittentIgnitionDevice" type="HPXMLBoolean"/>
@@ -1843,7 +1860,7 @@
1843
1860
  longitudinally from plans, assuming the hot water piping does not run diagonally. [ft]</xs:documentation>
1844
1861
  </xs:annotation>
1845
1862
  </xs:element>
1846
- <xs:element minOccurs="0" name="BranchPipingLoopLength" type="LengthMeasurement">
1863
+ <xs:element minOccurs="0" name="BranchPipingLength" type="LengthMeasurement">
1847
1864
  <xs:annotation>
1848
1865
  <xs:documentation>Length of the branch hot water piping from the recirculation loop to the farthest hot water fixture from the
1849
1866
  recirculation loop, measured longitudinally from plans, assuming the branch hot water piping does not run diagonally, plus 20
@@ -2038,8 +2055,8 @@
2038
2055
  <xs:element minOccurs="0" name="NumberofUnitsServed" type="HPXMLInteger"/>
2039
2056
  <xs:element minOccurs="0" name="Location" type="PVSystemLocation"/>
2040
2057
  <xs:element minOccurs="0" name="Ownership" type="PVSystemOwnership"/>
2041
- <xs:element minOccurs="0" name="ModuleType" type="PVModuleType"> </xs:element>
2042
- <xs:element maxOccurs="1" minOccurs="0" name="Tracking" type="PVTracking"> </xs:element>
2058
+ <xs:element minOccurs="0" name="ModuleType" type="PVModuleType"/>
2059
+ <xs:element maxOccurs="1" minOccurs="0" name="Tracking" type="PVTracking"/>
2043
2060
  <xs:element minOccurs="0" name="ArrayOrientation" type="OrientationType"/>
2044
2061
  <xs:element minOccurs="0" name="ArrayAzimuth" type="AzimuthType">
2045
2062
  <xs:annotation>
@@ -2104,6 +2121,12 @@
2104
2121
  <xs:element minOccurs="0" name="ModelNumber" type="Model"/>
2105
2122
  <xs:element minOccurs="0" name="SerialNumber" type="HPXMLString"/>
2106
2123
  <xs:element minOccurs="0" ref="ConnectedDevice"/>
2124
+ <xs:element minOccurs="0" name="YearInstalled" type="Year"/>
2125
+ <xs:element minOccurs="0" name="Count" type="IntegerGreaterThanZero">
2126
+ <xs:annotation>
2127
+ <xs:documentation>Number of similar batteries.</xs:documentation>
2128
+ </xs:annotation>
2129
+ </xs:element>
2107
2130
  <xs:element minOccurs="0" name="Location" type="BatteryLocation"/>
2108
2131
  <xs:element minOccurs="0" name="GridConnected" type="HPXMLBoolean">
2109
2132
  <xs:annotation>
@@ -2349,9 +2372,9 @@
2349
2372
  <xs:group ref="SystemInfo"/>
2350
2373
  <xs:element minOccurs="0" ref="ConnectedDevice"/>
2351
2374
  <xs:element minOccurs="0" name="AttachedToLightingGroup" type="LocalReference"/>
2352
- <xs:element name="LightingControlType" type="LightingControls" minOccurs="0"> </xs:element>
2375
+ <xs:element name="LightingControlType" type="LightingControls" minOccurs="0"/>
2353
2376
  <xs:element name="NumberofLightingControls" type="IntegerGreaterThanOrEqualToZero" minOccurs="0"/>
2354
- <xs:element name="Location" type="LightingLocation" minOccurs="0"> </xs:element>
2377
+ <xs:element name="Location" type="LightingLocation" minOccurs="0"/>
2355
2378
  <xs:element ref="extension" minOccurs="0"/>
2356
2379
  </xs:sequence>
2357
2380
  <xs:attribute name="dataSource" type="DataSource"/>
@@ -2368,13 +2391,13 @@
2368
2391
  </xs:annotation>
2369
2392
  <xs:complexType>
2370
2393
  <xs:sequence>
2371
- <xs:element minOccurs="0" name="FanSpeed" type="FanSpeed"> </xs:element>
2394
+ <xs:element minOccurs="0" name="FanSpeed" type="FanSpeed"/>
2372
2395
  <xs:element minOccurs="0" name="Airflow" type="HPXMLDouble">
2373
2396
  <xs:annotation>
2374
2397
  <xs:documentation>[CFM]</xs:documentation>
2375
2398
  </xs:annotation>
2376
2399
  </xs:element>
2377
- <xs:element minOccurs="0" name="Efficiency" type="HPXMLDouble">
2400
+ <xs:element minOccurs="0" name="Efficiency" type="Efficiency">
2378
2401
  <xs:annotation>
2379
2402
  <xs:documentation>[CFM/watt] The efficiency rating of a ceiling fan as determined by the test procedure defined by the Environmental Protection Agency's
2380
2403
  ENERGY STAR Testing Facility Guidance Manual: Building a Testing Facility and Performing the Solid State Test Method for ENERGY STAR Qualified Ceiling
@@ -2447,7 +2470,7 @@
2447
2470
  <xs:element name="Sodium">
2448
2471
  <xs:complexType>
2449
2472
  <xs:sequence>
2450
- <xs:element minOccurs="0" name="Pressure" type="SodiumLight_Pressure"> </xs:element>
2473
+ <xs:element minOccurs="0" name="Pressure" type="SodiumLight_Pressure"/>
2451
2474
  <xs:element minOccurs="0" ref="extension"/>
2452
2475
  </xs:sequence>
2453
2476
  <xs:attribute name="dataSource" type="DataSource"/>
@@ -2982,7 +3005,7 @@
2982
3005
  <xs:element name="MoistureControl" minOccurs="0">
2983
3006
  <xs:complexType>
2984
3007
  <xs:sequence>
2985
- <xs:element maxOccurs="unbounded" name="MoistureControlInfo" type="MoistureControlInfoType"> </xs:element>
3008
+ <xs:element maxOccurs="unbounded" name="MoistureControlInfo" type="MoistureControlInfoType"/>
2986
3009
  <xs:element minOccurs="0" name="MoistureControlImprovement" type="MoistureControlImprovementInfo"/>
2987
3010
  <xs:element minOccurs="0" ref="extension"/>
2988
3011
  </xs:sequence>
@@ -3630,7 +3653,7 @@
3630
3653
  <xs:documentation>[Btuh] Output Heating Capacity</xs:documentation>
3631
3654
  </xs:annotation>
3632
3655
  </xs:element>
3633
- <xs:element minOccurs="0" name="AnnualHeatingEfficiency" type="HeatingEfficiencyType" maxOccurs="unbounded"> </xs:element>
3656
+ <xs:element minOccurs="0" name="AnnualHeatingEfficiency" type="HeatingEfficiencyType" maxOccurs="unbounded"/>
3634
3657
  <xs:element name="FractionHeatLoadServed" type="Fraction" minOccurs="0"/>
3635
3658
  <xs:element minOccurs="0" name="FloorAreaServed" type="SurfaceArea">
3636
3659
  <xs:annotation>
@@ -3666,7 +3689,7 @@
3666
3689
  <xs:attribute name="dataSource" type="DataSource"/>
3667
3690
  </xs:complexType>
3668
3691
  </xs:element>
3669
- <xs:element name="WallFurnace" type="WallAndFloorFurnace"> </xs:element>
3692
+ <xs:element name="WallFurnace" type="WallAndFloorFurnace"/>
3670
3693
  <xs:element name="FloorFurnace" type="WallAndFloorFurnace"/>
3671
3694
  <xs:element name="Boiler">
3672
3695
  <xs:complexType>
@@ -3748,14 +3771,6 @@
3748
3771
  <xs:attribute name="dataSource" type="DataSource"/>
3749
3772
  </xs:complexType>
3750
3773
  </xs:element>
3751
- <xs:element name="PackagedTerminalAirConditionerHeating">
3752
- <xs:complexType>
3753
- <xs:sequence>
3754
- <xs:element minOccurs="0" ref="extension"/>
3755
- </xs:sequence>
3756
- <xs:attribute name="dataSource" type="DataSource"/>
3757
- </xs:complexType>
3758
- </xs:element>
3759
3774
  <xs:element name="SolarThermal">
3760
3775
  <xs:complexType>
3761
3776
  <xs:sequence>
@@ -3808,6 +3823,11 @@
3808
3823
  </xs:annotation>
3809
3824
  </xs:element>
3810
3825
  <xs:element minOccurs="0" name="CompressorType" type="CompressorType"/>
3826
+ <xs:element minOccurs="0" name="CompressorLockoutTemperature" type="Temperature">
3827
+ <xs:annotation>
3828
+ <xs:documentation>[deg F] Temperature below which the compressor is disabled, often to prevent damage or occupant comfort issues. The default is the manufacturer's minimum operating temperature, but the value may be set higher. For a duel-fuel heat pump, use the BackupHeatingSwitchoverTemperature element.</xs:documentation>
3829
+ </xs:annotation>
3830
+ </xs:element>
3811
3831
  <xs:element minOccurs="0" name="CoolingSensibleHeatFraction" type="Fraction"/>
3812
3832
  <xs:element name="GeothermalLoop" type="GeothermalLoop" minOccurs="0"/>
3813
3833
  <xs:element minOccurs="0" name="BackupType" type="HeatPumpBackupType">
@@ -3822,7 +3842,7 @@
3822
3842
  </xs:annotation>
3823
3843
  </xs:element>
3824
3844
  <xs:element name="BackupSystemFuel" type="FuelType" minOccurs="0"/>
3825
- <xs:element name="BackupAnnualHeatingEfficiency" minOccurs="0" type="HeatingEfficiencyType" maxOccurs="unbounded"> </xs:element>
3845
+ <xs:element name="BackupAnnualHeatingEfficiency" minOccurs="0" type="HeatingEfficiencyType" maxOccurs="unbounded"/>
3826
3846
  <xs:element minOccurs="0" name="BackupHeatingInputRating" type="Capacity">
3827
3847
  <xs:annotation>
3828
3848
  <xs:documentation>[Btuh] Input heating capacity</xs:documentation>
@@ -3835,12 +3855,12 @@
3835
3855
  </xs:element>
3836
3856
  <xs:element minOccurs="0" name="BackupHeatingSwitchoverTemperature" type="Temperature">
3837
3857
  <xs:annotation>
3838
- <xs:documentation>[deg F] Temperature at which the backup heating is activated.</xs:documentation>
3858
+ <xs:documentation>[deg F] Temperature at which the backup heating is activated and the compressor is disabled in, e.g., a dual-fuel heat pump.</xs:documentation>
3839
3859
  </xs:annotation>
3840
3860
  </xs:element>
3841
3861
  <xs:element minOccurs="0" name="BackupHeatingLockoutTemperature" type="Temperature">
3842
3862
  <xs:annotation>
3843
- <xs:documentation>[deg F] Temperature at which the backup heating is disabled, often to prevent backup heating usage during recovery from a thermostat heating setback.</xs:documentation>
3863
+ <xs:documentation>[deg F] Temperature above which the backup heating is disabled, often to prevent backup heating usage during recovery from a thermostat heating setback. For a duel-fuel heat pump, use the BackupHeatingSwitchoverTemperature element.</xs:documentation>
3844
3864
  </xs:annotation>
3845
3865
  </xs:element>
3846
3866
  <xs:element name="FractionHeatLoadServed" type="Fraction" minOccurs="0"/>
@@ -3851,7 +3871,7 @@
3851
3871
  </xs:annotation>
3852
3872
  </xs:element>
3853
3873
  <xs:element name="AnnualCoolingEfficiency" type="CoolingEfficiencyType" minOccurs="0" maxOccurs="unbounded"/>
3854
- <xs:element name="AnnualHeatingEfficiency" minOccurs="0" type="HeatingEfficiencyType" maxOccurs="unbounded"> </xs:element>
3874
+ <xs:element name="AnnualHeatingEfficiency" minOccurs="0" type="HeatingEfficiencyType" maxOccurs="unbounded"/>
3855
3875
  <xs:element minOccurs="0" ref="extension"/>
3856
3876
  </xs:sequence>
3857
3877
  </xs:extension>
@@ -3877,6 +3897,15 @@
3877
3897
  </xs:element>
3878
3898
  <xs:element name="AnnualCoolingEfficiency" type="CoolingEfficiencyType" minOccurs="0" maxOccurs="unbounded"/>
3879
3899
  <xs:element minOccurs="0" name="SensibleHeatFraction" type="Fraction"/>
3900
+ <xs:element name="RoomCoolingType" type="RoomCoolingType" minOccurs="0"/>
3901
+ <xs:element minOccurs="0" name="IntegratedHeatingSystemFuel" type="FuelType"/>
3902
+ <xs:element minOccurs="0" name="IntegratedHeatingSystemCapacity" type="Capacity">
3903
+ <xs:annotation>
3904
+ <xs:documentation>[Btuh]</xs:documentation>
3905
+ </xs:annotation>
3906
+ </xs:element>
3907
+ <xs:element name="IntegratedHeatingSystemAnnualEfficiency" type="HeatingEfficiencyType" minOccurs="0" maxOccurs="unbounded"/>
3908
+ <xs:element name="IntegratedHeatingSystemFractionHeatLoadServed" type="Fraction" minOccurs="0"/>
3880
3909
  <xs:element ref="extension" minOccurs="0"/>
3881
3910
  </xs:sequence>
3882
3911
  </xs:extension>
@@ -3911,6 +3940,17 @@
3911
3940
  </xs:sequence>
3912
3941
  <xs:attribute name="dataSource" type="DataSource"/>
3913
3942
  </xs:complexType>
3943
+ <xs:complexType name="StandbyLossType">
3944
+ <xs:sequence>
3945
+ <xs:element name="Units" type="StandbyLossUnits">
3946
+ <xs:annotation>
3947
+ <xs:documentation>For %/hr enter values as a fraction, i.e. 1.20%/hr = 0.0120 and 0.68%/hr = 0.0068.</xs:documentation>
3948
+ </xs:annotation>
3949
+ </xs:element>
3950
+ <xs:element name="Value" type="HPXMLDouble"/>
3951
+ </xs:sequence>
3952
+ <xs:attribute name="dataSource" type="DataSource"/>
3953
+ </xs:complexType>
3914
3954
  <xs:complexType name="HydronicDistributionInfo">
3915
3955
  <xs:sequence>
3916
3956
  <xs:element name="FractionHydronicPipeInsulated" type="Fraction" minOccurs="0"/>
@@ -3964,6 +4004,7 @@
3964
4004
  <xs:element maxOccurs="unbounded" minOccurs="0" name="Ducts">
3965
4005
  <xs:complexType>
3966
4006
  <xs:sequence>
4007
+ <xs:group ref="SystemInfo"/>
3967
4008
  <xs:element name="DuctType" type="DuctType" minOccurs="0"/>
3968
4009
  <xs:element name="DuctMaterial" type="DuctMaterial" minOccurs="0"/>
3969
4010
  <xs:element minOccurs="0" name="DuctInsulationMaterial" type="InsulationMaterial"/>
@@ -4017,7 +4058,7 @@
4017
4058
  <xs:attribute name="dataSource" type="DataSource"/>
4018
4059
  </xs:complexType>
4019
4060
  </xs:element>
4020
- <xs:element name="Associations" type="AssociationsType"> </xs:element>
4061
+ <xs:element name="Associations" type="AssociationsType"/>
4021
4062
  <xs:element name="SystemIdentifiersInfo" type="SystemIdentifiersInfoType">
4022
4063
  <xs:annotation>
4023
4064
  <xs:documentation>System identifiers contain type codes and an identifier for both a sending and a receiving system. These fields are needed to be able to transmit data between two
@@ -4158,7 +4199,16 @@
4158
4199
  <xs:documentation>[ft] height of building</xs:documentation>
4159
4200
  </xs:annotation>
4160
4201
  </xs:element>
4161
- <xs:element minOccurs="0" name="NumberofUnits" type="IntegerGreaterThanZero"/>
4202
+ <xs:element minOccurs="0" name="NumberofUnits" type="IntegerGreaterThanZero">
4203
+ <xs:annotation>
4204
+ <xs:documentation>Number of dwelling units represented by the HPXML Building element. Used as a multiplier.</xs:documentation>
4205
+ </xs:annotation>
4206
+ </xs:element>
4207
+ <xs:element minOccurs="0" name="NumberofUnitsInBuilding" type="IntegerGreaterThanZero">
4208
+ <xs:annotation>
4209
+ <xs:documentation>Total number of dwelling units in the physical building.</xs:documentation>
4210
+ </xs:annotation>
4211
+ </xs:element>
4162
4212
  <xs:element minOccurs="0" name="NumberofFloors" type="NumberOfFloorsType">
4163
4213
  <xs:annotation>
4164
4214
  <xs:documentation>Total number of floors including a basement, whether conditioned or unconditioned</xs:documentation>
@@ -4171,7 +4221,7 @@
4171
4221
  </xs:element>
4172
4222
  <xs:element minOccurs="0" name="NumberofConditionedFloorsAboveGrade" type="NumberOfFloorsType">
4173
4223
  <xs:annotation>
4174
- <xs:documentation>Number of floors above grade that are heated/cooled including a walkout basement</xs:documentation>
4224
+ <xs:documentation>Number of floors above grade that are heated/cooled</xs:documentation>
4175
4225
  </xs:annotation>
4176
4226
  </xs:element>
4177
4227
  <xs:element name="AverageCeilingHeight" type="LengthMeasurement" minOccurs="0">
@@ -4752,7 +4802,7 @@
4752
4802
  </xs:element>
4753
4803
  <xs:element minOccurs="0" name="DetailedModelCalibrationHeatingAbsoluteError" type="HPXMLDouble">
4754
4804
  <xs:annotation>
4755
- <xs:documentation>Eqn. 3.2.3.A.ii of BPI-2400. In either kWh for electricity or MMBTU for all other fuels.</xs:documentation>
4805
+ <xs:documentation>Eqn. 3.2.3.A.ii of BPI-2400. In either kWh for electricity or MBtu (million Btu) for all other fuels.</xs:documentation>
4756
4806
  </xs:annotation>
4757
4807
  </xs:element>
4758
4808
  <xs:element minOccurs="0" name="DetailedModelCalibrationCoolingBiasError" type="HPXMLDouble">
@@ -4762,7 +4812,7 @@
4762
4812
  </xs:element>
4763
4813
  <xs:element minOccurs="0" name="DetailedModelCalibrationCoolingAbsoluteError" type="HPXMLDouble">
4764
4814
  <xs:annotation>
4765
- <xs:documentation>In either kWh for electricity or MMBTU for all other fuels.</xs:documentation>
4815
+ <xs:documentation>In either kWh for electricity or MBtu (million Btu) for all other fuels.</xs:documentation>
4766
4816
  </xs:annotation>
4767
4817
  </xs:element>
4768
4818
  <xs:element minOccurs="0" name="DetailedModelCalibrationBaseloadBiasError" type="HPXMLDouble">
@@ -4772,7 +4822,7 @@
4772
4822
  </xs:element>
4773
4823
  <xs:element minOccurs="0" name="DetailedModelCalibrationBaseloadAbsoluteError" type="HPXMLDouble">
4774
4824
  <xs:annotation>
4775
- <xs:documentation>In either kWh for electricity or MMBTU for all other fuels.</xs:documentation>
4825
+ <xs:documentation>In either kWh for electricity or MBtu (million Btu) for all other fuels.</xs:documentation>
4776
4826
  </xs:annotation>
4777
4827
  </xs:element>
4778
4828
  <xs:element minOccurs="0" name="SimplifiedModelCalibrationHeatingBiasError" nillable="true" type="HPXMLDouble">
@@ -4989,7 +5039,7 @@
4989
5039
  </xs:annotation>
4990
5040
  </xs:element>
4991
5041
  <xs:element minOccurs="0" name="Orientation" type="OrientationType"/>
4992
- <xs:element name="FrameType" minOccurs="0" type="WindowFrameType"> </xs:element>
5042
+ <xs:element name="FrameType" minOccurs="0" type="WindowFrameType"/>
4993
5043
  <xs:element minOccurs="0" name="GlassLayers" type="GlassLayers"/>
4994
5044
  <xs:element minOccurs="0" name="GlassType" type="GlassType"/>
4995
5045
  <xs:element minOccurs="0" name="GasFill" type="GasFill"/>
@@ -5102,17 +5152,17 @@
5102
5152
  <xs:sequence>
5103
5153
  <xs:element name="Depth" type="LengthMeasurement">
5104
5154
  <xs:annotation>
5105
- <xs:documentation>[in] Depth of overhang</xs:documentation>
5155
+ <xs:documentation>[ft] Depth of overhang</xs:documentation>
5106
5156
  </xs:annotation>
5107
5157
  </xs:element>
5108
5158
  <xs:element minOccurs="0" name="DistanceToTopOfWindow" type="LengthMeasurement">
5109
5159
  <xs:annotation>
5110
- <xs:documentation>[in] Vertical distance from overhang to top of window</xs:documentation>
5160
+ <xs:documentation>[ft] Vertical distance from overhang to top of window</xs:documentation>
5111
5161
  </xs:annotation>
5112
5162
  </xs:element>
5113
5163
  <xs:element minOccurs="0" name="DistanceToBottomOfWindow" type="LengthMeasurement">
5114
5164
  <xs:annotation>
5115
- <xs:documentation>[in] Vertical distance from overhang to bottom of window</xs:documentation>
5165
+ <xs:documentation>[ft] Vertical distance from overhang to bottom of window</xs:documentation>
5116
5166
  </xs:annotation>
5117
5167
  </xs:element>
5118
5168
  </xs:sequence>
@@ -5432,9 +5482,6 @@
5432
5482
  </xs:complexType>
5433
5483
  </xs:element>
5434
5484
  <xs:element name="ConcreteMasonryUnit">
5435
- <xs:annotation>
5436
- <xs:documentation>Concrete Masonry Unit</xs:documentation>
5437
- </xs:annotation>
5438
5485
  <xs:complexType>
5439
5486
  <xs:sequence>
5440
5487
  <xs:element minOccurs="0" ref="extension"/>
@@ -5442,10 +5489,7 @@
5442
5489
  <xs:attribute name="dataSource" type="DataSource"/>
5443
5490
  </xs:complexType>
5444
5491
  </xs:element>
5445
- <xs:element name="StructurallyInsulatedPanel">
5446
- <xs:annotation>
5447
- <xs:documentation>Structurally Insulated Panel</xs:documentation>
5448
- </xs:annotation>
5492
+ <xs:element name="StructuralInsulatedPanel">
5449
5493
  <xs:complexType>
5450
5494
  <xs:sequence>
5451
5495
  <xs:element minOccurs="0" ref="extension"/>
@@ -5454,9 +5498,6 @@
5454
5498
  </xs:complexType>
5455
5499
  </xs:element>
5456
5500
  <xs:element name="InsulatedConcreteForms">
5457
- <xs:annotation>
5458
- <xs:documentation>Insulated Concrete Forms</xs:documentation>
5459
- </xs:annotation>
5460
5501
  <xs:complexType>
5461
5502
  <xs:sequence>
5462
5503
  <xs:element minOccurs="0" ref="extension"/>
@@ -5531,6 +5572,51 @@
5531
5572
  </xs:choice>
5532
5573
  <xs:attribute name="dataSource" type="DataSource"/>
5533
5574
  </xs:complexType>
5575
+ <xs:complexType name="FloorType">
5576
+ <xs:choice>
5577
+ <xs:element name="WoodFrame">
5578
+ <xs:complexType>
5579
+ <xs:sequence>
5580
+ <xs:element minOccurs="0" ref="extension"/>
5581
+ </xs:sequence>
5582
+ <xs:attribute name="dataSource" type="DataSource"/>
5583
+ </xs:complexType>
5584
+ </xs:element>
5585
+ <xs:element name="StructuralInsulatedPanel">
5586
+ <xs:complexType>
5587
+ <xs:sequence>
5588
+ <xs:element minOccurs="0" ref="extension"/>
5589
+ </xs:sequence>
5590
+ <xs:attribute name="dataSource" type="DataSource"/>
5591
+ </xs:complexType>
5592
+ </xs:element>
5593
+ <xs:element name="SteelFrame">
5594
+ <xs:complexType>
5595
+ <xs:sequence>
5596
+ <xs:element minOccurs="0" ref="extension"/>
5597
+ </xs:sequence>
5598
+ <xs:attribute name="dataSource" type="DataSource"/>
5599
+ </xs:complexType>
5600
+ </xs:element>
5601
+ <xs:element name="SolidConcrete">
5602
+ <xs:complexType>
5603
+ <xs:sequence>
5604
+ <xs:element minOccurs="0" ref="extension"/>
5605
+ </xs:sequence>
5606
+ <xs:attribute name="dataSource" type="DataSource"/>
5607
+ </xs:complexType>
5608
+ </xs:element>
5609
+ <xs:element name="Other">
5610
+ <xs:complexType>
5611
+ <xs:sequence>
5612
+ <xs:element minOccurs="0" ref="extension"/>
5613
+ </xs:sequence>
5614
+ <xs:attribute name="dataSource" type="DataSource"/>
5615
+ </xs:complexType>
5616
+ </xs:element>
5617
+ </xs:choice>
5618
+ <xs:attribute name="dataSource" type="DataSource"/>
5619
+ </xs:complexType>
5534
5620
  <xs:complexType name="HVACControlType">
5535
5621
  <xs:sequence>
5536
5622
  <xs:group ref="SystemInfo"/>
@@ -5716,6 +5802,7 @@
5716
5802
  <xs:element name="SiteID" type="SystemIdentifiersInfoType"/>
5717
5803
  <xs:element maxOccurs="unbounded" minOccurs="0" ref="ExternalResource"/>
5718
5804
  <xs:element name="Address" type="AddressInformation" minOccurs="0"/>
5805
+ <xs:element minOccurs="0" name="GeoLocation" type="GeoLocationInformation"/>
5719
5806
  <xs:element minOccurs="0" name="SchoolDistrict" type="HPXMLString"/>
5720
5807
  <xs:element minOccurs="0" name="eGridRegion" type="eGridRegions">
5721
5808
  <xs:annotation>
@@ -5740,19 +5827,21 @@
5740
5827
  <xs:sequence>
5741
5828
  <xs:element minOccurs="0" name="Name" type="HPXMLString">
5742
5829
  <xs:annotation>
5743
- <xs:documentation>For example, Eastern Time.</xs:documentation>
5830
+ <xs:documentation>For example, US/Eastern for U.S. Eastern Time. See https://en.wikipedia.org/wiki/List_of_tz_database_time_zones.</xs:documentation>
5744
5831
  </xs:annotation>
5745
5832
  </xs:element>
5746
5833
  <xs:element minOccurs="0" name="Abbreviation" type="HPXMLString">
5747
5834
  <xs:annotation>
5748
- <xs:documentation>For example, ET for Eastern Time.</xs:documentation>
5835
+ <xs:documentation>For example, ET for US Eastern Time.</xs:documentation>
5749
5836
  </xs:annotation>
5750
5837
  </xs:element>
5751
- <xs:element minOccurs="0" name="UTCOffset" type="HPXMLDouble">
5838
+ <xs:element minOccurs="0" name="UTCOffset" type="UTCOffset">
5752
5839
  <xs:annotation>
5753
- <xs:documentation>Positive or negative offset from Coordinated Universal Time (UTC). For example, -5 for Eastern Time.</xs:documentation>
5840
+ <xs:documentation>Positive or negative offset from Coordinated Universal Time (UTC) using Standard Time. For example, -5 for Eastern Time.</xs:documentation>
5754
5841
  </xs:annotation>
5755
5842
  </xs:element>
5843
+ <xs:element minOccurs="0" name="DSTObserved" type="HPXMLBoolean"/>
5844
+ <xs:element minOccurs="0" ref="extension"/>
5756
5845
  </xs:sequence>
5757
5846
  </xs:complexType>
5758
5847
  </xs:element>
@@ -5834,7 +5923,7 @@
5834
5923
  <xs:complexType>
5835
5924
  <xs:sequence>
5836
5925
  <xs:element name="Person" type="IndividualInfo"/>
5837
- <xs:element name="Address" type="AddressInformation"> </xs:element>
5926
+ <xs:element name="Address" type="AddressInformation"/>
5838
5927
  <xs:element minOccurs="0" ref="extension"/>
5839
5928
  </xs:sequence>
5840
5929
  <xs:attribute name="dataSource" type="DataSource"/>
@@ -6013,7 +6102,7 @@
6013
6102
  <xs:complexType>
6014
6103
  <xs:sequence>
6015
6104
  <xs:element name="URL" type="xs:anyURI"/>
6016
- <xs:element name="Type" type="ExternalResourceType"> </xs:element>
6105
+ <xs:element name="Type" type="ExternalResourceType"/>
6017
6106
  <xs:element name="Description" type="HPXMLString"/>
6018
6107
  <xs:element minOccurs="0" ref="extension"/>
6019
6108
  </xs:sequence>