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,1678 +1,1701 @@
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
- </BuildingOccupancy>
45
- <BuildingConstruction>
46
- <ResidentialFacilityType>single-family detached</ResidentialFacilityType>
47
- <NumberofConditionedFloors>2.0</NumberofConditionedFloors>
48
- <NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
49
- <AverageCeilingHeight>8.0</AverageCeilingHeight>
50
- <NumberofBedrooms>3</NumberofBedrooms>
51
- <NumberofBathrooms>2</NumberofBathrooms>
52
- <ConditionedFloorArea>2700.0</ConditionedFloorArea>
53
- <ConditionedBuildingVolume>21600.0</ConditionedBuildingVolume>
54
- </BuildingConstruction>
55
- </BuildingSummary>
56
- <ClimateandRiskZones>
57
- <ClimateZoneIECC>
58
- <Year>2006</Year>
59
- <ClimateZone>5B</ClimateZone>
60
- </ClimateZoneIECC>
61
- <WeatherStation>
62
- <SystemIdentifier id='WeatherStation'/>
63
- <Name>USA_CO_Denver.Intl.AP.725650_TMY3</Name>
64
- <extension>
65
- <EPWFilePath>USA_CO_Denver.Intl.AP.725650_TMY3.epw</EPWFilePath>
66
- </extension>
67
- </WeatherStation>
68
- </ClimateandRiskZones>
69
- <Enclosure>
70
- <AirInfiltration>
71
- <AirInfiltrationMeasurement>
72
- <SystemIdentifier id='AirInfiltrationMeasurement1'/>
73
- <HousePressure>50.0</HousePressure>
74
- <BuildingAirLeakage>
75
- <UnitofMeasure>ACH</UnitofMeasure>
76
- <AirLeakage>3.0</AirLeakage>
77
- </BuildingAirLeakage>
78
- <InfiltrationVolume>21600.0</InfiltrationVolume>
79
- </AirInfiltrationMeasurement>
80
- </AirInfiltration>
81
- <Attics>
82
- <Attic>
83
- <SystemIdentifier id='Attic1'/>
84
- <AtticType>
85
- <Attic>
86
- <Vented>false</Vented>
87
- </Attic>
88
- </AtticType>
89
- <WithinInfiltrationVolume>false</WithinInfiltrationVolume>
90
- <AttachedToRoof idref='Roof1'/>
91
- <AttachedToWall idref='Wall2'/>
92
- <AttachedToFrameFloor idref='FrameFloor1'/>
93
- </Attic>
94
- </Attics>
95
- <Foundations>
96
- <Foundation>
97
- <SystemIdentifier id='Foundation1'/>
98
- <FoundationType>
99
- <Basement>
100
- <Conditioned>true</Conditioned>
101
- </Basement>
102
- </FoundationType>
103
- <AttachedToRimJoist idref='RimJoist1'/>
104
- <AttachedToFoundationWall idref='FoundationWall1'/>
105
- <AttachedToSlab idref='Slab1'/>
106
- </Foundation>
107
- </Foundations>
108
- <Roofs>
109
- <Roof>
110
- <SystemIdentifier id='Roof1'/>
111
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
112
- <Area>1509.4</Area>
113
- <RoofType>asphalt or fiberglass shingles</RoofType>
114
- <SolarAbsorptance>0.7</SolarAbsorptance>
115
- <Emittance>0.92</Emittance>
116
- <Pitch>6.0</Pitch>
117
- <RadiantBarrier>false</RadiantBarrier>
118
- <Insulation>
119
- <SystemIdentifier id='Roof1Insulation'/>
120
- <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
121
- </Insulation>
122
- </Roof>
123
- </Roofs>
124
- <RimJoists>
125
- <RimJoist>
126
- <SystemIdentifier id='RimJoist1'/>
127
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
128
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
129
- <Area>115.6</Area>
130
- <Siding>wood siding</Siding>
131
- <SolarAbsorptance>0.7</SolarAbsorptance>
132
- <Emittance>0.92</Emittance>
133
- <Insulation>
134
- <SystemIdentifier id='RimJoist1Insulation'/>
135
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
136
- </Insulation>
137
- </RimJoist>
138
- </RimJoists>
139
- <Walls>
140
- <Wall>
141
- <SystemIdentifier id='Wall1'/>
142
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
143
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
144
- <WallType>
145
- <WoodStud/>
146
- </WallType>
147
- <Area>1200.0</Area>
148
- <Siding>wood siding</Siding>
149
- <SolarAbsorptance>0.7</SolarAbsorptance>
150
- <Emittance>0.92</Emittance>
151
- <InteriorFinish>
152
- <Type>gypsum board</Type>
153
- </InteriorFinish>
154
- <Insulation>
155
- <SystemIdentifier id='Wall1Insulation'/>
156
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
157
- </Insulation>
158
- </Wall>
159
- <Wall>
160
- <SystemIdentifier id='Wall2'/>
161
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
162
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
163
- <AtticWallType>gable</AtticWallType>
164
- <WallType>
165
- <WoodStud/>
166
- </WallType>
167
- <Area>225.0</Area>
168
- <Siding>wood siding</Siding>
169
- <SolarAbsorptance>0.7</SolarAbsorptance>
170
- <Emittance>0.92</Emittance>
171
- <Insulation>
172
- <SystemIdentifier id='Wall2Insulation'/>
173
- <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
174
- </Insulation>
175
- </Wall>
176
- </Walls>
177
- <FoundationWalls>
178
- <FoundationWall>
179
- <SystemIdentifier id='FoundationWall1'/>
180
- <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
181
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
182
- <Height>8.0</Height>
183
- <Area>1200.0</Area>
184
- <Thickness>8.0</Thickness>
185
- <DepthBelowGrade>7.0</DepthBelowGrade>
186
- <InteriorFinish>
187
- <Type>gypsum board</Type>
188
- </InteriorFinish>
189
- <Insulation>
190
- <SystemIdentifier id='FoundationWall1Insulation'/>
191
- <Layer>
192
- <InstallationType>continuous - exterior</InstallationType>
193
- <NominalRValue>8.9</NominalRValue>
194
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
195
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
196
- </Layer>
197
- <Layer>
198
- <InstallationType>continuous - interior</InstallationType>
199
- <NominalRValue>0.0</NominalRValue>
200
- </Layer>
201
- </Insulation>
202
- </FoundationWall>
203
- </FoundationWalls>
204
- <FrameFloors>
205
- <FrameFloor>
206
- <SystemIdentifier id='FrameFloor1'/>
207
- <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
208
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
209
- <Area>1350.0</Area>
210
- <InteriorFinish>
211
- <Type>gypsum board</Type>
212
- </InteriorFinish>
213
- <Insulation>
214
- <SystemIdentifier id='FrameFloor1Insulation'/>
215
- <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
216
- </Insulation>
217
- </FrameFloor>
218
- </FrameFloors>
219
- <Slabs>
220
- <Slab>
221
- <SystemIdentifier id='Slab1'/>
222
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
223
- <Area>1350.0</Area>
224
- <Thickness>4.0</Thickness>
225
- <ExposedPerimeter>150.0</ExposedPerimeter>
226
- <PerimeterInsulation>
227
- <SystemIdentifier id='Slab1PerimeterInsulation'/>
228
- <Layer>
229
- <NominalRValue>0.0</NominalRValue>
230
- <InsulationDepth>0.0</InsulationDepth>
231
- </Layer>
232
- </PerimeterInsulation>
233
- <UnderSlabInsulation>
234
- <SystemIdentifier id='Slab1UnderSlabInsulation'/>
235
- <Layer>
236
- <NominalRValue>0.0</NominalRValue>
237
- <InsulationWidth>0.0</InsulationWidth>
238
- </Layer>
239
- </UnderSlabInsulation>
240
- <extension>
241
- <CarpetFraction>0.0</CarpetFraction>
242
- <CarpetRValue>0.0</CarpetRValue>
243
- </extension>
244
- </Slab>
245
- </Slabs>
246
- <Windows>
247
- <Window>
248
- <SystemIdentifier id='Window1'/>
249
- <Area>108.0</Area>
250
- <Azimuth>0</Azimuth>
251
- <UFactor>0.33</UFactor>
252
- <SHGC>0.45</SHGC>
253
- <InteriorShading>
254
- <SystemIdentifier id='Window1InteriorShading'/>
255
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
256
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
257
- </InteriorShading>
258
- <FractionOperable>0.67</FractionOperable>
259
- <AttachedToWall idref='Wall1'/>
260
- </Window>
261
- <Window>
262
- <SystemIdentifier id='Window2'/>
263
- <Area>72.0</Area>
264
- <Azimuth>90</Azimuth>
265
- <UFactor>0.33</UFactor>
266
- <SHGC>0.45</SHGC>
267
- <InteriorShading>
268
- <SystemIdentifier id='Window2InteriorShading'/>
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='Window3'/>
277
- <Area>108.0</Area>
278
- <Azimuth>180</Azimuth>
279
- <UFactor>0.33</UFactor>
280
- <SHGC>0.45</SHGC>
281
- <InteriorShading>
282
- <SystemIdentifier id='Window3InteriorShading'/>
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='Window4'/>
291
- <Area>72.0</Area>
292
- <Azimuth>270</Azimuth>
293
- <UFactor>0.33</UFactor>
294
- <SHGC>0.45</SHGC>
295
- <InteriorShading>
296
- <SystemIdentifier id='Window4InteriorShading'/>
297
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
298
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
299
- </InteriorShading>
300
- <FractionOperable>0.67</FractionOperable>
301
- <AttachedToWall idref='Wall1'/>
302
- </Window>
303
- </Windows>
304
- <Doors>
305
- <Door>
306
- <SystemIdentifier id='Door1'/>
307
- <AttachedToWall idref='Wall1'/>
308
- <Area>40.0</Area>
309
- <Azimuth>180</Azimuth>
310
- <RValue>4.4</RValue>
311
- </Door>
312
- </Doors>
313
- </Enclosure>
314
- <Systems>
315
- <HVAC>
316
- <HVACPlant>
317
- <PrimarySystems>
318
- <PrimaryHeatingSystem idref='HeatingSystem1'/>
319
- <PrimaryCoolingSystem idref='CoolingSystem1'/>
320
- </PrimarySystems>
321
- <HeatingSystem>
322
- <SystemIdentifier id='HeatingSystem1'/>
323
- <DistributionSystem idref='HVACDistribution1'/>
324
- <HeatingSystemType>
325
- <Furnace/>
326
- </HeatingSystemType>
327
- <HeatingSystemFuel>natural gas</HeatingSystemFuel>
328
- <HeatingCapacity>36000.0</HeatingCapacity>
329
- <AnnualHeatingEfficiency>
330
- <Units>AFUE</Units>
331
- <Value>0.92</Value>
332
- </AnnualHeatingEfficiency>
333
- <FractionHeatLoadServed>1.0</FractionHeatLoadServed>
334
- </HeatingSystem>
335
- <CoolingSystem>
336
- <SystemIdentifier id='CoolingSystem1'/>
337
- <DistributionSystem idref='HVACDistribution1'/>
338
- <CoolingSystemType>central air conditioner</CoolingSystemType>
339
- <CoolingSystemFuel>electricity</CoolingSystemFuel>
340
- <CoolingCapacity>24000.0</CoolingCapacity>
341
- <CompressorType>single stage</CompressorType>
342
- <FractionCoolLoadServed>1.0</FractionCoolLoadServed>
343
- <AnnualCoolingEfficiency>
344
- <Units>SEER</Units>
345
- <Value>13.0</Value>
346
- </AnnualCoolingEfficiency>
347
- <SensibleHeatFraction>0.73</SensibleHeatFraction>
348
- </CoolingSystem>
349
- </HVACPlant>
350
- <HVACControl>
351
- <SystemIdentifier id='HVACControl1'/>
352
- <SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
353
- <SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
354
- </HVACControl>
355
- <HVACDistribution>
356
- <SystemIdentifier id='HVACDistribution1'/>
357
- <DistributionSystemType>
358
- <AirDistribution>
359
- <AirDistributionType>regular velocity</AirDistributionType>
360
- <DuctLeakageMeasurement>
361
- <DuctType>supply</DuctType>
362
- <DuctLeakage>
363
- <Units>CFM25</Units>
364
- <Value>75.0</Value>
365
- <TotalOrToOutside>to outside</TotalOrToOutside>
366
- </DuctLeakage>
367
- </DuctLeakageMeasurement>
368
- <DuctLeakageMeasurement>
369
- <DuctType>return</DuctType>
370
- <DuctLeakage>
371
- <Units>CFM25</Units>
372
- <Value>25.0</Value>
373
- <TotalOrToOutside>to outside</TotalOrToOutside>
374
- </DuctLeakage>
375
- </DuctLeakageMeasurement>
376
- <Ducts>
377
- <DuctType>supply</DuctType>
378
- <DuctInsulationRValue>4.0</DuctInsulationRValue>
379
- <DuctLocation>attic - unvented</DuctLocation>
380
- <DuctSurfaceArea>150.0</DuctSurfaceArea>
381
- </Ducts>
382
- <Ducts>
383
- <DuctType>return</DuctType>
384
- <DuctInsulationRValue>0.0</DuctInsulationRValue>
385
- <DuctLocation>attic - unvented</DuctLocation>
386
- <DuctSurfaceArea>50.0</DuctSurfaceArea>
387
- </Ducts>
388
- </AirDistribution>
389
- </DistributionSystemType>
390
- </HVACDistribution>
391
- </HVAC>
392
- <WaterHeating>
393
- <WaterHeatingSystem>
394
- <SystemIdentifier id='WaterHeatingSystem1'/>
395
- <FuelType>electricity</FuelType>
396
- <WaterHeaterType>storage water heater</WaterHeaterType>
397
- <Location>living space</Location>
398
- <TankVolume>40.0</TankVolume>
399
- <FractionDHWLoadServed>1.0</FractionDHWLoadServed>
400
- <HeatingCapacity>18767.0</HeatingCapacity>
401
- <EnergyFactor>0.95</EnergyFactor>
402
- <HotWaterTemperature>125.0</HotWaterTemperature>
403
- </WaterHeatingSystem>
404
- <HotWaterDistribution>
405
- <SystemIdentifier id='HotWaterDistribution1'/>
406
- <SystemType>
407
- <Standard>
408
- <PipingLength>50.0</PipingLength>
409
- </Standard>
410
- </SystemType>
411
- <PipeInsulation>
412
- <PipeRValue>0.0</PipeRValue>
413
- </PipeInsulation>
414
- </HotWaterDistribution>
415
- <WaterFixture>
416
- <SystemIdentifier id='WaterFixture1'/>
417
- <WaterFixtureType>shower head</WaterFixtureType>
418
- <LowFlow>true</LowFlow>
419
- </WaterFixture>
420
- <WaterFixture>
421
- <SystemIdentifier id='WaterFixture2'/>
422
- <WaterFixtureType>faucet</WaterFixtureType>
423
- <LowFlow>false</LowFlow>
424
- </WaterFixture>
425
- </WaterHeating>
426
- </Systems>
427
- <Appliances>
428
- <ClothesWasher>
429
- <SystemIdentifier id='ClothesWasher1'/>
430
- <Location>living space</Location>
431
- <IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
432
- <RatedAnnualkWh>380.0</RatedAnnualkWh>
433
- <LabelElectricRate>0.12</LabelElectricRate>
434
- <LabelGasRate>1.09</LabelGasRate>
435
- <LabelAnnualGasCost>27.0</LabelAnnualGasCost>
436
- <LabelUsage>6.0</LabelUsage>
437
- <Capacity>3.2</Capacity>
438
- </ClothesWasher>
439
- <ClothesDryer>
440
- <SystemIdentifier id='ClothesDryer1'/>
441
- <Location>living space</Location>
442
- <FuelType>electricity</FuelType>
443
- <CombinedEnergyFactor>3.73</CombinedEnergyFactor>
444
- <Vented>true</Vented>
445
- <VentedFlowRate>150.0</VentedFlowRate>
446
- </ClothesDryer>
447
- <Dishwasher>
448
- <SystemIdentifier id='Dishwasher1'/>
449
- <Location>living space</Location>
450
- <RatedAnnualkWh>307.0</RatedAnnualkWh>
451
- <PlaceSettingCapacity>12</PlaceSettingCapacity>
452
- <LabelElectricRate>0.12</LabelElectricRate>
453
- <LabelGasRate>1.09</LabelGasRate>
454
- <LabelAnnualGasCost>22.32</LabelAnnualGasCost>
455
- <LabelUsage>4.0</LabelUsage>
456
- </Dishwasher>
457
- <Refrigerator>
458
- <SystemIdentifier id='Refrigerator1'/>
459
- <Location>living space</Location>
460
- <RatedAnnualkWh>650.0</RatedAnnualkWh>
461
- <PrimaryIndicator>true</PrimaryIndicator>
462
- </Refrigerator>
463
- <CookingRange>
464
- <SystemIdentifier id='CookingRange1'/>
465
- <Location>living space</Location>
466
- <FuelType>electricity</FuelType>
467
- <IsInduction>false</IsInduction>
468
- </CookingRange>
469
- <Oven>
470
- <SystemIdentifier id='Oven1'/>
471
- <IsConvection>false</IsConvection>
472
- </Oven>
473
- </Appliances>
474
- <Lighting>
475
- <LightingGroup>
476
- <SystemIdentifier id='LightingGroup1'/>
477
- <Location>interior</Location>
478
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
479
- <LightingType>
480
- <CompactFluorescent/>
481
- </LightingType>
482
- </LightingGroup>
483
- <LightingGroup>
484
- <SystemIdentifier id='LightingGroup2'/>
485
- <Location>exterior</Location>
486
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
487
- <LightingType>
488
- <CompactFluorescent/>
489
- </LightingType>
490
- </LightingGroup>
491
- <LightingGroup>
492
- <SystemIdentifier id='LightingGroup3'/>
493
- <Location>garage</Location>
494
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
495
- <LightingType>
496
- <CompactFluorescent/>
497
- </LightingType>
498
- </LightingGroup>
499
- <LightingGroup>
500
- <SystemIdentifier id='LightingGroup4'/>
501
- <Location>interior</Location>
502
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
503
- <LightingType>
504
- <FluorescentTube/>
505
- </LightingType>
506
- </LightingGroup>
507
- <LightingGroup>
508
- <SystemIdentifier id='LightingGroup5'/>
509
- <Location>exterior</Location>
510
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
511
- <LightingType>
512
- <FluorescentTube/>
513
- </LightingType>
514
- </LightingGroup>
515
- <LightingGroup>
516
- <SystemIdentifier id='LightingGroup6'/>
517
- <Location>garage</Location>
518
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
519
- <LightingType>
520
- <FluorescentTube/>
521
- </LightingType>
522
- </LightingGroup>
523
- <LightingGroup>
524
- <SystemIdentifier id='LightingGroup7'/>
525
- <Location>interior</Location>
526
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
527
- <LightingType>
528
- <LightEmittingDiode/>
529
- </LightingType>
530
- </LightingGroup>
531
- <LightingGroup>
532
- <SystemIdentifier id='LightingGroup8'/>
533
- <Location>exterior</Location>
534
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
535
- <LightingType>
536
- <LightEmittingDiode/>
537
- </LightingType>
538
- </LightingGroup>
539
- <LightingGroup>
540
- <SystemIdentifier id='LightingGroup9'/>
541
- <Location>garage</Location>
542
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
543
- <LightingType>
544
- <LightEmittingDiode/>
545
- </LightingType>
546
- </LightingGroup>
547
- </Lighting>
548
- <MiscLoads>
549
- <PlugLoad>
550
- <SystemIdentifier id='PlugLoad1'/>
551
- <PlugLoadType>TV other</PlugLoadType>
552
- <Load>
553
- <Units>kWh/year</Units>
554
- <Value>620.0</Value>
555
- </Load>
556
- </PlugLoad>
557
- <PlugLoad>
558
- <SystemIdentifier id='PlugLoad2'/>
559
- <PlugLoadType>other</PlugLoadType>
560
- <Load>
561
- <Units>kWh/year</Units>
562
- <Value>2457.0</Value>
563
- </Load>
564
- <extension>
565
- <FracSensible>0.855</FracSensible>
566
- <FracLatent>0.045</FracLatent>
567
- </extension>
568
- </PlugLoad>
569
- </MiscLoads>
570
- </BuildingDetails>
571
- </Building>
572
- <Building>
573
- <BuildingID id='MyBuilding_2'/>
574
- <Site>
575
- <SiteID id='SiteID_2'/>
576
- <Address>
577
- <StateCode>CO</StateCode>
578
- </Address>
579
- </Site>
580
- <ProjectStatus>
581
- <EventType>proposed workscope</EventType>
582
- </ProjectStatus>
583
- <BuildingDetails>
584
- <BuildingSummary>
585
- <Site>
586
- <SiteType>suburban</SiteType>
587
- <Surroundings>stand-alone</Surroundings>
588
- <VerticalSurroundings>no units above or below</VerticalSurroundings>
589
- <AzimuthOfFrontOfHome>180</AzimuthOfFrontOfHome>
590
- <FuelTypesAvailable>
591
- <Fuel>electricity</Fuel>
592
- <Fuel>natural gas</Fuel>
593
- </FuelTypesAvailable>
594
- </Site>
595
- <BuildingOccupancy>
596
- <NumberofResidents>3.0</NumberofResidents>
597
- </BuildingOccupancy>
598
- <BuildingConstruction>
599
- <ResidentialFacilityType>single-family detached</ResidentialFacilityType>
600
- <NumberofConditionedFloors>2.0</NumberofConditionedFloors>
601
- <NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
602
- <AverageCeilingHeight>8.0</AverageCeilingHeight>
603
- <NumberofBedrooms>3</NumberofBedrooms>
604
- <NumberofBathrooms>2</NumberofBathrooms>
605
- <ConditionedFloorArea>2700.0</ConditionedFloorArea>
606
- <ConditionedBuildingVolume>21600.0</ConditionedBuildingVolume>
607
- </BuildingConstruction>
608
- </BuildingSummary>
609
- <ClimateandRiskZones>
610
- <ClimateZoneIECC>
611
- <Year>2006</Year>
612
- <ClimateZone>5B</ClimateZone>
613
- </ClimateZoneIECC>
614
- <WeatherStation>
615
- <SystemIdentifier id='WeatherStation_2'/>
616
- <Name>USA_CO_Denver.Intl.AP.725650_TMY3</Name>
617
- <extension>
618
- <EPWFilePath>USA_CO_Denver.Intl.AP.725650_TMY3.epw</EPWFilePath>
619
- </extension>
620
- </WeatherStation>
621
- </ClimateandRiskZones>
622
- <Enclosure>
623
- <AirInfiltration>
624
- <AirInfiltrationMeasurement>
625
- <SystemIdentifier id='AirInfiltrationMeasurement1_2'/>
626
- <HousePressure>50.0</HousePressure>
627
- <BuildingAirLeakage>
628
- <UnitofMeasure>ACH</UnitofMeasure>
629
- <AirLeakage>3.0</AirLeakage>
630
- </BuildingAirLeakage>
631
- <InfiltrationVolume>21600.0</InfiltrationVolume>
632
- </AirInfiltrationMeasurement>
633
- </AirInfiltration>
634
- <Attics>
635
- <Attic>
636
- <SystemIdentifier id='Attic1_2'/>
637
- <AtticType>
638
- <Attic>
639
- <Vented>false</Vented>
640
- </Attic>
641
- </AtticType>
642
- <WithinInfiltrationVolume>false</WithinInfiltrationVolume>
643
- <AttachedToRoof idref='Roof1'/>
644
- <AttachedToWall idref='Wall2'/>
645
- <AttachedToFrameFloor idref='FrameFloor1'/>
646
- </Attic>
647
- </Attics>
648
- <Foundations>
649
- <Foundation>
650
- <SystemIdentifier id='Foundation1_2'/>
651
- <FoundationType>
652
- <Basement>
653
- <Conditioned>true</Conditioned>
654
- </Basement>
655
- </FoundationType>
656
- <AttachedToRimJoist idref='RimJoist1'/>
657
- <AttachedToFoundationWall idref='FoundationWall1'/>
658
- <AttachedToSlab idref='Slab1'/>
659
- </Foundation>
660
- </Foundations>
661
- <Roofs>
662
- <Roof>
663
- <SystemIdentifier id='Roof1_2'/>
664
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
665
- <Area>1509.4</Area>
666
- <RoofType>asphalt or fiberglass shingles</RoofType>
667
- <SolarAbsorptance>0.7</SolarAbsorptance>
668
- <Emittance>0.92</Emittance>
669
- <Pitch>6.0</Pitch>
670
- <RadiantBarrier>false</RadiantBarrier>
671
- <Insulation>
672
- <SystemIdentifier id='Roof1Insulation_2'/>
673
- <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
674
- </Insulation>
675
- </Roof>
676
- </Roofs>
677
- <RimJoists>
678
- <RimJoist>
679
- <SystemIdentifier id='RimJoist1_2'/>
680
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
681
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
682
- <Area>115.6</Area>
683
- <Siding>wood siding</Siding>
684
- <SolarAbsorptance>0.7</SolarAbsorptance>
685
- <Emittance>0.92</Emittance>
686
- <Insulation>
687
- <SystemIdentifier id='RimJoist1Insulation_2'/>
688
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
689
- </Insulation>
690
- </RimJoist>
691
- </RimJoists>
692
- <Walls>
693
- <Wall>
694
- <SystemIdentifier id='Wall1_2'/>
695
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
696
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
697
- <WallType>
698
- <WoodStud/>
699
- </WallType>
700
- <Area>1200.0</Area>
701
- <Siding>wood siding</Siding>
702
- <SolarAbsorptance>0.7</SolarAbsorptance>
703
- <Emittance>0.92</Emittance>
704
- <InteriorFinish>
705
- <Type>gypsum board</Type>
706
- </InteriorFinish>
707
- <Insulation>
708
- <SystemIdentifier id='Wall1Insulation_2'/>
709
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
710
- </Insulation>
711
- </Wall>
712
- <Wall>
713
- <SystemIdentifier id='Wall2_2'/>
714
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
715
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
716
- <AtticWallType>gable</AtticWallType>
717
- <WallType>
718
- <WoodStud/>
719
- </WallType>
720
- <Area>225.0</Area>
721
- <Siding>wood siding</Siding>
722
- <SolarAbsorptance>0.7</SolarAbsorptance>
723
- <Emittance>0.92</Emittance>
724
- <Insulation>
725
- <SystemIdentifier id='Wall2Insulation_2'/>
726
- <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
727
- </Insulation>
728
- </Wall>
729
- </Walls>
730
- <FoundationWalls>
731
- <FoundationWall>
732
- <SystemIdentifier id='FoundationWall1_2'/>
733
- <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
734
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
735
- <Height>8.0</Height>
736
- <Area>1200.0</Area>
737
- <Thickness>8.0</Thickness>
738
- <DepthBelowGrade>7.0</DepthBelowGrade>
739
- <InteriorFinish>
740
- <Type>gypsum board</Type>
741
- </InteriorFinish>
742
- <Insulation>
743
- <SystemIdentifier id='FoundationWall1Insulation_2'/>
744
- <Layer>
745
- <InstallationType>continuous - exterior</InstallationType>
746
- <NominalRValue>8.9</NominalRValue>
747
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
748
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
749
- </Layer>
750
- <Layer>
751
- <InstallationType>continuous - interior</InstallationType>
752
- <NominalRValue>0.0</NominalRValue>
753
- </Layer>
754
- </Insulation>
755
- </FoundationWall>
756
- </FoundationWalls>
757
- <FrameFloors>
758
- <FrameFloor>
759
- <SystemIdentifier id='FrameFloor1_2'/>
760
- <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
761
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
762
- <Area>1350.0</Area>
763
- <InteriorFinish>
764
- <Type>gypsum board</Type>
765
- </InteriorFinish>
766
- <Insulation>
767
- <SystemIdentifier id='FrameFloor1Insulation_2'/>
768
- <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
769
- </Insulation>
770
- </FrameFloor>
771
- </FrameFloors>
772
- <Slabs>
773
- <Slab>
774
- <SystemIdentifier id='Slab1_2'/>
775
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
776
- <Area>1350.0</Area>
777
- <Thickness>4.0</Thickness>
778
- <ExposedPerimeter>150.0</ExposedPerimeter>
779
- <PerimeterInsulation>
780
- <SystemIdentifier id='Slab1PerimeterInsulation_2'/>
781
- <Layer>
782
- <NominalRValue>0.0</NominalRValue>
783
- <InsulationDepth>0.0</InsulationDepth>
784
- </Layer>
785
- </PerimeterInsulation>
786
- <UnderSlabInsulation>
787
- <SystemIdentifier id='Slab1UnderSlabInsulation_2'/>
788
- <Layer>
789
- <NominalRValue>0.0</NominalRValue>
790
- <InsulationWidth>0.0</InsulationWidth>
791
- </Layer>
792
- </UnderSlabInsulation>
793
- <extension>
794
- <CarpetFraction>0.0</CarpetFraction>
795
- <CarpetRValue>0.0</CarpetRValue>
796
- </extension>
797
- </Slab>
798
- </Slabs>
799
- <Windows>
800
- <Window>
801
- <SystemIdentifier id='Window1_2'/>
802
- <Area>108.0</Area>
803
- <Azimuth>0</Azimuth>
804
- <UFactor>0.33</UFactor>
805
- <SHGC>0.45</SHGC>
806
- <InteriorShading>
807
- <SystemIdentifier id='Window1InteriorShading_2'/>
808
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
809
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
810
- </InteriorShading>
811
- <FractionOperable>0.67</FractionOperable>
812
- <AttachedToWall idref='Wall1'/>
813
- </Window>
814
- <Window>
815
- <SystemIdentifier id='Window2_2'/>
816
- <Area>72.0</Area>
817
- <Azimuth>90</Azimuth>
818
- <UFactor>0.33</UFactor>
819
- <SHGC>0.45</SHGC>
820
- <InteriorShading>
821
- <SystemIdentifier id='Window2InteriorShading_2'/>
822
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
823
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
824
- </InteriorShading>
825
- <FractionOperable>0.67</FractionOperable>
826
- <AttachedToWall idref='Wall1'/>
827
- </Window>
828
- <Window>
829
- <SystemIdentifier id='Window3_2'/>
830
- <Area>108.0</Area>
831
- <Azimuth>180</Azimuth>
832
- <UFactor>0.33</UFactor>
833
- <SHGC>0.45</SHGC>
834
- <InteriorShading>
835
- <SystemIdentifier id='Window3InteriorShading_2'/>
836
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
837
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
838
- </InteriorShading>
839
- <FractionOperable>0.67</FractionOperable>
840
- <AttachedToWall idref='Wall1'/>
841
- </Window>
842
- <Window>
843
- <SystemIdentifier id='Window4_2'/>
844
- <Area>72.0</Area>
845
- <Azimuth>270</Azimuth>
846
- <UFactor>0.33</UFactor>
847
- <SHGC>0.45</SHGC>
848
- <InteriorShading>
849
- <SystemIdentifier id='Window4InteriorShading_2'/>
850
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
851
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
852
- </InteriorShading>
853
- <FractionOperable>0.67</FractionOperable>
854
- <AttachedToWall idref='Wall1'/>
855
- </Window>
856
- </Windows>
857
- <Doors>
858
- <Door>
859
- <SystemIdentifier id='Door1_2'/>
860
- <AttachedToWall idref='Wall1'/>
861
- <Area>40.0</Area>
862
- <Azimuth>180</Azimuth>
863
- <RValue>4.4</RValue>
864
- </Door>
865
- </Doors>
866
- </Enclosure>
867
- <Systems>
868
- <HVAC>
869
- <HVACPlant>
870
- <PrimarySystems>
871
- <PrimaryHeatingSystem idref='HeatingSystem1'/>
872
- <PrimaryCoolingSystem idref='CoolingSystem1'/>
873
- </PrimarySystems>
874
- <HeatingSystem>
875
- <SystemIdentifier id='HeatingSystem1_2'/>
876
- <DistributionSystem idref='HVACDistribution1'/>
877
- <HeatingSystemType>
878
- <Furnace/>
879
- </HeatingSystemType>
880
- <HeatingSystemFuel>natural gas</HeatingSystemFuel>
881
- <HeatingCapacity>36000.0</HeatingCapacity>
882
- <AnnualHeatingEfficiency>
883
- <Units>AFUE</Units>
884
- <Value>0.92</Value>
885
- </AnnualHeatingEfficiency>
886
- <FractionHeatLoadServed>1.0</FractionHeatLoadServed>
887
- </HeatingSystem>
888
- <CoolingSystem>
889
- <SystemIdentifier id='CoolingSystem1_2'/>
890
- <DistributionSystem idref='HVACDistribution1'/>
891
- <CoolingSystemType>central air conditioner</CoolingSystemType>
892
- <CoolingSystemFuel>electricity</CoolingSystemFuel>
893
- <CoolingCapacity>24000.0</CoolingCapacity>
894
- <CompressorType>single stage</CompressorType>
895
- <FractionCoolLoadServed>1.0</FractionCoolLoadServed>
896
- <AnnualCoolingEfficiency>
897
- <Units>SEER</Units>
898
- <Value>13.0</Value>
899
- </AnnualCoolingEfficiency>
900
- <SensibleHeatFraction>0.73</SensibleHeatFraction>
901
- </CoolingSystem>
902
- </HVACPlant>
903
- <HVACControl>
904
- <SystemIdentifier id='HVACControl1_2'/>
905
- <SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
906
- <SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
907
- </HVACControl>
908
- <HVACDistribution>
909
- <SystemIdentifier id='HVACDistribution1_2'/>
910
- <DistributionSystemType>
911
- <AirDistribution>
912
- <AirDistributionType>regular velocity</AirDistributionType>
913
- <DuctLeakageMeasurement>
914
- <DuctType>supply</DuctType>
915
- <DuctLeakage>
916
- <Units>CFM25</Units>
917
- <Value>75.0</Value>
918
- <TotalOrToOutside>to outside</TotalOrToOutside>
919
- </DuctLeakage>
920
- </DuctLeakageMeasurement>
921
- <DuctLeakageMeasurement>
922
- <DuctType>return</DuctType>
923
- <DuctLeakage>
924
- <Units>CFM25</Units>
925
- <Value>25.0</Value>
926
- <TotalOrToOutside>to outside</TotalOrToOutside>
927
- </DuctLeakage>
928
- </DuctLeakageMeasurement>
929
- <Ducts>
930
- <DuctType>supply</DuctType>
931
- <DuctInsulationRValue>4.0</DuctInsulationRValue>
932
- <DuctLocation>attic - unvented</DuctLocation>
933
- <DuctSurfaceArea>150.0</DuctSurfaceArea>
934
- </Ducts>
935
- <Ducts>
936
- <DuctType>return</DuctType>
937
- <DuctInsulationRValue>0.0</DuctInsulationRValue>
938
- <DuctLocation>attic - unvented</DuctLocation>
939
- <DuctSurfaceArea>50.0</DuctSurfaceArea>
940
- </Ducts>
941
- </AirDistribution>
942
- </DistributionSystemType>
943
- </HVACDistribution>
944
- </HVAC>
945
- <WaterHeating>
946
- <WaterHeatingSystem>
947
- <SystemIdentifier id='WaterHeatingSystem1_2'/>
948
- <FuelType>electricity</FuelType>
949
- <WaterHeaterType>storage water heater</WaterHeaterType>
950
- <Location>living space</Location>
951
- <TankVolume>40.0</TankVolume>
952
- <FractionDHWLoadServed>1.0</FractionDHWLoadServed>
953
- <HeatingCapacity>18767.0</HeatingCapacity>
954
- <EnergyFactor>0.95</EnergyFactor>
955
- <HotWaterTemperature>125.0</HotWaterTemperature>
956
- </WaterHeatingSystem>
957
- <HotWaterDistribution>
958
- <SystemIdentifier id='HotWaterDistribution1_2'/>
959
- <SystemType>
960
- <Standard>
961
- <PipingLength>50.0</PipingLength>
962
- </Standard>
963
- </SystemType>
964
- <PipeInsulation>
965
- <PipeRValue>0.0</PipeRValue>
966
- </PipeInsulation>
967
- </HotWaterDistribution>
968
- <WaterFixture>
969
- <SystemIdentifier id='WaterFixture1_2'/>
970
- <WaterFixtureType>shower head</WaterFixtureType>
971
- <LowFlow>true</LowFlow>
972
- </WaterFixture>
973
- <WaterFixture>
974
- <SystemIdentifier id='WaterFixture2_2'/>
975
- <WaterFixtureType>faucet</WaterFixtureType>
976
- <LowFlow>false</LowFlow>
977
- </WaterFixture>
978
- </WaterHeating>
979
- </Systems>
980
- <Appliances>
981
- <ClothesWasher>
982
- <SystemIdentifier id='ClothesWasher1_2'/>
983
- <Location>living space</Location>
984
- <IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
985
- <RatedAnnualkWh>380.0</RatedAnnualkWh>
986
- <LabelElectricRate>0.12</LabelElectricRate>
987
- <LabelGasRate>1.09</LabelGasRate>
988
- <LabelAnnualGasCost>27.0</LabelAnnualGasCost>
989
- <LabelUsage>6.0</LabelUsage>
990
- <Capacity>3.2</Capacity>
991
- </ClothesWasher>
992
- <ClothesDryer>
993
- <SystemIdentifier id='ClothesDryer1_2'/>
994
- <Location>living space</Location>
995
- <FuelType>electricity</FuelType>
996
- <CombinedEnergyFactor>3.73</CombinedEnergyFactor>
997
- <Vented>true</Vented>
998
- <VentedFlowRate>150.0</VentedFlowRate>
999
- </ClothesDryer>
1000
- <Dishwasher>
1001
- <SystemIdentifier id='Dishwasher1_2'/>
1002
- <Location>living space</Location>
1003
- <RatedAnnualkWh>307.0</RatedAnnualkWh>
1004
- <PlaceSettingCapacity>12</PlaceSettingCapacity>
1005
- <LabelElectricRate>0.12</LabelElectricRate>
1006
- <LabelGasRate>1.09</LabelGasRate>
1007
- <LabelAnnualGasCost>22.32</LabelAnnualGasCost>
1008
- <LabelUsage>4.0</LabelUsage>
1009
- </Dishwasher>
1010
- <Refrigerator>
1011
- <SystemIdentifier id='Refrigerator1_2'/>
1012
- <Location>living space</Location>
1013
- <RatedAnnualkWh>650.0</RatedAnnualkWh>
1014
- <PrimaryIndicator>true</PrimaryIndicator>
1015
- </Refrigerator>
1016
- <CookingRange>
1017
- <SystemIdentifier id='CookingRange1_2'/>
1018
- <Location>living space</Location>
1019
- <FuelType>electricity</FuelType>
1020
- <IsInduction>false</IsInduction>
1021
- </CookingRange>
1022
- <Oven>
1023
- <SystemIdentifier id='Oven1_2'/>
1024
- <IsConvection>false</IsConvection>
1025
- </Oven>
1026
- </Appliances>
1027
- <Lighting>
1028
- <LightingGroup>
1029
- <SystemIdentifier id='LightingGroup1_2'/>
1030
- <Location>interior</Location>
1031
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
1032
- <LightingType>
1033
- <CompactFluorescent/>
1034
- </LightingType>
1035
- </LightingGroup>
1036
- <LightingGroup>
1037
- <SystemIdentifier id='LightingGroup2_2'/>
1038
- <Location>exterior</Location>
1039
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
1040
- <LightingType>
1041
- <CompactFluorescent/>
1042
- </LightingType>
1043
- </LightingGroup>
1044
- <LightingGroup>
1045
- <SystemIdentifier id='LightingGroup3_2'/>
1046
- <Location>garage</Location>
1047
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
1048
- <LightingType>
1049
- <CompactFluorescent/>
1050
- </LightingType>
1051
- </LightingGroup>
1052
- <LightingGroup>
1053
- <SystemIdentifier id='LightingGroup4_2'/>
1054
- <Location>interior</Location>
1055
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
1056
- <LightingType>
1057
- <FluorescentTube/>
1058
- </LightingType>
1059
- </LightingGroup>
1060
- <LightingGroup>
1061
- <SystemIdentifier id='LightingGroup5_2'/>
1062
- <Location>exterior</Location>
1063
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
1064
- <LightingType>
1065
- <FluorescentTube/>
1066
- </LightingType>
1067
- </LightingGroup>
1068
- <LightingGroup>
1069
- <SystemIdentifier id='LightingGroup6_2'/>
1070
- <Location>garage</Location>
1071
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
1072
- <LightingType>
1073
- <FluorescentTube/>
1074
- </LightingType>
1075
- </LightingGroup>
1076
- <LightingGroup>
1077
- <SystemIdentifier id='LightingGroup7_2'/>
1078
- <Location>interior</Location>
1079
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
1080
- <LightingType>
1081
- <LightEmittingDiode/>
1082
- </LightingType>
1083
- </LightingGroup>
1084
- <LightingGroup>
1085
- <SystemIdentifier id='LightingGroup8_2'/>
1086
- <Location>exterior</Location>
1087
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
1088
- <LightingType>
1089
- <LightEmittingDiode/>
1090
- </LightingType>
1091
- </LightingGroup>
1092
- <LightingGroup>
1093
- <SystemIdentifier id='LightingGroup9_2'/>
1094
- <Location>garage</Location>
1095
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
1096
- <LightingType>
1097
- <LightEmittingDiode/>
1098
- </LightingType>
1099
- </LightingGroup>
1100
- </Lighting>
1101
- <MiscLoads>
1102
- <PlugLoad>
1103
- <SystemIdentifier id='PlugLoad1_2'/>
1104
- <PlugLoadType>TV other</PlugLoadType>
1105
- <Load>
1106
- <Units>kWh/year</Units>
1107
- <Value>620.0</Value>
1108
- </Load>
1109
- </PlugLoad>
1110
- <PlugLoad>
1111
- <SystemIdentifier id='PlugLoad2_2'/>
1112
- <PlugLoadType>other</PlugLoadType>
1113
- <Load>
1114
- <Units>kWh/year</Units>
1115
- <Value>2457.0</Value>
1116
- </Load>
1117
- <extension>
1118
- <FracSensible>0.855</FracSensible>
1119
- <FracLatent>0.045</FracLatent>
1120
- </extension>
1121
- </PlugLoad>
1122
- </MiscLoads>
1123
- </BuildingDetails>
1124
- </Building>
1125
- <Building>
1126
- <BuildingID id='MyBuilding_3'/>
1127
- <Site>
1128
- <SiteID id='SiteID_3'/>
1129
- <Address>
1130
- <StateCode>CO</StateCode>
1131
- </Address>
1132
- </Site>
1133
- <ProjectStatus>
1134
- <EventType>proposed workscope</EventType>
1135
- </ProjectStatus>
1136
- <BuildingDetails>
1137
- <BuildingSummary>
1138
- <Site>
1139
- <SiteType>suburban</SiteType>
1140
- <Surroundings>stand-alone</Surroundings>
1141
- <VerticalSurroundings>no units above or below</VerticalSurroundings>
1142
- <AzimuthOfFrontOfHome>180</AzimuthOfFrontOfHome>
1143
- <FuelTypesAvailable>
1144
- <Fuel>electricity</Fuel>
1145
- <Fuel>natural gas</Fuel>
1146
- </FuelTypesAvailable>
1147
- </Site>
1148
- <BuildingOccupancy>
1149
- <NumberofResidents>3.0</NumberofResidents>
1150
- </BuildingOccupancy>
1151
- <BuildingConstruction>
1152
- <ResidentialFacilityType>single-family detached</ResidentialFacilityType>
1153
- <NumberofConditionedFloors>2.0</NumberofConditionedFloors>
1154
- <NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
1155
- <AverageCeilingHeight>8.0</AverageCeilingHeight>
1156
- <NumberofBedrooms>3</NumberofBedrooms>
1157
- <NumberofBathrooms>2</NumberofBathrooms>
1158
- <ConditionedFloorArea>2700.0</ConditionedFloorArea>
1159
- <ConditionedBuildingVolume>21600.0</ConditionedBuildingVolume>
1160
- </BuildingConstruction>
1161
- </BuildingSummary>
1162
- <ClimateandRiskZones>
1163
- <ClimateZoneIECC>
1164
- <Year>2006</Year>
1165
- <ClimateZone>5B</ClimateZone>
1166
- </ClimateZoneIECC>
1167
- <WeatherStation>
1168
- <SystemIdentifier id='WeatherStation_3'/>
1169
- <Name>USA_CO_Denver.Intl.AP.725650_TMY3</Name>
1170
- <extension>
1171
- <EPWFilePath>USA_CO_Denver.Intl.AP.725650_TMY3.epw</EPWFilePath>
1172
- </extension>
1173
- </WeatherStation>
1174
- </ClimateandRiskZones>
1175
- <Enclosure>
1176
- <AirInfiltration>
1177
- <AirInfiltrationMeasurement>
1178
- <SystemIdentifier id='AirInfiltrationMeasurement1_3'/>
1179
- <HousePressure>50.0</HousePressure>
1180
- <BuildingAirLeakage>
1181
- <UnitofMeasure>ACH</UnitofMeasure>
1182
- <AirLeakage>3.0</AirLeakage>
1183
- </BuildingAirLeakage>
1184
- <InfiltrationVolume>21600.0</InfiltrationVolume>
1185
- </AirInfiltrationMeasurement>
1186
- </AirInfiltration>
1187
- <Attics>
1188
- <Attic>
1189
- <SystemIdentifier id='Attic1_3'/>
1190
- <AtticType>
1191
- <Attic>
1192
- <Vented>false</Vented>
1193
- </Attic>
1194
- </AtticType>
1195
- <WithinInfiltrationVolume>false</WithinInfiltrationVolume>
1196
- <AttachedToRoof idref='Roof1'/>
1197
- <AttachedToWall idref='Wall2'/>
1198
- <AttachedToFrameFloor idref='FrameFloor1'/>
1199
- </Attic>
1200
- </Attics>
1201
- <Foundations>
1202
- <Foundation>
1203
- <SystemIdentifier id='Foundation1_3'/>
1204
- <FoundationType>
1205
- <Basement>
1206
- <Conditioned>true</Conditioned>
1207
- </Basement>
1208
- </FoundationType>
1209
- <AttachedToRimJoist idref='RimJoist1'/>
1210
- <AttachedToFoundationWall idref='FoundationWall1'/>
1211
- <AttachedToSlab idref='Slab1'/>
1212
- </Foundation>
1213
- </Foundations>
1214
- <Roofs>
1215
- <Roof>
1216
- <SystemIdentifier id='Roof1_3'/>
1217
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
1218
- <Area>1509.4</Area>
1219
- <RoofType>asphalt or fiberglass shingles</RoofType>
1220
- <SolarAbsorptance>0.7</SolarAbsorptance>
1221
- <Emittance>0.92</Emittance>
1222
- <Pitch>6.0</Pitch>
1223
- <RadiantBarrier>false</RadiantBarrier>
1224
- <Insulation>
1225
- <SystemIdentifier id='Roof1Insulation_3'/>
1226
- <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
1227
- </Insulation>
1228
- </Roof>
1229
- </Roofs>
1230
- <RimJoists>
1231
- <RimJoist>
1232
- <SystemIdentifier id='RimJoist1_3'/>
1233
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
1234
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1235
- <Area>115.6</Area>
1236
- <Siding>wood siding</Siding>
1237
- <SolarAbsorptance>0.7</SolarAbsorptance>
1238
- <Emittance>0.92</Emittance>
1239
- <Insulation>
1240
- <SystemIdentifier id='RimJoist1Insulation_3'/>
1241
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
1242
- </Insulation>
1243
- </RimJoist>
1244
- </RimJoists>
1245
- <Walls>
1246
- <Wall>
1247
- <SystemIdentifier id='Wall1_3'/>
1248
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
1249
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1250
- <WallType>
1251
- <WoodStud/>
1252
- </WallType>
1253
- <Area>1200.0</Area>
1254
- <Siding>wood siding</Siding>
1255
- <SolarAbsorptance>0.7</SolarAbsorptance>
1256
- <Emittance>0.92</Emittance>
1257
- <InteriorFinish>
1258
- <Type>gypsum board</Type>
1259
- </InteriorFinish>
1260
- <Insulation>
1261
- <SystemIdentifier id='Wall1Insulation_3'/>
1262
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
1263
- </Insulation>
1264
- </Wall>
1265
- <Wall>
1266
- <SystemIdentifier id='Wall2_3'/>
1267
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
1268
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
1269
- <AtticWallType>gable</AtticWallType>
1270
- <WallType>
1271
- <WoodStud/>
1272
- </WallType>
1273
- <Area>225.0</Area>
1274
- <Siding>wood siding</Siding>
1275
- <SolarAbsorptance>0.7</SolarAbsorptance>
1276
- <Emittance>0.92</Emittance>
1277
- <Insulation>
1278
- <SystemIdentifier id='Wall2Insulation_3'/>
1279
- <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
1280
- </Insulation>
1281
- </Wall>
1282
- </Walls>
1283
- <FoundationWalls>
1284
- <FoundationWall>
1285
- <SystemIdentifier id='FoundationWall1_3'/>
1286
- <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
1287
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1288
- <Height>8.0</Height>
1289
- <Area>1200.0</Area>
1290
- <Thickness>8.0</Thickness>
1291
- <DepthBelowGrade>7.0</DepthBelowGrade>
1292
- <InteriorFinish>
1293
- <Type>gypsum board</Type>
1294
- </InteriorFinish>
1295
- <Insulation>
1296
- <SystemIdentifier id='FoundationWall1Insulation_3'/>
1297
- <Layer>
1298
- <InstallationType>continuous - exterior</InstallationType>
1299
- <NominalRValue>8.9</NominalRValue>
1300
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
1301
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
1302
- </Layer>
1303
- <Layer>
1304
- <InstallationType>continuous - interior</InstallationType>
1305
- <NominalRValue>0.0</NominalRValue>
1306
- </Layer>
1307
- </Insulation>
1308
- </FoundationWall>
1309
- </FoundationWalls>
1310
- <FrameFloors>
1311
- <FrameFloor>
1312
- <SystemIdentifier id='FrameFloor1_3'/>
1313
- <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1314
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1315
- <Area>1350.0</Area>
1316
- <InteriorFinish>
1317
- <Type>gypsum board</Type>
1318
- </InteriorFinish>
1319
- <Insulation>
1320
- <SystemIdentifier id='FrameFloor1Insulation_3'/>
1321
- <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
1322
- </Insulation>
1323
- </FrameFloor>
1324
- </FrameFloors>
1325
- <Slabs>
1326
- <Slab>
1327
- <SystemIdentifier id='Slab1_3'/>
1328
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1329
- <Area>1350.0</Area>
1330
- <Thickness>4.0</Thickness>
1331
- <ExposedPerimeter>150.0</ExposedPerimeter>
1332
- <PerimeterInsulation>
1333
- <SystemIdentifier id='Slab1PerimeterInsulation_3'/>
1334
- <Layer>
1335
- <NominalRValue>0.0</NominalRValue>
1336
- <InsulationDepth>0.0</InsulationDepth>
1337
- </Layer>
1338
- </PerimeterInsulation>
1339
- <UnderSlabInsulation>
1340
- <SystemIdentifier id='Slab1UnderSlabInsulation_3'/>
1341
- <Layer>
1342
- <NominalRValue>0.0</NominalRValue>
1343
- <InsulationWidth>0.0</InsulationWidth>
1344
- </Layer>
1345
- </UnderSlabInsulation>
1346
- <extension>
1347
- <CarpetFraction>0.0</CarpetFraction>
1348
- <CarpetRValue>0.0</CarpetRValue>
1349
- </extension>
1350
- </Slab>
1351
- </Slabs>
1352
- <Windows>
1353
- <Window>
1354
- <SystemIdentifier id='Window1_3'/>
1355
- <Area>108.0</Area>
1356
- <Azimuth>0</Azimuth>
1357
- <UFactor>0.33</UFactor>
1358
- <SHGC>0.45</SHGC>
1359
- <InteriorShading>
1360
- <SystemIdentifier id='Window1InteriorShading_3'/>
1361
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1362
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1363
- </InteriorShading>
1364
- <FractionOperable>0.67</FractionOperable>
1365
- <AttachedToWall idref='Wall1'/>
1366
- </Window>
1367
- <Window>
1368
- <SystemIdentifier id='Window2_3'/>
1369
- <Area>72.0</Area>
1370
- <Azimuth>90</Azimuth>
1371
- <UFactor>0.33</UFactor>
1372
- <SHGC>0.45</SHGC>
1373
- <InteriorShading>
1374
- <SystemIdentifier id='Window2InteriorShading_3'/>
1375
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1376
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1377
- </InteriorShading>
1378
- <FractionOperable>0.67</FractionOperable>
1379
- <AttachedToWall idref='Wall1'/>
1380
- </Window>
1381
- <Window>
1382
- <SystemIdentifier id='Window3_3'/>
1383
- <Area>108.0</Area>
1384
- <Azimuth>180</Azimuth>
1385
- <UFactor>0.33</UFactor>
1386
- <SHGC>0.45</SHGC>
1387
- <InteriorShading>
1388
- <SystemIdentifier id='Window3InteriorShading_3'/>
1389
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1390
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1391
- </InteriorShading>
1392
- <FractionOperable>0.67</FractionOperable>
1393
- <AttachedToWall idref='Wall1'/>
1394
- </Window>
1395
- <Window>
1396
- <SystemIdentifier id='Window4_3'/>
1397
- <Area>72.0</Area>
1398
- <Azimuth>270</Azimuth>
1399
- <UFactor>0.33</UFactor>
1400
- <SHGC>0.45</SHGC>
1401
- <InteriorShading>
1402
- <SystemIdentifier id='Window4InteriorShading_3'/>
1403
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1404
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1405
- </InteriorShading>
1406
- <FractionOperable>0.67</FractionOperable>
1407
- <AttachedToWall idref='Wall1'/>
1408
- </Window>
1409
- </Windows>
1410
- <Doors>
1411
- <Door>
1412
- <SystemIdentifier id='Door1_3'/>
1413
- <AttachedToWall idref='Wall1'/>
1414
- <Area>40.0</Area>
1415
- <Azimuth>180</Azimuth>
1416
- <RValue>4.4</RValue>
1417
- </Door>
1418
- </Doors>
1419
- </Enclosure>
1420
- <Systems>
1421
- <HVAC>
1422
- <HVACPlant>
1423
- <PrimarySystems>
1424
- <PrimaryHeatingSystem idref='HeatingSystem1'/>
1425
- <PrimaryCoolingSystem idref='CoolingSystem1'/>
1426
- </PrimarySystems>
1427
- <HeatingSystem>
1428
- <SystemIdentifier id='HeatingSystem1_3'/>
1429
- <DistributionSystem idref='HVACDistribution1'/>
1430
- <HeatingSystemType>
1431
- <Furnace/>
1432
- </HeatingSystemType>
1433
- <HeatingSystemFuel>natural gas</HeatingSystemFuel>
1434
- <HeatingCapacity>36000.0</HeatingCapacity>
1435
- <AnnualHeatingEfficiency>
1436
- <Units>AFUE</Units>
1437
- <Value>0.92</Value>
1438
- </AnnualHeatingEfficiency>
1439
- <FractionHeatLoadServed>1.0</FractionHeatLoadServed>
1440
- </HeatingSystem>
1441
- <CoolingSystem>
1442
- <SystemIdentifier id='CoolingSystem1_3'/>
1443
- <DistributionSystem idref='HVACDistribution1'/>
1444
- <CoolingSystemType>central air conditioner</CoolingSystemType>
1445
- <CoolingSystemFuel>electricity</CoolingSystemFuel>
1446
- <CoolingCapacity>24000.0</CoolingCapacity>
1447
- <CompressorType>single stage</CompressorType>
1448
- <FractionCoolLoadServed>1.0</FractionCoolLoadServed>
1449
- <AnnualCoolingEfficiency>
1450
- <Units>SEER</Units>
1451
- <Value>13.0</Value>
1452
- </AnnualCoolingEfficiency>
1453
- <SensibleHeatFraction>0.73</SensibleHeatFraction>
1454
- </CoolingSystem>
1455
- </HVACPlant>
1456
- <HVACControl>
1457
- <SystemIdentifier id='HVACControl1_3'/>
1458
- <SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
1459
- <SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
1460
- </HVACControl>
1461
- <HVACDistribution>
1462
- <SystemIdentifier id='HVACDistribution1_3'/>
1463
- <DistributionSystemType>
1464
- <AirDistribution>
1465
- <AirDistributionType>regular velocity</AirDistributionType>
1466
- <DuctLeakageMeasurement>
1467
- <DuctType>supply</DuctType>
1468
- <DuctLeakage>
1469
- <Units>CFM25</Units>
1470
- <Value>75.0</Value>
1471
- <TotalOrToOutside>to outside</TotalOrToOutside>
1472
- </DuctLeakage>
1473
- </DuctLeakageMeasurement>
1474
- <DuctLeakageMeasurement>
1475
- <DuctType>return</DuctType>
1476
- <DuctLeakage>
1477
- <Units>CFM25</Units>
1478
- <Value>25.0</Value>
1479
- <TotalOrToOutside>to outside</TotalOrToOutside>
1480
- </DuctLeakage>
1481
- </DuctLeakageMeasurement>
1482
- <Ducts>
1483
- <DuctType>supply</DuctType>
1484
- <DuctInsulationRValue>4.0</DuctInsulationRValue>
1485
- <DuctLocation>attic - unvented</DuctLocation>
1486
- <DuctSurfaceArea>150.0</DuctSurfaceArea>
1487
- </Ducts>
1488
- <Ducts>
1489
- <DuctType>return</DuctType>
1490
- <DuctInsulationRValue>0.0</DuctInsulationRValue>
1491
- <DuctLocation>attic - unvented</DuctLocation>
1492
- <DuctSurfaceArea>50.0</DuctSurfaceArea>
1493
- </Ducts>
1494
- </AirDistribution>
1495
- </DistributionSystemType>
1496
- </HVACDistribution>
1497
- </HVAC>
1498
- <WaterHeating>
1499
- <WaterHeatingSystem>
1500
- <SystemIdentifier id='WaterHeatingSystem1_3'/>
1501
- <FuelType>electricity</FuelType>
1502
- <WaterHeaterType>storage water heater</WaterHeaterType>
1503
- <Location>living space</Location>
1504
- <TankVolume>40.0</TankVolume>
1505
- <FractionDHWLoadServed>1.0</FractionDHWLoadServed>
1506
- <HeatingCapacity>18767.0</HeatingCapacity>
1507
- <EnergyFactor>0.95</EnergyFactor>
1508
- <HotWaterTemperature>125.0</HotWaterTemperature>
1509
- </WaterHeatingSystem>
1510
- <HotWaterDistribution>
1511
- <SystemIdentifier id='HotWaterDistribution1_3'/>
1512
- <SystemType>
1513
- <Standard>
1514
- <PipingLength>50.0</PipingLength>
1515
- </Standard>
1516
- </SystemType>
1517
- <PipeInsulation>
1518
- <PipeRValue>0.0</PipeRValue>
1519
- </PipeInsulation>
1520
- </HotWaterDistribution>
1521
- <WaterFixture>
1522
- <SystemIdentifier id='WaterFixture1_3'/>
1523
- <WaterFixtureType>shower head</WaterFixtureType>
1524
- <LowFlow>true</LowFlow>
1525
- </WaterFixture>
1526
- <WaterFixture>
1527
- <SystemIdentifier id='WaterFixture2_3'/>
1528
- <WaterFixtureType>faucet</WaterFixtureType>
1529
- <LowFlow>false</LowFlow>
1530
- </WaterFixture>
1531
- </WaterHeating>
1532
- </Systems>
1533
- <Appliances>
1534
- <ClothesWasher>
1535
- <SystemIdentifier id='ClothesWasher1_3'/>
1536
- <Location>living space</Location>
1537
- <IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
1538
- <RatedAnnualkWh>380.0</RatedAnnualkWh>
1539
- <LabelElectricRate>0.12</LabelElectricRate>
1540
- <LabelGasRate>1.09</LabelGasRate>
1541
- <LabelAnnualGasCost>27.0</LabelAnnualGasCost>
1542
- <LabelUsage>6.0</LabelUsage>
1543
- <Capacity>3.2</Capacity>
1544
- </ClothesWasher>
1545
- <ClothesDryer>
1546
- <SystemIdentifier id='ClothesDryer1_3'/>
1547
- <Location>living space</Location>
1548
- <FuelType>electricity</FuelType>
1549
- <CombinedEnergyFactor>3.73</CombinedEnergyFactor>
1550
- <Vented>true</Vented>
1551
- <VentedFlowRate>150.0</VentedFlowRate>
1552
- </ClothesDryer>
1553
- <Dishwasher>
1554
- <SystemIdentifier id='Dishwasher1_3'/>
1555
- <Location>living space</Location>
1556
- <RatedAnnualkWh>307.0</RatedAnnualkWh>
1557
- <PlaceSettingCapacity>12</PlaceSettingCapacity>
1558
- <LabelElectricRate>0.12</LabelElectricRate>
1559
- <LabelGasRate>1.09</LabelGasRate>
1560
- <LabelAnnualGasCost>22.32</LabelAnnualGasCost>
1561
- <LabelUsage>4.0</LabelUsage>
1562
- </Dishwasher>
1563
- <Refrigerator>
1564
- <SystemIdentifier id='Refrigerator1_3'/>
1565
- <Location>living space</Location>
1566
- <RatedAnnualkWh>650.0</RatedAnnualkWh>
1567
- <PrimaryIndicator>true</PrimaryIndicator>
1568
- </Refrigerator>
1569
- <CookingRange>
1570
- <SystemIdentifier id='CookingRange1_3'/>
1571
- <Location>living space</Location>
1572
- <FuelType>electricity</FuelType>
1573
- <IsInduction>false</IsInduction>
1574
- </CookingRange>
1575
- <Oven>
1576
- <SystemIdentifier id='Oven1_3'/>
1577
- <IsConvection>false</IsConvection>
1578
- </Oven>
1579
- </Appliances>
1580
- <Lighting>
1581
- <LightingGroup>
1582
- <SystemIdentifier id='LightingGroup1_3'/>
1583
- <Location>interior</Location>
1584
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
1585
- <LightingType>
1586
- <CompactFluorescent/>
1587
- </LightingType>
1588
- </LightingGroup>
1589
- <LightingGroup>
1590
- <SystemIdentifier id='LightingGroup2_3'/>
1591
- <Location>exterior</Location>
1592
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
1593
- <LightingType>
1594
- <CompactFluorescent/>
1595
- </LightingType>
1596
- </LightingGroup>
1597
- <LightingGroup>
1598
- <SystemIdentifier id='LightingGroup3_3'/>
1599
- <Location>garage</Location>
1600
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
1601
- <LightingType>
1602
- <CompactFluorescent/>
1603
- </LightingType>
1604
- </LightingGroup>
1605
- <LightingGroup>
1606
- <SystemIdentifier id='LightingGroup4_3'/>
1607
- <Location>interior</Location>
1608
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
1609
- <LightingType>
1610
- <FluorescentTube/>
1611
- </LightingType>
1612
- </LightingGroup>
1613
- <LightingGroup>
1614
- <SystemIdentifier id='LightingGroup5_3'/>
1615
- <Location>exterior</Location>
1616
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
1617
- <LightingType>
1618
- <FluorescentTube/>
1619
- </LightingType>
1620
- </LightingGroup>
1621
- <LightingGroup>
1622
- <SystemIdentifier id='LightingGroup6_3'/>
1623
- <Location>garage</Location>
1624
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
1625
- <LightingType>
1626
- <FluorescentTube/>
1627
- </LightingType>
1628
- </LightingGroup>
1629
- <LightingGroup>
1630
- <SystemIdentifier id='LightingGroup7_3'/>
1631
- <Location>interior</Location>
1632
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
1633
- <LightingType>
1634
- <LightEmittingDiode/>
1635
- </LightingType>
1636
- </LightingGroup>
1637
- <LightingGroup>
1638
- <SystemIdentifier id='LightingGroup8_3'/>
1639
- <Location>exterior</Location>
1640
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
1641
- <LightingType>
1642
- <LightEmittingDiode/>
1643
- </LightingType>
1644
- </LightingGroup>
1645
- <LightingGroup>
1646
- <SystemIdentifier id='LightingGroup9_3'/>
1647
- <Location>garage</Location>
1648
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
1649
- <LightingType>
1650
- <LightEmittingDiode/>
1651
- </LightingType>
1652
- </LightingGroup>
1653
- </Lighting>
1654
- <MiscLoads>
1655
- <PlugLoad>
1656
- <SystemIdentifier id='PlugLoad1_3'/>
1657
- <PlugLoadType>TV other</PlugLoadType>
1658
- <Load>
1659
- <Units>kWh/year</Units>
1660
- <Value>620.0</Value>
1661
- </Load>
1662
- </PlugLoad>
1663
- <PlugLoad>
1664
- <SystemIdentifier id='PlugLoad2_3'/>
1665
- <PlugLoadType>other</PlugLoadType>
1666
- <Load>
1667
- <Units>kWh/year</Units>
1668
- <Value>2457.0</Value>
1669
- </Load>
1670
- <extension>
1671
- <FracSensible>0.855</FracSensible>
1672
- <FracLatent>0.045</FracLatent>
1673
- </extension>
1674
- </PlugLoad>
1675
- </MiscLoads>
1676
- </BuildingDetails>
1677
- </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
+ </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
+ <AttachedToFloor idref='Floor1'/>
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
+ <Floors>
210
+ <Floor>
211
+ <SystemIdentifier id='Floor1'/>
212
+ <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
213
+ <InteriorAdjacentTo>living space</InteriorAdjacentTo>
214
+ <FloorOrCeiling>ceiling</FloorOrCeiling>
215
+ <FloorType>
216
+ <WoodFrame/>
217
+ </FloorType>
218
+ <Area>1350.0</Area>
219
+ <InteriorFinish>
220
+ <Type>gypsum board</Type>
221
+ </InteriorFinish>
222
+ <Insulation>
223
+ <SystemIdentifier id='Floor1Insulation'/>
224
+ <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
225
+ </Insulation>
226
+ </Floor>
227
+ </Floors>
228
+ <Slabs>
229
+ <Slab>
230
+ <SystemIdentifier id='Slab1'/>
231
+ <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
232
+ <Area>1350.0</Area>
233
+ <Thickness>4.0</Thickness>
234
+ <ExposedPerimeter>150.0</ExposedPerimeter>
235
+ <PerimeterInsulation>
236
+ <SystemIdentifier id='Slab1PerimeterInsulation'/>
237
+ <Layer>
238
+ <NominalRValue>0.0</NominalRValue>
239
+ <InsulationDepth>0.0</InsulationDepth>
240
+ </Layer>
241
+ </PerimeterInsulation>
242
+ <UnderSlabInsulation>
243
+ <SystemIdentifier id='Slab1UnderSlabInsulation'/>
244
+ <Layer>
245
+ <NominalRValue>0.0</NominalRValue>
246
+ <InsulationWidth>0.0</InsulationWidth>
247
+ </Layer>
248
+ </UnderSlabInsulation>
249
+ <extension>
250
+ <CarpetFraction>0.0</CarpetFraction>
251
+ <CarpetRValue>0.0</CarpetRValue>
252
+ </extension>
253
+ </Slab>
254
+ </Slabs>
255
+ <Windows>
256
+ <Window>
257
+ <SystemIdentifier id='Window1'/>
258
+ <Area>108.0</Area>
259
+ <Azimuth>0</Azimuth>
260
+ <UFactor>0.33</UFactor>
261
+ <SHGC>0.45</SHGC>
262
+ <InteriorShading>
263
+ <SystemIdentifier id='Window1InteriorShading'/>
264
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
265
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
266
+ </InteriorShading>
267
+ <FractionOperable>0.67</FractionOperable>
268
+ <AttachedToWall idref='Wall1'/>
269
+ </Window>
270
+ <Window>
271
+ <SystemIdentifier id='Window2'/>
272
+ <Area>72.0</Area>
273
+ <Azimuth>90</Azimuth>
274
+ <UFactor>0.33</UFactor>
275
+ <SHGC>0.45</SHGC>
276
+ <InteriorShading>
277
+ <SystemIdentifier id='Window2InteriorShading'/>
278
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
279
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
280
+ </InteriorShading>
281
+ <FractionOperable>0.67</FractionOperable>
282
+ <AttachedToWall idref='Wall1'/>
283
+ </Window>
284
+ <Window>
285
+ <SystemIdentifier id='Window3'/>
286
+ <Area>108.0</Area>
287
+ <Azimuth>180</Azimuth>
288
+ <UFactor>0.33</UFactor>
289
+ <SHGC>0.45</SHGC>
290
+ <InteriorShading>
291
+ <SystemIdentifier id='Window3InteriorShading'/>
292
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
293
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
294
+ </InteriorShading>
295
+ <FractionOperable>0.67</FractionOperable>
296
+ <AttachedToWall idref='Wall1'/>
297
+ </Window>
298
+ <Window>
299
+ <SystemIdentifier id='Window4'/>
300
+ <Area>72.0</Area>
301
+ <Azimuth>270</Azimuth>
302
+ <UFactor>0.33</UFactor>
303
+ <SHGC>0.45</SHGC>
304
+ <InteriorShading>
305
+ <SystemIdentifier id='Window4InteriorShading'/>
306
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
307
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
308
+ </InteriorShading>
309
+ <FractionOperable>0.67</FractionOperable>
310
+ <AttachedToWall idref='Wall1'/>
311
+ </Window>
312
+ </Windows>
313
+ <Doors>
314
+ <Door>
315
+ <SystemIdentifier id='Door1'/>
316
+ <AttachedToWall idref='Wall1'/>
317
+ <Area>40.0</Area>
318
+ <Azimuth>180</Azimuth>
319
+ <RValue>4.4</RValue>
320
+ </Door>
321
+ </Doors>
322
+ </Enclosure>
323
+ <Systems>
324
+ <HVAC>
325
+ <HVACPlant>
326
+ <PrimarySystems>
327
+ <PrimaryHeatingSystem idref='HeatingSystem1'/>
328
+ <PrimaryCoolingSystem idref='CoolingSystem1'/>
329
+ </PrimarySystems>
330
+ <HeatingSystem>
331
+ <SystemIdentifier id='HeatingSystem1'/>
332
+ <DistributionSystem idref='HVACDistribution1'/>
333
+ <HeatingSystemType>
334
+ <Furnace/>
335
+ </HeatingSystemType>
336
+ <HeatingSystemFuel>natural gas</HeatingSystemFuel>
337
+ <HeatingCapacity>36000.0</HeatingCapacity>
338
+ <AnnualHeatingEfficiency>
339
+ <Units>AFUE</Units>
340
+ <Value>0.92</Value>
341
+ </AnnualHeatingEfficiency>
342
+ <FractionHeatLoadServed>1.0</FractionHeatLoadServed>
343
+ </HeatingSystem>
344
+ <CoolingSystem>
345
+ <SystemIdentifier id='CoolingSystem1'/>
346
+ <DistributionSystem idref='HVACDistribution1'/>
347
+ <CoolingSystemType>central air conditioner</CoolingSystemType>
348
+ <CoolingSystemFuel>electricity</CoolingSystemFuel>
349
+ <CoolingCapacity>24000.0</CoolingCapacity>
350
+ <CompressorType>single stage</CompressorType>
351
+ <FractionCoolLoadServed>1.0</FractionCoolLoadServed>
352
+ <AnnualCoolingEfficiency>
353
+ <Units>SEER</Units>
354
+ <Value>13.0</Value>
355
+ </AnnualCoolingEfficiency>
356
+ <SensibleHeatFraction>0.73</SensibleHeatFraction>
357
+ </CoolingSystem>
358
+ </HVACPlant>
359
+ <HVACControl>
360
+ <SystemIdentifier id='HVACControl1'/>
361
+ <SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
362
+ <SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
363
+ </HVACControl>
364
+ <HVACDistribution>
365
+ <SystemIdentifier id='HVACDistribution1'/>
366
+ <DistributionSystemType>
367
+ <AirDistribution>
368
+ <AirDistributionType>regular velocity</AirDistributionType>
369
+ <DuctLeakageMeasurement>
370
+ <DuctType>supply</DuctType>
371
+ <DuctLeakage>
372
+ <Units>CFM25</Units>
373
+ <Value>75.0</Value>
374
+ <TotalOrToOutside>to outside</TotalOrToOutside>
375
+ </DuctLeakage>
376
+ </DuctLeakageMeasurement>
377
+ <DuctLeakageMeasurement>
378
+ <DuctType>return</DuctType>
379
+ <DuctLeakage>
380
+ <Units>CFM25</Units>
381
+ <Value>25.0</Value>
382
+ <TotalOrToOutside>to outside</TotalOrToOutside>
383
+ </DuctLeakage>
384
+ </DuctLeakageMeasurement>
385
+ <Ducts>
386
+ <SystemIdentifier id='Ducts1'/>
387
+ <DuctType>supply</DuctType>
388
+ <DuctInsulationRValue>4.0</DuctInsulationRValue>
389
+ <DuctLocation>attic - unvented</DuctLocation>
390
+ <DuctSurfaceArea>150.0</DuctSurfaceArea>
391
+ </Ducts>
392
+ <Ducts>
393
+ <SystemIdentifier id='Ducts2'/>
394
+ <DuctType>return</DuctType>
395
+ <DuctInsulationRValue>0.0</DuctInsulationRValue>
396
+ <DuctLocation>attic - unvented</DuctLocation>
397
+ <DuctSurfaceArea>50.0</DuctSurfaceArea>
398
+ </Ducts>
399
+ </AirDistribution>
400
+ </DistributionSystemType>
401
+ </HVACDistribution>
402
+ </HVAC>
403
+ <WaterHeating>
404
+ <WaterHeatingSystem>
405
+ <SystemIdentifier id='WaterHeatingSystem1'/>
406
+ <FuelType>electricity</FuelType>
407
+ <WaterHeaterType>storage water heater</WaterHeaterType>
408
+ <Location>living space</Location>
409
+ <TankVolume>40.0</TankVolume>
410
+ <FractionDHWLoadServed>1.0</FractionDHWLoadServed>
411
+ <HeatingCapacity>18767.0</HeatingCapacity>
412
+ <EnergyFactor>0.95</EnergyFactor>
413
+ <HotWaterTemperature>125.0</HotWaterTemperature>
414
+ </WaterHeatingSystem>
415
+ <HotWaterDistribution>
416
+ <SystemIdentifier id='HotWaterDistribution1'/>
417
+ <SystemType>
418
+ <Standard>
419
+ <PipingLength>50.0</PipingLength>
420
+ </Standard>
421
+ </SystemType>
422
+ <PipeInsulation>
423
+ <PipeRValue>0.0</PipeRValue>
424
+ </PipeInsulation>
425
+ </HotWaterDistribution>
426
+ <WaterFixture>
427
+ <SystemIdentifier id='WaterFixture1'/>
428
+ <WaterFixtureType>shower head</WaterFixtureType>
429
+ <LowFlow>true</LowFlow>
430
+ </WaterFixture>
431
+ <WaterFixture>
432
+ <SystemIdentifier id='WaterFixture2'/>
433
+ <WaterFixtureType>faucet</WaterFixtureType>
434
+ <LowFlow>false</LowFlow>
435
+ </WaterFixture>
436
+ </WaterHeating>
437
+ </Systems>
438
+ <Appliances>
439
+ <ClothesWasher>
440
+ <SystemIdentifier id='ClothesWasher1'/>
441
+ <Location>living space</Location>
442
+ <IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
443
+ <RatedAnnualkWh>380.0</RatedAnnualkWh>
444
+ <LabelElectricRate>0.12</LabelElectricRate>
445
+ <LabelGasRate>1.09</LabelGasRate>
446
+ <LabelAnnualGasCost>27.0</LabelAnnualGasCost>
447
+ <LabelUsage>6.0</LabelUsage>
448
+ <Capacity>3.2</Capacity>
449
+ </ClothesWasher>
450
+ <ClothesDryer>
451
+ <SystemIdentifier id='ClothesDryer1'/>
452
+ <Location>living space</Location>
453
+ <FuelType>electricity</FuelType>
454
+ <CombinedEnergyFactor>3.73</CombinedEnergyFactor>
455
+ <Vented>true</Vented>
456
+ <VentedFlowRate>150.0</VentedFlowRate>
457
+ </ClothesDryer>
458
+ <Dishwasher>
459
+ <SystemIdentifier id='Dishwasher1'/>
460
+ <Location>living space</Location>
461
+ <RatedAnnualkWh>307.0</RatedAnnualkWh>
462
+ <PlaceSettingCapacity>12</PlaceSettingCapacity>
463
+ <LabelElectricRate>0.12</LabelElectricRate>
464
+ <LabelGasRate>1.09</LabelGasRate>
465
+ <LabelAnnualGasCost>22.32</LabelAnnualGasCost>
466
+ <LabelUsage>4.0</LabelUsage>
467
+ </Dishwasher>
468
+ <Refrigerator>
469
+ <SystemIdentifier id='Refrigerator1'/>
470
+ <Location>living space</Location>
471
+ <RatedAnnualkWh>650.0</RatedAnnualkWh>
472
+ <PrimaryIndicator>true</PrimaryIndicator>
473
+ </Refrigerator>
474
+ <CookingRange>
475
+ <SystemIdentifier id='CookingRange1'/>
476
+ <Location>living space</Location>
477
+ <FuelType>electricity</FuelType>
478
+ <IsInduction>false</IsInduction>
479
+ </CookingRange>
480
+ <Oven>
481
+ <SystemIdentifier id='Oven1'/>
482
+ <IsConvection>false</IsConvection>
483
+ </Oven>
484
+ </Appliances>
485
+ <Lighting>
486
+ <LightingGroup>
487
+ <SystemIdentifier id='LightingGroup1'/>
488
+ <Location>interior</Location>
489
+ <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
490
+ <LightingType>
491
+ <CompactFluorescent/>
492
+ </LightingType>
493
+ </LightingGroup>
494
+ <LightingGroup>
495
+ <SystemIdentifier id='LightingGroup2'/>
496
+ <Location>exterior</Location>
497
+ <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
498
+ <LightingType>
499
+ <CompactFluorescent/>
500
+ </LightingType>
501
+ </LightingGroup>
502
+ <LightingGroup>
503
+ <SystemIdentifier id='LightingGroup3'/>
504
+ <Location>garage</Location>
505
+ <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
506
+ <LightingType>
507
+ <CompactFluorescent/>
508
+ </LightingType>
509
+ </LightingGroup>
510
+ <LightingGroup>
511
+ <SystemIdentifier id='LightingGroup4'/>
512
+ <Location>interior</Location>
513
+ <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
514
+ <LightingType>
515
+ <FluorescentTube/>
516
+ </LightingType>
517
+ </LightingGroup>
518
+ <LightingGroup>
519
+ <SystemIdentifier id='LightingGroup5'/>
520
+ <Location>exterior</Location>
521
+ <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
522
+ <LightingType>
523
+ <FluorescentTube/>
524
+ </LightingType>
525
+ </LightingGroup>
526
+ <LightingGroup>
527
+ <SystemIdentifier id='LightingGroup6'/>
528
+ <Location>garage</Location>
529
+ <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
530
+ <LightingType>
531
+ <FluorescentTube/>
532
+ </LightingType>
533
+ </LightingGroup>
534
+ <LightingGroup>
535
+ <SystemIdentifier id='LightingGroup7'/>
536
+ <Location>interior</Location>
537
+ <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
538
+ <LightingType>
539
+ <LightEmittingDiode/>
540
+ </LightingType>
541
+ </LightingGroup>
542
+ <LightingGroup>
543
+ <SystemIdentifier id='LightingGroup8'/>
544
+ <Location>exterior</Location>
545
+ <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
546
+ <LightingType>
547
+ <LightEmittingDiode/>
548
+ </LightingType>
549
+ </LightingGroup>
550
+ <LightingGroup>
551
+ <SystemIdentifier id='LightingGroup9'/>
552
+ <Location>garage</Location>
553
+ <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
554
+ <LightingType>
555
+ <LightEmittingDiode/>
556
+ </LightingType>
557
+ </LightingGroup>
558
+ </Lighting>
559
+ <MiscLoads>
560
+ <PlugLoad>
561
+ <SystemIdentifier id='PlugLoad1'/>
562
+ <PlugLoadType>TV other</PlugLoadType>
563
+ <Load>
564
+ <Units>kWh/year</Units>
565
+ <Value>620.0</Value>
566
+ </Load>
567
+ </PlugLoad>
568
+ <PlugLoad>
569
+ <SystemIdentifier id='PlugLoad2'/>
570
+ <PlugLoadType>other</PlugLoadType>
571
+ <Load>
572
+ <Units>kWh/year</Units>
573
+ <Value>2457.0</Value>
574
+ </Load>
575
+ <extension>
576
+ <FracSensible>0.855</FracSensible>
577
+ <FracLatent>0.045</FracLatent>
578
+ </extension>
579
+ </PlugLoad>
580
+ </MiscLoads>
581
+ </BuildingDetails>
582
+ </Building>
583
+ <Building>
584
+ <BuildingID id='MyBuilding_2'/>
585
+ <Site>
586
+ <SiteID id='SiteID_2'/>
587
+ <Address>
588
+ <StateCode>CO</StateCode>
589
+ </Address>
590
+ </Site>
591
+ <ProjectStatus>
592
+ <EventType>proposed workscope</EventType>
593
+ </ProjectStatus>
594
+ <BuildingDetails>
595
+ <BuildingSummary>
596
+ <Site>
597
+ <SiteType>suburban</SiteType>
598
+ <Surroundings>stand-alone</Surroundings>
599
+ <VerticalSurroundings>no units above or below</VerticalSurroundings>
600
+ <AzimuthOfFrontOfHome>180</AzimuthOfFrontOfHome>
601
+ <FuelTypesAvailable>
602
+ <Fuel>electricity</Fuel>
603
+ <Fuel>natural gas</Fuel>
604
+ </FuelTypesAvailable>
605
+ </Site>
606
+ <BuildingOccupancy>
607
+ <NumberofResidents>3.0</NumberofResidents>
608
+ </BuildingOccupancy>
609
+ <BuildingConstruction>
610
+ <ResidentialFacilityType>single-family detached</ResidentialFacilityType>
611
+ <NumberofConditionedFloors>2.0</NumberofConditionedFloors>
612
+ <NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
613
+ <AverageCeilingHeight>8.0</AverageCeilingHeight>
614
+ <NumberofBedrooms>3</NumberofBedrooms>
615
+ <NumberofBathrooms>2</NumberofBathrooms>
616
+ <ConditionedFloorArea>2700.0</ConditionedFloorArea>
617
+ <ConditionedBuildingVolume>21600.0</ConditionedBuildingVolume>
618
+ </BuildingConstruction>
619
+ </BuildingSummary>
620
+ <ClimateandRiskZones>
621
+ <ClimateZoneIECC>
622
+ <Year>2006</Year>
623
+ <ClimateZone>5B</ClimateZone>
624
+ </ClimateZoneIECC>
625
+ <WeatherStation>
626
+ <SystemIdentifier id='WeatherStation_2'/>
627
+ <Name>USA_CO_Denver.Intl.AP.725650_TMY3</Name>
628
+ <extension>
629
+ <EPWFilePath>USA_CO_Denver.Intl.AP.725650_TMY3.epw</EPWFilePath>
630
+ </extension>
631
+ </WeatherStation>
632
+ </ClimateandRiskZones>
633
+ <Enclosure>
634
+ <AirInfiltration>
635
+ <AirInfiltrationMeasurement>
636
+ <SystemIdentifier id='AirInfiltrationMeasurement1_2'/>
637
+ <HousePressure>50.0</HousePressure>
638
+ <BuildingAirLeakage>
639
+ <UnitofMeasure>ACH</UnitofMeasure>
640
+ <AirLeakage>3.0</AirLeakage>
641
+ </BuildingAirLeakage>
642
+ <InfiltrationVolume>21600.0</InfiltrationVolume>
643
+ </AirInfiltrationMeasurement>
644
+ </AirInfiltration>
645
+ <Attics>
646
+ <Attic>
647
+ <SystemIdentifier id='Attic1_2'/>
648
+ <AtticType>
649
+ <Attic>
650
+ <Vented>false</Vented>
651
+ </Attic>
652
+ </AtticType>
653
+ <WithinInfiltrationVolume>false</WithinInfiltrationVolume>
654
+ <AttachedToRoof idref='Roof1_2'/>
655
+ <AttachedToWall idref='Wall2_2'/>
656
+ <AttachedToFloor idref='Floor1_2'/>
657
+ </Attic>
658
+ </Attics>
659
+ <Foundations>
660
+ <Foundation>
661
+ <SystemIdentifier id='Foundation1_2'/>
662
+ <FoundationType>
663
+ <Basement>
664
+ <Conditioned>true</Conditioned>
665
+ </Basement>
666
+ </FoundationType>
667
+ <AttachedToRimJoist idref='RimJoist1_2'/>
668
+ <AttachedToFoundationWall idref='FoundationWall1_2'/>
669
+ <AttachedToSlab idref='Slab1_2'/>
670
+ </Foundation>
671
+ </Foundations>
672
+ <Roofs>
673
+ <Roof>
674
+ <SystemIdentifier id='Roof1_2'/>
675
+ <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
676
+ <Area>1509.4</Area>
677
+ <RoofType>asphalt or fiberglass shingles</RoofType>
678
+ <SolarAbsorptance>0.7</SolarAbsorptance>
679
+ <Emittance>0.92</Emittance>
680
+ <Pitch>6.0</Pitch>
681
+ <RadiantBarrier>false</RadiantBarrier>
682
+ <Insulation>
683
+ <SystemIdentifier id='Roof1Insulation_2'/>
684
+ <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
685
+ </Insulation>
686
+ </Roof>
687
+ </Roofs>
688
+ <RimJoists>
689
+ <RimJoist>
690
+ <SystemIdentifier id='RimJoist1_2'/>
691
+ <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
692
+ <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
693
+ <Area>115.6</Area>
694
+ <Siding>wood siding</Siding>
695
+ <SolarAbsorptance>0.7</SolarAbsorptance>
696
+ <Emittance>0.92</Emittance>
697
+ <Insulation>
698
+ <SystemIdentifier id='RimJoist1Insulation_2'/>
699
+ <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
700
+ </Insulation>
701
+ </RimJoist>
702
+ </RimJoists>
703
+ <Walls>
704
+ <Wall>
705
+ <SystemIdentifier id='Wall1_2'/>
706
+ <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
707
+ <InteriorAdjacentTo>living space</InteriorAdjacentTo>
708
+ <WallType>
709
+ <WoodStud/>
710
+ </WallType>
711
+ <Area>1200.0</Area>
712
+ <Siding>wood siding</Siding>
713
+ <SolarAbsorptance>0.7</SolarAbsorptance>
714
+ <Emittance>0.92</Emittance>
715
+ <InteriorFinish>
716
+ <Type>gypsum board</Type>
717
+ </InteriorFinish>
718
+ <Insulation>
719
+ <SystemIdentifier id='Wall1Insulation_2'/>
720
+ <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
721
+ </Insulation>
722
+ </Wall>
723
+ <Wall>
724
+ <SystemIdentifier id='Wall2_2'/>
725
+ <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
726
+ <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
727
+ <AtticWallType>gable</AtticWallType>
728
+ <WallType>
729
+ <WoodStud/>
730
+ </WallType>
731
+ <Area>225.0</Area>
732
+ <Siding>wood siding</Siding>
733
+ <SolarAbsorptance>0.7</SolarAbsorptance>
734
+ <Emittance>0.92</Emittance>
735
+ <Insulation>
736
+ <SystemIdentifier id='Wall2Insulation_2'/>
737
+ <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
738
+ </Insulation>
739
+ </Wall>
740
+ </Walls>
741
+ <FoundationWalls>
742
+ <FoundationWall>
743
+ <SystemIdentifier id='FoundationWall1_2'/>
744
+ <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
745
+ <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
746
+ <Height>8.0</Height>
747
+ <Area>1200.0</Area>
748
+ <Thickness>8.0</Thickness>
749
+ <DepthBelowGrade>7.0</DepthBelowGrade>
750
+ <InteriorFinish>
751
+ <Type>gypsum board</Type>
752
+ </InteriorFinish>
753
+ <Insulation>
754
+ <SystemIdentifier id='FoundationWall1Insulation_2'/>
755
+ <Layer>
756
+ <InstallationType>continuous - exterior</InstallationType>
757
+ <NominalRValue>8.9</NominalRValue>
758
+ <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
759
+ <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
760
+ </Layer>
761
+ <Layer>
762
+ <InstallationType>continuous - interior</InstallationType>
763
+ <NominalRValue>0.0</NominalRValue>
764
+ </Layer>
765
+ </Insulation>
766
+ </FoundationWall>
767
+ </FoundationWalls>
768
+ <Floors>
769
+ <Floor>
770
+ <SystemIdentifier id='Floor1_2'/>
771
+ <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
772
+ <InteriorAdjacentTo>living space</InteriorAdjacentTo>
773
+ <FloorOrCeiling>ceiling</FloorOrCeiling>
774
+ <FloorType>
775
+ <WoodFrame/>
776
+ </FloorType>
777
+ <Area>1350.0</Area>
778
+ <InteriorFinish>
779
+ <Type>gypsum board</Type>
780
+ </InteriorFinish>
781
+ <Insulation>
782
+ <SystemIdentifier id='Floor1Insulation_2'/>
783
+ <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
784
+ </Insulation>
785
+ </Floor>
786
+ </Floors>
787
+ <Slabs>
788
+ <Slab>
789
+ <SystemIdentifier id='Slab1_2'/>
790
+ <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
791
+ <Area>1350.0</Area>
792
+ <Thickness>4.0</Thickness>
793
+ <ExposedPerimeter>150.0</ExposedPerimeter>
794
+ <PerimeterInsulation>
795
+ <SystemIdentifier id='Slab1PerimeterInsulation_2'/>
796
+ <Layer>
797
+ <NominalRValue>0.0</NominalRValue>
798
+ <InsulationDepth>0.0</InsulationDepth>
799
+ </Layer>
800
+ </PerimeterInsulation>
801
+ <UnderSlabInsulation>
802
+ <SystemIdentifier id='Slab1UnderSlabInsulation_2'/>
803
+ <Layer>
804
+ <NominalRValue>0.0</NominalRValue>
805
+ <InsulationWidth>0.0</InsulationWidth>
806
+ </Layer>
807
+ </UnderSlabInsulation>
808
+ <extension>
809
+ <CarpetFraction>0.0</CarpetFraction>
810
+ <CarpetRValue>0.0</CarpetRValue>
811
+ </extension>
812
+ </Slab>
813
+ </Slabs>
814
+ <Windows>
815
+ <Window>
816
+ <SystemIdentifier id='Window1_2'/>
817
+ <Area>108.0</Area>
818
+ <Azimuth>0</Azimuth>
819
+ <UFactor>0.33</UFactor>
820
+ <SHGC>0.45</SHGC>
821
+ <InteriorShading>
822
+ <SystemIdentifier id='Window1InteriorShading_2'/>
823
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
824
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
825
+ </InteriorShading>
826
+ <FractionOperable>0.67</FractionOperable>
827
+ <AttachedToWall idref='Wall1_2'/>
828
+ </Window>
829
+ <Window>
830
+ <SystemIdentifier id='Window2_2'/>
831
+ <Area>72.0</Area>
832
+ <Azimuth>90</Azimuth>
833
+ <UFactor>0.33</UFactor>
834
+ <SHGC>0.45</SHGC>
835
+ <InteriorShading>
836
+ <SystemIdentifier id='Window2InteriorShading_2'/>
837
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
838
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
839
+ </InteriorShading>
840
+ <FractionOperable>0.67</FractionOperable>
841
+ <AttachedToWall idref='Wall1_2'/>
842
+ </Window>
843
+ <Window>
844
+ <SystemIdentifier id='Window3_2'/>
845
+ <Area>108.0</Area>
846
+ <Azimuth>180</Azimuth>
847
+ <UFactor>0.33</UFactor>
848
+ <SHGC>0.45</SHGC>
849
+ <InteriorShading>
850
+ <SystemIdentifier id='Window3InteriorShading_2'/>
851
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
852
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
853
+ </InteriorShading>
854
+ <FractionOperable>0.67</FractionOperable>
855
+ <AttachedToWall idref='Wall1_2'/>
856
+ </Window>
857
+ <Window>
858
+ <SystemIdentifier id='Window4_2'/>
859
+ <Area>72.0</Area>
860
+ <Azimuth>270</Azimuth>
861
+ <UFactor>0.33</UFactor>
862
+ <SHGC>0.45</SHGC>
863
+ <InteriorShading>
864
+ <SystemIdentifier id='Window4InteriorShading_2'/>
865
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
866
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
867
+ </InteriorShading>
868
+ <FractionOperable>0.67</FractionOperable>
869
+ <AttachedToWall idref='Wall1_2'/>
870
+ </Window>
871
+ </Windows>
872
+ <Doors>
873
+ <Door>
874
+ <SystemIdentifier id='Door1_2'/>
875
+ <AttachedToWall idref='Wall1_2'/>
876
+ <Area>40.0</Area>
877
+ <Azimuth>180</Azimuth>
878
+ <RValue>4.4</RValue>
879
+ </Door>
880
+ </Doors>
881
+ </Enclosure>
882
+ <Systems>
883
+ <HVAC>
884
+ <HVACPlant>
885
+ <PrimarySystems>
886
+ <PrimaryHeatingSystem idref='HeatingSystem1_2'/>
887
+ <PrimaryCoolingSystem idref='CoolingSystem1_2'/>
888
+ </PrimarySystems>
889
+ <HeatingSystem>
890
+ <SystemIdentifier id='HeatingSystem1_2'/>
891
+ <DistributionSystem idref='HVACDistribution1_2'/>
892
+ <HeatingSystemType>
893
+ <Furnace/>
894
+ </HeatingSystemType>
895
+ <HeatingSystemFuel>natural gas</HeatingSystemFuel>
896
+ <HeatingCapacity>36000.0</HeatingCapacity>
897
+ <AnnualHeatingEfficiency>
898
+ <Units>AFUE</Units>
899
+ <Value>0.92</Value>
900
+ </AnnualHeatingEfficiency>
901
+ <FractionHeatLoadServed>1.0</FractionHeatLoadServed>
902
+ </HeatingSystem>
903
+ <CoolingSystem>
904
+ <SystemIdentifier id='CoolingSystem1_2'/>
905
+ <DistributionSystem idref='HVACDistribution1_2'/>
906
+ <CoolingSystemType>central air conditioner</CoolingSystemType>
907
+ <CoolingSystemFuel>electricity</CoolingSystemFuel>
908
+ <CoolingCapacity>24000.0</CoolingCapacity>
909
+ <CompressorType>single stage</CompressorType>
910
+ <FractionCoolLoadServed>1.0</FractionCoolLoadServed>
911
+ <AnnualCoolingEfficiency>
912
+ <Units>SEER</Units>
913
+ <Value>13.0</Value>
914
+ </AnnualCoolingEfficiency>
915
+ <SensibleHeatFraction>0.73</SensibleHeatFraction>
916
+ </CoolingSystem>
917
+ </HVACPlant>
918
+ <HVACControl>
919
+ <SystemIdentifier id='HVACControl1_2'/>
920
+ <SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
921
+ <SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
922
+ </HVACControl>
923
+ <HVACDistribution>
924
+ <SystemIdentifier id='HVACDistribution1_2'/>
925
+ <DistributionSystemType>
926
+ <AirDistribution>
927
+ <AirDistributionType>regular velocity</AirDistributionType>
928
+ <DuctLeakageMeasurement>
929
+ <DuctType>supply</DuctType>
930
+ <DuctLeakage>
931
+ <Units>CFM25</Units>
932
+ <Value>75.0</Value>
933
+ <TotalOrToOutside>to outside</TotalOrToOutside>
934
+ </DuctLeakage>
935
+ </DuctLeakageMeasurement>
936
+ <DuctLeakageMeasurement>
937
+ <DuctType>return</DuctType>
938
+ <DuctLeakage>
939
+ <Units>CFM25</Units>
940
+ <Value>25.0</Value>
941
+ <TotalOrToOutside>to outside</TotalOrToOutside>
942
+ </DuctLeakage>
943
+ </DuctLeakageMeasurement>
944
+ <Ducts>
945
+ <SystemIdentifier id='Ducts1_2'/>
946
+ <DuctType>supply</DuctType>
947
+ <DuctInsulationRValue>4.0</DuctInsulationRValue>
948
+ <DuctLocation>attic - unvented</DuctLocation>
949
+ <DuctSurfaceArea>150.0</DuctSurfaceArea>
950
+ </Ducts>
951
+ <Ducts>
952
+ <SystemIdentifier id='Ducts2_2'/>
953
+ <DuctType>return</DuctType>
954
+ <DuctInsulationRValue>0.0</DuctInsulationRValue>
955
+ <DuctLocation>attic - unvented</DuctLocation>
956
+ <DuctSurfaceArea>50.0</DuctSurfaceArea>
957
+ </Ducts>
958
+ </AirDistribution>
959
+ </DistributionSystemType>
960
+ </HVACDistribution>
961
+ </HVAC>
962
+ <WaterHeating>
963
+ <WaterHeatingSystem>
964
+ <SystemIdentifier id='WaterHeatingSystem1_2'/>
965
+ <FuelType>electricity</FuelType>
966
+ <WaterHeaterType>storage water heater</WaterHeaterType>
967
+ <Location>living space</Location>
968
+ <TankVolume>40.0</TankVolume>
969
+ <FractionDHWLoadServed>1.0</FractionDHWLoadServed>
970
+ <HeatingCapacity>18767.0</HeatingCapacity>
971
+ <EnergyFactor>0.95</EnergyFactor>
972
+ <HotWaterTemperature>125.0</HotWaterTemperature>
973
+ </WaterHeatingSystem>
974
+ <HotWaterDistribution>
975
+ <SystemIdentifier id='HotWaterDistribution1_2'/>
976
+ <SystemType>
977
+ <Standard>
978
+ <PipingLength>50.0</PipingLength>
979
+ </Standard>
980
+ </SystemType>
981
+ <PipeInsulation>
982
+ <PipeRValue>0.0</PipeRValue>
983
+ </PipeInsulation>
984
+ </HotWaterDistribution>
985
+ <WaterFixture>
986
+ <SystemIdentifier id='WaterFixture1_2'/>
987
+ <WaterFixtureType>shower head</WaterFixtureType>
988
+ <LowFlow>true</LowFlow>
989
+ </WaterFixture>
990
+ <WaterFixture>
991
+ <SystemIdentifier id='WaterFixture2_2'/>
992
+ <WaterFixtureType>faucet</WaterFixtureType>
993
+ <LowFlow>false</LowFlow>
994
+ </WaterFixture>
995
+ </WaterHeating>
996
+ </Systems>
997
+ <Appliances>
998
+ <ClothesWasher>
999
+ <SystemIdentifier id='ClothesWasher1_2'/>
1000
+ <Location>living space</Location>
1001
+ <IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
1002
+ <RatedAnnualkWh>380.0</RatedAnnualkWh>
1003
+ <LabelElectricRate>0.12</LabelElectricRate>
1004
+ <LabelGasRate>1.09</LabelGasRate>
1005
+ <LabelAnnualGasCost>27.0</LabelAnnualGasCost>
1006
+ <LabelUsage>6.0</LabelUsage>
1007
+ <Capacity>3.2</Capacity>
1008
+ </ClothesWasher>
1009
+ <ClothesDryer>
1010
+ <SystemIdentifier id='ClothesDryer1_2'/>
1011
+ <Location>living space</Location>
1012
+ <FuelType>electricity</FuelType>
1013
+ <CombinedEnergyFactor>3.73</CombinedEnergyFactor>
1014
+ <Vented>true</Vented>
1015
+ <VentedFlowRate>150.0</VentedFlowRate>
1016
+ </ClothesDryer>
1017
+ <Dishwasher>
1018
+ <SystemIdentifier id='Dishwasher1_2'/>
1019
+ <Location>living space</Location>
1020
+ <RatedAnnualkWh>307.0</RatedAnnualkWh>
1021
+ <PlaceSettingCapacity>12</PlaceSettingCapacity>
1022
+ <LabelElectricRate>0.12</LabelElectricRate>
1023
+ <LabelGasRate>1.09</LabelGasRate>
1024
+ <LabelAnnualGasCost>22.32</LabelAnnualGasCost>
1025
+ <LabelUsage>4.0</LabelUsage>
1026
+ </Dishwasher>
1027
+ <Refrigerator>
1028
+ <SystemIdentifier id='Refrigerator1_2'/>
1029
+ <Location>living space</Location>
1030
+ <RatedAnnualkWh>650.0</RatedAnnualkWh>
1031
+ <PrimaryIndicator>true</PrimaryIndicator>
1032
+ </Refrigerator>
1033
+ <CookingRange>
1034
+ <SystemIdentifier id='CookingRange1_2'/>
1035
+ <Location>living space</Location>
1036
+ <FuelType>electricity</FuelType>
1037
+ <IsInduction>false</IsInduction>
1038
+ </CookingRange>
1039
+ <Oven>
1040
+ <SystemIdentifier id='Oven1_2'/>
1041
+ <IsConvection>false</IsConvection>
1042
+ </Oven>
1043
+ </Appliances>
1044
+ <Lighting>
1045
+ <LightingGroup>
1046
+ <SystemIdentifier id='LightingGroup1_2'/>
1047
+ <Location>interior</Location>
1048
+ <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
1049
+ <LightingType>
1050
+ <CompactFluorescent/>
1051
+ </LightingType>
1052
+ </LightingGroup>
1053
+ <LightingGroup>
1054
+ <SystemIdentifier id='LightingGroup2_2'/>
1055
+ <Location>exterior</Location>
1056
+ <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
1057
+ <LightingType>
1058
+ <CompactFluorescent/>
1059
+ </LightingType>
1060
+ </LightingGroup>
1061
+ <LightingGroup>
1062
+ <SystemIdentifier id='LightingGroup3_2'/>
1063
+ <Location>garage</Location>
1064
+ <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
1065
+ <LightingType>
1066
+ <CompactFluorescent/>
1067
+ </LightingType>
1068
+ </LightingGroup>
1069
+ <LightingGroup>
1070
+ <SystemIdentifier id='LightingGroup4_2'/>
1071
+ <Location>interior</Location>
1072
+ <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
1073
+ <LightingType>
1074
+ <FluorescentTube/>
1075
+ </LightingType>
1076
+ </LightingGroup>
1077
+ <LightingGroup>
1078
+ <SystemIdentifier id='LightingGroup5_2'/>
1079
+ <Location>exterior</Location>
1080
+ <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
1081
+ <LightingType>
1082
+ <FluorescentTube/>
1083
+ </LightingType>
1084
+ </LightingGroup>
1085
+ <LightingGroup>
1086
+ <SystemIdentifier id='LightingGroup6_2'/>
1087
+ <Location>garage</Location>
1088
+ <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
1089
+ <LightingType>
1090
+ <FluorescentTube/>
1091
+ </LightingType>
1092
+ </LightingGroup>
1093
+ <LightingGroup>
1094
+ <SystemIdentifier id='LightingGroup7_2'/>
1095
+ <Location>interior</Location>
1096
+ <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
1097
+ <LightingType>
1098
+ <LightEmittingDiode/>
1099
+ </LightingType>
1100
+ </LightingGroup>
1101
+ <LightingGroup>
1102
+ <SystemIdentifier id='LightingGroup8_2'/>
1103
+ <Location>exterior</Location>
1104
+ <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
1105
+ <LightingType>
1106
+ <LightEmittingDiode/>
1107
+ </LightingType>
1108
+ </LightingGroup>
1109
+ <LightingGroup>
1110
+ <SystemIdentifier id='LightingGroup9_2'/>
1111
+ <Location>garage</Location>
1112
+ <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
1113
+ <LightingType>
1114
+ <LightEmittingDiode/>
1115
+ </LightingType>
1116
+ </LightingGroup>
1117
+ </Lighting>
1118
+ <MiscLoads>
1119
+ <PlugLoad>
1120
+ <SystemIdentifier id='PlugLoad1_2'/>
1121
+ <PlugLoadType>TV other</PlugLoadType>
1122
+ <Load>
1123
+ <Units>kWh/year</Units>
1124
+ <Value>620.0</Value>
1125
+ </Load>
1126
+ </PlugLoad>
1127
+ <PlugLoad>
1128
+ <SystemIdentifier id='PlugLoad2_2'/>
1129
+ <PlugLoadType>other</PlugLoadType>
1130
+ <Load>
1131
+ <Units>kWh/year</Units>
1132
+ <Value>2457.0</Value>
1133
+ </Load>
1134
+ <extension>
1135
+ <FracSensible>0.855</FracSensible>
1136
+ <FracLatent>0.045</FracLatent>
1137
+ </extension>
1138
+ </PlugLoad>
1139
+ </MiscLoads>
1140
+ </BuildingDetails>
1141
+ </Building>
1142
+ <Building>
1143
+ <BuildingID id='MyBuilding_3'/>
1144
+ <Site>
1145
+ <SiteID id='SiteID_3'/>
1146
+ <Address>
1147
+ <StateCode>CO</StateCode>
1148
+ </Address>
1149
+ </Site>
1150
+ <ProjectStatus>
1151
+ <EventType>proposed workscope</EventType>
1152
+ </ProjectStatus>
1153
+ <BuildingDetails>
1154
+ <BuildingSummary>
1155
+ <Site>
1156
+ <SiteType>suburban</SiteType>
1157
+ <Surroundings>stand-alone</Surroundings>
1158
+ <VerticalSurroundings>no units above or below</VerticalSurroundings>
1159
+ <AzimuthOfFrontOfHome>180</AzimuthOfFrontOfHome>
1160
+ <FuelTypesAvailable>
1161
+ <Fuel>electricity</Fuel>
1162
+ <Fuel>natural gas</Fuel>
1163
+ </FuelTypesAvailable>
1164
+ </Site>
1165
+ <BuildingOccupancy>
1166
+ <NumberofResidents>3.0</NumberofResidents>
1167
+ </BuildingOccupancy>
1168
+ <BuildingConstruction>
1169
+ <ResidentialFacilityType>single-family detached</ResidentialFacilityType>
1170
+ <NumberofConditionedFloors>2.0</NumberofConditionedFloors>
1171
+ <NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
1172
+ <AverageCeilingHeight>8.0</AverageCeilingHeight>
1173
+ <NumberofBedrooms>3</NumberofBedrooms>
1174
+ <NumberofBathrooms>2</NumberofBathrooms>
1175
+ <ConditionedFloorArea>2700.0</ConditionedFloorArea>
1176
+ <ConditionedBuildingVolume>21600.0</ConditionedBuildingVolume>
1177
+ </BuildingConstruction>
1178
+ </BuildingSummary>
1179
+ <ClimateandRiskZones>
1180
+ <ClimateZoneIECC>
1181
+ <Year>2006</Year>
1182
+ <ClimateZone>5B</ClimateZone>
1183
+ </ClimateZoneIECC>
1184
+ <WeatherStation>
1185
+ <SystemIdentifier id='WeatherStation_3'/>
1186
+ <Name>USA_CO_Denver.Intl.AP.725650_TMY3</Name>
1187
+ <extension>
1188
+ <EPWFilePath>USA_CO_Denver.Intl.AP.725650_TMY3.epw</EPWFilePath>
1189
+ </extension>
1190
+ </WeatherStation>
1191
+ </ClimateandRiskZones>
1192
+ <Enclosure>
1193
+ <AirInfiltration>
1194
+ <AirInfiltrationMeasurement>
1195
+ <SystemIdentifier id='AirInfiltrationMeasurement1_3'/>
1196
+ <HousePressure>50.0</HousePressure>
1197
+ <BuildingAirLeakage>
1198
+ <UnitofMeasure>ACH</UnitofMeasure>
1199
+ <AirLeakage>3.0</AirLeakage>
1200
+ </BuildingAirLeakage>
1201
+ <InfiltrationVolume>21600.0</InfiltrationVolume>
1202
+ </AirInfiltrationMeasurement>
1203
+ </AirInfiltration>
1204
+ <Attics>
1205
+ <Attic>
1206
+ <SystemIdentifier id='Attic1_3'/>
1207
+ <AtticType>
1208
+ <Attic>
1209
+ <Vented>false</Vented>
1210
+ </Attic>
1211
+ </AtticType>
1212
+ <WithinInfiltrationVolume>false</WithinInfiltrationVolume>
1213
+ <AttachedToRoof idref='Roof1_3'/>
1214
+ <AttachedToWall idref='Wall2_3'/>
1215
+ <AttachedToFloor idref='Floor1_3'/>
1216
+ </Attic>
1217
+ </Attics>
1218
+ <Foundations>
1219
+ <Foundation>
1220
+ <SystemIdentifier id='Foundation1_3'/>
1221
+ <FoundationType>
1222
+ <Basement>
1223
+ <Conditioned>true</Conditioned>
1224
+ </Basement>
1225
+ </FoundationType>
1226
+ <AttachedToRimJoist idref='RimJoist1_3'/>
1227
+ <AttachedToFoundationWall idref='FoundationWall1_3'/>
1228
+ <AttachedToSlab idref='Slab1_3'/>
1229
+ </Foundation>
1230
+ </Foundations>
1231
+ <Roofs>
1232
+ <Roof>
1233
+ <SystemIdentifier id='Roof1_3'/>
1234
+ <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
1235
+ <Area>1509.4</Area>
1236
+ <RoofType>asphalt or fiberglass shingles</RoofType>
1237
+ <SolarAbsorptance>0.7</SolarAbsorptance>
1238
+ <Emittance>0.92</Emittance>
1239
+ <Pitch>6.0</Pitch>
1240
+ <RadiantBarrier>false</RadiantBarrier>
1241
+ <Insulation>
1242
+ <SystemIdentifier id='Roof1Insulation_3'/>
1243
+ <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
1244
+ </Insulation>
1245
+ </Roof>
1246
+ </Roofs>
1247
+ <RimJoists>
1248
+ <RimJoist>
1249
+ <SystemIdentifier id='RimJoist1_3'/>
1250
+ <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
1251
+ <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1252
+ <Area>115.6</Area>
1253
+ <Siding>wood siding</Siding>
1254
+ <SolarAbsorptance>0.7</SolarAbsorptance>
1255
+ <Emittance>0.92</Emittance>
1256
+ <Insulation>
1257
+ <SystemIdentifier id='RimJoist1Insulation_3'/>
1258
+ <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
1259
+ </Insulation>
1260
+ </RimJoist>
1261
+ </RimJoists>
1262
+ <Walls>
1263
+ <Wall>
1264
+ <SystemIdentifier id='Wall1_3'/>
1265
+ <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
1266
+ <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1267
+ <WallType>
1268
+ <WoodStud/>
1269
+ </WallType>
1270
+ <Area>1200.0</Area>
1271
+ <Siding>wood siding</Siding>
1272
+ <SolarAbsorptance>0.7</SolarAbsorptance>
1273
+ <Emittance>0.92</Emittance>
1274
+ <InteriorFinish>
1275
+ <Type>gypsum board</Type>
1276
+ </InteriorFinish>
1277
+ <Insulation>
1278
+ <SystemIdentifier id='Wall1Insulation_3'/>
1279
+ <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
1280
+ </Insulation>
1281
+ </Wall>
1282
+ <Wall>
1283
+ <SystemIdentifier id='Wall2_3'/>
1284
+ <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
1285
+ <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
1286
+ <AtticWallType>gable</AtticWallType>
1287
+ <WallType>
1288
+ <WoodStud/>
1289
+ </WallType>
1290
+ <Area>225.0</Area>
1291
+ <Siding>wood siding</Siding>
1292
+ <SolarAbsorptance>0.7</SolarAbsorptance>
1293
+ <Emittance>0.92</Emittance>
1294
+ <Insulation>
1295
+ <SystemIdentifier id='Wall2Insulation_3'/>
1296
+ <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
1297
+ </Insulation>
1298
+ </Wall>
1299
+ </Walls>
1300
+ <FoundationWalls>
1301
+ <FoundationWall>
1302
+ <SystemIdentifier id='FoundationWall1_3'/>
1303
+ <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
1304
+ <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1305
+ <Height>8.0</Height>
1306
+ <Area>1200.0</Area>
1307
+ <Thickness>8.0</Thickness>
1308
+ <DepthBelowGrade>7.0</DepthBelowGrade>
1309
+ <InteriorFinish>
1310
+ <Type>gypsum board</Type>
1311
+ </InteriorFinish>
1312
+ <Insulation>
1313
+ <SystemIdentifier id='FoundationWall1Insulation_3'/>
1314
+ <Layer>
1315
+ <InstallationType>continuous - exterior</InstallationType>
1316
+ <NominalRValue>8.9</NominalRValue>
1317
+ <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
1318
+ <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
1319
+ </Layer>
1320
+ <Layer>
1321
+ <InstallationType>continuous - interior</InstallationType>
1322
+ <NominalRValue>0.0</NominalRValue>
1323
+ </Layer>
1324
+ </Insulation>
1325
+ </FoundationWall>
1326
+ </FoundationWalls>
1327
+ <Floors>
1328
+ <Floor>
1329
+ <SystemIdentifier id='Floor1_3'/>
1330
+ <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1331
+ <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1332
+ <FloorOrCeiling>ceiling</FloorOrCeiling>
1333
+ <FloorType>
1334
+ <WoodFrame/>
1335
+ </FloorType>
1336
+ <Area>1350.0</Area>
1337
+ <InteriorFinish>
1338
+ <Type>gypsum board</Type>
1339
+ </InteriorFinish>
1340
+ <Insulation>
1341
+ <SystemIdentifier id='Floor1Insulation_3'/>
1342
+ <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
1343
+ </Insulation>
1344
+ </Floor>
1345
+ </Floors>
1346
+ <Slabs>
1347
+ <Slab>
1348
+ <SystemIdentifier id='Slab1_3'/>
1349
+ <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1350
+ <Area>1350.0</Area>
1351
+ <Thickness>4.0</Thickness>
1352
+ <ExposedPerimeter>150.0</ExposedPerimeter>
1353
+ <PerimeterInsulation>
1354
+ <SystemIdentifier id='Slab1PerimeterInsulation_3'/>
1355
+ <Layer>
1356
+ <NominalRValue>0.0</NominalRValue>
1357
+ <InsulationDepth>0.0</InsulationDepth>
1358
+ </Layer>
1359
+ </PerimeterInsulation>
1360
+ <UnderSlabInsulation>
1361
+ <SystemIdentifier id='Slab1UnderSlabInsulation_3'/>
1362
+ <Layer>
1363
+ <NominalRValue>0.0</NominalRValue>
1364
+ <InsulationWidth>0.0</InsulationWidth>
1365
+ </Layer>
1366
+ </UnderSlabInsulation>
1367
+ <extension>
1368
+ <CarpetFraction>0.0</CarpetFraction>
1369
+ <CarpetRValue>0.0</CarpetRValue>
1370
+ </extension>
1371
+ </Slab>
1372
+ </Slabs>
1373
+ <Windows>
1374
+ <Window>
1375
+ <SystemIdentifier id='Window1_3'/>
1376
+ <Area>108.0</Area>
1377
+ <Azimuth>0</Azimuth>
1378
+ <UFactor>0.33</UFactor>
1379
+ <SHGC>0.45</SHGC>
1380
+ <InteriorShading>
1381
+ <SystemIdentifier id='Window1InteriorShading_3'/>
1382
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1383
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1384
+ </InteriorShading>
1385
+ <FractionOperable>0.67</FractionOperable>
1386
+ <AttachedToWall idref='Wall1_3'/>
1387
+ </Window>
1388
+ <Window>
1389
+ <SystemIdentifier id='Window2_3'/>
1390
+ <Area>72.0</Area>
1391
+ <Azimuth>90</Azimuth>
1392
+ <UFactor>0.33</UFactor>
1393
+ <SHGC>0.45</SHGC>
1394
+ <InteriorShading>
1395
+ <SystemIdentifier id='Window2InteriorShading_3'/>
1396
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1397
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1398
+ </InteriorShading>
1399
+ <FractionOperable>0.67</FractionOperable>
1400
+ <AttachedToWall idref='Wall1_3'/>
1401
+ </Window>
1402
+ <Window>
1403
+ <SystemIdentifier id='Window3_3'/>
1404
+ <Area>108.0</Area>
1405
+ <Azimuth>180</Azimuth>
1406
+ <UFactor>0.33</UFactor>
1407
+ <SHGC>0.45</SHGC>
1408
+ <InteriorShading>
1409
+ <SystemIdentifier id='Window3InteriorShading_3'/>
1410
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1411
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1412
+ </InteriorShading>
1413
+ <FractionOperable>0.67</FractionOperable>
1414
+ <AttachedToWall idref='Wall1_3'/>
1415
+ </Window>
1416
+ <Window>
1417
+ <SystemIdentifier id='Window4_3'/>
1418
+ <Area>72.0</Area>
1419
+ <Azimuth>270</Azimuth>
1420
+ <UFactor>0.33</UFactor>
1421
+ <SHGC>0.45</SHGC>
1422
+ <InteriorShading>
1423
+ <SystemIdentifier id='Window4InteriorShading_3'/>
1424
+ <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1425
+ <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1426
+ </InteriorShading>
1427
+ <FractionOperable>0.67</FractionOperable>
1428
+ <AttachedToWall idref='Wall1_3'/>
1429
+ </Window>
1430
+ </Windows>
1431
+ <Doors>
1432
+ <Door>
1433
+ <SystemIdentifier id='Door1_3'/>
1434
+ <AttachedToWall idref='Wall1_3'/>
1435
+ <Area>40.0</Area>
1436
+ <Azimuth>180</Azimuth>
1437
+ <RValue>4.4</RValue>
1438
+ </Door>
1439
+ </Doors>
1440
+ </Enclosure>
1441
+ <Systems>
1442
+ <HVAC>
1443
+ <HVACPlant>
1444
+ <PrimarySystems>
1445
+ <PrimaryHeatingSystem idref='HeatingSystem1_3'/>
1446
+ <PrimaryCoolingSystem idref='CoolingSystem1_3'/>
1447
+ </PrimarySystems>
1448
+ <HeatingSystem>
1449
+ <SystemIdentifier id='HeatingSystem1_3'/>
1450
+ <DistributionSystem idref='HVACDistribution1_3'/>
1451
+ <HeatingSystemType>
1452
+ <Furnace/>
1453
+ </HeatingSystemType>
1454
+ <HeatingSystemFuel>natural gas</HeatingSystemFuel>
1455
+ <HeatingCapacity>36000.0</HeatingCapacity>
1456
+ <AnnualHeatingEfficiency>
1457
+ <Units>AFUE</Units>
1458
+ <Value>0.92</Value>
1459
+ </AnnualHeatingEfficiency>
1460
+ <FractionHeatLoadServed>1.0</FractionHeatLoadServed>
1461
+ </HeatingSystem>
1462
+ <CoolingSystem>
1463
+ <SystemIdentifier id='CoolingSystem1_3'/>
1464
+ <DistributionSystem idref='HVACDistribution1_3'/>
1465
+ <CoolingSystemType>central air conditioner</CoolingSystemType>
1466
+ <CoolingSystemFuel>electricity</CoolingSystemFuel>
1467
+ <CoolingCapacity>24000.0</CoolingCapacity>
1468
+ <CompressorType>single stage</CompressorType>
1469
+ <FractionCoolLoadServed>1.0</FractionCoolLoadServed>
1470
+ <AnnualCoolingEfficiency>
1471
+ <Units>SEER</Units>
1472
+ <Value>13.0</Value>
1473
+ </AnnualCoolingEfficiency>
1474
+ <SensibleHeatFraction>0.73</SensibleHeatFraction>
1475
+ </CoolingSystem>
1476
+ </HVACPlant>
1477
+ <HVACControl>
1478
+ <SystemIdentifier id='HVACControl1_3'/>
1479
+ <SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
1480
+ <SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
1481
+ </HVACControl>
1482
+ <HVACDistribution>
1483
+ <SystemIdentifier id='HVACDistribution1_3'/>
1484
+ <DistributionSystemType>
1485
+ <AirDistribution>
1486
+ <AirDistributionType>regular velocity</AirDistributionType>
1487
+ <DuctLeakageMeasurement>
1488
+ <DuctType>supply</DuctType>
1489
+ <DuctLeakage>
1490
+ <Units>CFM25</Units>
1491
+ <Value>75.0</Value>
1492
+ <TotalOrToOutside>to outside</TotalOrToOutside>
1493
+ </DuctLeakage>
1494
+ </DuctLeakageMeasurement>
1495
+ <DuctLeakageMeasurement>
1496
+ <DuctType>return</DuctType>
1497
+ <DuctLeakage>
1498
+ <Units>CFM25</Units>
1499
+ <Value>25.0</Value>
1500
+ <TotalOrToOutside>to outside</TotalOrToOutside>
1501
+ </DuctLeakage>
1502
+ </DuctLeakageMeasurement>
1503
+ <Ducts>
1504
+ <SystemIdentifier id='Ducts1_3'/>
1505
+ <DuctType>supply</DuctType>
1506
+ <DuctInsulationRValue>4.0</DuctInsulationRValue>
1507
+ <DuctLocation>attic - unvented</DuctLocation>
1508
+ <DuctSurfaceArea>150.0</DuctSurfaceArea>
1509
+ </Ducts>
1510
+ <Ducts>
1511
+ <SystemIdentifier id='Ducts2_3'/>
1512
+ <DuctType>return</DuctType>
1513
+ <DuctInsulationRValue>0.0</DuctInsulationRValue>
1514
+ <DuctLocation>attic - unvented</DuctLocation>
1515
+ <DuctSurfaceArea>50.0</DuctSurfaceArea>
1516
+ </Ducts>
1517
+ </AirDistribution>
1518
+ </DistributionSystemType>
1519
+ </HVACDistribution>
1520
+ </HVAC>
1521
+ <WaterHeating>
1522
+ <WaterHeatingSystem>
1523
+ <SystemIdentifier id='WaterHeatingSystem1_3'/>
1524
+ <FuelType>electricity</FuelType>
1525
+ <WaterHeaterType>storage water heater</WaterHeaterType>
1526
+ <Location>living space</Location>
1527
+ <TankVolume>40.0</TankVolume>
1528
+ <FractionDHWLoadServed>1.0</FractionDHWLoadServed>
1529
+ <HeatingCapacity>18767.0</HeatingCapacity>
1530
+ <EnergyFactor>0.95</EnergyFactor>
1531
+ <HotWaterTemperature>125.0</HotWaterTemperature>
1532
+ </WaterHeatingSystem>
1533
+ <HotWaterDistribution>
1534
+ <SystemIdentifier id='HotWaterDistribution1_3'/>
1535
+ <SystemType>
1536
+ <Standard>
1537
+ <PipingLength>50.0</PipingLength>
1538
+ </Standard>
1539
+ </SystemType>
1540
+ <PipeInsulation>
1541
+ <PipeRValue>0.0</PipeRValue>
1542
+ </PipeInsulation>
1543
+ </HotWaterDistribution>
1544
+ <WaterFixture>
1545
+ <SystemIdentifier id='WaterFixture1_3'/>
1546
+ <WaterFixtureType>shower head</WaterFixtureType>
1547
+ <LowFlow>true</LowFlow>
1548
+ </WaterFixture>
1549
+ <WaterFixture>
1550
+ <SystemIdentifier id='WaterFixture2_3'/>
1551
+ <WaterFixtureType>faucet</WaterFixtureType>
1552
+ <LowFlow>false</LowFlow>
1553
+ </WaterFixture>
1554
+ </WaterHeating>
1555
+ </Systems>
1556
+ <Appliances>
1557
+ <ClothesWasher>
1558
+ <SystemIdentifier id='ClothesWasher1_3'/>
1559
+ <Location>living space</Location>
1560
+ <IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
1561
+ <RatedAnnualkWh>380.0</RatedAnnualkWh>
1562
+ <LabelElectricRate>0.12</LabelElectricRate>
1563
+ <LabelGasRate>1.09</LabelGasRate>
1564
+ <LabelAnnualGasCost>27.0</LabelAnnualGasCost>
1565
+ <LabelUsage>6.0</LabelUsage>
1566
+ <Capacity>3.2</Capacity>
1567
+ </ClothesWasher>
1568
+ <ClothesDryer>
1569
+ <SystemIdentifier id='ClothesDryer1_3'/>
1570
+ <Location>living space</Location>
1571
+ <FuelType>electricity</FuelType>
1572
+ <CombinedEnergyFactor>3.73</CombinedEnergyFactor>
1573
+ <Vented>true</Vented>
1574
+ <VentedFlowRate>150.0</VentedFlowRate>
1575
+ </ClothesDryer>
1576
+ <Dishwasher>
1577
+ <SystemIdentifier id='Dishwasher1_3'/>
1578
+ <Location>living space</Location>
1579
+ <RatedAnnualkWh>307.0</RatedAnnualkWh>
1580
+ <PlaceSettingCapacity>12</PlaceSettingCapacity>
1581
+ <LabelElectricRate>0.12</LabelElectricRate>
1582
+ <LabelGasRate>1.09</LabelGasRate>
1583
+ <LabelAnnualGasCost>22.32</LabelAnnualGasCost>
1584
+ <LabelUsage>4.0</LabelUsage>
1585
+ </Dishwasher>
1586
+ <Refrigerator>
1587
+ <SystemIdentifier id='Refrigerator1_3'/>
1588
+ <Location>living space</Location>
1589
+ <RatedAnnualkWh>650.0</RatedAnnualkWh>
1590
+ <PrimaryIndicator>true</PrimaryIndicator>
1591
+ </Refrigerator>
1592
+ <CookingRange>
1593
+ <SystemIdentifier id='CookingRange1_3'/>
1594
+ <Location>living space</Location>
1595
+ <FuelType>electricity</FuelType>
1596
+ <IsInduction>false</IsInduction>
1597
+ </CookingRange>
1598
+ <Oven>
1599
+ <SystemIdentifier id='Oven1_3'/>
1600
+ <IsConvection>false</IsConvection>
1601
+ </Oven>
1602
+ </Appliances>
1603
+ <Lighting>
1604
+ <LightingGroup>
1605
+ <SystemIdentifier id='LightingGroup1_3'/>
1606
+ <Location>interior</Location>
1607
+ <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
1608
+ <LightingType>
1609
+ <CompactFluorescent/>
1610
+ </LightingType>
1611
+ </LightingGroup>
1612
+ <LightingGroup>
1613
+ <SystemIdentifier id='LightingGroup2_3'/>
1614
+ <Location>exterior</Location>
1615
+ <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
1616
+ <LightingType>
1617
+ <CompactFluorescent/>
1618
+ </LightingType>
1619
+ </LightingGroup>
1620
+ <LightingGroup>
1621
+ <SystemIdentifier id='LightingGroup3_3'/>
1622
+ <Location>garage</Location>
1623
+ <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
1624
+ <LightingType>
1625
+ <CompactFluorescent/>
1626
+ </LightingType>
1627
+ </LightingGroup>
1628
+ <LightingGroup>
1629
+ <SystemIdentifier id='LightingGroup4_3'/>
1630
+ <Location>interior</Location>
1631
+ <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
1632
+ <LightingType>
1633
+ <FluorescentTube/>
1634
+ </LightingType>
1635
+ </LightingGroup>
1636
+ <LightingGroup>
1637
+ <SystemIdentifier id='LightingGroup5_3'/>
1638
+ <Location>exterior</Location>
1639
+ <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
1640
+ <LightingType>
1641
+ <FluorescentTube/>
1642
+ </LightingType>
1643
+ </LightingGroup>
1644
+ <LightingGroup>
1645
+ <SystemIdentifier id='LightingGroup6_3'/>
1646
+ <Location>garage</Location>
1647
+ <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
1648
+ <LightingType>
1649
+ <FluorescentTube/>
1650
+ </LightingType>
1651
+ </LightingGroup>
1652
+ <LightingGroup>
1653
+ <SystemIdentifier id='LightingGroup7_3'/>
1654
+ <Location>interior</Location>
1655
+ <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
1656
+ <LightingType>
1657
+ <LightEmittingDiode/>
1658
+ </LightingType>
1659
+ </LightingGroup>
1660
+ <LightingGroup>
1661
+ <SystemIdentifier id='LightingGroup8_3'/>
1662
+ <Location>exterior</Location>
1663
+ <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
1664
+ <LightingType>
1665
+ <LightEmittingDiode/>
1666
+ </LightingType>
1667
+ </LightingGroup>
1668
+ <LightingGroup>
1669
+ <SystemIdentifier id='LightingGroup9_3'/>
1670
+ <Location>garage</Location>
1671
+ <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
1672
+ <LightingType>
1673
+ <LightEmittingDiode/>
1674
+ </LightingType>
1675
+ </LightingGroup>
1676
+ </Lighting>
1677
+ <MiscLoads>
1678
+ <PlugLoad>
1679
+ <SystemIdentifier id='PlugLoad1_3'/>
1680
+ <PlugLoadType>TV other</PlugLoadType>
1681
+ <Load>
1682
+ <Units>kWh/year</Units>
1683
+ <Value>620.0</Value>
1684
+ </Load>
1685
+ </PlugLoad>
1686
+ <PlugLoad>
1687
+ <SystemIdentifier id='PlugLoad2_3'/>
1688
+ <PlugLoadType>other</PlugLoadType>
1689
+ <Load>
1690
+ <Units>kWh/year</Units>
1691
+ <Value>2457.0</Value>
1692
+ </Load>
1693
+ <extension>
1694
+ <FracSensible>0.855</FracSensible>
1695
+ <FracLatent>0.045</FracLatent>
1696
+ </extension>
1697
+ </PlugLoad>
1698
+ </MiscLoads>
1699
+ </BuildingDetails>
1700
+ </Building>
1678
1701
  </HPXML>