urbanopt-cli 0.8.3 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (649) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +5 -6
  3. data/CHANGELOG.md +14 -0
  4. data/CMakeLists.txt +7 -7
  5. data/Gemfile +3 -1
  6. data/README.md +9 -0
  7. data/example_files/Gemfile +23 -16
  8. data/example_files/Gemfile.lock +177 -0
  9. data/example_files/base_workflow_res.osw +57 -14
  10. data/example_files/class_project_coincident.json +1322 -0
  11. data/example_files/class_project_diverse.json +1322 -0
  12. data/example_files/disco/config.json +42 -0
  13. data/example_files/disco/cost_database.xlsx +0 -0
  14. data/example_files/disco/technical_catalog.json +12126 -0
  15. data/example_files/mappers/Baseline.rb +10 -7
  16. data/example_files/mappers/ChilledWaterStorage.rb +98 -0
  17. data/example_files/mappers/ClassProject.rb +110 -0
  18. data/example_files/mappers/CreateBar.rb +1 -0
  19. data/example_files/mappers/HighEfficiency.rb +13 -11
  20. data/example_files/mappers/PeakHoursMelsShedding.rb +72 -0
  21. data/example_files/mappers/PeakHoursThermostatAdjust.rb +78 -0
  22. data/example_files/mappers/ThermalStorage.rb +1 -0
  23. data/example_files/mappers/base_workflow.osw +55 -14
  24. data/example_files/mappers/class_project_workflow.osw +328 -0
  25. data/example_files/mappers/createbar_workflow.osw +16 -16
  26. data/example_files/measures/BuildResidentialModel/measure.rb +7 -1
  27. data/example_files/measures/BuildResidentialModel/measure.xml +1313 -706
  28. data/example_files/opendss/electrical_database.json +1446 -1446
  29. data/example_files/python_deps/dependencies.json +5 -0
  30. data/example_files/python_deps/install_python.ps1 +96 -0
  31. data/example_files/python_deps/install_python.sh +120 -0
  32. data/example_files/residential/clothes_dryer.tsv +11 -11
  33. data/example_files/residential/clothes_washer.tsv +3 -3
  34. data/example_files/residential/dishwasher.tsv +3 -3
  35. data/example_files/resources/hpxml-measures/.github/pull_request_template.md +0 -1
  36. data/example_files/resources/hpxml-measures/.github/workflows/config.yml +8 -21
  37. data/example_files/resources/hpxml-measures/.gitignore +2 -0
  38. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +1272 -1094
  39. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +978 -659
  40. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb +52 -74
  41. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +77 -140
  42. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb +30 -27
  43. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml +32 -13
  44. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb +55 -51
  45. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb +89 -16
  46. data/example_files/resources/hpxml-measures/Changelog.md +65 -0
  47. data/example_files/resources/hpxml-measures/Gemfile +2 -4
  48. data/example_files/resources/hpxml-measures/Gemfile.lock +2 -13
  49. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb +276 -300
  50. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +221 -215
  51. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb +215 -170
  52. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/battery.rb +108 -16
  53. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb +24 -44
  54. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb +564 -197
  55. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/cambium/README.md +8 -8
  56. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/energyplus.rb +1 -0
  57. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb +7 -55
  58. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +24 -19
  59. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +541 -211
  60. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +300 -172
  61. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd +0 -2
  62. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLBaseElements.xsd +230 -141
  63. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLDataTypes.xsd +145 -137
  64. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +191 -97
  65. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/iso-schematron.xsd +391 -0
  66. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb +194 -198
  67. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +140 -145
  68. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb +11 -11
  69. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb +33 -1
  70. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/materials.rb +4 -4
  71. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb +17 -9
  72. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb +14 -12
  73. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/output.rb +39 -17
  74. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/psychrometrics.rb +1 -1
  75. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/battery.csv +8761 -0
  76. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +114 -57
  77. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb +1 -0
  78. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/utility_bills.rb +148 -0
  79. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb +2 -2
  80. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb +85 -127
  81. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb +26 -32
  82. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb +2 -14
  83. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlvalidator.rb +67 -0
  84. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb +117 -56
  85. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_battery.rb +141 -14
  86. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +453 -344
  87. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb +124 -20
  88. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb +1 -1
  89. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb +28 -32
  90. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +172 -79
  91. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +54 -8
  92. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb +3 -3
  93. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb +4 -4
  94. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb +7 -7
  95. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb +1 -1
  96. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb +6 -9
  97. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb +8 -8
  98. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +213 -95
  99. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb +1 -10
  100. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_weather.rb +76 -0
  101. data/example_files/resources/hpxml-measures/README.md +2 -3
  102. data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.rb +585 -287
  103. data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.xml +304 -352
  104. data/example_files/resources/hpxml-measures/ReportSimulationOutput/tests/output_report_test.rb +404 -279
  105. data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.rb +222 -501
  106. data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.xml +137 -200
  107. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json +649 -0
  108. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json +649 -0
  109. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json +647 -0
  110. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate Min Annual Charge.json +8776 -0
  111. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate Min Monthly Charge.json +8776 -0
  112. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json +8774 -0
  113. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate Min Annual Charge.json +659 -0
  114. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate Min Monthly Charge.json +659 -0
  115. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json +657 -0
  116. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate Min Annual Charge.json +670 -0
  117. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate Min Monthly Charge.json +670 -0
  118. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json +668 -0
  119. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate Min Annual Charge.json +655 -0
  120. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate Min Monthly Charge.json +655 -0
  121. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json +653 -0
  122. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/openei_rates.zip +0 -0
  123. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/Average_retail_price_of_electricity.csv +0 -0
  124. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/HouseholdConsumption.csv +0 -0
  125. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv +0 -0
  126. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv +0 -0
  127. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv +0 -0
  128. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/README.md +0 -0
  129. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/util.rb +506 -25
  130. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Contains Demand Charges.json +1312 -0
  131. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Invalid Fixed Charge Units.json +657 -0
  132. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Invalid Min Charge Units.json +659 -0
  133. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/JacksonElectricMemberCorp-ResidentialSeniorCitizenLowIncomeAssistance.json +681 -0
  134. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Missing Required Fields.json +54 -0
  135. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/data.csv +8761 -0
  136. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/utility_bills_test.rb +1006 -235
  137. data/example_files/resources/hpxml-measures/docs/source/conf.py +1 -1
  138. data/example_files/resources/hpxml-measures/docs/source/intro.rst +0 -1
  139. data/example_files/resources/hpxml-measures/docs/source/usage_instructions.rst +2 -2
  140. data/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst +461 -261
  141. data/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst +146 -152
  142. data/example_files/resources/hpxml-measures/tasks.rb +616 -802
  143. data/example_files/resources/hpxml-measures/workflow/real_homes/house001.xml +19 -11
  144. data/example_files/resources/hpxml-measures/workflow/real_homes/house002.xml +20 -12
  145. data/example_files/resources/hpxml-measures/workflow/real_homes/house003.xml +12 -7
  146. data/example_files/resources/hpxml-measures/workflow/real_homes/house004.xml +12 -7
  147. data/example_files/resources/hpxml-measures/workflow/real_homes/house005.xml +19 -11
  148. data/example_files/resources/hpxml-measures/workflow/real_homes/house006.xml +12 -7
  149. data/example_files/resources/hpxml-measures/workflow/real_homes/house007.xml +20 -12
  150. data/example_files/resources/hpxml-measures/workflow/real_homes/house008.xml +28 -16
  151. data/example_files/resources/hpxml-measures/workflow/real_homes/house009.xml +28 -17
  152. data/example_files/resources/hpxml-measures/workflow/real_homes/house010.xml +28 -16
  153. data/example_files/resources/hpxml-measures/workflow/real_homes/house011.xml +20 -12
  154. data/example_files/resources/hpxml-measures/workflow/real_homes/house012.xml +20 -12
  155. data/example_files/resources/hpxml-measures/workflow/real_homes/house013.xml +20 -12
  156. data/example_files/resources/hpxml-measures/workflow/real_homes/house014.xml +20 -12
  157. data/example_files/resources/hpxml-measures/workflow/real_homes/house015.xml +20 -12
  158. data/example_files/resources/hpxml-measures/workflow/real_homes/house016.xml +22 -12
  159. data/example_files/resources/hpxml-measures/workflow/real_homes/house017.xml +19 -11
  160. data/example_files/resources/hpxml-measures/workflow/real_homes/house018.xml +20 -12
  161. data/example_files/resources/hpxml-measures/workflow/real_homes/house019.xml +13 -7
  162. data/example_files/resources/hpxml-measures/workflow/real_homes/house020.xml +12 -7
  163. data/example_files/resources/hpxml-measures/workflow/real_homes/house021.xml +31 -16
  164. data/example_files/resources/hpxml-measures/workflow/real_homes/house022.xml +22 -12
  165. data/example_files/resources/hpxml-measures/workflow/real_homes/house023.xml +21 -12
  166. data/example_files/resources/hpxml-measures/workflow/real_homes/house024.xml +37 -22
  167. data/example_files/resources/hpxml-measures/workflow/real_homes/house025.xml +24 -12
  168. data/example_files/resources/hpxml-measures/workflow/real_homes/house026.xml +33 -21
  169. data/example_files/resources/hpxml-measures/workflow/real_homes/house027.xml +28 -16
  170. data/example_files/resources/hpxml-measures/workflow/real_homes/house028.xml +28 -16
  171. data/example_files/resources/hpxml-measures/workflow/real_homes/house029.xml +30 -17
  172. data/example_files/resources/hpxml-measures/workflow/real_homes/house030.xml +10 -7
  173. data/example_files/resources/hpxml-measures/workflow/real_homes/house031.xml +22 -11
  174. data/example_files/resources/hpxml-measures/workflow/real_homes/house032.xml +12 -7
  175. data/example_files/resources/hpxml-measures/workflow/real_homes/house033.xml +18 -12
  176. data/example_files/resources/hpxml-measures/workflow/real_homes/house034.xml +25 -16
  177. data/example_files/resources/hpxml-measures/workflow/real_homes/house035.xml +22 -12
  178. data/example_files/resources/hpxml-measures/workflow/real_homes/house036.xml +20 -12
  179. data/example_files/resources/hpxml-measures/workflow/real_homes/house037.xml +26 -17
  180. data/example_files/resources/hpxml-measures/workflow/real_homes/house038.xml +19 -11
  181. data/example_files/resources/hpxml-measures/workflow/real_homes/house039.xml +25 -16
  182. data/example_files/resources/hpxml-measures/workflow/real_homes/house040.xml +20 -12
  183. data/example_files/resources/hpxml-measures/workflow/real_homes/house041.xml +35 -21
  184. data/example_files/resources/hpxml-measures/workflow/real_homes/house042.xml +28 -17
  185. data/example_files/resources/hpxml-measures/workflow/real_homes/house043.xml +20 -12
  186. data/example_files/resources/hpxml-measures/workflow/real_homes/house044.xml +35 -21
  187. data/example_files/resources/hpxml-measures/workflow/real_homes/house045.xml +20 -12
  188. data/example_files/resources/hpxml-measures/workflow/real_homes/house046.xml +20 -13
  189. data/example_files/resources/hpxml-measures/workflow/real_homes/house047.xml +12 -9
  190. data/example_files/resources/hpxml-measures/workflow/real_homes/house048.xml +25 -14
  191. data/example_files/resources/hpxml-measures/workflow/real_homes/house049.xml +10 -7
  192. data/example_files/resources/hpxml-measures/workflow/real_homes/house050.xml +20 -11
  193. data/example_files/resources/hpxml-measures/workflow/run_simulation.rb +91 -88
  194. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +18 -7
  195. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +546 -535
  196. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +546 -535
  197. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +555 -544
  198. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +18 -7
  199. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +18 -7
  200. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +18 -7
  201. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml +18 -7
  202. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil-location-miami-fl.xml +580 -569
  203. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +18 -7
  204. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane-location-portland-or.xml +580 -569
  205. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +18 -7
  206. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +18 -7
  207. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +7 -0
  208. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +17 -6
  209. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +7 -0
  210. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +18 -7
  211. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +18 -7
  212. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +18 -7
  213. data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml +600 -0
  214. data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery.xml +598 -587
  215. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml +494 -485
  216. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml +606 -593
  217. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml +494 -485
  218. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml +494 -485
  219. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml +494 -485
  220. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-calctype-operational.xml +480 -471
  221. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml +464 -457
  222. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml +496 -487
  223. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml +466 -459
  224. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml +518 -509
  225. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml +513 -504
  226. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml +445 -438
  227. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml +476 -467
  228. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml +443 -436
  229. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml +446 -439
  230. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml +494 -485
  231. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml +445 -438
  232. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml +476 -467
  233. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml +446 -439
  234. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml +494 -485
  235. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml +489 -480
  236. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml +499 -490
  237. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +491 -482
  238. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml +510 -0
  239. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml +495 -486
  240. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml +709 -695
  241. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml +528 -519
  242. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml +512 -503
  243. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml +504 -495
  244. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml +497 -488
  245. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml +490 -481
  246. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml +487 -478
  247. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached-2stories.xml +639 -628
  248. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached-atticroof-cathedral.xml +587 -580
  249. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached.xml +639 -628
  250. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational-misc-defaults.xml +539 -528
  251. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational-misc-loads-large-uncommon.xml +644 -633
  252. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational-misc-loads-large-uncommon2.xml +644 -633
  253. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational.xml +575 -564
  254. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +16 -7
  255. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +16 -7
  256. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +18 -7
  257. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +585 -574
  258. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +18 -7
  259. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +18 -7
  260. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +18 -7
  261. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +18 -7
  262. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +18 -7
  263. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml +536 -0
  264. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +16 -7
  265. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +16 -7
  266. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +20 -8
  267. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +16 -7
  268. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +16 -7
  269. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +18 -7
  270. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +18 -7
  271. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +18 -7
  272. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +16 -7
  273. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +18 -7
  274. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +16 -7
  275. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml +18 -7
  276. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +19 -8
  277. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +19 -8
  278. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +19 -8
  279. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +19 -8
  280. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +19 -8
  281. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +18 -7
  282. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +18 -7
  283. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +18 -7
  284. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +18 -7
  285. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +18 -7
  286. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +18 -7
  287. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +18 -7
  288. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml +582 -571
  289. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +583 -572
  290. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +18 -7
  291. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +584 -573
  292. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +584 -573
  293. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +18 -7
  294. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml +583 -572
  295. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml +585 -574
  296. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +18 -7
  297. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +582 -571
  298. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +18 -7
  299. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +18 -7
  300. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +18 -7
  301. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml +586 -575
  302. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml +585 -574
  303. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +18 -7
  304. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +18 -7
  305. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml +580 -569
  306. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +18 -7
  307. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +580 -569
  308. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +18 -7
  309. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +580 -569
  310. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +18 -7
  311. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +18 -7
  312. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +18 -7
  313. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +18 -7
  314. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +28 -11
  315. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +20 -7
  316. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +18 -7
  317. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +18 -7
  318. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +18 -7
  319. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +18 -7
  320. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml +607 -0
  321. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml +550 -0
  322. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +27 -12
  323. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +18 -7
  324. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +18 -7
  325. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +18 -7
  326. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +18 -7
  327. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +18 -7
  328. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml +589 -578
  329. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +18 -7
  330. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml +18 -7
  331. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml +619 -608
  332. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml +620 -609
  333. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml +618 -607
  334. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +18 -7
  335. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +537 -526
  336. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces.xml +90 -43
  337. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces2.xml +2507 -2460
  338. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml +595 -584
  339. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +19 -8
  340. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml +584 -0
  341. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +18 -7
  342. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml +594 -583
  343. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml +597 -586
  344. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml +598 -587
  345. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +27 -12
  346. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml +671 -656
  347. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +18 -7
  348. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +18 -7
  349. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-foundation-conditioned-basement-wall-interior-insulation.xml → base-foundation-conditioned-basement-wall-insulation.xml} +585 -574
  350. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +582 -571
  351. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +35 -16
  352. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +18 -7
  353. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +27 -12
  354. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +27 -12
  355. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +27 -12
  356. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +27 -12
  357. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +27 -12
  358. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +27 -12
  359. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +18 -7
  360. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-backup-lockout-temperature.xml +586 -575
  361. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +573 -562
  362. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +580 -569
  363. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml +583 -0
  364. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +18 -7
  365. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +18 -7
  366. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml +600 -589
  367. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +599 -588
  368. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml +629 -616
  369. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +18 -7
  370. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml +573 -562
  371. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml +579 -568
  372. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +581 -570
  373. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +581 -570
  374. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml +582 -0
  375. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +581 -570
  376. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml +581 -570
  377. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml +581 -570
  378. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml +581 -570
  379. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml +598 -587
  380. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml +628 -615
  381. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml +581 -570
  382. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml +581 -570
  383. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml +581 -570
  384. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml +535 -526
  385. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml +589 -578
  386. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml +536 -527
  387. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml +18 -7
  388. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml +565 -554
  389. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml +565 -554
  390. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml +18 -7
  391. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +582 -571
  392. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +582 -571
  393. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +582 -571
  394. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml +18 -7
  395. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml +526 -517
  396. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml +573 -562
  397. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml +529 -520
  398. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml +565 -554
  399. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml +580 -569
  400. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml +580 -569
  401. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml +565 -554
  402. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml +578 -567
  403. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +575 -564
  404. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +581 -570
  405. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml +583 -572
  406. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml +583 -572
  407. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml +583 -572
  408. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml +18 -7
  409. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml +18 -7
  410. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml +18 -7
  411. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml +580 -569
  412. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml +580 -569
  413. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml +580 -569
  414. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml +551 -542
  415. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac-with-heating.xml +532 -530
  416. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac.xml +525 -516
  417. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml +541 -532
  418. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml +541 -532
  419. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml +541 -532
  420. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-only.xml +525 -516
  421. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-heating.xml +533 -0
  422. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml +542 -0
  423. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml +542 -0
  424. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml +542 -0
  425. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml +529 -520
  426. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml +529 -520
  427. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml +580 -569
  428. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +16 -7
  429. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +16 -7
  430. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +18 -7
  431. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +16 -7
  432. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +16 -7
  433. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +16 -7
  434. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +16 -7
  435. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml +567 -0
  436. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +18 -7
  437. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +18 -7
  438. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +18 -7
  439. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +18 -7
  440. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +16 -7
  441. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml +18 -7
  442. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +18 -7
  443. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +18 -7
  444. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +18 -7
  445. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +18 -7
  446. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml +611 -598
  447. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml +589 -0
  448. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +582 -571
  449. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +18 -7
  450. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +16 -7
  451. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +18 -7
  452. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +17 -7
  453. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml +16 -7
  454. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml +530 -521
  455. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml +530 -521
  456. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +530 -521
  457. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml +566 -555
  458. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +18 -7
  459. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +18 -7
  460. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +18 -7
  461. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +18 -7
  462. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml +566 -555
  463. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +566 -555
  464. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +18 -7
  465. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +18 -7
  466. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +18 -7
  467. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +18 -7
  468. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +16 -7
  469. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +574 -563
  470. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +581 -570
  471. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +583 -572
  472. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +587 -576
  473. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml +587 -576
  474. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml +587 -576
  475. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +591 -580
  476. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml +591 -580
  477. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml +591 -580
  478. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml +570 -559
  479. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +586 -575
  480. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +570 -559
  481. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +586 -575
  482. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +18 -7
  483. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +16 -7
  484. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +18 -7
  485. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +18 -7
  486. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +18 -7
  487. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +552 -543
  488. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +16 -7
  489. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +963 -938
  490. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml +33 -69
  491. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml +530 -521
  492. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +535 -0
  493. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-ptac-with-heating.xml → base-hvac-ptac-with-heating-natural-gas.xml} +23 -21
  494. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml +526 -517
  495. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml +541 -532
  496. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +16 -7
  497. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +526 -517
  498. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml +526 -517
  499. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +16 -7
  500. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml +535 -0
  501. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml +542 -0
  502. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml +594 -583
  503. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml +586 -575
  504. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml +18 -7
  505. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +18 -7
  506. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml +530 -521
  507. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +530 -521
  508. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml +18 -7
  509. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +18 -7
  510. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +530 -521
  511. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml +18 -7
  512. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml +18 -7
  513. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml +18 -7
  514. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +18 -7
  515. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +27 -12
  516. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml +591 -576
  517. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +18 -7
  518. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +27 -12
  519. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml +582 -571
  520. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml +537 -526
  521. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +18 -7
  522. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml +537 -526
  523. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml +601 -586
  524. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +18 -7
  525. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +18 -7
  526. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +601 -587
  527. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +19 -7
  528. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +20 -7
  529. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +607 -0
  530. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml +607 -0
  531. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +21 -7
  532. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +18 -7
  533. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +18 -7
  534. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +18 -7
  535. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +18 -7
  536. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +18 -7
  537. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +18 -7
  538. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +37 -19
  539. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +18 -7
  540. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +18 -7
  541. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml +590 -579
  542. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-none.xml +578 -0
  543. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml +632 -0
  544. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml +614 -0
  545. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml +677 -0
  546. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml +593 -0
  547. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml +27 -9
  548. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml +676 -665
  549. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml +616 -0
  550. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml +615 -0
  551. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml +598 -587
  552. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml +586 -0
  553. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml +18 -7
  554. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml +18 -7
  555. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +18 -7
  556. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +18 -7
  557. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml +583 -572
  558. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +18 -7
  559. data/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml +1700 -1677
  560. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml +622 -611
  561. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml +697 -682
  562. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-pv-battery-lifetime-model.xml → base-pv-battery-round-trip-efficiency.xml} +20 -11
  563. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml +624 -0
  564. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml +622 -611
  565. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml +640 -0
  566. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml +639 -0
  567. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml +623 -0
  568. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml +606 -595
  569. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml +582 -571
  570. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-smooth.xml +583 -572
  571. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml +584 -0
  572. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml +583 -572
  573. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml +583 -572
  574. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml +581 -570
  575. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml +581 -570
  576. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml +581 -570
  577. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml +636 -625
  578. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +18 -7
  579. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +27 -14
  580. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +21 -10
  581. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +21 -10
  582. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-dhw-tank-heat-pump-detailed-operating-modes.xml → base-simcontrol-temperature-capacitance-multiplier.xml} +25 -13
  583. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml +584 -0
  584. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml +584 -0
  585. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +18 -7
  586. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-dhw-tank-heat-pump-detailed-setpoints.xml → base-simcontrol-timestep-30-mins.xml} +25 -14
  587. data/example_files/resources/hpxml-measures/workflow/sample_files/base.xml +18 -7
  588. data/example_files/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw +18 -13
  589. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy.osw +12 -7
  590. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml.osw +8 -24
  591. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml +366 -358
  592. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml +369 -361
  593. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml +369 -361
  594. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml +369 -361
  595. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml +369 -361
  596. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml +369 -361
  597. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml +369 -361
  598. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml +369 -361
  599. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml +311 -303
  600. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml +311 -303
  601. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml +327 -319
  602. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml +327 -319
  603. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml +332 -324
  604. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml +332 -324
  605. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml +341 -333
  606. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml +341 -333
  607. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml +369 -361
  608. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml +369 -361
  609. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml +369 -361
  610. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml +369 -361
  611. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml +369 -361
  612. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml +369 -361
  613. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml +383 -379
  614. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml +383 -379
  615. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml +538 -534
  616. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml +550 -546
  617. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results.csv +444 -410
  618. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_ashrae_140.csv +8 -8
  619. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_bills.csv +444 -410
  620. data/example_files/resources/hpxml-measures/workflow/tests/compare.py +18 -4
  621. data/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb +133 -288
  622. data/example_files/scripts/convert_urbanopt_to_disco.py +130 -0
  623. data/example_files/scripts/default_control_changes.csv +8 -0
  624. data/example_files/scripts/default_voltage_regulators.csv +3 -0
  625. data/example_files/scripts/read_data.py +331 -0
  626. data/example_files/visualization/input_visualization_feature.html +172 -81
  627. data/example_files/visualization/input_visualization_scenario.html +178 -82
  628. data/example_files/xml_building/17/README.md +2 -2
  629. data/example_files/xml_building/17/unit 1.xml +40 -41
  630. data/example_files/xml_building/17/unit 2.xml +35 -36
  631. data/example_files/xml_building/17/unit 3.xml +35 -36
  632. data/example_files/xml_building/17/unit 4.xml +41 -42
  633. data/lib/uo_cli/version.rb +1 -1
  634. data/lib/uo_cli.rb +596 -96
  635. data/uo_cli.gemspec +6 -5
  636. metadata +121 -36
  637. data/example_files/residential/exhaust.tsv +0 -3
  638. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/hvac_equipment_efficiency.csv +0 -493
  639. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/water_heater_efficiency.csv +0 -157
  640. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/HPXMLvalidator.xml +0 -620
  641. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/validator.rb +0 -107
  642. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/measure.rb +0 -450
  643. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/measure.xml +0 -85
  644. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/resources/constants.rb +0 -72
  645. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/tests/hpxml_output_report_test.rb +0 -290
  646. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/PV_10kW.csv +0 -8761
  647. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/PV_1kW.csv +0 -8761
  648. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/PV_None.csv +0 -8761
  649. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_hvac_sizing.csv +0 -410
@@ -1,626 +1,637 @@
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.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>stand-alone</Surroundings>
35
- <VerticalSurroundings>no units above or 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
- <extension>
45
- <WeekdayScheduleFractions>0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061</WeekdayScheduleFractions>
46
- <WeekendScheduleFractions>0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061</WeekendScheduleFractions>
47
- <MonthlyScheduleMultipliers>1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0</MonthlyScheduleMultipliers>
48
- </extension>
49
- </BuildingOccupancy>
50
- <BuildingConstruction>
51
- <ResidentialFacilityType>single-family detached</ResidentialFacilityType>
52
- <NumberofConditionedFloors>2.0</NumberofConditionedFloors>
53
- <NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
54
- <AverageCeilingHeight>8.0</AverageCeilingHeight>
55
- <NumberofBedrooms>3</NumberofBedrooms>
56
- <NumberofBathrooms>2</NumberofBathrooms>
57
- <ConditionedFloorArea>2700.0</ConditionedFloorArea>
58
- <ConditionedBuildingVolume>21600.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>21600.0</InfiltrationVolume>
84
- </AirInfiltrationMeasurement>
85
- </AirInfiltration>
86
- <Attics>
87
- <Attic>
88
- <SystemIdentifier id='Attic1'/>
89
- <AtticType>
90
- <Attic>
91
- <Vented>false</Vented>
92
- </Attic>
93
- </AtticType>
94
- <WithinInfiltrationVolume>false</WithinInfiltrationVolume>
95
- <AttachedToRoof idref='Roof1'/>
96
- <AttachedToWall idref='Wall2'/>
97
- <AttachedToFrameFloor idref='FrameFloor1'/>
98
- </Attic>
99
- </Attics>
100
- <Foundations>
101
- <Foundation>
102
- <SystemIdentifier id='Foundation1'/>
103
- <FoundationType>
104
- <Basement>
105
- <Conditioned>true</Conditioned>
106
- </Basement>
107
- </FoundationType>
108
- <AttachedToRimJoist idref='RimJoist1'/>
109
- <AttachedToFoundationWall idref='FoundationWall1'/>
110
- <AttachedToSlab idref='Slab1'/>
111
- </Foundation>
112
- </Foundations>
113
- <Roofs>
114
- <Roof>
115
- <SystemIdentifier id='Roof1'/>
116
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
117
- <Area>1509.4</Area>
118
- <RoofType>asphalt or fiberglass shingles</RoofType>
119
- <SolarAbsorptance>0.7</SolarAbsorptance>
120
- <Emittance>0.92</Emittance>
121
- <Pitch>6.0</Pitch>
122
- <RadiantBarrier>false</RadiantBarrier>
123
- <Insulation>
124
- <SystemIdentifier id='Roof1Insulation'/>
125
- <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
126
- </Insulation>
127
- </Roof>
128
- </Roofs>
129
- <RimJoists>
130
- <RimJoist>
131
- <SystemIdentifier id='RimJoist1'/>
132
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
133
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
134
- <Area>115.6</Area>
135
- <Siding>wood siding</Siding>
136
- <SolarAbsorptance>0.7</SolarAbsorptance>
137
- <Emittance>0.92</Emittance>
138
- <Insulation>
139
- <SystemIdentifier id='RimJoist1Insulation'/>
140
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
141
- </Insulation>
142
- </RimJoist>
143
- </RimJoists>
144
- <Walls>
145
- <Wall>
146
- <SystemIdentifier id='Wall1'/>
147
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
148
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
149
- <WallType>
150
- <WoodStud/>
151
- </WallType>
152
- <Area>1200.0</Area>
153
- <Siding>wood siding</Siding>
154
- <SolarAbsorptance>0.7</SolarAbsorptance>
155
- <Emittance>0.92</Emittance>
156
- <InteriorFinish>
157
- <Type>gypsum board</Type>
158
- </InteriorFinish>
159
- <Insulation>
160
- <SystemIdentifier id='Wall1Insulation'/>
161
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
162
- </Insulation>
163
- </Wall>
164
- <Wall>
165
- <SystemIdentifier id='Wall2'/>
166
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
167
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
168
- <AtticWallType>gable</AtticWallType>
169
- <WallType>
170
- <WoodStud/>
171
- </WallType>
172
- <Area>225.0</Area>
173
- <Siding>wood siding</Siding>
174
- <SolarAbsorptance>0.7</SolarAbsorptance>
175
- <Emittance>0.92</Emittance>
176
- <Insulation>
177
- <SystemIdentifier id='Wall2Insulation'/>
178
- <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
179
- </Insulation>
180
- </Wall>
181
- </Walls>
182
- <FoundationWalls>
183
- <FoundationWall>
184
- <SystemIdentifier id='FoundationWall1'/>
185
- <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
186
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
187
- <Height>8.0</Height>
188
- <Area>1200.0</Area>
189
- <Thickness>8.0</Thickness>
190
- <DepthBelowGrade>7.0</DepthBelowGrade>
191
- <InteriorFinish>
192
- <Type>gypsum board</Type>
193
- </InteriorFinish>
194
- <Insulation>
195
- <SystemIdentifier id='FoundationWall1Insulation'/>
196
- <Layer>
197
- <InstallationType>continuous - exterior</InstallationType>
198
- <NominalRValue>8.9</NominalRValue>
199
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
200
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
201
- </Layer>
202
- <Layer>
203
- <InstallationType>continuous - interior</InstallationType>
204
- <NominalRValue>0.0</NominalRValue>
205
- </Layer>
206
- </Insulation>
207
- </FoundationWall>
208
- </FoundationWalls>
209
- <FrameFloors>
210
- <FrameFloor>
211
- <SystemIdentifier id='FrameFloor1'/>
212
- <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
213
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
214
- <Area>1350.0</Area>
215
- <InteriorFinish>
216
- <Type>gypsum board</Type>
217
- </InteriorFinish>
218
- <Insulation>
219
- <SystemIdentifier id='FrameFloor1Insulation'/>
220
- <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
221
- </Insulation>
222
- </FrameFloor>
223
- </FrameFloors>
224
- <Slabs>
225
- <Slab>
226
- <SystemIdentifier id='Slab1'/>
227
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
228
- <Area>1350.0</Area>
229
- <Thickness>4.0</Thickness>
230
- <ExposedPerimeter>150.0</ExposedPerimeter>
231
- <PerimeterInsulation>
232
- <SystemIdentifier id='Slab1PerimeterInsulation'/>
233
- <Layer>
234
- <NominalRValue>0.0</NominalRValue>
235
- <InsulationDepth>0.0</InsulationDepth>
236
- </Layer>
237
- </PerimeterInsulation>
238
- <UnderSlabInsulation>
239
- <SystemIdentifier id='Slab1UnderSlabInsulation'/>
240
- <Layer>
241
- <NominalRValue>0.0</NominalRValue>
242
- <InsulationWidth>0.0</InsulationWidth>
243
- </Layer>
244
- </UnderSlabInsulation>
245
- <extension>
246
- <CarpetFraction>0.0</CarpetFraction>
247
- <CarpetRValue>0.0</CarpetRValue>
248
- </extension>
249
- </Slab>
250
- </Slabs>
251
- <Windows>
252
- <Window>
253
- <SystemIdentifier id='Window1'/>
254
- <Area>108.0</Area>
255
- <Azimuth>0</Azimuth>
256
- <UFactor>0.33</UFactor>
257
- <SHGC>0.45</SHGC>
258
- <InteriorShading>
259
- <SystemIdentifier id='Window1InteriorShading'/>
260
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
261
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
262
- </InteriorShading>
263
- <FractionOperable>0.67</FractionOperable>
264
- <AttachedToWall idref='Wall1'/>
265
- </Window>
266
- <Window>
267
- <SystemIdentifier id='Window2'/>
268
- <Area>72.0</Area>
269
- <Azimuth>90</Azimuth>
270
- <UFactor>0.33</UFactor>
271
- <SHGC>0.45</SHGC>
272
- <InteriorShading>
273
- <SystemIdentifier id='Window2InteriorShading'/>
274
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
275
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
276
- </InteriorShading>
277
- <FractionOperable>0.67</FractionOperable>
278
- <AttachedToWall idref='Wall1'/>
279
- </Window>
280
- <Window>
281
- <SystemIdentifier id='Window3'/>
282
- <Area>108.0</Area>
283
- <Azimuth>180</Azimuth>
284
- <UFactor>0.33</UFactor>
285
- <SHGC>0.45</SHGC>
286
- <InteriorShading>
287
- <SystemIdentifier id='Window3InteriorShading'/>
288
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
289
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
290
- </InteriorShading>
291
- <FractionOperable>0.67</FractionOperable>
292
- <AttachedToWall idref='Wall1'/>
293
- </Window>
294
- <Window>
295
- <SystemIdentifier id='Window4'/>
296
- <Area>72.0</Area>
297
- <Azimuth>270</Azimuth>
298
- <UFactor>0.33</UFactor>
299
- <SHGC>0.45</SHGC>
300
- <InteriorShading>
301
- <SystemIdentifier id='Window4InteriorShading'/>
302
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
303
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
304
- </InteriorShading>
305
- <FractionOperable>0.67</FractionOperable>
306
- <AttachedToWall idref='Wall1'/>
307
- </Window>
308
- </Windows>
309
- <Doors>
310
- <Door>
311
- <SystemIdentifier id='Door1'/>
312
- <AttachedToWall idref='Wall1'/>
313
- <Area>40.0</Area>
314
- <Azimuth>180</Azimuth>
315
- <RValue>4.4</RValue>
316
- </Door>
317
- </Doors>
318
- </Enclosure>
319
- <Systems>
320
- <HVAC>
321
- <HVACPlant>
322
- <PrimarySystems>
323
- <PrimaryHeatingSystem idref='HeatingSystem1'/>
324
- <PrimaryCoolingSystem idref='CoolingSystem1'/>
325
- </PrimarySystems>
326
- <HeatingSystem>
327
- <SystemIdentifier id='HeatingSystem1'/>
328
- <DistributionSystem idref='HVACDistribution1'/>
329
- <HeatingSystemType>
330
- <Furnace/>
331
- </HeatingSystemType>
332
- <HeatingSystemFuel>natural gas</HeatingSystemFuel>
333
- <HeatingCapacity>36000.0</HeatingCapacity>
334
- <AnnualHeatingEfficiency>
335
- <Units>AFUE</Units>
336
- <Value>0.92</Value>
337
- </AnnualHeatingEfficiency>
338
- <FractionHeatLoadServed>1.0</FractionHeatLoadServed>
339
- </HeatingSystem>
340
- <CoolingSystem>
341
- <SystemIdentifier id='CoolingSystem1'/>
342
- <DistributionSystem idref='HVACDistribution1'/>
343
- <CoolingSystemType>central air conditioner</CoolingSystemType>
344
- <CoolingSystemFuel>electricity</CoolingSystemFuel>
345
- <CoolingCapacity>24000.0</CoolingCapacity>
346
- <CompressorType>single stage</CompressorType>
347
- <FractionCoolLoadServed>1.0</FractionCoolLoadServed>
348
- <AnnualCoolingEfficiency>
349
- <Units>SEER</Units>
350
- <Value>13.0</Value>
351
- </AnnualCoolingEfficiency>
352
- <SensibleHeatFraction>0.73</SensibleHeatFraction>
353
- </CoolingSystem>
354
- </HVACPlant>
355
- <HVACControl>
356
- <SystemIdentifier id='HVACControl1'/>
357
- <SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
358
- <SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
359
- </HVACControl>
360
- <HVACDistribution>
361
- <SystemIdentifier id='HVACDistribution1'/>
362
- <DistributionSystemType>
363
- <AirDistribution>
364
- <AirDistributionType>regular velocity</AirDistributionType>
365
- <DuctLeakageMeasurement>
366
- <DuctType>supply</DuctType>
367
- <DuctLeakage>
368
- <Units>CFM25</Units>
369
- <Value>75.0</Value>
370
- <TotalOrToOutside>to outside</TotalOrToOutside>
371
- </DuctLeakage>
372
- </DuctLeakageMeasurement>
373
- <DuctLeakageMeasurement>
374
- <DuctType>return</DuctType>
375
- <DuctLeakage>
376
- <Units>CFM25</Units>
377
- <Value>25.0</Value>
378
- <TotalOrToOutside>to outside</TotalOrToOutside>
379
- </DuctLeakage>
380
- </DuctLeakageMeasurement>
381
- <Ducts>
382
- <DuctType>supply</DuctType>
383
- <DuctInsulationRValue>4.0</DuctInsulationRValue>
384
- <DuctLocation>attic - unvented</DuctLocation>
385
- <DuctSurfaceArea>150.0</DuctSurfaceArea>
386
- </Ducts>
387
- <Ducts>
388
- <DuctType>return</DuctType>
389
- <DuctInsulationRValue>0.0</DuctInsulationRValue>
390
- <DuctLocation>attic - unvented</DuctLocation>
391
- <DuctSurfaceArea>50.0</DuctSurfaceArea>
392
- </Ducts>
393
- </AirDistribution>
394
- </DistributionSystemType>
395
- </HVACDistribution>
396
- </HVAC>
397
- <WaterHeating>
398
- <WaterHeatingSystem>
399
- <SystemIdentifier id='WaterHeatingSystem1'/>
400
- <FuelType>electricity</FuelType>
401
- <WaterHeaterType>storage water heater</WaterHeaterType>
402
- <Location>living space</Location>
403
- <TankVolume>40.0</TankVolume>
404
- <FractionDHWLoadServed>1.0</FractionDHWLoadServed>
405
- <HeatingCapacity>18767.0</HeatingCapacity>
406
- <EnergyFactor>0.95</EnergyFactor>
407
- <HotWaterTemperature>125.0</HotWaterTemperature>
408
- </WaterHeatingSystem>
409
- <HotWaterDistribution>
410
- <SystemIdentifier id='HotWaterDistribution1'/>
411
- <SystemType>
412
- <Standard>
413
- <PipingLength>50.0</PipingLength>
414
- </Standard>
415
- </SystemType>
416
- <PipeInsulation>
417
- <PipeRValue>0.0</PipeRValue>
418
- </PipeInsulation>
419
- </HotWaterDistribution>
420
- <WaterFixture>
421
- <SystemIdentifier id='WaterFixture1'/>
422
- <WaterFixtureType>shower head</WaterFixtureType>
423
- <LowFlow>true</LowFlow>
424
- </WaterFixture>
425
- <WaterFixture>
426
- <SystemIdentifier id='WaterFixture2'/>
427
- <WaterFixtureType>faucet</WaterFixtureType>
428
- <LowFlow>false</LowFlow>
429
- </WaterFixture>
430
- <extension>
431
- <WaterFixturesWeekdayScheduleFractions>0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026</WaterFixturesWeekdayScheduleFractions>
432
- <WaterFixturesWeekendScheduleFractions>0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026</WaterFixturesWeekendScheduleFractions>
433
- <WaterFixturesMonthlyScheduleMultipliers>1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0</WaterFixturesMonthlyScheduleMultipliers>
434
- </extension>
435
- </WaterHeating>
436
- </Systems>
437
- <Appliances>
438
- <ClothesWasher>
439
- <SystemIdentifier id='ClothesWasher1'/>
440
- <Location>living space</Location>
441
- <IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
442
- <RatedAnnualkWh>380.0</RatedAnnualkWh>
443
- <LabelElectricRate>0.12</LabelElectricRate>
444
- <LabelGasRate>1.09</LabelGasRate>
445
- <LabelAnnualGasCost>27.0</LabelAnnualGasCost>
446
- <LabelUsage>6.0</LabelUsage>
447
- <Capacity>3.2</Capacity>
448
- <extension>
449
- <WeekdayScheduleFractions>0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017</WeekdayScheduleFractions>
450
- <WeekendScheduleFractions>0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017</WeekendScheduleFractions>
451
- <MonthlyScheduleMultipliers>1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011</MonthlyScheduleMultipliers>
452
- </extension>
453
- </ClothesWasher>
454
- <ClothesDryer>
455
- <SystemIdentifier id='ClothesDryer1'/>
456
- <Location>living space</Location>
457
- <FuelType>electricity</FuelType>
458
- <CombinedEnergyFactor>3.73</CombinedEnergyFactor>
459
- <Vented>true</Vented>
460
- <VentedFlowRate>150.0</VentedFlowRate>
461
- <extension>
462
- <WeekdayScheduleFractions>0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024</WeekdayScheduleFractions>
463
- <WeekendScheduleFractions>0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024</WeekendScheduleFractions>
464
- <MonthlyScheduleMultipliers>1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0</MonthlyScheduleMultipliers>
465
- </extension>
466
- </ClothesDryer>
467
- <Dishwasher>
468
- <SystemIdentifier id='Dishwasher1'/>
469
- <Location>living space</Location>
470
- <RatedAnnualkWh>307.0</RatedAnnualkWh>
471
- <PlaceSettingCapacity>12</PlaceSettingCapacity>
472
- <LabelElectricRate>0.12</LabelElectricRate>
473
- <LabelGasRate>1.09</LabelGasRate>
474
- <LabelAnnualGasCost>22.32</LabelAnnualGasCost>
475
- <LabelUsage>4.0</LabelUsage>
476
- <extension>
477
- <WeekdayScheduleFractions>0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031</WeekdayScheduleFractions>
478
- <WeekendScheduleFractions>0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031</WeekendScheduleFractions>
479
- <MonthlyScheduleMultipliers>1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097</MonthlyScheduleMultipliers>
480
- </extension>
481
- </Dishwasher>
482
- <Refrigerator>
483
- <SystemIdentifier id='Refrigerator1'/>
484
- <Location>living space</Location>
485
- <RatedAnnualkWh>650.0</RatedAnnualkWh>
486
- <PrimaryIndicator>true</PrimaryIndicator>
487
- <extension>
488
- <WeekdayScheduleFractions>0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041</WeekdayScheduleFractions>
489
- <WeekendScheduleFractions>0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041</WeekendScheduleFractions>
490
- <MonthlyScheduleMultipliers>0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837</MonthlyScheduleMultipliers>
491
- </extension>
492
- </Refrigerator>
493
- <CookingRange>
494
- <SystemIdentifier id='CookingRange1'/>
495
- <Location>living space</Location>
496
- <FuelType>electricity</FuelType>
497
- <IsInduction>false</IsInduction>
498
- <extension>
499
- <WeekdayScheduleFractions>0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011</WeekdayScheduleFractions>
500
- <WeekendScheduleFractions>0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011</WeekendScheduleFractions>
501
- <MonthlyScheduleMultipliers>1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097</MonthlyScheduleMultipliers>
502
- </extension>
503
- </CookingRange>
504
- <Oven>
505
- <SystemIdentifier id='Oven1'/>
506
- <IsConvection>false</IsConvection>
507
- </Oven>
508
- </Appliances>
509
- <Lighting>
510
- <LightingGroup>
511
- <SystemIdentifier id='LightingGroup1'/>
512
- <Location>interior</Location>
513
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
514
- <LightingType>
515
- <CompactFluorescent/>
516
- </LightingType>
517
- </LightingGroup>
518
- <LightingGroup>
519
- <SystemIdentifier id='LightingGroup2'/>
520
- <Location>exterior</Location>
521
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
522
- <LightingType>
523
- <CompactFluorescent/>
524
- </LightingType>
525
- </LightingGroup>
526
- <LightingGroup>
527
- <SystemIdentifier id='LightingGroup3'/>
528
- <Location>garage</Location>
529
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
530
- <LightingType>
531
- <CompactFluorescent/>
532
- </LightingType>
533
- </LightingGroup>
534
- <LightingGroup>
535
- <SystemIdentifier id='LightingGroup4'/>
536
- <Location>interior</Location>
537
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
538
- <LightingType>
539
- <FluorescentTube/>
540
- </LightingType>
541
- </LightingGroup>
542
- <LightingGroup>
543
- <SystemIdentifier id='LightingGroup5'/>
544
- <Location>exterior</Location>
545
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
546
- <LightingType>
547
- <FluorescentTube/>
548
- </LightingType>
549
- </LightingGroup>
550
- <LightingGroup>
551
- <SystemIdentifier id='LightingGroup6'/>
552
- <Location>garage</Location>
553
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
554
- <LightingType>
555
- <FluorescentTube/>
556
- </LightingType>
557
- </LightingGroup>
558
- <LightingGroup>
559
- <SystemIdentifier id='LightingGroup7'/>
560
- <Location>interior</Location>
561
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
562
- <LightingType>
563
- <LightEmittingDiode/>
564
- </LightingType>
565
- </LightingGroup>
566
- <LightingGroup>
567
- <SystemIdentifier id='LightingGroup8'/>
568
- <Location>exterior</Location>
569
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
570
- <LightingType>
571
- <LightEmittingDiode/>
572
- </LightingType>
573
- </LightingGroup>
574
- <LightingGroup>
575
- <SystemIdentifier id='LightingGroup9'/>
576
- <Location>garage</Location>
577
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
578
- <LightingType>
579
- <LightEmittingDiode/>
580
- </LightingType>
581
- </LightingGroup>
582
- <extension>
583
- <InteriorWeekdayScheduleFractions>0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249</InteriorWeekdayScheduleFractions>
584
- <InteriorWeekendScheduleFractions>0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249</InteriorWeekendScheduleFractions>
585
- <InteriorMonthlyScheduleMultipliers>1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905</InteriorMonthlyScheduleMultipliers>
586
- <GarageWeekdayScheduleFractions>0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063</GarageWeekdayScheduleFractions>
587
- <GarageWeekendScheduleFractions>0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059</GarageWeekendScheduleFractions>
588
- <GarageMonthlyScheduleMultipliers>1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248</GarageMonthlyScheduleMultipliers>
589
- <ExteriorWeekdayScheduleFractions>0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063</ExteriorWeekdayScheduleFractions>
590
- <ExteriorWeekendScheduleFractions>0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059</ExteriorWeekendScheduleFractions>
591
- <ExteriorMonthlyScheduleMultipliers>1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248</ExteriorMonthlyScheduleMultipliers>
592
- </extension>
593
- </Lighting>
594
- <MiscLoads>
595
- <PlugLoad>
596
- <SystemIdentifier id='PlugLoad1'/>
597
- <PlugLoadType>TV other</PlugLoadType>
598
- <Load>
599
- <Units>kWh/year</Units>
600
- <Value>620.0</Value>
601
- </Load>
602
- <extension>
603
- <WeekdayScheduleFractions>0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07</WeekdayScheduleFractions>
604
- <WeekendScheduleFractions>0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07</WeekendScheduleFractions>
605
- <MonthlyScheduleMultipliers>1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137</MonthlyScheduleMultipliers>
606
- </extension>
607
- </PlugLoad>
608
- <PlugLoad>
609
- <SystemIdentifier id='PlugLoad2'/>
610
- <PlugLoadType>other</PlugLoadType>
611
- <Load>
612
- <Units>kWh/year</Units>
613
- <Value>2457.0</Value>
614
- </Load>
615
- <extension>
616
- <FracSensible>0.855</FracSensible>
617
- <FracLatent>0.045</FracLatent>
618
- <WeekdayScheduleFractions>0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036</WeekdayScheduleFractions>
619
- <WeekendScheduleFractions>0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036</WeekendScheduleFractions>
620
- <MonthlyScheduleMultipliers>1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248</MonthlyScheduleMultipliers>
621
- </extension>
622
- </PlugLoad>
623
- </MiscLoads>
624
- </BuildingDetails>
625
- </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.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>stand-alone</Surroundings>
40
+ <VerticalSurroundings>no units above or 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
+ <extension>
50
+ <WeekdayScheduleFractions>0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061</WeekdayScheduleFractions>
51
+ <WeekendScheduleFractions>0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.061, 0.053, 0.025, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.015, 0.018, 0.033, 0.054, 0.054, 0.054, 0.061, 0.061, 0.061</WeekendScheduleFractions>
52
+ <MonthlyScheduleMultipliers>1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0</MonthlyScheduleMultipliers>
53
+ </extension>
54
+ </BuildingOccupancy>
55
+ <BuildingConstruction>
56
+ <ResidentialFacilityType>single-family detached</ResidentialFacilityType>
57
+ <NumberofConditionedFloors>2.0</NumberofConditionedFloors>
58
+ <NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
59
+ <AverageCeilingHeight>8.0</AverageCeilingHeight>
60
+ <NumberofBedrooms>3</NumberofBedrooms>
61
+ <NumberofBathrooms>2</NumberofBathrooms>
62
+ <ConditionedFloorArea>2700.0</ConditionedFloorArea>
63
+ <ConditionedBuildingVolume>21600.0</ConditionedBuildingVolume>
64
+ </BuildingConstruction>
65
+ </BuildingSummary>
66
+ <ClimateandRiskZones>
67
+ <ClimateZoneIECC>
68
+ <Year>2006</Year>
69
+ <ClimateZone>5B</ClimateZone>
70
+ </ClimateZoneIECC>
71
+ <WeatherStation>
72
+ <SystemIdentifier id='WeatherStation'/>
73
+ <Name>USA_CO_Denver.Intl.AP.725650_TMY3</Name>
74
+ <extension>
75
+ <EPWFilePath>USA_CO_Denver.Intl.AP.725650_TMY3.epw</EPWFilePath>
76
+ </extension>
77
+ </WeatherStation>
78
+ </ClimateandRiskZones>
79
+ <Enclosure>
80
+ <AirInfiltration>
81
+ <AirInfiltrationMeasurement>
82
+ <SystemIdentifier id='AirInfiltrationMeasurement1'/>
83
+ <HousePressure>50.0</HousePressure>
84
+ <BuildingAirLeakage>
85
+ <UnitofMeasure>ACH</UnitofMeasure>
86
+ <AirLeakage>3.0</AirLeakage>
87
+ </BuildingAirLeakage>
88
+ <InfiltrationVolume>21600.0</InfiltrationVolume>
89
+ </AirInfiltrationMeasurement>
90
+ </AirInfiltration>
91
+ <Attics>
92
+ <Attic>
93
+ <SystemIdentifier id='Attic1'/>
94
+ <AtticType>
95
+ <Attic>
96
+ <Vented>false</Vented>
97
+ </Attic>
98
+ </AtticType>
99
+ <WithinInfiltrationVolume>false</WithinInfiltrationVolume>
100
+ <AttachedToRoof idref='Roof1'/>
101
+ <AttachedToWall idref='Wall2'/>
102
+ <AttachedToFloor idref='Floor1'/>
103
+ </Attic>
104
+ </Attics>
105
+ <Foundations>
106
+ <Foundation>
107
+ <SystemIdentifier id='Foundation1'/>
108
+ <FoundationType>
109
+ <Basement>
110
+ <Conditioned>true</Conditioned>
111
+ </Basement>
112
+ </FoundationType>
113
+ <AttachedToRimJoist idref='RimJoist1'/>
114
+ <AttachedToFoundationWall idref='FoundationWall1'/>
115
+ <AttachedToSlab idref='Slab1'/>
116
+ </Foundation>
117
+ </Foundations>
118
+ <Roofs>
119
+ <Roof>
120
+ <SystemIdentifier id='Roof1'/>
121
+ <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
122
+ <Area>1509.4</Area>
123
+ <RoofType>asphalt or fiberglass shingles</RoofType>
124
+ <SolarAbsorptance>0.7</SolarAbsorptance>
125
+ <Emittance>0.92</Emittance>
126
+ <Pitch>6.0</Pitch>
127
+ <RadiantBarrier>false</RadiantBarrier>
128
+ <Insulation>
129
+ <SystemIdentifier id='Roof1Insulation'/>
130
+ <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
131
+ </Insulation>
132
+ </Roof>
133
+ </Roofs>
134
+ <RimJoists>
135
+ <RimJoist>
136
+ <SystemIdentifier id='RimJoist1'/>
137
+ <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
138
+ <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
139
+ <Area>115.6</Area>
140
+ <Siding>wood siding</Siding>
141
+ <SolarAbsorptance>0.7</SolarAbsorptance>
142
+ <Emittance>0.92</Emittance>
143
+ <Insulation>
144
+ <SystemIdentifier id='RimJoist1Insulation'/>
145
+ <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
146
+ </Insulation>
147
+ </RimJoist>
148
+ </RimJoists>
149
+ <Walls>
150
+ <Wall>
151
+ <SystemIdentifier id='Wall1'/>
152
+ <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
153
+ <InteriorAdjacentTo>living space</InteriorAdjacentTo>
154
+ <WallType>
155
+ <WoodStud/>
156
+ </WallType>
157
+ <Area>1200.0</Area>
158
+ <Siding>wood siding</Siding>
159
+ <SolarAbsorptance>0.7</SolarAbsorptance>
160
+ <Emittance>0.92</Emittance>
161
+ <InteriorFinish>
162
+ <Type>gypsum board</Type>
163
+ </InteriorFinish>
164
+ <Insulation>
165
+ <SystemIdentifier id='Wall1Insulation'/>
166
+ <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
167
+ </Insulation>
168
+ </Wall>
169
+ <Wall>
170
+ <SystemIdentifier id='Wall2'/>
171
+ <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
172
+ <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
173
+ <AtticWallType>gable</AtticWallType>
174
+ <WallType>
175
+ <WoodStud/>
176
+ </WallType>
177
+ <Area>225.0</Area>
178
+ <Siding>wood siding</Siding>
179
+ <SolarAbsorptance>0.7</SolarAbsorptance>
180
+ <Emittance>0.92</Emittance>
181
+ <Insulation>
182
+ <SystemIdentifier id='Wall2Insulation'/>
183
+ <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
184
+ </Insulation>
185
+ </Wall>
186
+ </Walls>
187
+ <FoundationWalls>
188
+ <FoundationWall>
189
+ <SystemIdentifier id='FoundationWall1'/>
190
+ <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
191
+ <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
192
+ <Height>8.0</Height>
193
+ <Area>1200.0</Area>
194
+ <Thickness>8.0</Thickness>
195
+ <DepthBelowGrade>7.0</DepthBelowGrade>
196
+ <InteriorFinish>
197
+ <Type>gypsum board</Type>
198
+ </InteriorFinish>
199
+ <Insulation>
200
+ <SystemIdentifier id='FoundationWall1Insulation'/>
201
+ <Layer>
202
+ <InstallationType>continuous - exterior</InstallationType>
203
+ <NominalRValue>8.9</NominalRValue>
204
+ <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
205
+ <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
206
+ </Layer>
207
+ <Layer>
208
+ <InstallationType>continuous - interior</InstallationType>
209
+ <NominalRValue>0.0</NominalRValue>
210
+ </Layer>
211
+ </Insulation>
212
+ </FoundationWall>
213
+ </FoundationWalls>
214
+ <Floors>
215
+ <Floor>
216
+ <SystemIdentifier id='Floor1'/>
217
+ <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
218
+ <InteriorAdjacentTo>living space</InteriorAdjacentTo>
219
+ <FloorOrCeiling>ceiling</FloorOrCeiling>
220
+ <FloorType>
221
+ <WoodFrame/>
222
+ </FloorType>
223
+ <Area>1350.0</Area>
224
+ <InteriorFinish>
225
+ <Type>gypsum board</Type>
226
+ </InteriorFinish>
227
+ <Insulation>
228
+ <SystemIdentifier id='Floor1Insulation'/>
229
+ <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
230
+ </Insulation>
231
+ </Floor>
232
+ </Floors>
233
+ <Slabs>
234
+ <Slab>
235
+ <SystemIdentifier id='Slab1'/>
236
+ <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
237
+ <Area>1350.0</Area>
238
+ <Thickness>4.0</Thickness>
239
+ <ExposedPerimeter>150.0</ExposedPerimeter>
240
+ <PerimeterInsulation>
241
+ <SystemIdentifier id='Slab1PerimeterInsulation'/>
242
+ <Layer>
243
+ <NominalRValue>0.0</NominalRValue>
244
+ <InsulationDepth>0.0</InsulationDepth>
245
+ </Layer>
246
+ </PerimeterInsulation>
247
+ <UnderSlabInsulation>
248
+ <SystemIdentifier id='Slab1UnderSlabInsulation'/>
249
+ <Layer>
250
+ <NominalRValue>0.0</NominalRValue>
251
+ <InsulationWidth>0.0</InsulationWidth>
252
+ </Layer>
253
+ </UnderSlabInsulation>
254
+ <extension>
255
+ <CarpetFraction>0.0</CarpetFraction>
256
+ <CarpetRValue>0.0</CarpetRValue>
257
+ </extension>
258
+ </Slab>
259
+ </Slabs>
260
+ <Windows>
261
+ <Window>
262
+ <SystemIdentifier id='Window1'/>
263
+ <Area>108.0</Area>
264
+ <Azimuth>0</Azimuth>
265
+ <UFactor>0.33</UFactor>
266
+ <SHGC>0.45</SHGC>
267
+ <InteriorShading>
268
+ <SystemIdentifier id='Window1InteriorShading'/>
269
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
270
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
271
+ </InteriorShading>
272
+ <FractionOperable>0.67</FractionOperable>
273
+ <AttachedToWall idref='Wall1'/>
274
+ </Window>
275
+ <Window>
276
+ <SystemIdentifier id='Window2'/>
277
+ <Area>72.0</Area>
278
+ <Azimuth>90</Azimuth>
279
+ <UFactor>0.33</UFactor>
280
+ <SHGC>0.45</SHGC>
281
+ <InteriorShading>
282
+ <SystemIdentifier id='Window2InteriorShading'/>
283
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
284
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
285
+ </InteriorShading>
286
+ <FractionOperable>0.67</FractionOperable>
287
+ <AttachedToWall idref='Wall1'/>
288
+ </Window>
289
+ <Window>
290
+ <SystemIdentifier id='Window3'/>
291
+ <Area>108.0</Area>
292
+ <Azimuth>180</Azimuth>
293
+ <UFactor>0.33</UFactor>
294
+ <SHGC>0.45</SHGC>
295
+ <InteriorShading>
296
+ <SystemIdentifier id='Window3InteriorShading'/>
297
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
298
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
299
+ </InteriorShading>
300
+ <FractionOperable>0.67</FractionOperable>
301
+ <AttachedToWall idref='Wall1'/>
302
+ </Window>
303
+ <Window>
304
+ <SystemIdentifier id='Window4'/>
305
+ <Area>72.0</Area>
306
+ <Azimuth>270</Azimuth>
307
+ <UFactor>0.33</UFactor>
308
+ <SHGC>0.45</SHGC>
309
+ <InteriorShading>
310
+ <SystemIdentifier id='Window4InteriorShading'/>
311
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
312
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
313
+ </InteriorShading>
314
+ <FractionOperable>0.67</FractionOperable>
315
+ <AttachedToWall idref='Wall1'/>
316
+ </Window>
317
+ </Windows>
318
+ <Doors>
319
+ <Door>
320
+ <SystemIdentifier id='Door1'/>
321
+ <AttachedToWall idref='Wall1'/>
322
+ <Area>40.0</Area>
323
+ <Azimuth>180</Azimuth>
324
+ <RValue>4.4</RValue>
325
+ </Door>
326
+ </Doors>
327
+ </Enclosure>
328
+ <Systems>
329
+ <HVAC>
330
+ <HVACPlant>
331
+ <PrimarySystems>
332
+ <PrimaryHeatingSystem idref='HeatingSystem1'/>
333
+ <PrimaryCoolingSystem idref='CoolingSystem1'/>
334
+ </PrimarySystems>
335
+ <HeatingSystem>
336
+ <SystemIdentifier id='HeatingSystem1'/>
337
+ <DistributionSystem idref='HVACDistribution1'/>
338
+ <HeatingSystemType>
339
+ <Furnace/>
340
+ </HeatingSystemType>
341
+ <HeatingSystemFuel>natural gas</HeatingSystemFuel>
342
+ <HeatingCapacity>36000.0</HeatingCapacity>
343
+ <AnnualHeatingEfficiency>
344
+ <Units>AFUE</Units>
345
+ <Value>0.92</Value>
346
+ </AnnualHeatingEfficiency>
347
+ <FractionHeatLoadServed>1.0</FractionHeatLoadServed>
348
+ </HeatingSystem>
349
+ <CoolingSystem>
350
+ <SystemIdentifier id='CoolingSystem1'/>
351
+ <DistributionSystem idref='HVACDistribution1'/>
352
+ <CoolingSystemType>central air conditioner</CoolingSystemType>
353
+ <CoolingSystemFuel>electricity</CoolingSystemFuel>
354
+ <CoolingCapacity>24000.0</CoolingCapacity>
355
+ <CompressorType>single stage</CompressorType>
356
+ <FractionCoolLoadServed>1.0</FractionCoolLoadServed>
357
+ <AnnualCoolingEfficiency>
358
+ <Units>SEER</Units>
359
+ <Value>13.0</Value>
360
+ </AnnualCoolingEfficiency>
361
+ <SensibleHeatFraction>0.73</SensibleHeatFraction>
362
+ </CoolingSystem>
363
+ </HVACPlant>
364
+ <HVACControl>
365
+ <SystemIdentifier id='HVACControl1'/>
366
+ <SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
367
+ <SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
368
+ </HVACControl>
369
+ <HVACDistribution>
370
+ <SystemIdentifier id='HVACDistribution1'/>
371
+ <DistributionSystemType>
372
+ <AirDistribution>
373
+ <AirDistributionType>regular velocity</AirDistributionType>
374
+ <DuctLeakageMeasurement>
375
+ <DuctType>supply</DuctType>
376
+ <DuctLeakage>
377
+ <Units>CFM25</Units>
378
+ <Value>75.0</Value>
379
+ <TotalOrToOutside>to outside</TotalOrToOutside>
380
+ </DuctLeakage>
381
+ </DuctLeakageMeasurement>
382
+ <DuctLeakageMeasurement>
383
+ <DuctType>return</DuctType>
384
+ <DuctLeakage>
385
+ <Units>CFM25</Units>
386
+ <Value>25.0</Value>
387
+ <TotalOrToOutside>to outside</TotalOrToOutside>
388
+ </DuctLeakage>
389
+ </DuctLeakageMeasurement>
390
+ <Ducts>
391
+ <SystemIdentifier id='Ducts1'/>
392
+ <DuctType>supply</DuctType>
393
+ <DuctInsulationRValue>4.0</DuctInsulationRValue>
394
+ <DuctLocation>attic - unvented</DuctLocation>
395
+ <DuctSurfaceArea>150.0</DuctSurfaceArea>
396
+ </Ducts>
397
+ <Ducts>
398
+ <SystemIdentifier id='Ducts2'/>
399
+ <DuctType>return</DuctType>
400
+ <DuctInsulationRValue>0.0</DuctInsulationRValue>
401
+ <DuctLocation>attic - unvented</DuctLocation>
402
+ <DuctSurfaceArea>50.0</DuctSurfaceArea>
403
+ </Ducts>
404
+ </AirDistribution>
405
+ </DistributionSystemType>
406
+ </HVACDistribution>
407
+ </HVAC>
408
+ <WaterHeating>
409
+ <WaterHeatingSystem>
410
+ <SystemIdentifier id='WaterHeatingSystem1'/>
411
+ <FuelType>electricity</FuelType>
412
+ <WaterHeaterType>storage water heater</WaterHeaterType>
413
+ <Location>living space</Location>
414
+ <TankVolume>40.0</TankVolume>
415
+ <FractionDHWLoadServed>1.0</FractionDHWLoadServed>
416
+ <HeatingCapacity>18767.0</HeatingCapacity>
417
+ <EnergyFactor>0.95</EnergyFactor>
418
+ <HotWaterTemperature>125.0</HotWaterTemperature>
419
+ </WaterHeatingSystem>
420
+ <HotWaterDistribution>
421
+ <SystemIdentifier id='HotWaterDistribution1'/>
422
+ <SystemType>
423
+ <Standard>
424
+ <PipingLength>50.0</PipingLength>
425
+ </Standard>
426
+ </SystemType>
427
+ <PipeInsulation>
428
+ <PipeRValue>0.0</PipeRValue>
429
+ </PipeInsulation>
430
+ </HotWaterDistribution>
431
+ <WaterFixture>
432
+ <SystemIdentifier id='WaterFixture1'/>
433
+ <WaterFixtureType>shower head</WaterFixtureType>
434
+ <LowFlow>true</LowFlow>
435
+ </WaterFixture>
436
+ <WaterFixture>
437
+ <SystemIdentifier id='WaterFixture2'/>
438
+ <WaterFixtureType>faucet</WaterFixtureType>
439
+ <LowFlow>false</LowFlow>
440
+ </WaterFixture>
441
+ <extension>
442
+ <WaterFixturesWeekdayScheduleFractions>0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026</WaterFixturesWeekdayScheduleFractions>
443
+ <WaterFixturesWeekendScheduleFractions>0.012, 0.006, 0.004, 0.005, 0.010, 0.034, 0.078, 0.087, 0.080, 0.067, 0.056, 0.047, 0.040, 0.035, 0.033, 0.031, 0.039, 0.051, 0.060, 0.060, 0.055, 0.048, 0.038, 0.026</WaterFixturesWeekendScheduleFractions>
444
+ <WaterFixturesMonthlyScheduleMultipliers>1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0</WaterFixturesMonthlyScheduleMultipliers>
445
+ </extension>
446
+ </WaterHeating>
447
+ </Systems>
448
+ <Appliances>
449
+ <ClothesWasher>
450
+ <SystemIdentifier id='ClothesWasher1'/>
451
+ <Location>living space</Location>
452
+ <IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
453
+ <RatedAnnualkWh>380.0</RatedAnnualkWh>
454
+ <LabelElectricRate>0.12</LabelElectricRate>
455
+ <LabelGasRate>1.09</LabelGasRate>
456
+ <LabelAnnualGasCost>27.0</LabelAnnualGasCost>
457
+ <LabelUsage>6.0</LabelUsage>
458
+ <Capacity>3.2</Capacity>
459
+ <extension>
460
+ <WeekdayScheduleFractions>0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017</WeekdayScheduleFractions>
461
+ <WeekendScheduleFractions>0.009, 0.007, 0.004, 0.004, 0.007, 0.011, 0.022, 0.049, 0.073, 0.086, 0.084, 0.075, 0.067, 0.060, 0.049, 0.052, 0.050, 0.049, 0.049, 0.049, 0.049, 0.047, 0.032, 0.017</WeekendScheduleFractions>
462
+ <MonthlyScheduleMultipliers>1.011, 1.002, 1.022, 1.020, 1.022, 0.996, 0.999, 0.999, 0.996, 0.964, 0.959, 1.011</MonthlyScheduleMultipliers>
463
+ </extension>
464
+ </ClothesWasher>
465
+ <ClothesDryer>
466
+ <SystemIdentifier id='ClothesDryer1'/>
467
+ <Location>living space</Location>
468
+ <FuelType>electricity</FuelType>
469
+ <CombinedEnergyFactor>3.73</CombinedEnergyFactor>
470
+ <Vented>true</Vented>
471
+ <VentedFlowRate>150.0</VentedFlowRate>
472
+ <extension>
473
+ <WeekdayScheduleFractions>0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024</WeekdayScheduleFractions>
474
+ <WeekendScheduleFractions>0.010, 0.006, 0.004, 0.002, 0.004, 0.006, 0.016, 0.032, 0.048, 0.068, 0.078, 0.081, 0.074, 0.067, 0.057, 0.061, 0.055, 0.054, 0.051, 0.051, 0.052, 0.054, 0.044, 0.024</WeekendScheduleFractions>
475
+ <MonthlyScheduleMultipliers>1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0</MonthlyScheduleMultipliers>
476
+ </extension>
477
+ </ClothesDryer>
478
+ <Dishwasher>
479
+ <SystemIdentifier id='Dishwasher1'/>
480
+ <Location>living space</Location>
481
+ <RatedAnnualkWh>307.0</RatedAnnualkWh>
482
+ <PlaceSettingCapacity>12</PlaceSettingCapacity>
483
+ <LabelElectricRate>0.12</LabelElectricRate>
484
+ <LabelGasRate>1.09</LabelGasRate>
485
+ <LabelAnnualGasCost>22.32</LabelAnnualGasCost>
486
+ <LabelUsage>4.0</LabelUsage>
487
+ <extension>
488
+ <WeekdayScheduleFractions>0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031</WeekdayScheduleFractions>
489
+ <WeekendScheduleFractions>0.015, 0.007, 0.005, 0.003, 0.003, 0.010, 0.020, 0.031, 0.058, 0.065, 0.056, 0.048, 0.041, 0.046, 0.036, 0.038, 0.038, 0.049, 0.087, 0.111, 0.090, 0.067, 0.044, 0.031</WeekendScheduleFractions>
490
+ <MonthlyScheduleMultipliers>1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097</MonthlyScheduleMultipliers>
491
+ </extension>
492
+ </Dishwasher>
493
+ <Refrigerator>
494
+ <SystemIdentifier id='Refrigerator1'/>
495
+ <Location>living space</Location>
496
+ <RatedAnnualkWh>650.0</RatedAnnualkWh>
497
+ <PrimaryIndicator>true</PrimaryIndicator>
498
+ <extension>
499
+ <WeekdayScheduleFractions>0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041</WeekdayScheduleFractions>
500
+ <WeekendScheduleFractions>0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041</WeekendScheduleFractions>
501
+ <MonthlyScheduleMultipliers>0.837, 0.835, 1.084, 1.084, 1.084, 1.096, 1.096, 1.096, 1.096, 0.931, 0.925, 0.837</MonthlyScheduleMultipliers>
502
+ </extension>
503
+ </Refrigerator>
504
+ <CookingRange>
505
+ <SystemIdentifier id='CookingRange1'/>
506
+ <Location>living space</Location>
507
+ <FuelType>electricity</FuelType>
508
+ <IsInduction>false</IsInduction>
509
+ <extension>
510
+ <WeekdayScheduleFractions>0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011</WeekdayScheduleFractions>
511
+ <WeekendScheduleFractions>0.007, 0.007, 0.004, 0.004, 0.007, 0.011, 0.025, 0.042, 0.046, 0.048, 0.042, 0.050, 0.057, 0.046, 0.057, 0.044, 0.092, 0.150, 0.117, 0.060, 0.035, 0.025, 0.016, 0.011</WeekendScheduleFractions>
512
+ <MonthlyScheduleMultipliers>1.097, 1.097, 0.991, 0.987, 0.991, 0.890, 0.896, 0.896, 0.890, 1.085, 1.085, 1.097</MonthlyScheduleMultipliers>
513
+ </extension>
514
+ </CookingRange>
515
+ <Oven>
516
+ <SystemIdentifier id='Oven1'/>
517
+ <IsConvection>false</IsConvection>
518
+ </Oven>
519
+ </Appliances>
520
+ <Lighting>
521
+ <LightingGroup>
522
+ <SystemIdentifier id='LightingGroup1'/>
523
+ <Location>interior</Location>
524
+ <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
525
+ <LightingType>
526
+ <CompactFluorescent/>
527
+ </LightingType>
528
+ </LightingGroup>
529
+ <LightingGroup>
530
+ <SystemIdentifier id='LightingGroup2'/>
531
+ <Location>exterior</Location>
532
+ <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
533
+ <LightingType>
534
+ <CompactFluorescent/>
535
+ </LightingType>
536
+ </LightingGroup>
537
+ <LightingGroup>
538
+ <SystemIdentifier id='LightingGroup3'/>
539
+ <Location>garage</Location>
540
+ <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
541
+ <LightingType>
542
+ <CompactFluorescent/>
543
+ </LightingType>
544
+ </LightingGroup>
545
+ <LightingGroup>
546
+ <SystemIdentifier id='LightingGroup4'/>
547
+ <Location>interior</Location>
548
+ <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
549
+ <LightingType>
550
+ <FluorescentTube/>
551
+ </LightingType>
552
+ </LightingGroup>
553
+ <LightingGroup>
554
+ <SystemIdentifier id='LightingGroup5'/>
555
+ <Location>exterior</Location>
556
+ <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
557
+ <LightingType>
558
+ <FluorescentTube/>
559
+ </LightingType>
560
+ </LightingGroup>
561
+ <LightingGroup>
562
+ <SystemIdentifier id='LightingGroup6'/>
563
+ <Location>garage</Location>
564
+ <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
565
+ <LightingType>
566
+ <FluorescentTube/>
567
+ </LightingType>
568
+ </LightingGroup>
569
+ <LightingGroup>
570
+ <SystemIdentifier id='LightingGroup7'/>
571
+ <Location>interior</Location>
572
+ <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
573
+ <LightingType>
574
+ <LightEmittingDiode/>
575
+ </LightingType>
576
+ </LightingGroup>
577
+ <LightingGroup>
578
+ <SystemIdentifier id='LightingGroup8'/>
579
+ <Location>exterior</Location>
580
+ <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
581
+ <LightingType>
582
+ <LightEmittingDiode/>
583
+ </LightingType>
584
+ </LightingGroup>
585
+ <LightingGroup>
586
+ <SystemIdentifier id='LightingGroup9'/>
587
+ <Location>garage</Location>
588
+ <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
589
+ <LightingType>
590
+ <LightEmittingDiode/>
591
+ </LightingType>
592
+ </LightingGroup>
593
+ <extension>
594
+ <InteriorWeekdayScheduleFractions>0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249</InteriorWeekdayScheduleFractions>
595
+ <InteriorWeekendScheduleFractions>0.124, 0.074, 0.050, 0.050, 0.053, 0.140, 0.330, 0.420, 0.430, 0.424, 0.411, 0.394, 0.382, 0.378, 0.378, 0.379, 0.386, 0.412, 0.484, 0.619, 0.783, 0.880, 0.597, 0.249</InteriorWeekendScheduleFractions>
596
+ <InteriorMonthlyScheduleMultipliers>1.075, 1.064951905, 1.0375, 1.0, 0.9625, 0.935048095, 0.925, 0.935048095, 0.9625, 1.0, 1.0375, 1.064951905</InteriorMonthlyScheduleMultipliers>
597
+ <GarageWeekdayScheduleFractions>0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063</GarageWeekdayScheduleFractions>
598
+ <GarageWeekendScheduleFractions>0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059</GarageWeekendScheduleFractions>
599
+ <GarageMonthlyScheduleMultipliers>1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248</GarageMonthlyScheduleMultipliers>
600
+ <ExteriorWeekdayScheduleFractions>0.046, 0.046, 0.046, 0.046, 0.046, 0.037, 0.035, 0.034, 0.033, 0.028, 0.022, 0.015, 0.012, 0.011, 0.011, 0.012, 0.019, 0.037, 0.049, 0.065, 0.091, 0.105, 0.091, 0.063</ExteriorWeekdayScheduleFractions>
601
+ <ExteriorWeekendScheduleFractions>0.046, 0.046, 0.045, 0.045, 0.046, 0.045, 0.044, 0.041, 0.036, 0.03, 0.024, 0.016, 0.012, 0.011, 0.011, 0.012, 0.019, 0.038, 0.048, 0.06, 0.083, 0.098, 0.085, 0.059</ExteriorWeekendScheduleFractions>
602
+ <ExteriorMonthlyScheduleMultipliers>1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248</ExteriorMonthlyScheduleMultipliers>
603
+ </extension>
604
+ </Lighting>
605
+ <MiscLoads>
606
+ <PlugLoad>
607
+ <SystemIdentifier id='PlugLoad1'/>
608
+ <PlugLoadType>TV other</PlugLoadType>
609
+ <Load>
610
+ <Units>kWh/year</Units>
611
+ <Value>620.0</Value>
612
+ </Load>
613
+ <extension>
614
+ <WeekdayScheduleFractions>0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07</WeekdayScheduleFractions>
615
+ <WeekendScheduleFractions>0.045, 0.019, 0.01, 0.001, 0.001, 0.001, 0.005, 0.009, 0.018, 0.026, 0.032, 0.038, 0.04, 0.041, 0.043, 0.045, 0.05, 0.055, 0.07, 0.085, 0.097, 0.108, 0.089, 0.07</WeekendScheduleFractions>
616
+ <MonthlyScheduleMultipliers>1.137, 1.129, 0.961, 0.969, 0.961, 0.993, 0.996, 0.96, 0.993, 0.867, 0.86, 1.137</MonthlyScheduleMultipliers>
617
+ </extension>
618
+ </PlugLoad>
619
+ <PlugLoad>
620
+ <SystemIdentifier id='PlugLoad2'/>
621
+ <PlugLoadType>other</PlugLoadType>
622
+ <Load>
623
+ <Units>kWh/year</Units>
624
+ <Value>2457.0</Value>
625
+ </Load>
626
+ <extension>
627
+ <FracSensible>0.855</FracSensible>
628
+ <FracLatent>0.045</FracLatent>
629
+ <WeekdayScheduleFractions>0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036</WeekdayScheduleFractions>
630
+ <WeekendScheduleFractions>0.035, 0.033, 0.032, 0.031, 0.032, 0.033, 0.037, 0.042, 0.043, 0.043, 0.043, 0.044, 0.045, 0.045, 0.044, 0.046, 0.048, 0.052, 0.053, 0.05, 0.047, 0.045, 0.04, 0.036</WeekendScheduleFractions>
631
+ <MonthlyScheduleMultipliers>1.248, 1.257, 0.993, 0.989, 0.993, 0.827, 0.821, 0.821, 0.827, 0.99, 0.987, 1.248</MonthlyScheduleMultipliers>
632
+ </extension>
633
+ </PlugLoad>
634
+ </MiscLoads>
635
+ </BuildingDetails>
636
+ </Building>
626
637
  </HPXML>