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
@@ -1,510 +1,519 @@
1
- <?xml version='1.0' encoding='UTF-8'?>
2
- <HPXML xmlns='http://hpxmlonline.com/2019/10' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://hpxmlonline.com/2019/10' schemaVersion='4.0'>
3
- <XMLTransactionHeaderInformation>
4
- <XMLType>HPXML</XMLType>
5
- <XMLGeneratedBy>tasks.rb</XMLGeneratedBy>
6
- <CreatedDateAndTime>2000-01-01T00:00:00-07:00</CreatedDateAndTime>
7
- <Transaction>create</Transaction>
8
- </XMLTransactionHeaderInformation>
9
- <SoftwareInfo>
10
- <extension>
11
- <SimulationControl>
12
- <Timestep>60</Timestep>
13
- </SimulationControl>
14
- <AdditionalProperties>
15
- <ParentHPXMLFile>base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml</ParentHPXMLFile>
16
- </AdditionalProperties>
17
- </extension>
18
- </SoftwareInfo>
19
- <Building>
20
- <BuildingID id='MyBuilding'/>
21
- <Site>
22
- <SiteID id='SiteID'/>
23
- <Address>
24
- <StateCode>CO</StateCode>
25
- </Address>
26
- </Site>
27
- <ProjectStatus>
28
- <EventType>proposed workscope</EventType>
29
- </ProjectStatus>
30
- <BuildingDetails>
31
- <BuildingSummary>
32
- <Site>
33
- <SiteType>suburban</SiteType>
34
- <Surroundings>attached on one side</Surroundings>
35
- <VerticalSurroundings>unit above and below</VerticalSurroundings>
36
- <AzimuthOfFrontOfHome>180</AzimuthOfFrontOfHome>
37
- <FuelTypesAvailable>
38
- <Fuel>electricity</Fuel>
39
- <Fuel>natural gas</Fuel>
40
- </FuelTypesAvailable>
41
- </Site>
42
- <BuildingOccupancy>
43
- <NumberofResidents>3.0</NumberofResidents>
44
- </BuildingOccupancy>
45
- <BuildingConstruction>
46
- <ResidentialFacilityType>apartment unit</ResidentialFacilityType>
47
- <NumberofConditionedFloors>1.0</NumberofConditionedFloors>
48
- <NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
49
- <AverageCeilingHeight>8.0</AverageCeilingHeight>
50
- <NumberofBedrooms>3</NumberofBedrooms>
51
- <NumberofBathrooms>2</NumberofBathrooms>
52
- <ConditionedFloorArea>900.0</ConditionedFloorArea>
53
- <ConditionedBuildingVolume>7200.0</ConditionedBuildingVolume>
54
- </BuildingConstruction>
55
- </BuildingSummary>
56
- <ClimateandRiskZones>
57
- <ClimateZoneIECC>
58
- <Year>2006</Year>
59
- <ClimateZone>5B</ClimateZone>
60
- </ClimateZoneIECC>
61
- <WeatherStation>
62
- <SystemIdentifier id='WeatherStation'/>
63
- <Name>USA_CO_Denver.Intl.AP.725650_TMY3</Name>
64
- <extension>
65
- <EPWFilePath>USA_CO_Denver.Intl.AP.725650_TMY3.epw</EPWFilePath>
66
- </extension>
67
- </WeatherStation>
68
- </ClimateandRiskZones>
69
- <Enclosure>
70
- <AirInfiltration>
71
- <AirInfiltrationMeasurement>
72
- <SystemIdentifier id='AirInfiltrationMeasurement1'/>
73
- <HousePressure>50.0</HousePressure>
74
- <BuildingAirLeakage>
75
- <UnitofMeasure>ACH</UnitofMeasure>
76
- <AirLeakage>3.0</AirLeakage>
77
- </BuildingAirLeakage>
78
- <InfiltrationVolume>7200.0</InfiltrationVolume>
79
- </AirInfiltrationMeasurement>
80
- </AirInfiltration>
81
- <Attics>
82
- <Attic>
83
- <SystemIdentifier id='Attic1'/>
84
- <AtticType>
85
- <BelowApartment/>
86
- </AtticType>
87
- </Attic>
88
- </Attics>
89
- <Foundations>
90
- <Foundation>
91
- <SystemIdentifier id='Foundation1'/>
92
- <FoundationType>
93
- <AboveApartment/>
94
- </FoundationType>
95
- </Foundation>
96
- </Foundations>
97
- <Walls>
98
- <Wall>
99
- <SystemIdentifier id='Wall1'/>
100
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
101
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
102
- <WallType>
103
- <WoodStud/>
104
- </WallType>
105
- <Area>685.9</Area>
106
- <Siding>wood siding</Siding>
107
- <SolarAbsorptance>0.7</SolarAbsorptance>
108
- <Emittance>0.92</Emittance>
109
- <InteriorFinish>
110
- <Type>gypsum board</Type>
111
- </InteriorFinish>
112
- <Insulation>
113
- <SystemIdentifier id='Wall1Insulation'/>
114
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
115
- </Insulation>
116
- </Wall>
117
- <Wall>
118
- <SystemIdentifier id='Wall2'/>
119
- <ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
120
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
121
- <WallType>
122
- <WoodStud/>
123
- </WallType>
124
- <Area>293.9</Area>
125
- <SolarAbsorptance>0.7</SolarAbsorptance>
126
- <Emittance>0.92</Emittance>
127
- <InteriorFinish>
128
- <Type>gypsum board</Type>
129
- </InteriorFinish>
130
- <Insulation>
131
- <SystemIdentifier id='Wall2Insulation'/>
132
- <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
133
- </Insulation>
134
- </Wall>
135
- </Walls>
136
- <FrameFloors>
137
- <FrameFloor>
138
- <SystemIdentifier id='FrameFloor1'/>
139
- <ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
140
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
141
- <Area>900.0</Area>
142
- <Insulation>
143
- <SystemIdentifier id='FrameFloor1Insulation'/>
144
- <AssemblyEffectiveRValue>2.1</AssemblyEffectiveRValue>
145
- </Insulation>
146
- <extension>
147
- <OtherSpaceAboveOrBelow>below</OtherSpaceAboveOrBelow>
148
- </extension>
149
- </FrameFloor>
150
- <FrameFloor>
151
- <SystemIdentifier id='FrameFloor2'/>
152
- <ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
153
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
154
- <Area>900.0</Area>
155
- <InteriorFinish>
156
- <Type>gypsum board</Type>
157
- </InteriorFinish>
158
- <Insulation>
159
- <SystemIdentifier id='FrameFloor2Insulation'/>
160
- <AssemblyEffectiveRValue>2.1</AssemblyEffectiveRValue>
161
- </Insulation>
162
- <extension>
163
- <OtherSpaceAboveOrBelow>above</OtherSpaceAboveOrBelow>
164
- </extension>
165
- </FrameFloor>
166
- </FrameFloors>
167
- <Windows>
168
- <Window>
169
- <SystemIdentifier id='Window1'/>
170
- <Area>35.3</Area>
171
- <Azimuth>0</Azimuth>
172
- <UFactor>0.33</UFactor>
173
- <SHGC>0.45</SHGC>
174
- <InteriorShading>
175
- <SystemIdentifier id='Window1InteriorShading'/>
176
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
177
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
178
- </InteriorShading>
179
- <FractionOperable>0.67</FractionOperable>
180
- <AttachedToWall idref='Wall1'/>
181
- </Window>
182
- <Window>
183
- <SystemIdentifier id='Window2'/>
184
- <Area>35.3</Area>
185
- <Azimuth>180</Azimuth>
186
- <UFactor>0.33</UFactor>
187
- <SHGC>0.45</SHGC>
188
- <InteriorShading>
189
- <SystemIdentifier id='Window2InteriorShading'/>
190
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
191
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
192
- </InteriorShading>
193
- <FractionOperable>0.67</FractionOperable>
194
- <AttachedToWall idref='Wall1'/>
195
- </Window>
196
- <Window>
197
- <SystemIdentifier id='Window3'/>
198
- <Area>52.9</Area>
199
- <Azimuth>270</Azimuth>
200
- <UFactor>0.33</UFactor>
201
- <SHGC>0.45</SHGC>
202
- <InteriorShading>
203
- <SystemIdentifier id='Window3InteriorShading'/>
204
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
205
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
206
- </InteriorShading>
207
- <FractionOperable>0.67</FractionOperable>
208
- <AttachedToWall idref='Wall1'/>
209
- </Window>
210
- </Windows>
211
- <Doors>
212
- <Door>
213
- <SystemIdentifier id='Door1'/>
214
- <AttachedToWall idref='Wall1'/>
215
- <Area>20.0</Area>
216
- <Azimuth>180</Azimuth>
217
- <RValue>4.4</RValue>
218
- </Door>
219
- </Doors>
220
- </Enclosure>
221
- <Systems>
222
- <HVAC>
223
- <HVACPlant>
224
- <PrimarySystems>
225
- <PrimaryHeatingSystem idref='HeatingSystem1'/>
226
- <PrimaryCoolingSystem idref='CoolingSystem1'/>
227
- </PrimarySystems>
228
- <HeatingSystem>
229
- <SystemIdentifier id='HeatingSystem1'/>
230
- <DistributionSystem idref='HVACDistribution1'/>
231
- <IsSharedSystem>true</IsSharedSystem>
232
- <NumberofUnitsServed>6</NumberofUnitsServed>
233
- <HeatingSystemType>
234
- <Boiler/>
235
- </HeatingSystemType>
236
- <HeatingSystemFuel>natural gas</HeatingSystemFuel>
237
- <AnnualHeatingEfficiency>
238
- <Units>AFUE</Units>
239
- <Value>0.92</Value>
240
- </AnnualHeatingEfficiency>
241
- <FractionHeatLoadServed>1.0</FractionHeatLoadServed>
242
- <extension>
243
- <SharedLoopWatts>600.0</SharedLoopWatts>
244
- </extension>
245
- </HeatingSystem>
246
- <CoolingSystem>
247
- <SystemIdentifier id='CoolingSystem1'/>
248
- <DistributionSystem idref='HVACDistribution1'/>
249
- <IsSharedSystem>true</IsSharedSystem>
250
- <NumberofUnitsServed>6</NumberofUnitsServed>
251
- <CoolingSystemType>chiller</CoolingSystemType>
252
- <CoolingSystemFuel>electricity</CoolingSystemFuel>
253
- <CoolingCapacity>144000.0</CoolingCapacity>
254
- <FractionCoolLoadServed>1.0</FractionCoolLoadServed>
255
- <AnnualCoolingEfficiency>
256
- <Units>kW/ton</Units>
257
- <Value>0.9</Value>
258
- </AnnualCoolingEfficiency>
259
- <extension>
260
- <SharedLoopWatts>600.0</SharedLoopWatts>
261
- </extension>
262
- </CoolingSystem>
263
- <HeatPump>
264
- <SystemIdentifier id='HeatPump1'/>
265
- <DistributionSystem idref='HVACDistribution2'/>
266
- <HeatPumpType>water-loop-to-air</HeatPumpType>
267
- <HeatPumpFuel>electricity</HeatPumpFuel>
268
- <HeatingCapacity>24000.0</HeatingCapacity>
269
- <CoolingCapacity>24000.0</CoolingCapacity>
270
- <AnnualCoolingEfficiency>
271
- <Units>EER</Units>
272
- <Value>12.8</Value>
273
- </AnnualCoolingEfficiency>
274
- <AnnualHeatingEfficiency>
275
- <Units>COP</Units>
276
- <Value>4.4</Value>
277
- </AnnualHeatingEfficiency>
278
- </HeatPump>
279
- </HVACPlant>
280
- <HVACControl>
281
- <SystemIdentifier id='HVACControl1'/>
282
- <SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
283
- <SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
284
- </HVACControl>
285
- <HVACDistribution>
286
- <SystemIdentifier id='HVACDistribution1'/>
287
- <DistributionSystemType>
288
- <HydronicDistribution>
289
- <HydronicDistributionType>water loop</HydronicDistributionType>
290
- </HydronicDistribution>
291
- </DistributionSystemType>
292
- </HVACDistribution>
293
- <HVACDistribution>
294
- <SystemIdentifier id='HVACDistribution2'/>
295
- <DistributionSystemType>
296
- <AirDistribution>
297
- <AirDistributionType>regular velocity</AirDistributionType>
298
- <DuctLeakageMeasurement>
299
- <DuctType>supply</DuctType>
300
- <DuctLeakage>
301
- <Units>CFM25</Units>
302
- <Value>15.0</Value>
303
- <TotalOrToOutside>to outside</TotalOrToOutside>
304
- </DuctLeakage>
305
- </DuctLeakageMeasurement>
306
- <DuctLeakageMeasurement>
307
- <DuctType>return</DuctType>
308
- <DuctLeakage>
309
- <Units>CFM25</Units>
310
- <Value>10.0</Value>
311
- <TotalOrToOutside>to outside</TotalOrToOutside>
312
- </DuctLeakage>
313
- </DuctLeakageMeasurement>
314
- <Ducts>
315
- <DuctType>supply</DuctType>
316
- <DuctInsulationRValue>0.0</DuctInsulationRValue>
317
- <DuctLocation>other multifamily buffer space</DuctLocation>
318
- <DuctSurfaceArea>50.0</DuctSurfaceArea>
319
- </Ducts>
320
- <Ducts>
321
- <DuctType>return</DuctType>
322
- <DuctInsulationRValue>0.0</DuctInsulationRValue>
323
- <DuctLocation>other multifamily buffer space</DuctLocation>
324
- <DuctSurfaceArea>20.0</DuctSurfaceArea>
325
- </Ducts>
326
- </AirDistribution>
327
- </DistributionSystemType>
328
- </HVACDistribution>
329
- </HVAC>
330
- <WaterHeating>
331
- <WaterHeatingSystem>
332
- <SystemIdentifier id='WaterHeatingSystem1'/>
333
- <FuelType>electricity</FuelType>
334
- <WaterHeaterType>storage water heater</WaterHeaterType>
335
- <Location>living space</Location>
336
- <TankVolume>40.0</TankVolume>
337
- <FractionDHWLoadServed>1.0</FractionDHWLoadServed>
338
- <HeatingCapacity>18767.0</HeatingCapacity>
339
- <EnergyFactor>0.95</EnergyFactor>
340
- <HotWaterTemperature>125.0</HotWaterTemperature>
341
- </WaterHeatingSystem>
342
- <HotWaterDistribution>
343
- <SystemIdentifier id='HotWaterDistribution1'/>
344
- <SystemType>
345
- <Standard>
346
- <PipingLength>50.0</PipingLength>
347
- </Standard>
348
- </SystemType>
349
- <PipeInsulation>
350
- <PipeRValue>0.0</PipeRValue>
351
- </PipeInsulation>
352
- </HotWaterDistribution>
353
- <WaterFixture>
354
- <SystemIdentifier id='WaterFixture1'/>
355
- <WaterFixtureType>shower head</WaterFixtureType>
356
- <LowFlow>true</LowFlow>
357
- </WaterFixture>
358
- <WaterFixture>
359
- <SystemIdentifier id='WaterFixture2'/>
360
- <WaterFixtureType>faucet</WaterFixtureType>
361
- <LowFlow>false</LowFlow>
362
- </WaterFixture>
363
- </WaterHeating>
364
- </Systems>
365
- <Appliances>
366
- <ClothesWasher>
367
- <SystemIdentifier id='ClothesWasher1'/>
368
- <Location>living space</Location>
369
- <IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
370
- <RatedAnnualkWh>380.0</RatedAnnualkWh>
371
- <LabelElectricRate>0.12</LabelElectricRate>
372
- <LabelGasRate>1.09</LabelGasRate>
373
- <LabelAnnualGasCost>27.0</LabelAnnualGasCost>
374
- <LabelUsage>6.0</LabelUsage>
375
- <Capacity>3.2</Capacity>
376
- </ClothesWasher>
377
- <ClothesDryer>
378
- <SystemIdentifier id='ClothesDryer1'/>
379
- <Location>living space</Location>
380
- <FuelType>electricity</FuelType>
381
- <CombinedEnergyFactor>3.73</CombinedEnergyFactor>
382
- <Vented>true</Vented>
383
- <VentedFlowRate>150.0</VentedFlowRate>
384
- </ClothesDryer>
385
- <Dishwasher>
386
- <SystemIdentifier id='Dishwasher1'/>
387
- <Location>living space</Location>
388
- <RatedAnnualkWh>307.0</RatedAnnualkWh>
389
- <PlaceSettingCapacity>12</PlaceSettingCapacity>
390
- <LabelElectricRate>0.12</LabelElectricRate>
391
- <LabelGasRate>1.09</LabelGasRate>
392
- <LabelAnnualGasCost>22.32</LabelAnnualGasCost>
393
- <LabelUsage>4.0</LabelUsage>
394
- </Dishwasher>
395
- <Refrigerator>
396
- <SystemIdentifier id='Refrigerator1'/>
397
- <Location>living space</Location>
398
- <RatedAnnualkWh>650.0</RatedAnnualkWh>
399
- <PrimaryIndicator>true</PrimaryIndicator>
400
- </Refrigerator>
401
- <CookingRange>
402
- <SystemIdentifier id='CookingRange1'/>
403
- <Location>living space</Location>
404
- <FuelType>electricity</FuelType>
405
- <IsInduction>false</IsInduction>
406
- </CookingRange>
407
- <Oven>
408
- <SystemIdentifier id='Oven1'/>
409
- <IsConvection>false</IsConvection>
410
- </Oven>
411
- </Appliances>
412
- <Lighting>
413
- <LightingGroup>
414
- <SystemIdentifier id='LightingGroup1'/>
415
- <Location>interior</Location>
416
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
417
- <LightingType>
418
- <CompactFluorescent/>
419
- </LightingType>
420
- </LightingGroup>
421
- <LightingGroup>
422
- <SystemIdentifier id='LightingGroup2'/>
423
- <Location>exterior</Location>
424
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
425
- <LightingType>
426
- <CompactFluorescent/>
427
- </LightingType>
428
- </LightingGroup>
429
- <LightingGroup>
430
- <SystemIdentifier id='LightingGroup3'/>
431
- <Location>garage</Location>
432
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
433
- <LightingType>
434
- <CompactFluorescent/>
435
- </LightingType>
436
- </LightingGroup>
437
- <LightingGroup>
438
- <SystemIdentifier id='LightingGroup4'/>
439
- <Location>interior</Location>
440
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
441
- <LightingType>
442
- <FluorescentTube/>
443
- </LightingType>
444
- </LightingGroup>
445
- <LightingGroup>
446
- <SystemIdentifier id='LightingGroup5'/>
447
- <Location>exterior</Location>
448
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
449
- <LightingType>
450
- <FluorescentTube/>
451
- </LightingType>
452
- </LightingGroup>
453
- <LightingGroup>
454
- <SystemIdentifier id='LightingGroup6'/>
455
- <Location>garage</Location>
456
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
457
- <LightingType>
458
- <FluorescentTube/>
459
- </LightingType>
460
- </LightingGroup>
461
- <LightingGroup>
462
- <SystemIdentifier id='LightingGroup7'/>
463
- <Location>interior</Location>
464
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
465
- <LightingType>
466
- <LightEmittingDiode/>
467
- </LightingType>
468
- </LightingGroup>
469
- <LightingGroup>
470
- <SystemIdentifier id='LightingGroup8'/>
471
- <Location>exterior</Location>
472
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
473
- <LightingType>
474
- <LightEmittingDiode/>
475
- </LightingType>
476
- </LightingGroup>
477
- <LightingGroup>
478
- <SystemIdentifier id='LightingGroup9'/>
479
- <Location>garage</Location>
480
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
481
- <LightingType>
482
- <LightEmittingDiode/>
483
- </LightingType>
484
- </LightingGroup>
485
- </Lighting>
486
- <MiscLoads>
487
- <PlugLoad>
488
- <SystemIdentifier id='PlugLoad1'/>
489
- <PlugLoadType>TV other</PlugLoadType>
490
- <Load>
491
- <Units>kWh/year</Units>
492
- <Value>620.0</Value>
493
- </Load>
494
- </PlugLoad>
495
- <PlugLoad>
496
- <SystemIdentifier id='PlugLoad2'/>
497
- <PlugLoadType>other</PlugLoadType>
498
- <Load>
499
- <Units>kWh/year</Units>
500
- <Value>819.0</Value>
501
- </Load>
502
- <extension>
503
- <FracSensible>0.855</FracSensible>
504
- <FracLatent>0.045</FracLatent>
505
- </extension>
506
- </PlugLoad>
507
- </MiscLoads>
508
- </BuildingDetails>
509
- </Building>
1
+ <?xml version='1.0' encoding='UTF-8'?>
2
+ <HPXML xmlns='http://hpxmlonline.com/2019/10' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xsi:schemaLocation='http://hpxmlonline.com/2019/10' schemaVersion='4.0'>
3
+ <XMLTransactionHeaderInformation>
4
+ <XMLType>HPXML</XMLType>
5
+ <XMLGeneratedBy>tasks.rb</XMLGeneratedBy>
6
+ <CreatedDateAndTime>2000-01-01T00:00:00-07:00</CreatedDateAndTime>
7
+ <Transaction>create</Transaction>
8
+ </XMLTransactionHeaderInformation>
9
+ <SoftwareInfo>
10
+ <extension>
11
+ <SimulationControl>
12
+ <Timestep>60</Timestep>
13
+ </SimulationControl>
14
+ <AdditionalProperties>
15
+ <ParentHPXMLFile>base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml</ParentHPXMLFile>
16
+ </AdditionalProperties>
17
+ <UtilityBillScenarios>
18
+ <UtilityBillScenario>
19
+ <Name>Bills</Name>
20
+ </UtilityBillScenario>
21
+ </UtilityBillScenarios>
22
+ </extension>
23
+ </SoftwareInfo>
24
+ <Building>
25
+ <BuildingID id='MyBuilding'/>
26
+ <Site>
27
+ <SiteID id='SiteID'/>
28
+ <Address>
29
+ <StateCode>CO</StateCode>
30
+ </Address>
31
+ </Site>
32
+ <ProjectStatus>
33
+ <EventType>proposed workscope</EventType>
34
+ </ProjectStatus>
35
+ <BuildingDetails>
36
+ <BuildingSummary>
37
+ <Site>
38
+ <SiteType>suburban</SiteType>
39
+ <Surroundings>attached on one side</Surroundings>
40
+ <VerticalSurroundings>unit above and below</VerticalSurroundings>
41
+ <AzimuthOfFrontOfHome>180</AzimuthOfFrontOfHome>
42
+ <FuelTypesAvailable>
43
+ <Fuel>electricity</Fuel>
44
+ <Fuel>natural gas</Fuel>
45
+ </FuelTypesAvailable>
46
+ </Site>
47
+ <BuildingOccupancy>
48
+ <NumberofResidents>3.0</NumberofResidents>
49
+ </BuildingOccupancy>
50
+ <BuildingConstruction>
51
+ <ResidentialFacilityType>apartment unit</ResidentialFacilityType>
52
+ <NumberofConditionedFloors>1.0</NumberofConditionedFloors>
53
+ <NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
54
+ <AverageCeilingHeight>8.0</AverageCeilingHeight>
55
+ <NumberofBedrooms>3</NumberofBedrooms>
56
+ <NumberofBathrooms>2</NumberofBathrooms>
57
+ <ConditionedFloorArea>900.0</ConditionedFloorArea>
58
+ <ConditionedBuildingVolume>7200.0</ConditionedBuildingVolume>
59
+ </BuildingConstruction>
60
+ </BuildingSummary>
61
+ <ClimateandRiskZones>
62
+ <ClimateZoneIECC>
63
+ <Year>2006</Year>
64
+ <ClimateZone>5B</ClimateZone>
65
+ </ClimateZoneIECC>
66
+ <WeatherStation>
67
+ <SystemIdentifier id='WeatherStation'/>
68
+ <Name>USA_CO_Denver.Intl.AP.725650_TMY3</Name>
69
+ <extension>
70
+ <EPWFilePath>USA_CO_Denver.Intl.AP.725650_TMY3.epw</EPWFilePath>
71
+ </extension>
72
+ </WeatherStation>
73
+ </ClimateandRiskZones>
74
+ <Enclosure>
75
+ <AirInfiltration>
76
+ <AirInfiltrationMeasurement>
77
+ <SystemIdentifier id='AirInfiltrationMeasurement1'/>
78
+ <HousePressure>50.0</HousePressure>
79
+ <BuildingAirLeakage>
80
+ <UnitofMeasure>ACH</UnitofMeasure>
81
+ <AirLeakage>3.0</AirLeakage>
82
+ </BuildingAirLeakage>
83
+ <InfiltrationVolume>7200.0</InfiltrationVolume>
84
+ </AirInfiltrationMeasurement>
85
+ </AirInfiltration>
86
+ <Attics>
87
+ <Attic>
88
+ <SystemIdentifier id='Attic1'/>
89
+ <AtticType>
90
+ <BelowApartment/>
91
+ </AtticType>
92
+ </Attic>
93
+ </Attics>
94
+ <Foundations>
95
+ <Foundation>
96
+ <SystemIdentifier id='Foundation1'/>
97
+ <FoundationType>
98
+ <AboveApartment/>
99
+ </FoundationType>
100
+ </Foundation>
101
+ </Foundations>
102
+ <Walls>
103
+ <Wall>
104
+ <SystemIdentifier id='Wall1'/>
105
+ <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
106
+ <InteriorAdjacentTo>living space</InteriorAdjacentTo>
107
+ <WallType>
108
+ <WoodStud/>
109
+ </WallType>
110
+ <Area>685.9</Area>
111
+ <Siding>wood siding</Siding>
112
+ <SolarAbsorptance>0.7</SolarAbsorptance>
113
+ <Emittance>0.92</Emittance>
114
+ <InteriorFinish>
115
+ <Type>gypsum board</Type>
116
+ </InteriorFinish>
117
+ <Insulation>
118
+ <SystemIdentifier id='Wall1Insulation'/>
119
+ <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
120
+ </Insulation>
121
+ </Wall>
122
+ <Wall>
123
+ <SystemIdentifier id='Wall2'/>
124
+ <ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
125
+ <InteriorAdjacentTo>living space</InteriorAdjacentTo>
126
+ <WallType>
127
+ <WoodStud/>
128
+ </WallType>
129
+ <Area>293.9</Area>
130
+ <SolarAbsorptance>0.7</SolarAbsorptance>
131
+ <Emittance>0.92</Emittance>
132
+ <InteriorFinish>
133
+ <Type>gypsum board</Type>
134
+ </InteriorFinish>
135
+ <Insulation>
136
+ <SystemIdentifier id='Wall2Insulation'/>
137
+ <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
138
+ </Insulation>
139
+ </Wall>
140
+ </Walls>
141
+ <Floors>
142
+ <Floor>
143
+ <SystemIdentifier id='Floor1'/>
144
+ <ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
145
+ <InteriorAdjacentTo>living space</InteriorAdjacentTo>
146
+ <FloorOrCeiling>floor</FloorOrCeiling>
147
+ <FloorType>
148
+ <WoodFrame/>
149
+ </FloorType>
150
+ <Area>900.0</Area>
151
+ <Insulation>
152
+ <SystemIdentifier id='Floor1Insulation'/>
153
+ <AssemblyEffectiveRValue>2.1</AssemblyEffectiveRValue>
154
+ </Insulation>
155
+ </Floor>
156
+ <Floor>
157
+ <SystemIdentifier id='Floor2'/>
158
+ <ExteriorAdjacentTo>other housing unit</ExteriorAdjacentTo>
159
+ <InteriorAdjacentTo>living space</InteriorAdjacentTo>
160
+ <FloorOrCeiling>ceiling</FloorOrCeiling>
161
+ <FloorType>
162
+ <WoodFrame/>
163
+ </FloorType>
164
+ <Area>900.0</Area>
165
+ <InteriorFinish>
166
+ <Type>gypsum board</Type>
167
+ </InteriorFinish>
168
+ <Insulation>
169
+ <SystemIdentifier id='Floor2Insulation'/>
170
+ <AssemblyEffectiveRValue>2.1</AssemblyEffectiveRValue>
171
+ </Insulation>
172
+ </Floor>
173
+ </Floors>
174
+ <Windows>
175
+ <Window>
176
+ <SystemIdentifier id='Window1'/>
177
+ <Area>35.3</Area>
178
+ <Azimuth>0</Azimuth>
179
+ <UFactor>0.33</UFactor>
180
+ <SHGC>0.45</SHGC>
181
+ <InteriorShading>
182
+ <SystemIdentifier id='Window1InteriorShading'/>
183
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
184
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
185
+ </InteriorShading>
186
+ <FractionOperable>0.67</FractionOperable>
187
+ <AttachedToWall idref='Wall1'/>
188
+ </Window>
189
+ <Window>
190
+ <SystemIdentifier id='Window2'/>
191
+ <Area>35.3</Area>
192
+ <Azimuth>180</Azimuth>
193
+ <UFactor>0.33</UFactor>
194
+ <SHGC>0.45</SHGC>
195
+ <InteriorShading>
196
+ <SystemIdentifier id='Window2InteriorShading'/>
197
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
198
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
199
+ </InteriorShading>
200
+ <FractionOperable>0.67</FractionOperable>
201
+ <AttachedToWall idref='Wall1'/>
202
+ </Window>
203
+ <Window>
204
+ <SystemIdentifier id='Window3'/>
205
+ <Area>52.9</Area>
206
+ <Azimuth>270</Azimuth>
207
+ <UFactor>0.33</UFactor>
208
+ <SHGC>0.45</SHGC>
209
+ <InteriorShading>
210
+ <SystemIdentifier id='Window3InteriorShading'/>
211
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
212
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
213
+ </InteriorShading>
214
+ <FractionOperable>0.67</FractionOperable>
215
+ <AttachedToWall idref='Wall1'/>
216
+ </Window>
217
+ </Windows>
218
+ <Doors>
219
+ <Door>
220
+ <SystemIdentifier id='Door1'/>
221
+ <AttachedToWall idref='Wall1'/>
222
+ <Area>20.0</Area>
223
+ <Azimuth>180</Azimuth>
224
+ <RValue>4.4</RValue>
225
+ </Door>
226
+ </Doors>
227
+ </Enclosure>
228
+ <Systems>
229
+ <HVAC>
230
+ <HVACPlant>
231
+ <PrimarySystems>
232
+ <PrimaryHeatingSystem idref='HeatingSystem1'/>
233
+ <PrimaryCoolingSystem idref='CoolingSystem1'/>
234
+ </PrimarySystems>
235
+ <HeatingSystem>
236
+ <SystemIdentifier id='HeatingSystem1'/>
237
+ <DistributionSystem idref='HVACDistribution1'/>
238
+ <IsSharedSystem>true</IsSharedSystem>
239
+ <NumberofUnitsServed>6</NumberofUnitsServed>
240
+ <HeatingSystemType>
241
+ <Boiler/>
242
+ </HeatingSystemType>
243
+ <HeatingSystemFuel>natural gas</HeatingSystemFuel>
244
+ <AnnualHeatingEfficiency>
245
+ <Units>AFUE</Units>
246
+ <Value>0.92</Value>
247
+ </AnnualHeatingEfficiency>
248
+ <FractionHeatLoadServed>1.0</FractionHeatLoadServed>
249
+ <extension>
250
+ <SharedLoopWatts>600.0</SharedLoopWatts>
251
+ </extension>
252
+ </HeatingSystem>
253
+ <CoolingSystem>
254
+ <SystemIdentifier id='CoolingSystem1'/>
255
+ <DistributionSystem idref='HVACDistribution1'/>
256
+ <IsSharedSystem>true</IsSharedSystem>
257
+ <NumberofUnitsServed>6</NumberofUnitsServed>
258
+ <CoolingSystemType>chiller</CoolingSystemType>
259
+ <CoolingSystemFuel>electricity</CoolingSystemFuel>
260
+ <CoolingCapacity>144000.0</CoolingCapacity>
261
+ <FractionCoolLoadServed>1.0</FractionCoolLoadServed>
262
+ <AnnualCoolingEfficiency>
263
+ <Units>kW/ton</Units>
264
+ <Value>0.9</Value>
265
+ </AnnualCoolingEfficiency>
266
+ <extension>
267
+ <SharedLoopWatts>600.0</SharedLoopWatts>
268
+ </extension>
269
+ </CoolingSystem>
270
+ <HeatPump>
271
+ <SystemIdentifier id='HeatPump1'/>
272
+ <DistributionSystem idref='HVACDistribution2'/>
273
+ <HeatPumpType>water-loop-to-air</HeatPumpType>
274
+ <HeatPumpFuel>electricity</HeatPumpFuel>
275
+ <HeatingCapacity>24000.0</HeatingCapacity>
276
+ <CoolingCapacity>24000.0</CoolingCapacity>
277
+ <AnnualCoolingEfficiency>
278
+ <Units>EER</Units>
279
+ <Value>12.8</Value>
280
+ </AnnualCoolingEfficiency>
281
+ <AnnualHeatingEfficiency>
282
+ <Units>COP</Units>
283
+ <Value>4.4</Value>
284
+ </AnnualHeatingEfficiency>
285
+ </HeatPump>
286
+ </HVACPlant>
287
+ <HVACControl>
288
+ <SystemIdentifier id='HVACControl1'/>
289
+ <SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
290
+ <SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
291
+ </HVACControl>
292
+ <HVACDistribution>
293
+ <SystemIdentifier id='HVACDistribution1'/>
294
+ <DistributionSystemType>
295
+ <HydronicDistribution>
296
+ <HydronicDistributionType>water loop</HydronicDistributionType>
297
+ </HydronicDistribution>
298
+ </DistributionSystemType>
299
+ </HVACDistribution>
300
+ <HVACDistribution>
301
+ <SystemIdentifier id='HVACDistribution2'/>
302
+ <DistributionSystemType>
303
+ <AirDistribution>
304
+ <AirDistributionType>regular velocity</AirDistributionType>
305
+ <DuctLeakageMeasurement>
306
+ <DuctType>supply</DuctType>
307
+ <DuctLeakage>
308
+ <Units>CFM25</Units>
309
+ <Value>15.0</Value>
310
+ <TotalOrToOutside>to outside</TotalOrToOutside>
311
+ </DuctLeakage>
312
+ </DuctLeakageMeasurement>
313
+ <DuctLeakageMeasurement>
314
+ <DuctType>return</DuctType>
315
+ <DuctLeakage>
316
+ <Units>CFM25</Units>
317
+ <Value>10.0</Value>
318
+ <TotalOrToOutside>to outside</TotalOrToOutside>
319
+ </DuctLeakage>
320
+ </DuctLeakageMeasurement>
321
+ <Ducts>
322
+ <SystemIdentifier id='Ducts1'/>
323
+ <DuctType>supply</DuctType>
324
+ <DuctInsulationRValue>0.0</DuctInsulationRValue>
325
+ <DuctLocation>other multifamily buffer space</DuctLocation>
326
+ <DuctSurfaceArea>50.0</DuctSurfaceArea>
327
+ </Ducts>
328
+ <Ducts>
329
+ <SystemIdentifier id='Ducts2'/>
330
+ <DuctType>return</DuctType>
331
+ <DuctInsulationRValue>0.0</DuctInsulationRValue>
332
+ <DuctLocation>other multifamily buffer space</DuctLocation>
333
+ <DuctSurfaceArea>20.0</DuctSurfaceArea>
334
+ </Ducts>
335
+ </AirDistribution>
336
+ </DistributionSystemType>
337
+ </HVACDistribution>
338
+ </HVAC>
339
+ <WaterHeating>
340
+ <WaterHeatingSystem>
341
+ <SystemIdentifier id='WaterHeatingSystem1'/>
342
+ <FuelType>electricity</FuelType>
343
+ <WaterHeaterType>storage water heater</WaterHeaterType>
344
+ <Location>living space</Location>
345
+ <TankVolume>40.0</TankVolume>
346
+ <FractionDHWLoadServed>1.0</FractionDHWLoadServed>
347
+ <HeatingCapacity>18767.0</HeatingCapacity>
348
+ <EnergyFactor>0.95</EnergyFactor>
349
+ <HotWaterTemperature>125.0</HotWaterTemperature>
350
+ </WaterHeatingSystem>
351
+ <HotWaterDistribution>
352
+ <SystemIdentifier id='HotWaterDistribution1'/>
353
+ <SystemType>
354
+ <Standard>
355
+ <PipingLength>50.0</PipingLength>
356
+ </Standard>
357
+ </SystemType>
358
+ <PipeInsulation>
359
+ <PipeRValue>0.0</PipeRValue>
360
+ </PipeInsulation>
361
+ </HotWaterDistribution>
362
+ <WaterFixture>
363
+ <SystemIdentifier id='WaterFixture1'/>
364
+ <WaterFixtureType>shower head</WaterFixtureType>
365
+ <LowFlow>true</LowFlow>
366
+ </WaterFixture>
367
+ <WaterFixture>
368
+ <SystemIdentifier id='WaterFixture2'/>
369
+ <WaterFixtureType>faucet</WaterFixtureType>
370
+ <LowFlow>false</LowFlow>
371
+ </WaterFixture>
372
+ </WaterHeating>
373
+ </Systems>
374
+ <Appliances>
375
+ <ClothesWasher>
376
+ <SystemIdentifier id='ClothesWasher1'/>
377
+ <Location>living space</Location>
378
+ <IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
379
+ <RatedAnnualkWh>380.0</RatedAnnualkWh>
380
+ <LabelElectricRate>0.12</LabelElectricRate>
381
+ <LabelGasRate>1.09</LabelGasRate>
382
+ <LabelAnnualGasCost>27.0</LabelAnnualGasCost>
383
+ <LabelUsage>6.0</LabelUsage>
384
+ <Capacity>3.2</Capacity>
385
+ </ClothesWasher>
386
+ <ClothesDryer>
387
+ <SystemIdentifier id='ClothesDryer1'/>
388
+ <Location>living space</Location>
389
+ <FuelType>electricity</FuelType>
390
+ <CombinedEnergyFactor>3.73</CombinedEnergyFactor>
391
+ <Vented>true</Vented>
392
+ <VentedFlowRate>150.0</VentedFlowRate>
393
+ </ClothesDryer>
394
+ <Dishwasher>
395
+ <SystemIdentifier id='Dishwasher1'/>
396
+ <Location>living space</Location>
397
+ <RatedAnnualkWh>307.0</RatedAnnualkWh>
398
+ <PlaceSettingCapacity>12</PlaceSettingCapacity>
399
+ <LabelElectricRate>0.12</LabelElectricRate>
400
+ <LabelGasRate>1.09</LabelGasRate>
401
+ <LabelAnnualGasCost>22.32</LabelAnnualGasCost>
402
+ <LabelUsage>4.0</LabelUsage>
403
+ </Dishwasher>
404
+ <Refrigerator>
405
+ <SystemIdentifier id='Refrigerator1'/>
406
+ <Location>living space</Location>
407
+ <RatedAnnualkWh>650.0</RatedAnnualkWh>
408
+ <PrimaryIndicator>true</PrimaryIndicator>
409
+ </Refrigerator>
410
+ <CookingRange>
411
+ <SystemIdentifier id='CookingRange1'/>
412
+ <Location>living space</Location>
413
+ <FuelType>electricity</FuelType>
414
+ <IsInduction>false</IsInduction>
415
+ </CookingRange>
416
+ <Oven>
417
+ <SystemIdentifier id='Oven1'/>
418
+ <IsConvection>false</IsConvection>
419
+ </Oven>
420
+ </Appliances>
421
+ <Lighting>
422
+ <LightingGroup>
423
+ <SystemIdentifier id='LightingGroup1'/>
424
+ <Location>interior</Location>
425
+ <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
426
+ <LightingType>
427
+ <CompactFluorescent/>
428
+ </LightingType>
429
+ </LightingGroup>
430
+ <LightingGroup>
431
+ <SystemIdentifier id='LightingGroup2'/>
432
+ <Location>exterior</Location>
433
+ <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
434
+ <LightingType>
435
+ <CompactFluorescent/>
436
+ </LightingType>
437
+ </LightingGroup>
438
+ <LightingGroup>
439
+ <SystemIdentifier id='LightingGroup3'/>
440
+ <Location>garage</Location>
441
+ <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
442
+ <LightingType>
443
+ <CompactFluorescent/>
444
+ </LightingType>
445
+ </LightingGroup>
446
+ <LightingGroup>
447
+ <SystemIdentifier id='LightingGroup4'/>
448
+ <Location>interior</Location>
449
+ <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
450
+ <LightingType>
451
+ <FluorescentTube/>
452
+ </LightingType>
453
+ </LightingGroup>
454
+ <LightingGroup>
455
+ <SystemIdentifier id='LightingGroup5'/>
456
+ <Location>exterior</Location>
457
+ <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
458
+ <LightingType>
459
+ <FluorescentTube/>
460
+ </LightingType>
461
+ </LightingGroup>
462
+ <LightingGroup>
463
+ <SystemIdentifier id='LightingGroup6'/>
464
+ <Location>garage</Location>
465
+ <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
466
+ <LightingType>
467
+ <FluorescentTube/>
468
+ </LightingType>
469
+ </LightingGroup>
470
+ <LightingGroup>
471
+ <SystemIdentifier id='LightingGroup7'/>
472
+ <Location>interior</Location>
473
+ <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
474
+ <LightingType>
475
+ <LightEmittingDiode/>
476
+ </LightingType>
477
+ </LightingGroup>
478
+ <LightingGroup>
479
+ <SystemIdentifier id='LightingGroup8'/>
480
+ <Location>exterior</Location>
481
+ <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
482
+ <LightingType>
483
+ <LightEmittingDiode/>
484
+ </LightingType>
485
+ </LightingGroup>
486
+ <LightingGroup>
487
+ <SystemIdentifier id='LightingGroup9'/>
488
+ <Location>garage</Location>
489
+ <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
490
+ <LightingType>
491
+ <LightEmittingDiode/>
492
+ </LightingType>
493
+ </LightingGroup>
494
+ </Lighting>
495
+ <MiscLoads>
496
+ <PlugLoad>
497
+ <SystemIdentifier id='PlugLoad1'/>
498
+ <PlugLoadType>TV other</PlugLoadType>
499
+ <Load>
500
+ <Units>kWh/year</Units>
501
+ <Value>620.0</Value>
502
+ </Load>
503
+ </PlugLoad>
504
+ <PlugLoad>
505
+ <SystemIdentifier id='PlugLoad2'/>
506
+ <PlugLoadType>other</PlugLoadType>
507
+ <Load>
508
+ <Units>kWh/year</Units>
509
+ <Value>819.0</Value>
510
+ </Load>
511
+ <extension>
512
+ <FracSensible>0.855</FracSensible>
513
+ <FracLatent>0.045</FracLatent>
514
+ </extension>
515
+ </PlugLoad>
516
+ </MiscLoads>
517
+ </BuildingDetails>
518
+ </Building>
510
519
  </HPXML>