urbanopt-cli 0.9.3 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (641) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/{nightly_build.yml → nightly_ci_build.yml} +6 -5
  3. data/CHANGELOG.md +11 -2
  4. data/CMakeLists.txt +7 -7
  5. data/Gemfile +6 -5
  6. data/LICENSE.md +18 -15
  7. data/README.md +2 -1
  8. data/Rakefile +2 -37
  9. data/example_files/Gemfile +8 -8
  10. data/example_files/mappers/Baseline.rb +170 -191
  11. data/example_files/mappers/ChilledWaterStorage.rb +8 -30
  12. data/example_files/mappers/ClassProject.rb +2 -27
  13. data/example_files/mappers/CreateBar.rb +2 -28
  14. data/example_files/mappers/EvCharging.rb +2 -27
  15. data/example_files/mappers/FlexibleHotWater.rb +2 -27
  16. data/example_files/mappers/Floorspace.rb +2 -27
  17. data/example_files/mappers/HighEfficiency.rb +2 -27
  18. data/example_files/mappers/HighEfficiencyCreateBar.rb +2 -27
  19. data/example_files/mappers/HighEfficiencyFloorspace.rb +2 -27
  20. data/example_files/mappers/PeakHoursMelsShedding.rb +4 -27
  21. data/example_files/mappers/PeakHoursThermostatAdjust.rb +4 -27
  22. data/example_files/mappers/ThermalStorage.rb +2 -28
  23. data/example_files/measures/BuildResidentialModel/measure.rb +30 -60
  24. data/example_files/measures/BuildResidentialModel/measure.xml +253 -84
  25. data/example_files/measures/BuildResidentialModel/resources/util.rb +45 -45
  26. data/example_files/python_deps/dependencies.json +3 -3
  27. data/example_files/resources/hpxml-measures/.github/pull_request_template.md +1 -1
  28. data/example_files/resources/hpxml-measures/.github/workflows/config.yml +28 -19
  29. data/example_files/resources/hpxml-measures/.gitignore +0 -997
  30. data/example_files/resources/hpxml-measures/.readthedocs.yml +9 -0
  31. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +476 -230
  32. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +244 -75
  33. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb +42 -15
  34. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +24 -9
  35. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb +11 -33
  36. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml +23 -50
  37. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/README.md +2 -2
  38. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/constants.rb +119 -0
  39. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb +67 -290
  40. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules_config.md +6 -5
  41. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb +78 -349
  42. data/example_files/resources/hpxml-measures/Changelog.md +80 -10
  43. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb +212 -144
  44. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +164 -170
  45. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb +238 -167
  46. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/battery.rb +1 -1
  47. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb +12 -4
  48. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb +36 -6
  49. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/unavailable_periods.csv +33 -0
  50. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/energyplus.rb +1 -0
  51. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb +9 -7
  52. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +79 -61
  53. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +387 -124
  54. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +427 -196
  55. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd +11515 -2
  56. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/README.md +1 -0
  57. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +224 -85
  58. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb +334 -319
  59. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +572 -838
  60. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb +162 -68
  61. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb +4 -20
  62. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb +12 -10
  63. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb +34 -37
  64. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/output.rb +8 -101
  65. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/psychrometrics.rb +31 -40
  66. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb +1 -1
  67. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-non-stochastic.csv +8761 -0
  68. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-10-mins.csv +52561 -52561
  69. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic.csv +8761 -8761
  70. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +384 -155
  71. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb +1 -1
  72. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/util.rb +2 -2
  73. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb +2 -2
  74. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb +68 -90
  75. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb +34 -223
  76. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb +1 -1
  77. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlvalidator.rb +16 -4
  78. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb +94 -40
  79. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +765 -302
  80. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb +119 -69
  81. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb +8 -8
  82. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb +1 -1
  83. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +51 -11
  84. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +196 -9
  85. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb +36 -13
  86. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb +3 -3
  87. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb +2 -2
  88. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb +571 -61
  89. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +190 -81
  90. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb +11 -11
  91. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_weather.rb +188 -50
  92. data/example_files/resources/hpxml-measures/README.md +3 -3
  93. data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.rb +659 -815
  94. data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.xml +301 -1112
  95. data/example_files/resources/hpxml-measures/ReportSimulationOutput/tests/output_report_test.rb +605 -350
  96. data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.rb +18 -14
  97. data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.xml +15 -15
  98. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/utility_bills_test.rb +13 -3
  99. data/example_files/resources/hpxml-measures/docs/source/usage_instructions.rst +3 -3
  100. data/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst +894 -596
  101. data/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst +127 -76
  102. data/example_files/resources/hpxml-measures/tasks.rb +185 -2802
  103. data/example_files/resources/hpxml-measures/workflow/hpxml_inputs.json +3401 -0
  104. data/example_files/resources/hpxml-measures/workflow/real_homes/house001.xml +0 -1
  105. data/example_files/resources/hpxml-measures/workflow/real_homes/house002.xml +0 -1
  106. data/example_files/resources/hpxml-measures/workflow/real_homes/house003.xml +0 -1
  107. data/example_files/resources/hpxml-measures/workflow/real_homes/house004.xml +0 -1
  108. data/example_files/resources/hpxml-measures/workflow/real_homes/house005.xml +0 -1
  109. data/example_files/resources/hpxml-measures/workflow/real_homes/house006.xml +1 -3
  110. data/example_files/resources/hpxml-measures/workflow/real_homes/house007.xml +0 -1
  111. data/example_files/resources/hpxml-measures/workflow/real_homes/house008.xml +1 -3
  112. data/example_files/resources/hpxml-measures/workflow/real_homes/house009.xml +0 -1
  113. data/example_files/resources/hpxml-measures/workflow/real_homes/house010.xml +1 -3
  114. data/example_files/resources/hpxml-measures/workflow/real_homes/house011.xml +0 -1
  115. data/example_files/resources/hpxml-measures/workflow/real_homes/house012.xml +0 -1
  116. data/example_files/resources/hpxml-measures/workflow/real_homes/house013.xml +0 -1
  117. data/example_files/resources/hpxml-measures/workflow/real_homes/house014.xml +0 -1
  118. data/example_files/resources/hpxml-measures/workflow/real_homes/house015.xml +0 -1
  119. data/example_files/resources/hpxml-measures/workflow/real_homes/house016.xml +3 -4
  120. data/example_files/resources/hpxml-measures/workflow/real_homes/house017.xml +17 -4
  121. data/example_files/resources/hpxml-measures/workflow/real_homes/house018.xml +2 -3
  122. data/example_files/resources/hpxml-measures/workflow/real_homes/house019.xml +3 -4
  123. data/example_files/resources/hpxml-measures/workflow/real_homes/house020.xml +3 -4
  124. data/example_files/resources/hpxml-measures/workflow/real_homes/house021.xml +4 -5
  125. data/example_files/resources/hpxml-measures/workflow/real_homes/house022.xml +3 -4
  126. data/example_files/resources/hpxml-measures/workflow/real_homes/house023.xml +3 -4
  127. data/example_files/resources/hpxml-measures/workflow/real_homes/house024.xml +3 -4
  128. data/example_files/resources/hpxml-measures/workflow/real_homes/house025.xml +3 -4
  129. data/example_files/resources/hpxml-measures/workflow/real_homes/house026.xml +1 -1
  130. data/example_files/resources/hpxml-measures/workflow/real_homes/house027.xml +1 -1
  131. data/example_files/resources/hpxml-measures/workflow/real_homes/house028.xml +1 -1
  132. data/example_files/resources/hpxml-measures/workflow/real_homes/house029.xml +1 -1
  133. data/example_files/resources/hpxml-measures/workflow/real_homes/house030.xml +0 -1
  134. data/example_files/resources/hpxml-measures/workflow/real_homes/house031.xml +4 -5
  135. data/example_files/resources/hpxml-measures/workflow/real_homes/house032.xml +3 -3
  136. data/example_files/resources/hpxml-measures/workflow/real_homes/house033.xml +3 -3
  137. data/example_files/resources/hpxml-measures/workflow/real_homes/house034.xml +3 -4
  138. data/example_files/resources/hpxml-measures/workflow/real_homes/house035.xml +3 -3
  139. data/example_files/resources/hpxml-measures/workflow/real_homes/house036.xml +3 -4
  140. data/example_files/resources/hpxml-measures/workflow/real_homes/house037.xml +3 -3
  141. data/example_files/resources/hpxml-measures/workflow/real_homes/house038.xml +3 -4
  142. data/example_files/resources/hpxml-measures/workflow/real_homes/house039.xml +3 -3
  143. data/example_files/resources/hpxml-measures/workflow/real_homes/house040.xml +3 -4
  144. data/example_files/resources/hpxml-measures/workflow/real_homes/house041.xml +0 -1
  145. data/example_files/resources/hpxml-measures/workflow/real_homes/house042.xml +0 -1
  146. data/example_files/resources/hpxml-measures/workflow/real_homes/house043.xml +0 -1
  147. data/example_files/resources/hpxml-measures/workflow/real_homes/house044.xml +0 -1
  148. data/example_files/resources/hpxml-measures/workflow/real_homes/house045.xml +0 -1
  149. data/example_files/resources/hpxml-measures/workflow/real_homes/house046.xml +1 -0
  150. data/example_files/resources/hpxml-measures/workflow/real_homes/house047.xml +1 -0
  151. data/example_files/resources/hpxml-measures/workflow/run_simulation.rb +12 -8
  152. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +10 -40
  153. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +10 -40
  154. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +10 -40
  155. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +10 -40
  156. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +10 -40
  157. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +10 -40
  158. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +10 -40
  159. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml +10 -40
  160. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil-location-miami-fl.xml +10 -40
  161. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +10 -40
  162. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane-location-portland-or.xml +10 -40
  163. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +10 -40
  164. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +10 -40
  165. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +10 -40
  166. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +9 -39
  167. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +9 -39
  168. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +10 -40
  169. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +10 -40
  170. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +10 -40
  171. data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml +10 -40
  172. data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery.xml +10 -40
  173. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-single-family-attached-2stories.xml → base-bldgtype-attached-2stories.xml} +610 -639
  174. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-single-family-attached-atticroof-cathedral.xml → base-bldgtype-attached-atticroof-cathedral.xml} +558 -587
  175. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-attached-infil-compartmentalization-test.xml +611 -0
  176. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-single-family-attached.xml → base-bldgtype-attached.xml} +610 -639
  177. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml +10 -39
  178. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml +10 -39
  179. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml +10 -39
  180. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml +10 -39
  181. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml +10 -39
  182. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-infil-compartmentalization-test.xml +462 -0
  183. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-bldgtype-multifamily-calctype-operational.xml → base-bldgtype-multifamily-residents-1.xml} +453 -480
  184. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml +10 -39
  185. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml +10 -39
  186. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml +10 -39
  187. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml +10 -39
  188. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml +10 -39
  189. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml +10 -39
  190. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml +10 -39
  191. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml +10 -39
  192. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml +10 -39
  193. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml +10 -39
  194. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml +10 -39
  195. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml +10 -39
  196. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml +10 -39
  197. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml +10 -39
  198. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml +10 -39
  199. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml +11 -40
  200. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +10 -39
  201. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml +10 -39
  202. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml +10 -39
  203. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml +10 -39
  204. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml +10 -39
  205. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml +10 -39
  206. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml +15 -40
  207. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml +10 -39
  208. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml +10 -39
  209. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml +10 -39
  210. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +10 -40
  211. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +10 -40
  212. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +10 -40
  213. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +10 -40
  214. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +10 -40
  215. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +10 -40
  216. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +10 -40
  217. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +10 -40
  218. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +10 -40
  219. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml +10 -40
  220. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +10 -40
  221. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +10 -40
  222. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +10 -40
  223. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +10 -40
  224. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +10 -40
  225. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +10 -40
  226. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +10 -40
  227. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +10 -40
  228. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +10 -40
  229. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +10 -40
  230. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +10 -40
  231. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml +10 -40
  232. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +10 -40
  233. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +10 -40
  234. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +10 -40
  235. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +10 -40
  236. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +10 -40
  237. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +10 -40
  238. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +10 -40
  239. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +10 -40
  240. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +10 -40
  241. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +10 -40
  242. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +10 -40
  243. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +10 -40
  244. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml +10 -40
  245. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +10 -40
  246. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +10 -40
  247. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +10 -40
  248. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +10 -40
  249. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +10 -40
  250. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml +10 -40
  251. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml +11 -43
  252. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +10 -40
  253. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +10 -40
  254. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +10 -40
  255. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +10 -40
  256. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +10 -40
  257. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml +10 -40
  258. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml +10 -40
  259. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +10 -40
  260. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +10 -40
  261. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml +10 -40
  262. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +10 -40
  263. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +10 -40
  264. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +10 -40
  265. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +10 -40
  266. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +10 -40
  267. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +10 -40
  268. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +10 -40
  269. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +10 -40
  270. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +19 -25
  271. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +10 -40
  272. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +10 -40
  273. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +10 -40
  274. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +10 -40
  275. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +10 -40
  276. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml +10 -40
  277. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml +10 -40
  278. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +18 -24
  279. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +11 -41
  280. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +11 -41
  281. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +10 -40
  282. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml +549 -0
  283. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +13 -43
  284. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +10 -40
  285. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml +552 -0
  286. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml +10 -40
  287. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +10 -40
  288. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml +17 -47
  289. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml +10 -40
  290. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml +10 -40
  291. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml +10 -40
  292. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +10 -40
  293. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +10 -40
  294. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml +10 -40
  295. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +10 -40
  296. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml +10 -40
  297. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +10 -40
  298. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml +10 -40
  299. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml +559 -0
  300. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml +10 -40
  301. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml +10 -40
  302. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +10 -40
  303. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml +19 -25
  304. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +10 -40
  305. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +10 -40
  306. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml +10 -40
  307. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +10 -40
  308. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +10 -40
  309. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +10 -40
  310. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +10 -40
  311. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +10 -40
  312. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +10 -40
  313. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +10 -40
  314. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +10 -40
  315. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +10 -40
  316. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +10 -40
  317. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosized-backup.xml +557 -0
  318. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +16 -41
  319. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml → base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml} +552 -583
  320. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +16 -41
  321. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-air-to-air-heat-pump-1-speed-backup-lockout-temperature.xml → base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml} +562 -586
  322. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml +16 -41
  323. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +16 -41
  324. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +16 -41
  325. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml +587 -0
  326. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml +17 -42
  327. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +16 -41
  328. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml +16 -41
  329. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +16 -41
  330. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml +10 -40
  331. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml +10 -40
  332. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +10 -40
  333. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +10 -40
  334. 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 +10 -40
  335. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +10 -40
  336. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml +10 -40
  337. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml +10 -40
  338. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml +10 -40
  339. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml +10 -40
  340. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml +10 -40
  341. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml +10 -40
  342. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml +10 -40
  343. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml +10 -40
  344. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml +10 -40
  345. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml +10 -40
  346. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml +10 -40
  347. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml +10 -40
  348. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml +10 -40
  349. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml +10 -40
  350. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml +10 -40
  351. 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 +11 -41
  352. 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 +11 -41
  353. 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 +11 -41
  354. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted-backup-hardsized.xml +553 -0
  355. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml +11 -41
  356. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml +10 -40
  357. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml +10 -40
  358. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml +10 -40
  359. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml +10 -40
  360. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml +10 -40
  361. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml +10 -40
  362. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml +10 -40
  363. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml +10 -40
  364. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +10 -40
  365. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +10 -40
  366. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml +10 -40
  367. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml +10 -40
  368. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml +10 -40
  369. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml +10 -40
  370. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml +10 -40
  371. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml +10 -40
  372. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml +10 -40
  373. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml +10 -40
  374. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml +10 -40
  375. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-baseboard.xml +519 -0
  376. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml +10 -40
  377. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac-with-heating.xml +10 -40
  378. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac.xml +10 -40
  379. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml +16 -40
  380. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml +16 -40
  381. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml +16 -40
  382. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-only.xml +10 -40
  383. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-heating.xml +10 -40
  384. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml +16 -40
  385. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml +16 -40
  386. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml +16 -40
  387. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml +566 -0
  388. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml +10 -40
  389. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml +10 -40
  390. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml +10 -40
  391. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +10 -40
  392. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +10 -40
  393. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +10 -40
  394. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml +513 -0
  395. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +10 -40
  396. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +10 -40
  397. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +10 -40
  398. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +10 -40
  399. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml +10 -40
  400. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +10 -40
  401. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +10 -40
  402. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +10 -40
  403. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +16 -41
  404. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-crankcase-heater-40w.xml +556 -0
  405. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +10 -40
  406. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +560 -0
  407. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +17 -42
  408. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +17 -42
  409. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +17 -42
  410. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +17 -42
  411. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml +10 -40
  412. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml +10 -40
  413. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml +555 -0
  414. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml +553 -0
  415. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +10 -40
  416. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +10 -40
  417. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +10 -40
  418. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +10 -40
  419. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +10 -40
  420. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml +10 -40
  421. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml +10 -40
  422. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml +10 -40
  423. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only-pilot-light.xml +506 -0
  424. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +10 -40
  425. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml +10 -40
  426. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +10 -40
  427. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +10 -40
  428. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +10 -40
  429. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +10 -40
  430. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml +10 -40
  431. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml +542 -0
  432. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +10 -40
  433. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +10 -40
  434. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +10 -40
  435. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +10 -40
  436. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +10 -40
  437. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +10 -40
  438. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +10 -40
  439. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +10 -40
  440. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +10 -40
  441. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +14 -41
  442. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml +14 -41
  443. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml +14 -41
  444. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +10 -40
  445. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml +10 -40
  446. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml +10 -40
  447. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml +10 -40
  448. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +10 -40
  449. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +10 -40
  450. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +14 -41
  451. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +10 -40
  452. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +10 -40
  453. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +16 -41
  454. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +16 -41
  455. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +16 -41
  456. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml +525 -0
  457. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml +564 -0
  458. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +16 -41
  459. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml +506 -0
  460. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +16 -41
  461. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +10 -40
  462. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml +10 -40
  463. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml +10 -40
  464. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +10 -40
  465. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml +10 -40
  466. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml +10 -40
  467. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml +513 -0
  468. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml +16 -40
  469. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +10 -40
  470. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +10 -40
  471. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml +10 -40
  472. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +10 -40
  473. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml +10 -40
  474. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml +16 -40
  475. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml +10 -40
  476. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml +10 -40
  477. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml +10 -40
  478. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +10 -40
  479. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml +10 -40
  480. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +10 -40
  481. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml +10 -40
  482. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +10 -40
  483. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +10 -40
  484. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml +11 -41
  485. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml +10 -40
  486. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml +529 -0
  487. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml +537 -0
  488. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml +516 -0
  489. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml +1 -7
  490. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +10 -40
  491. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +10 -40
  492. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml +10 -40
  493. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +10 -40
  494. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +10 -40
  495. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml +10 -40
  496. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml +10 -40
  497. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +10 -40
  498. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml +10 -40
  499. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml +10 -40
  500. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +10 -40
  501. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +12 -42
  502. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +10 -40
  503. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +10 -40
  504. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +10 -40
  505. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +10 -40
  506. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml +10 -40
  507. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +10 -40
  508. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +10 -40
  509. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +10 -40
  510. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +10 -40
  511. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +10 -40
  512. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +10 -40
  513. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +10 -40
  514. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +14 -44
  515. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +10 -40
  516. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +10 -40
  517. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml +10 -38
  518. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-none.xml +10 -40
  519. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml +16 -42
  520. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml +16 -42
  521. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml +16 -42
  522. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml +10 -40
  523. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml +14 -37
  524. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml +16 -42
  525. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml +12 -42
  526. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml +12 -42
  527. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml +12 -42
  528. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml +10 -40
  529. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml +10 -38
  530. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml +10 -38
  531. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +10 -40
  532. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml +509 -0
  533. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +10 -40
  534. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml +10 -40
  535. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +10 -41
  536. data/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml +30 -138
  537. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml +16 -42
  538. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml +24 -26
  539. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml +16 -42
  540. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml +16 -42
  541. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml +16 -42
  542. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml +18 -44
  543. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml +18 -44
  544. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml +18 -44
  545. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml +16 -42
  546. data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml +560 -0
  547. data/example_files/resources/hpxml-measures/workflow/sample_files/base-residents-0.xml +556 -0
  548. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-calctype-operational-misc-loads-large-uncommon.xml → base-residents-1-misc-loads-large-uncommon.xml} +616 -644
  549. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-calctype-operational-misc-loads-large-uncommon2.xml → base-residents-1-misc-loads-large-uncommon2.xml} +616 -644
  550. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-calctype-operational.xml → base-residents-1.xml} +547 -575
  551. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-calctype-operational-misc-defaults.xml → base-residents-5.xml} +515 -539
  552. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml +10 -40
  553. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml +10 -40
  554. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml +565 -0
  555. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-schedules-detailed-occupancy-smooth.xml → base-schedules-detailed-occupancy-stochastic-vacancy-year-round.xml} +563 -583
  556. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml +21 -41
  557. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml +10 -40
  558. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml +10 -40
  559. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml +10 -40
  560. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml +10 -40
  561. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage-natvent-available.xml +565 -0
  562. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage-natvent-unavailable.xml +565 -0
  563. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml +620 -0
  564. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy-year-round.xml +619 -0
  565. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml +619 -0
  566. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml +10 -38
  567. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +10 -40
  568. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +10 -40
  569. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +10 -40
  570. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +10 -40
  571. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml +10 -40
  572. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml +10 -40
  573. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml +10 -40
  574. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +10 -40
  575. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml +10 -40
  576. data/example_files/resources/hpxml-measures/workflow/sample_files/base.xml +10 -37
  577. data/example_files/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw +16 -4
  578. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy-subset.osw +16 -3
  579. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy.osw +16 -3
  580. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml.osw +16 -2
  581. data/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Long_Residence.xml +386 -0
  582. data/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Vatilo_Residence.xml +381 -0
  583. data/example_files/resources/hpxml-measures/workflow/tests/ACCA_Examples/Victor_Residence.xml +370 -0
  584. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml +2 -2
  585. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml +2 -5
  586. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml +2 -5
  587. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml +2 -5
  588. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml +2 -5
  589. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml +2 -5
  590. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml +2 -5
  591. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml +2 -5
  592. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml +2 -5
  593. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml +2 -5
  594. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml +2 -5
  595. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml +2 -5
  596. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml +2 -5
  597. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml +2 -5
  598. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml +2 -5
  599. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml +2 -5
  600. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml +2 -12
  601. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml +2 -12
  602. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml +2 -5
  603. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml +2 -5
  604. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml +2 -5
  605. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml +2 -5
  606. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml +2 -5
  607. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml +2 -5
  608. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml +6 -9
  609. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml +6 -9
  610. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results.csv +475 -444
  611. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_bills.csv +475 -444
  612. data/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb +177 -112
  613. data/example_files/resources/meta_measure.rb +2 -27
  614. data/example_files/xml_building/17/README.md +3 -3
  615. data/lib/uo_cli/version.rb +3 -38
  616. data/lib/uo_cli.rb +3 -38
  617. data/uo_cli.gemspec +6 -7
  618. metadata +70 -51
  619. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules_config.json +0 -388
  620. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLBaseElements.xsd +0 -6136
  621. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLDataTypes.xsd +0 -4846
  622. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-smooth.csv +0 -8761
  623. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/occupancy-stochastic-vacancy.csv +0 -8761
  624. data/example_files/resources/hpxml-measures/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3-cache.csv +0 -35
  625. data/example_files/resources/hpxml-measures/weather/USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3-cache.csv +0 -35
  626. data/example_files/resources/hpxml-measures/weather/USA_CO_Denver.Intl.AP.725650_TMY3-cache.csv +0 -35
  627. data/example_files/resources/hpxml-measures/weather/USA_DE_Wilmington-New.Castle.County.AP.724089_TMY3-cache.csv +0 -35
  628. data/example_files/resources/hpxml-measures/weather/USA_FL_Miami.Intl.AP.722020_TMY3-cache.csv +0 -35
  629. data/example_files/resources/hpxml-measures/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3-cache.csv +0 -35
  630. data/example_files/resources/hpxml-measures/weather/USA_MD_Baltimore-Washington.Intl.AP.724060_TMY3-cache.csv +0 -35
  631. data/example_files/resources/hpxml-measures/weather/USA_MN_Duluth.Intl.AP.727450_TMY3-cache.csv +0 -35
  632. data/example_files/resources/hpxml-measures/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3-cache.csv +0 -35
  633. data/example_files/resources/hpxml-measures/weather/USA_NC_Charlotte-Douglas.Intl.AP.723140_TMY3-cache.csv +0 -35
  634. data/example_files/resources/hpxml-measures/weather/USA_NJ_Cape.May.County.AP.745966_TMY3-cache.csv +0 -35
  635. data/example_files/resources/hpxml-measures/weather/USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3-cache.csv +0 -35
  636. data/example_files/resources/hpxml-measures/weather/USA_OR_Portland.Intl.AP.726980_TMY3-cache.csv +0 -35
  637. data/example_files/resources/hpxml-measures/weather/USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3-cache.csv +0 -35
  638. data/example_files/resources/hpxml-measures/weather/US_CO_Boulder_AMY_2012-cache.csv +0 -35
  639. data/example_files/resources/hpxml-measures/weather/ZAF_Cape.Town.688160_IWEC-cache.csv +0 -35
  640. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces.xml +0 -2508
  641. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces2.xml +0 -2508
@@ -1,2508 +0,0 @@
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-enclosure-skylights.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>167.7</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
- <Roof>
129
- <SystemIdentifier id='Roof2'/>
130
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
131
- <Area>167.7</Area>
132
- <RoofType>asphalt or fiberglass shingles</RoofType>
133
- <SolarAbsorptance>0.7</SolarAbsorptance>
134
- <Emittance>0.92</Emittance>
135
- <Pitch>6.0</Pitch>
136
- <RadiantBarrier>false</RadiantBarrier>
137
- <Insulation>
138
- <SystemIdentifier id='Roof2Insulation'/>
139
- <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
140
- </Insulation>
141
- </Roof>
142
- <Roof>
143
- <SystemIdentifier id='Roof3'/>
144
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
145
- <Area>167.7</Area>
146
- <RoofType>asphalt or fiberglass shingles</RoofType>
147
- <SolarAbsorptance>0.7</SolarAbsorptance>
148
- <Emittance>0.92</Emittance>
149
- <Pitch>6.0</Pitch>
150
- <RadiantBarrier>false</RadiantBarrier>
151
- <Insulation>
152
- <SystemIdentifier id='Roof3Insulation'/>
153
- <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
154
- </Insulation>
155
- </Roof>
156
- <Roof>
157
- <SystemIdentifier id='Roof4'/>
158
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
159
- <Area>167.7</Area>
160
- <RoofType>asphalt or fiberglass shingles</RoofType>
161
- <SolarAbsorptance>0.7</SolarAbsorptance>
162
- <Emittance>0.92</Emittance>
163
- <Pitch>6.0</Pitch>
164
- <RadiantBarrier>false</RadiantBarrier>
165
- <Insulation>
166
- <SystemIdentifier id='Roof4Insulation'/>
167
- <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
168
- </Insulation>
169
- </Roof>
170
- <Roof>
171
- <SystemIdentifier id='Roof5'/>
172
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
173
- <Area>167.7</Area>
174
- <RoofType>asphalt or fiberglass shingles</RoofType>
175
- <SolarAbsorptance>0.7</SolarAbsorptance>
176
- <Emittance>0.92</Emittance>
177
- <Pitch>6.0</Pitch>
178
- <RadiantBarrier>false</RadiantBarrier>
179
- <Insulation>
180
- <SystemIdentifier id='Roof5Insulation'/>
181
- <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
182
- </Insulation>
183
- </Roof>
184
- <Roof>
185
- <SystemIdentifier id='Roof6'/>
186
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
187
- <Area>167.7</Area>
188
- <RoofType>asphalt or fiberglass shingles</RoofType>
189
- <SolarAbsorptance>0.7</SolarAbsorptance>
190
- <Emittance>0.92</Emittance>
191
- <Pitch>6.0</Pitch>
192
- <RadiantBarrier>false</RadiantBarrier>
193
- <Insulation>
194
- <SystemIdentifier id='Roof6Insulation'/>
195
- <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
196
- </Insulation>
197
- </Roof>
198
- <Roof>
199
- <SystemIdentifier id='Roof7'/>
200
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
201
- <Area>167.7</Area>
202
- <RoofType>asphalt or fiberglass shingles</RoofType>
203
- <SolarAbsorptance>0.7</SolarAbsorptance>
204
- <Emittance>0.92</Emittance>
205
- <Pitch>6.0</Pitch>
206
- <RadiantBarrier>false</RadiantBarrier>
207
- <Insulation>
208
- <SystemIdentifier id='Roof7Insulation'/>
209
- <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
210
- </Insulation>
211
- </Roof>
212
- <Roof>
213
- <SystemIdentifier id='Roof8'/>
214
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
215
- <Area>167.7</Area>
216
- <RoofType>asphalt or fiberglass shingles</RoofType>
217
- <SolarAbsorptance>0.7</SolarAbsorptance>
218
- <Emittance>0.92</Emittance>
219
- <Pitch>6.0</Pitch>
220
- <RadiantBarrier>false</RadiantBarrier>
221
- <Insulation>
222
- <SystemIdentifier id='Roof8Insulation'/>
223
- <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
224
- </Insulation>
225
- </Roof>
226
- <Roof>
227
- <SystemIdentifier id='Roof9'/>
228
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
229
- <Area>167.7</Area>
230
- <RoofType>asphalt or fiberglass shingles</RoofType>
231
- <SolarAbsorptance>0.7</SolarAbsorptance>
232
- <Emittance>0.92</Emittance>
233
- <Pitch>6.0</Pitch>
234
- <RadiantBarrier>false</RadiantBarrier>
235
- <Insulation>
236
- <SystemIdentifier id='Roof9Insulation'/>
237
- <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
238
- </Insulation>
239
- </Roof>
240
- <Roof>
241
- <SystemIdentifier id='Roof10'/>
242
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
243
- <Area>0.1</Area>
244
- <RoofType>asphalt or fiberglass shingles</RoofType>
245
- <SolarAbsorptance>0.7</SolarAbsorptance>
246
- <Emittance>0.92</Emittance>
247
- <Pitch>6.0</Pitch>
248
- <RadiantBarrier>false</RadiantBarrier>
249
- <Insulation>
250
- <SystemIdentifier id='Roof10Insulation'/>
251
- <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
252
- </Insulation>
253
- </Roof>
254
- </Roofs>
255
- <RimJoists>
256
- <RimJoist>
257
- <SystemIdentifier id='RimJoist1'/>
258
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
259
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
260
- <Area>12.8</Area>
261
- <Siding>wood siding</Siding>
262
- <SolarAbsorptance>0.7</SolarAbsorptance>
263
- <Emittance>0.92</Emittance>
264
- <Insulation>
265
- <SystemIdentifier id='RimJoist1Insulation'/>
266
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
267
- </Insulation>
268
- </RimJoist>
269
- <RimJoist>
270
- <SystemIdentifier id='RimJoist2'/>
271
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
272
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
273
- <Area>12.8</Area>
274
- <Siding>wood siding</Siding>
275
- <SolarAbsorptance>0.7</SolarAbsorptance>
276
- <Emittance>0.92</Emittance>
277
- <Insulation>
278
- <SystemIdentifier id='RimJoist2Insulation'/>
279
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
280
- </Insulation>
281
- </RimJoist>
282
- <RimJoist>
283
- <SystemIdentifier id='RimJoist3'/>
284
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
285
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
286
- <Area>12.8</Area>
287
- <Siding>wood siding</Siding>
288
- <SolarAbsorptance>0.7</SolarAbsorptance>
289
- <Emittance>0.92</Emittance>
290
- <Insulation>
291
- <SystemIdentifier id='RimJoist3Insulation'/>
292
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
293
- </Insulation>
294
- </RimJoist>
295
- <RimJoist>
296
- <SystemIdentifier id='RimJoist4'/>
297
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
298
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
299
- <Area>12.8</Area>
300
- <Siding>wood siding</Siding>
301
- <SolarAbsorptance>0.7</SolarAbsorptance>
302
- <Emittance>0.92</Emittance>
303
- <Insulation>
304
- <SystemIdentifier id='RimJoist4Insulation'/>
305
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
306
- </Insulation>
307
- </RimJoist>
308
- <RimJoist>
309
- <SystemIdentifier id='RimJoist5'/>
310
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
311
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
312
- <Area>12.8</Area>
313
- <Siding>wood siding</Siding>
314
- <SolarAbsorptance>0.7</SolarAbsorptance>
315
- <Emittance>0.92</Emittance>
316
- <Insulation>
317
- <SystemIdentifier id='RimJoist5Insulation'/>
318
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
319
- </Insulation>
320
- </RimJoist>
321
- <RimJoist>
322
- <SystemIdentifier id='RimJoist6'/>
323
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
324
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
325
- <Area>12.8</Area>
326
- <Siding>wood siding</Siding>
327
- <SolarAbsorptance>0.7</SolarAbsorptance>
328
- <Emittance>0.92</Emittance>
329
- <Insulation>
330
- <SystemIdentifier id='RimJoist6Insulation'/>
331
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
332
- </Insulation>
333
- </RimJoist>
334
- <RimJoist>
335
- <SystemIdentifier id='RimJoist7'/>
336
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
337
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
338
- <Area>12.8</Area>
339
- <Siding>wood siding</Siding>
340
- <SolarAbsorptance>0.7</SolarAbsorptance>
341
- <Emittance>0.92</Emittance>
342
- <Insulation>
343
- <SystemIdentifier id='RimJoist7Insulation'/>
344
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
345
- </Insulation>
346
- </RimJoist>
347
- <RimJoist>
348
- <SystemIdentifier id='RimJoist8'/>
349
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
350
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
351
- <Area>12.8</Area>
352
- <Siding>wood siding</Siding>
353
- <SolarAbsorptance>0.7</SolarAbsorptance>
354
- <Emittance>0.92</Emittance>
355
- <Insulation>
356
- <SystemIdentifier id='RimJoist8Insulation'/>
357
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
358
- </Insulation>
359
- </RimJoist>
360
- <RimJoist>
361
- <SystemIdentifier id='RimJoist9'/>
362
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
363
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
364
- <Area>12.8</Area>
365
- <Siding>wood siding</Siding>
366
- <SolarAbsorptance>0.7</SolarAbsorptance>
367
- <Emittance>0.92</Emittance>
368
- <Insulation>
369
- <SystemIdentifier id='RimJoist9Insulation'/>
370
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
371
- </Insulation>
372
- </RimJoist>
373
- <RimJoist>
374
- <SystemIdentifier id='RimJoist10'/>
375
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
376
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
377
- <Area>0.1</Area>
378
- <Siding>wood siding</Siding>
379
- <SolarAbsorptance>0.7</SolarAbsorptance>
380
- <Emittance>0.92</Emittance>
381
- <Insulation>
382
- <SystemIdentifier id='RimJoist10Insulation'/>
383
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
384
- </Insulation>
385
- </RimJoist>
386
- </RimJoists>
387
- <Walls>
388
- <Wall>
389
- <SystemIdentifier id='Wall1'/>
390
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
391
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
392
- <WallType>
393
- <WoodStud/>
394
- </WallType>
395
- <Area>133.3</Area>
396
- <Siding>wood siding</Siding>
397
- <SolarAbsorptance>0.7</SolarAbsorptance>
398
- <Emittance>0.92</Emittance>
399
- <InteriorFinish>
400
- <Type>gypsum board</Type>
401
- </InteriorFinish>
402
- <Insulation>
403
- <SystemIdentifier id='Wall1Insulation'/>
404
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
405
- </Insulation>
406
- </Wall>
407
- <Wall>
408
- <SystemIdentifier id='Wall2'/>
409
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
410
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
411
- <AtticWallType>gable</AtticWallType>
412
- <WallType>
413
- <WoodStud/>
414
- </WallType>
415
- <Area>25.0</Area>
416
- <Siding>wood siding</Siding>
417
- <SolarAbsorptance>0.7</SolarAbsorptance>
418
- <Emittance>0.92</Emittance>
419
- <Insulation>
420
- <SystemIdentifier id='Wall2Insulation'/>
421
- <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
422
- </Insulation>
423
- </Wall>
424
- <Wall>
425
- <SystemIdentifier id='Wall3'/>
426
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
427
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
428
- <WallType>
429
- <WoodStud/>
430
- </WallType>
431
- <Area>133.3</Area>
432
- <Siding>wood siding</Siding>
433
- <SolarAbsorptance>0.7</SolarAbsorptance>
434
- <Emittance>0.92</Emittance>
435
- <InteriorFinish>
436
- <Type>gypsum board</Type>
437
- </InteriorFinish>
438
- <Insulation>
439
- <SystemIdentifier id='Wall3Insulation'/>
440
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
441
- </Insulation>
442
- </Wall>
443
- <Wall>
444
- <SystemIdentifier id='Wall4'/>
445
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
446
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
447
- <WallType>
448
- <WoodStud/>
449
- </WallType>
450
- <Area>133.3</Area>
451
- <Siding>wood siding</Siding>
452
- <SolarAbsorptance>0.7</SolarAbsorptance>
453
- <Emittance>0.92</Emittance>
454
- <InteriorFinish>
455
- <Type>gypsum board</Type>
456
- </InteriorFinish>
457
- <Insulation>
458
- <SystemIdentifier id='Wall4Insulation'/>
459
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
460
- </Insulation>
461
- </Wall>
462
- <Wall>
463
- <SystemIdentifier id='Wall5'/>
464
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
465
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
466
- <WallType>
467
- <WoodStud/>
468
- </WallType>
469
- <Area>133.3</Area>
470
- <Siding>wood siding</Siding>
471
- <SolarAbsorptance>0.7</SolarAbsorptance>
472
- <Emittance>0.92</Emittance>
473
- <InteriorFinish>
474
- <Type>gypsum board</Type>
475
- </InteriorFinish>
476
- <Insulation>
477
- <SystemIdentifier id='Wall5Insulation'/>
478
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
479
- </Insulation>
480
- </Wall>
481
- <Wall>
482
- <SystemIdentifier id='Wall6'/>
483
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
484
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
485
- <WallType>
486
- <WoodStud/>
487
- </WallType>
488
- <Area>133.3</Area>
489
- <Siding>wood siding</Siding>
490
- <SolarAbsorptance>0.7</SolarAbsorptance>
491
- <Emittance>0.92</Emittance>
492
- <InteriorFinish>
493
- <Type>gypsum board</Type>
494
- </InteriorFinish>
495
- <Insulation>
496
- <SystemIdentifier id='Wall6Insulation'/>
497
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
498
- </Insulation>
499
- </Wall>
500
- <Wall>
501
- <SystemIdentifier id='Wall7'/>
502
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
503
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
504
- <WallType>
505
- <WoodStud/>
506
- </WallType>
507
- <Area>133.3</Area>
508
- <Siding>wood siding</Siding>
509
- <SolarAbsorptance>0.7</SolarAbsorptance>
510
- <Emittance>0.92</Emittance>
511
- <InteriorFinish>
512
- <Type>gypsum board</Type>
513
- </InteriorFinish>
514
- <Insulation>
515
- <SystemIdentifier id='Wall7Insulation'/>
516
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
517
- </Insulation>
518
- </Wall>
519
- <Wall>
520
- <SystemIdentifier id='Wall8'/>
521
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
522
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
523
- <WallType>
524
- <WoodStud/>
525
- </WallType>
526
- <Area>133.3</Area>
527
- <Siding>wood siding</Siding>
528
- <SolarAbsorptance>0.7</SolarAbsorptance>
529
- <Emittance>0.92</Emittance>
530
- <InteriorFinish>
531
- <Type>gypsum board</Type>
532
- </InteriorFinish>
533
- <Insulation>
534
- <SystemIdentifier id='Wall8Insulation'/>
535
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
536
- </Insulation>
537
- </Wall>
538
- <Wall>
539
- <SystemIdentifier id='Wall9'/>
540
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
541
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
542
- <WallType>
543
- <WoodStud/>
544
- </WallType>
545
- <Area>133.3</Area>
546
- <Siding>wood siding</Siding>
547
- <SolarAbsorptance>0.7</SolarAbsorptance>
548
- <Emittance>0.92</Emittance>
549
- <InteriorFinish>
550
- <Type>gypsum board</Type>
551
- </InteriorFinish>
552
- <Insulation>
553
- <SystemIdentifier id='Wall9Insulation'/>
554
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
555
- </Insulation>
556
- </Wall>
557
- <Wall>
558
- <SystemIdentifier id='Wall10'/>
559
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
560
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
561
- <WallType>
562
- <WoodStud/>
563
- </WallType>
564
- <Area>133.3</Area>
565
- <Siding>wood siding</Siding>
566
- <SolarAbsorptance>0.7</SolarAbsorptance>
567
- <Emittance>0.92</Emittance>
568
- <InteriorFinish>
569
- <Type>gypsum board</Type>
570
- </InteriorFinish>
571
- <Insulation>
572
- <SystemIdentifier id='Wall10Insulation'/>
573
- <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
574
- </Insulation>
575
- </Wall>
576
- <Wall>
577
- <SystemIdentifier id='Wall11'/>
578
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
579
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
580
- <AtticWallType>gable</AtticWallType>
581
- <WallType>
582
- <WoodStud/>
583
- </WallType>
584
- <Area>25.0</Area>
585
- <Siding>wood siding</Siding>
586
- <SolarAbsorptance>0.7</SolarAbsorptance>
587
- <Emittance>0.92</Emittance>
588
- <Insulation>
589
- <SystemIdentifier id='Wall11Insulation'/>
590
- <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
591
- </Insulation>
592
- </Wall>
593
- <Wall>
594
- <SystemIdentifier id='Wall12'/>
595
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
596
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
597
- <AtticWallType>gable</AtticWallType>
598
- <WallType>
599
- <WoodStud/>
600
- </WallType>
601
- <Area>25.0</Area>
602
- <Siding>wood siding</Siding>
603
- <SolarAbsorptance>0.7</SolarAbsorptance>
604
- <Emittance>0.92</Emittance>
605
- <Insulation>
606
- <SystemIdentifier id='Wall12Insulation'/>
607
- <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
608
- </Insulation>
609
- </Wall>
610
- <Wall>
611
- <SystemIdentifier id='Wall13'/>
612
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
613
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
614
- <AtticWallType>gable</AtticWallType>
615
- <WallType>
616
- <WoodStud/>
617
- </WallType>
618
- <Area>25.0</Area>
619
- <Siding>wood siding</Siding>
620
- <SolarAbsorptance>0.7</SolarAbsorptance>
621
- <Emittance>0.92</Emittance>
622
- <Insulation>
623
- <SystemIdentifier id='Wall13Insulation'/>
624
- <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
625
- </Insulation>
626
- </Wall>
627
- <Wall>
628
- <SystemIdentifier id='Wall14'/>
629
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
630
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
631
- <AtticWallType>gable</AtticWallType>
632
- <WallType>
633
- <WoodStud/>
634
- </WallType>
635
- <Area>25.0</Area>
636
- <Siding>wood siding</Siding>
637
- <SolarAbsorptance>0.7</SolarAbsorptance>
638
- <Emittance>0.92</Emittance>
639
- <Insulation>
640
- <SystemIdentifier id='Wall14Insulation'/>
641
- <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
642
- </Insulation>
643
- </Wall>
644
- <Wall>
645
- <SystemIdentifier id='Wall15'/>
646
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
647
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
648
- <AtticWallType>gable</AtticWallType>
649
- <WallType>
650
- <WoodStud/>
651
- </WallType>
652
- <Area>25.0</Area>
653
- <Siding>wood siding</Siding>
654
- <SolarAbsorptance>0.7</SolarAbsorptance>
655
- <Emittance>0.92</Emittance>
656
- <Insulation>
657
- <SystemIdentifier id='Wall15Insulation'/>
658
- <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
659
- </Insulation>
660
- </Wall>
661
- <Wall>
662
- <SystemIdentifier id='Wall16'/>
663
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
664
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
665
- <AtticWallType>gable</AtticWallType>
666
- <WallType>
667
- <WoodStud/>
668
- </WallType>
669
- <Area>25.0</Area>
670
- <Siding>wood siding</Siding>
671
- <SolarAbsorptance>0.7</SolarAbsorptance>
672
- <Emittance>0.92</Emittance>
673
- <Insulation>
674
- <SystemIdentifier id='Wall16Insulation'/>
675
- <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
676
- </Insulation>
677
- </Wall>
678
- <Wall>
679
- <SystemIdentifier id='Wall17'/>
680
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
681
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
682
- <AtticWallType>gable</AtticWallType>
683
- <WallType>
684
- <WoodStud/>
685
- </WallType>
686
- <Area>25.0</Area>
687
- <Siding>wood siding</Siding>
688
- <SolarAbsorptance>0.7</SolarAbsorptance>
689
- <Emittance>0.92</Emittance>
690
- <Insulation>
691
- <SystemIdentifier id='Wall17Insulation'/>
692
- <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
693
- </Insulation>
694
- </Wall>
695
- <Wall>
696
- <SystemIdentifier id='Wall18'/>
697
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
698
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
699
- <AtticWallType>gable</AtticWallType>
700
- <WallType>
701
- <WoodStud/>
702
- </WallType>
703
- <Area>25.0</Area>
704
- <Siding>wood siding</Siding>
705
- <SolarAbsorptance>0.7</SolarAbsorptance>
706
- <Emittance>0.92</Emittance>
707
- <Insulation>
708
- <SystemIdentifier id='Wall18Insulation'/>
709
- <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
710
- </Insulation>
711
- </Wall>
712
- <Wall>
713
- <SystemIdentifier id='Wall19'/>
714
- <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
715
- <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
716
- <AtticWallType>gable</AtticWallType>
717
- <WallType>
718
- <WoodStud/>
719
- </WallType>
720
- <Area>0.1</Area>
721
- <Siding>wood siding</Siding>
722
- <SolarAbsorptance>0.7</SolarAbsorptance>
723
- <Emittance>0.92</Emittance>
724
- <Insulation>
725
- <SystemIdentifier id='Wall19Insulation'/>
726
- <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
727
- </Insulation>
728
- </Wall>
729
- </Walls>
730
- <FoundationWalls>
731
- <FoundationWall>
732
- <SystemIdentifier id='FoundationWall1'/>
733
- <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
734
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
735
- <Height>8.0</Height>
736
- <Area>133.3</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'/>
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
- <FoundationWall>
757
- <SystemIdentifier id='FoundationWall2'/>
758
- <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
759
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
760
- <Height>8.0</Height>
761
- <Area>133.3</Area>
762
- <Thickness>8.0</Thickness>
763
- <DepthBelowGrade>7.0</DepthBelowGrade>
764
- <InteriorFinish>
765
- <Type>gypsum board</Type>
766
- </InteriorFinish>
767
- <Insulation>
768
- <SystemIdentifier id='FoundationWall2Insulation'/>
769
- <Layer>
770
- <InstallationType>continuous - exterior</InstallationType>
771
- <NominalRValue>8.9</NominalRValue>
772
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
773
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
774
- </Layer>
775
- <Layer>
776
- <InstallationType>continuous - interior</InstallationType>
777
- <NominalRValue>0.0</NominalRValue>
778
- </Layer>
779
- </Insulation>
780
- </FoundationWall>
781
- <FoundationWall>
782
- <SystemIdentifier id='FoundationWall3'/>
783
- <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
784
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
785
- <Height>8.0</Height>
786
- <Area>133.3</Area>
787
- <Thickness>8.0</Thickness>
788
- <DepthBelowGrade>7.0</DepthBelowGrade>
789
- <InteriorFinish>
790
- <Type>gypsum board</Type>
791
- </InteriorFinish>
792
- <Insulation>
793
- <SystemIdentifier id='FoundationWall3Insulation'/>
794
- <Layer>
795
- <InstallationType>continuous - exterior</InstallationType>
796
- <NominalRValue>8.9</NominalRValue>
797
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
798
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
799
- </Layer>
800
- <Layer>
801
- <InstallationType>continuous - interior</InstallationType>
802
- <NominalRValue>0.0</NominalRValue>
803
- </Layer>
804
- </Insulation>
805
- </FoundationWall>
806
- <FoundationWall>
807
- <SystemIdentifier id='FoundationWall4'/>
808
- <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
809
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
810
- <Height>8.0</Height>
811
- <Area>133.3</Area>
812
- <Thickness>8.0</Thickness>
813
- <DepthBelowGrade>7.0</DepthBelowGrade>
814
- <InteriorFinish>
815
- <Type>gypsum board</Type>
816
- </InteriorFinish>
817
- <Insulation>
818
- <SystemIdentifier id='FoundationWall4Insulation'/>
819
- <Layer>
820
- <InstallationType>continuous - exterior</InstallationType>
821
- <NominalRValue>8.9</NominalRValue>
822
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
823
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
824
- </Layer>
825
- <Layer>
826
- <InstallationType>continuous - interior</InstallationType>
827
- <NominalRValue>0.0</NominalRValue>
828
- </Layer>
829
- </Insulation>
830
- </FoundationWall>
831
- <FoundationWall>
832
- <SystemIdentifier id='FoundationWall5'/>
833
- <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
834
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
835
- <Height>8.0</Height>
836
- <Area>133.3</Area>
837
- <Thickness>8.0</Thickness>
838
- <DepthBelowGrade>7.0</DepthBelowGrade>
839
- <InteriorFinish>
840
- <Type>gypsum board</Type>
841
- </InteriorFinish>
842
- <Insulation>
843
- <SystemIdentifier id='FoundationWall5Insulation'/>
844
- <Layer>
845
- <InstallationType>continuous - exterior</InstallationType>
846
- <NominalRValue>8.9</NominalRValue>
847
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
848
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
849
- </Layer>
850
- <Layer>
851
- <InstallationType>continuous - interior</InstallationType>
852
- <NominalRValue>0.0</NominalRValue>
853
- </Layer>
854
- </Insulation>
855
- </FoundationWall>
856
- <FoundationWall>
857
- <SystemIdentifier id='FoundationWall6'/>
858
- <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
859
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
860
- <Height>8.0</Height>
861
- <Area>133.3</Area>
862
- <Thickness>8.0</Thickness>
863
- <DepthBelowGrade>7.0</DepthBelowGrade>
864
- <InteriorFinish>
865
- <Type>gypsum board</Type>
866
- </InteriorFinish>
867
- <Insulation>
868
- <SystemIdentifier id='FoundationWall6Insulation'/>
869
- <Layer>
870
- <InstallationType>continuous - exterior</InstallationType>
871
- <NominalRValue>8.9</NominalRValue>
872
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
873
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
874
- </Layer>
875
- <Layer>
876
- <InstallationType>continuous - interior</InstallationType>
877
- <NominalRValue>0.0</NominalRValue>
878
- </Layer>
879
- </Insulation>
880
- </FoundationWall>
881
- <FoundationWall>
882
- <SystemIdentifier id='FoundationWall7'/>
883
- <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
884
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
885
- <Height>8.0</Height>
886
- <Area>133.3</Area>
887
- <Thickness>8.0</Thickness>
888
- <DepthBelowGrade>7.0</DepthBelowGrade>
889
- <InteriorFinish>
890
- <Type>gypsum board</Type>
891
- </InteriorFinish>
892
- <Insulation>
893
- <SystemIdentifier id='FoundationWall7Insulation'/>
894
- <Layer>
895
- <InstallationType>continuous - exterior</InstallationType>
896
- <NominalRValue>8.9</NominalRValue>
897
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
898
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
899
- </Layer>
900
- <Layer>
901
- <InstallationType>continuous - interior</InstallationType>
902
- <NominalRValue>0.0</NominalRValue>
903
- </Layer>
904
- </Insulation>
905
- </FoundationWall>
906
- <FoundationWall>
907
- <SystemIdentifier id='FoundationWall8'/>
908
- <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
909
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
910
- <Height>8.0</Height>
911
- <Area>133.3</Area>
912
- <Thickness>8.0</Thickness>
913
- <DepthBelowGrade>7.0</DepthBelowGrade>
914
- <InteriorFinish>
915
- <Type>gypsum board</Type>
916
- </InteriorFinish>
917
- <Insulation>
918
- <SystemIdentifier id='FoundationWall8Insulation'/>
919
- <Layer>
920
- <InstallationType>continuous - exterior</InstallationType>
921
- <NominalRValue>8.9</NominalRValue>
922
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
923
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
924
- </Layer>
925
- <Layer>
926
- <InstallationType>continuous - interior</InstallationType>
927
- <NominalRValue>0.0</NominalRValue>
928
- </Layer>
929
- </Insulation>
930
- </FoundationWall>
931
- <FoundationWall>
932
- <SystemIdentifier id='FoundationWall9'/>
933
- <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
934
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
935
- <Height>8.0</Height>
936
- <Area>133.3</Area>
937
- <Thickness>8.0</Thickness>
938
- <DepthBelowGrade>7.0</DepthBelowGrade>
939
- <InteriorFinish>
940
- <Type>gypsum board</Type>
941
- </InteriorFinish>
942
- <Insulation>
943
- <SystemIdentifier id='FoundationWall9Insulation'/>
944
- <Layer>
945
- <InstallationType>continuous - exterior</InstallationType>
946
- <NominalRValue>8.9</NominalRValue>
947
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
948
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
949
- </Layer>
950
- <Layer>
951
- <InstallationType>continuous - interior</InstallationType>
952
- <NominalRValue>0.0</NominalRValue>
953
- </Layer>
954
- </Insulation>
955
- </FoundationWall>
956
- <FoundationWall>
957
- <SystemIdentifier id='FoundationWall10'/>
958
- <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
959
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
960
- <Height>8.0</Height>
961
- <Area>0.1</Area>
962
- <Thickness>8.0</Thickness>
963
- <DepthBelowGrade>7.0</DepthBelowGrade>
964
- <InteriorFinish>
965
- <Type>gypsum board</Type>
966
- </InteriorFinish>
967
- <Insulation>
968
- <SystemIdentifier id='FoundationWall10Insulation'/>
969
- <Layer>
970
- <InstallationType>continuous - exterior</InstallationType>
971
- <NominalRValue>8.9</NominalRValue>
972
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
973
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
974
- </Layer>
975
- <Layer>
976
- <InstallationType>continuous - interior</InstallationType>
977
- <NominalRValue>0.0</NominalRValue>
978
- </Layer>
979
- </Insulation>
980
- </FoundationWall>
981
- </FoundationWalls>
982
- <Floors>
983
- <Floor>
984
- <SystemIdentifier id='Floor1'/>
985
- <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
986
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
987
- <FloorOrCeiling>ceiling</FloorOrCeiling>
988
- <FloorType>
989
- <WoodFrame/>
990
- </FloorType>
991
- <Area>150.0</Area>
992
- <InteriorFinish>
993
- <Type>gypsum board</Type>
994
- </InteriorFinish>
995
- <Insulation>
996
- <SystemIdentifier id='Floor1Insulation'/>
997
- <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
998
- </Insulation>
999
- </Floor>
1000
- <Floor>
1001
- <SystemIdentifier id='Floor2'/>
1002
- <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1003
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1004
- <FloorOrCeiling>ceiling</FloorOrCeiling>
1005
- <FloorType>
1006
- <WoodFrame/>
1007
- </FloorType>
1008
- <Area>150.0</Area>
1009
- <InteriorFinish>
1010
- <Type>gypsum board</Type>
1011
- </InteriorFinish>
1012
- <Insulation>
1013
- <SystemIdentifier id='Floor2Insulation'/>
1014
- <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
1015
- </Insulation>
1016
- </Floor>
1017
- <Floor>
1018
- <SystemIdentifier id='Floor3'/>
1019
- <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1020
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1021
- <FloorOrCeiling>ceiling</FloorOrCeiling>
1022
- <FloorType>
1023
- <WoodFrame/>
1024
- </FloorType>
1025
- <Area>150.0</Area>
1026
- <InteriorFinish>
1027
- <Type>gypsum board</Type>
1028
- </InteriorFinish>
1029
- <Insulation>
1030
- <SystemIdentifier id='Floor3Insulation'/>
1031
- <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
1032
- </Insulation>
1033
- </Floor>
1034
- <Floor>
1035
- <SystemIdentifier id='Floor4'/>
1036
- <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1037
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1038
- <FloorOrCeiling>ceiling</FloorOrCeiling>
1039
- <FloorType>
1040
- <WoodFrame/>
1041
- </FloorType>
1042
- <Area>150.0</Area>
1043
- <InteriorFinish>
1044
- <Type>gypsum board</Type>
1045
- </InteriorFinish>
1046
- <Insulation>
1047
- <SystemIdentifier id='Floor4Insulation'/>
1048
- <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
1049
- </Insulation>
1050
- </Floor>
1051
- <Floor>
1052
- <SystemIdentifier id='Floor5'/>
1053
- <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1054
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1055
- <FloorOrCeiling>ceiling</FloorOrCeiling>
1056
- <FloorType>
1057
- <WoodFrame/>
1058
- </FloorType>
1059
- <Area>150.0</Area>
1060
- <InteriorFinish>
1061
- <Type>gypsum board</Type>
1062
- </InteriorFinish>
1063
- <Insulation>
1064
- <SystemIdentifier id='Floor5Insulation'/>
1065
- <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
1066
- </Insulation>
1067
- </Floor>
1068
- <Floor>
1069
- <SystemIdentifier id='Floor6'/>
1070
- <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1071
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1072
- <FloorOrCeiling>ceiling</FloorOrCeiling>
1073
- <FloorType>
1074
- <WoodFrame/>
1075
- </FloorType>
1076
- <Area>150.0</Area>
1077
- <InteriorFinish>
1078
- <Type>gypsum board</Type>
1079
- </InteriorFinish>
1080
- <Insulation>
1081
- <SystemIdentifier id='Floor6Insulation'/>
1082
- <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
1083
- </Insulation>
1084
- </Floor>
1085
- <Floor>
1086
- <SystemIdentifier id='Floor7'/>
1087
- <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1088
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1089
- <FloorOrCeiling>ceiling</FloorOrCeiling>
1090
- <FloorType>
1091
- <WoodFrame/>
1092
- </FloorType>
1093
- <Area>150.0</Area>
1094
- <InteriorFinish>
1095
- <Type>gypsum board</Type>
1096
- </InteriorFinish>
1097
- <Insulation>
1098
- <SystemIdentifier id='Floor7Insulation'/>
1099
- <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
1100
- </Insulation>
1101
- </Floor>
1102
- <Floor>
1103
- <SystemIdentifier id='Floor8'/>
1104
- <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1105
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1106
- <FloorOrCeiling>ceiling</FloorOrCeiling>
1107
- <FloorType>
1108
- <WoodFrame/>
1109
- </FloorType>
1110
- <Area>150.0</Area>
1111
- <InteriorFinish>
1112
- <Type>gypsum board</Type>
1113
- </InteriorFinish>
1114
- <Insulation>
1115
- <SystemIdentifier id='Floor8Insulation'/>
1116
- <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
1117
- </Insulation>
1118
- </Floor>
1119
- <Floor>
1120
- <SystemIdentifier id='Floor9'/>
1121
- <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1122
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1123
- <FloorOrCeiling>ceiling</FloorOrCeiling>
1124
- <FloorType>
1125
- <WoodFrame/>
1126
- </FloorType>
1127
- <Area>150.0</Area>
1128
- <InteriorFinish>
1129
- <Type>gypsum board</Type>
1130
- </InteriorFinish>
1131
- <Insulation>
1132
- <SystemIdentifier id='Floor9Insulation'/>
1133
- <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
1134
- </Insulation>
1135
- </Floor>
1136
- <Floor>
1137
- <SystemIdentifier id='Floor10'/>
1138
- <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1139
- <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1140
- <FloorOrCeiling>ceiling</FloorOrCeiling>
1141
- <FloorType>
1142
- <WoodFrame/>
1143
- </FloorType>
1144
- <Area>0.1</Area>
1145
- <InteriorFinish>
1146
- <Type>gypsum board</Type>
1147
- </InteriorFinish>
1148
- <Insulation>
1149
- <SystemIdentifier id='Floor10Insulation'/>
1150
- <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
1151
- </Insulation>
1152
- </Floor>
1153
- </Floors>
1154
- <Slabs>
1155
- <Slab>
1156
- <SystemIdentifier id='Slab1'/>
1157
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1158
- <Area>150.0</Area>
1159
- <Thickness>4.0</Thickness>
1160
- <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1161
- <PerimeterInsulation>
1162
- <SystemIdentifier id='Slab1PerimeterInsulation'/>
1163
- <Layer>
1164
- <NominalRValue>0.0</NominalRValue>
1165
- <InsulationDepth>0.0</InsulationDepth>
1166
- </Layer>
1167
- </PerimeterInsulation>
1168
- <UnderSlabInsulation>
1169
- <SystemIdentifier id='Slab1UnderSlabInsulation'/>
1170
- <Layer>
1171
- <NominalRValue>0.0</NominalRValue>
1172
- <InsulationWidth>0.0</InsulationWidth>
1173
- </Layer>
1174
- </UnderSlabInsulation>
1175
- <extension>
1176
- <CarpetFraction>0.0</CarpetFraction>
1177
- <CarpetRValue>0.0</CarpetRValue>
1178
- </extension>
1179
- </Slab>
1180
- <Slab>
1181
- <SystemIdentifier id='Slab2'/>
1182
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1183
- <Area>150.0</Area>
1184
- <Thickness>4.0</Thickness>
1185
- <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1186
- <PerimeterInsulation>
1187
- <SystemIdentifier id='Slab2PerimeterInsulation'/>
1188
- <Layer>
1189
- <NominalRValue>0.0</NominalRValue>
1190
- <InsulationDepth>0.0</InsulationDepth>
1191
- </Layer>
1192
- </PerimeterInsulation>
1193
- <UnderSlabInsulation>
1194
- <SystemIdentifier id='Slab2UnderSlabInsulation'/>
1195
- <Layer>
1196
- <NominalRValue>0.0</NominalRValue>
1197
- <InsulationWidth>0.0</InsulationWidth>
1198
- </Layer>
1199
- </UnderSlabInsulation>
1200
- <extension>
1201
- <CarpetFraction>0.0</CarpetFraction>
1202
- <CarpetRValue>0.0</CarpetRValue>
1203
- </extension>
1204
- </Slab>
1205
- <Slab>
1206
- <SystemIdentifier id='Slab3'/>
1207
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1208
- <Area>150.0</Area>
1209
- <Thickness>4.0</Thickness>
1210
- <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1211
- <PerimeterInsulation>
1212
- <SystemIdentifier id='Slab3PerimeterInsulation'/>
1213
- <Layer>
1214
- <NominalRValue>0.0</NominalRValue>
1215
- <InsulationDepth>0.0</InsulationDepth>
1216
- </Layer>
1217
- </PerimeterInsulation>
1218
- <UnderSlabInsulation>
1219
- <SystemIdentifier id='Slab3UnderSlabInsulation'/>
1220
- <Layer>
1221
- <NominalRValue>0.0</NominalRValue>
1222
- <InsulationWidth>0.0</InsulationWidth>
1223
- </Layer>
1224
- </UnderSlabInsulation>
1225
- <extension>
1226
- <CarpetFraction>0.0</CarpetFraction>
1227
- <CarpetRValue>0.0</CarpetRValue>
1228
- </extension>
1229
- </Slab>
1230
- <Slab>
1231
- <SystemIdentifier id='Slab4'/>
1232
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1233
- <Area>150.0</Area>
1234
- <Thickness>4.0</Thickness>
1235
- <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1236
- <PerimeterInsulation>
1237
- <SystemIdentifier id='Slab4PerimeterInsulation'/>
1238
- <Layer>
1239
- <NominalRValue>0.0</NominalRValue>
1240
- <InsulationDepth>0.0</InsulationDepth>
1241
- </Layer>
1242
- </PerimeterInsulation>
1243
- <UnderSlabInsulation>
1244
- <SystemIdentifier id='Slab4UnderSlabInsulation'/>
1245
- <Layer>
1246
- <NominalRValue>0.0</NominalRValue>
1247
- <InsulationWidth>0.0</InsulationWidth>
1248
- </Layer>
1249
- </UnderSlabInsulation>
1250
- <extension>
1251
- <CarpetFraction>0.0</CarpetFraction>
1252
- <CarpetRValue>0.0</CarpetRValue>
1253
- </extension>
1254
- </Slab>
1255
- <Slab>
1256
- <SystemIdentifier id='Slab5'/>
1257
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1258
- <Area>150.0</Area>
1259
- <Thickness>4.0</Thickness>
1260
- <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1261
- <PerimeterInsulation>
1262
- <SystemIdentifier id='Slab5PerimeterInsulation'/>
1263
- <Layer>
1264
- <NominalRValue>0.0</NominalRValue>
1265
- <InsulationDepth>0.0</InsulationDepth>
1266
- </Layer>
1267
- </PerimeterInsulation>
1268
- <UnderSlabInsulation>
1269
- <SystemIdentifier id='Slab5UnderSlabInsulation'/>
1270
- <Layer>
1271
- <NominalRValue>0.0</NominalRValue>
1272
- <InsulationWidth>0.0</InsulationWidth>
1273
- </Layer>
1274
- </UnderSlabInsulation>
1275
- <extension>
1276
- <CarpetFraction>0.0</CarpetFraction>
1277
- <CarpetRValue>0.0</CarpetRValue>
1278
- </extension>
1279
- </Slab>
1280
- <Slab>
1281
- <SystemIdentifier id='Slab6'/>
1282
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1283
- <Area>150.0</Area>
1284
- <Thickness>4.0</Thickness>
1285
- <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1286
- <PerimeterInsulation>
1287
- <SystemIdentifier id='Slab6PerimeterInsulation'/>
1288
- <Layer>
1289
- <NominalRValue>0.0</NominalRValue>
1290
- <InsulationDepth>0.0</InsulationDepth>
1291
- </Layer>
1292
- </PerimeterInsulation>
1293
- <UnderSlabInsulation>
1294
- <SystemIdentifier id='Slab6UnderSlabInsulation'/>
1295
- <Layer>
1296
- <NominalRValue>0.0</NominalRValue>
1297
- <InsulationWidth>0.0</InsulationWidth>
1298
- </Layer>
1299
- </UnderSlabInsulation>
1300
- <extension>
1301
- <CarpetFraction>0.0</CarpetFraction>
1302
- <CarpetRValue>0.0</CarpetRValue>
1303
- </extension>
1304
- </Slab>
1305
- <Slab>
1306
- <SystemIdentifier id='Slab7'/>
1307
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1308
- <Area>150.0</Area>
1309
- <Thickness>4.0</Thickness>
1310
- <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1311
- <PerimeterInsulation>
1312
- <SystemIdentifier id='Slab7PerimeterInsulation'/>
1313
- <Layer>
1314
- <NominalRValue>0.0</NominalRValue>
1315
- <InsulationDepth>0.0</InsulationDepth>
1316
- </Layer>
1317
- </PerimeterInsulation>
1318
- <UnderSlabInsulation>
1319
- <SystemIdentifier id='Slab7UnderSlabInsulation'/>
1320
- <Layer>
1321
- <NominalRValue>0.0</NominalRValue>
1322
- <InsulationWidth>0.0</InsulationWidth>
1323
- </Layer>
1324
- </UnderSlabInsulation>
1325
- <extension>
1326
- <CarpetFraction>0.0</CarpetFraction>
1327
- <CarpetRValue>0.0</CarpetRValue>
1328
- </extension>
1329
- </Slab>
1330
- <Slab>
1331
- <SystemIdentifier id='Slab8'/>
1332
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1333
- <Area>150.0</Area>
1334
- <Thickness>4.0</Thickness>
1335
- <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1336
- <PerimeterInsulation>
1337
- <SystemIdentifier id='Slab8PerimeterInsulation'/>
1338
- <Layer>
1339
- <NominalRValue>0.0</NominalRValue>
1340
- <InsulationDepth>0.0</InsulationDepth>
1341
- </Layer>
1342
- </PerimeterInsulation>
1343
- <UnderSlabInsulation>
1344
- <SystemIdentifier id='Slab8UnderSlabInsulation'/>
1345
- <Layer>
1346
- <NominalRValue>0.0</NominalRValue>
1347
- <InsulationWidth>0.0</InsulationWidth>
1348
- </Layer>
1349
- </UnderSlabInsulation>
1350
- <extension>
1351
- <CarpetFraction>0.0</CarpetFraction>
1352
- <CarpetRValue>0.0</CarpetRValue>
1353
- </extension>
1354
- </Slab>
1355
- <Slab>
1356
- <SystemIdentifier id='Slab9'/>
1357
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1358
- <Area>150.0</Area>
1359
- <Thickness>4.0</Thickness>
1360
- <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1361
- <PerimeterInsulation>
1362
- <SystemIdentifier id='Slab9PerimeterInsulation'/>
1363
- <Layer>
1364
- <NominalRValue>0.0</NominalRValue>
1365
- <InsulationDepth>0.0</InsulationDepth>
1366
- </Layer>
1367
- </PerimeterInsulation>
1368
- <UnderSlabInsulation>
1369
- <SystemIdentifier id='Slab9UnderSlabInsulation'/>
1370
- <Layer>
1371
- <NominalRValue>0.0</NominalRValue>
1372
- <InsulationWidth>0.0</InsulationWidth>
1373
- </Layer>
1374
- </UnderSlabInsulation>
1375
- <extension>
1376
- <CarpetFraction>0.0</CarpetFraction>
1377
- <CarpetRValue>0.0</CarpetRValue>
1378
- </extension>
1379
- </Slab>
1380
- <Slab>
1381
- <SystemIdentifier id='Slab10'/>
1382
- <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1383
- <Area>0.1</Area>
1384
- <Thickness>4.0</Thickness>
1385
- <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1386
- <PerimeterInsulation>
1387
- <SystemIdentifier id='Slab10PerimeterInsulation'/>
1388
- <Layer>
1389
- <NominalRValue>0.0</NominalRValue>
1390
- <InsulationDepth>0.0</InsulationDepth>
1391
- </Layer>
1392
- </PerimeterInsulation>
1393
- <UnderSlabInsulation>
1394
- <SystemIdentifier id='Slab10UnderSlabInsulation'/>
1395
- <Layer>
1396
- <NominalRValue>0.0</NominalRValue>
1397
- <InsulationWidth>0.0</InsulationWidth>
1398
- </Layer>
1399
- </UnderSlabInsulation>
1400
- <extension>
1401
- <CarpetFraction>0.0</CarpetFraction>
1402
- <CarpetRValue>0.0</CarpetRValue>
1403
- </extension>
1404
- </Slab>
1405
- </Slabs>
1406
- <Windows>
1407
- <Window>
1408
- <SystemIdentifier id='Window1'/>
1409
- <Area>12.0</Area>
1410
- <Azimuth>0</Azimuth>
1411
- <UFactor>0.33</UFactor>
1412
- <SHGC>0.45</SHGC>
1413
- <InteriorShading>
1414
- <SystemIdentifier id='Window1InteriorShading'/>
1415
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1416
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1417
- </InteriorShading>
1418
- <FractionOperable>0.0</FractionOperable>
1419
- <AttachedToWall idref='Wall1'/>
1420
- </Window>
1421
- <Window>
1422
- <SystemIdentifier id='Window2'/>
1423
- <Area>8.0</Area>
1424
- <Azimuth>90</Azimuth>
1425
- <UFactor>0.33</UFactor>
1426
- <SHGC>0.45</SHGC>
1427
- <InteriorShading>
1428
- <SystemIdentifier id='Window2InteriorShading'/>
1429
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1430
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1431
- </InteriorShading>
1432
- <FractionOperable>0.0</FractionOperable>
1433
- <AttachedToWall idref='Wall1'/>
1434
- </Window>
1435
- <Window>
1436
- <SystemIdentifier id='Window3'/>
1437
- <Area>12.0</Area>
1438
- <Azimuth>180</Azimuth>
1439
- <UFactor>0.33</UFactor>
1440
- <SHGC>0.45</SHGC>
1441
- <InteriorShading>
1442
- <SystemIdentifier id='Window3InteriorShading'/>
1443
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1444
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1445
- </InteriorShading>
1446
- <FractionOperable>0.0</FractionOperable>
1447
- <AttachedToWall idref='Wall1'/>
1448
- </Window>
1449
- <Window>
1450
- <SystemIdentifier id='Window4'/>
1451
- <Area>8.0</Area>
1452
- <Azimuth>270</Azimuth>
1453
- <UFactor>0.33</UFactor>
1454
- <SHGC>0.45</SHGC>
1455
- <InteriorShading>
1456
- <SystemIdentifier id='Window4InteriorShading'/>
1457
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1458
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1459
- </InteriorShading>
1460
- <FractionOperable>0.0</FractionOperable>
1461
- <AttachedToWall idref='Wall1'/>
1462
- </Window>
1463
- <Window>
1464
- <SystemIdentifier id='Window5'/>
1465
- <Area>12.0</Area>
1466
- <Azimuth>0</Azimuth>
1467
- <UFactor>0.33</UFactor>
1468
- <SHGC>0.45</SHGC>
1469
- <InteriorShading>
1470
- <SystemIdentifier id='Window5InteriorShading'/>
1471
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1472
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1473
- </InteriorShading>
1474
- <FractionOperable>0.0</FractionOperable>
1475
- <AttachedToWall idref='Wall3'/>
1476
- </Window>
1477
- <Window>
1478
- <SystemIdentifier id='Window6'/>
1479
- <Area>12.0</Area>
1480
- <Azimuth>0</Azimuth>
1481
- <UFactor>0.33</UFactor>
1482
- <SHGC>0.45</SHGC>
1483
- <InteriorShading>
1484
- <SystemIdentifier id='Window6InteriorShading'/>
1485
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1486
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1487
- </InteriorShading>
1488
- <FractionOperable>0.0</FractionOperable>
1489
- <AttachedToWall idref='Wall4'/>
1490
- </Window>
1491
- <Window>
1492
- <SystemIdentifier id='Window7'/>
1493
- <Area>12.0</Area>
1494
- <Azimuth>0</Azimuth>
1495
- <UFactor>0.33</UFactor>
1496
- <SHGC>0.45</SHGC>
1497
- <InteriorShading>
1498
- <SystemIdentifier id='Window7InteriorShading'/>
1499
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1500
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1501
- </InteriorShading>
1502
- <FractionOperable>1.0</FractionOperable>
1503
- <AttachedToWall idref='Wall5'/>
1504
- </Window>
1505
- <Window>
1506
- <SystemIdentifier id='Window8'/>
1507
- <Area>12.0</Area>
1508
- <Azimuth>0</Azimuth>
1509
- <UFactor>0.33</UFactor>
1510
- <SHGC>0.45</SHGC>
1511
- <InteriorShading>
1512
- <SystemIdentifier id='Window8InteriorShading'/>
1513
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1514
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1515
- </InteriorShading>
1516
- <FractionOperable>1.0</FractionOperable>
1517
- <AttachedToWall idref='Wall6'/>
1518
- </Window>
1519
- <Window>
1520
- <SystemIdentifier id='Window9'/>
1521
- <Area>12.0</Area>
1522
- <Azimuth>0</Azimuth>
1523
- <UFactor>0.33</UFactor>
1524
- <SHGC>0.45</SHGC>
1525
- <InteriorShading>
1526
- <SystemIdentifier id='Window9InteriorShading'/>
1527
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1528
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1529
- </InteriorShading>
1530
- <FractionOperable>1.0</FractionOperable>
1531
- <AttachedToWall idref='Wall7'/>
1532
- </Window>
1533
- <Window>
1534
- <SystemIdentifier id='Window10'/>
1535
- <Area>12.0</Area>
1536
- <Azimuth>0</Azimuth>
1537
- <UFactor>0.33</UFactor>
1538
- <SHGC>0.45</SHGC>
1539
- <InteriorShading>
1540
- <SystemIdentifier id='Window10InteriorShading'/>
1541
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1542
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1543
- </InteriorShading>
1544
- <FractionOperable>1.0</FractionOperable>
1545
- <AttachedToWall idref='Wall8'/>
1546
- </Window>
1547
- <Window>
1548
- <SystemIdentifier id='Window11'/>
1549
- <Area>12.0</Area>
1550
- <Azimuth>0</Azimuth>
1551
- <UFactor>0.33</UFactor>
1552
- <SHGC>0.45</SHGC>
1553
- <InteriorShading>
1554
- <SystemIdentifier id='Window11InteriorShading'/>
1555
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1556
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1557
- </InteriorShading>
1558
- <FractionOperable>1.0</FractionOperable>
1559
- <AttachedToWall idref='Wall9'/>
1560
- </Window>
1561
- <Window>
1562
- <SystemIdentifier id='Window12'/>
1563
- <Area>12.0</Area>
1564
- <Azimuth>0</Azimuth>
1565
- <UFactor>0.33</UFactor>
1566
- <SHGC>0.45</SHGC>
1567
- <InteriorShading>
1568
- <SystemIdentifier id='Window12InteriorShading'/>
1569
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1570
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1571
- </InteriorShading>
1572
- <FractionOperable>1.0</FractionOperable>
1573
- <AttachedToWall idref='Wall10'/>
1574
- </Window>
1575
- <Window>
1576
- <SystemIdentifier id='Window13'/>
1577
- <Area>8.0</Area>
1578
- <Azimuth>90</Azimuth>
1579
- <UFactor>0.33</UFactor>
1580
- <SHGC>0.45</SHGC>
1581
- <InteriorShading>
1582
- <SystemIdentifier id='Window13InteriorShading'/>
1583
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1584
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1585
- </InteriorShading>
1586
- <FractionOperable>0.0</FractionOperable>
1587
- <AttachedToWall idref='Wall3'/>
1588
- </Window>
1589
- <Window>
1590
- <SystemIdentifier id='Window14'/>
1591
- <Area>8.0</Area>
1592
- <Azimuth>90</Azimuth>
1593
- <UFactor>0.33</UFactor>
1594
- <SHGC>0.45</SHGC>
1595
- <InteriorShading>
1596
- <SystemIdentifier id='Window14InteriorShading'/>
1597
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1598
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1599
- </InteriorShading>
1600
- <FractionOperable>0.0</FractionOperable>
1601
- <AttachedToWall idref='Wall4'/>
1602
- </Window>
1603
- <Window>
1604
- <SystemIdentifier id='Window15'/>
1605
- <Area>8.0</Area>
1606
- <Azimuth>90</Azimuth>
1607
- <UFactor>0.33</UFactor>
1608
- <SHGC>0.45</SHGC>
1609
- <InteriorShading>
1610
- <SystemIdentifier id='Window15InteriorShading'/>
1611
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1612
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1613
- </InteriorShading>
1614
- <FractionOperable>1.0</FractionOperable>
1615
- <AttachedToWall idref='Wall5'/>
1616
- </Window>
1617
- <Window>
1618
- <SystemIdentifier id='Window16'/>
1619
- <Area>8.0</Area>
1620
- <Azimuth>90</Azimuth>
1621
- <UFactor>0.33</UFactor>
1622
- <SHGC>0.45</SHGC>
1623
- <InteriorShading>
1624
- <SystemIdentifier id='Window16InteriorShading'/>
1625
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1626
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1627
- </InteriorShading>
1628
- <FractionOperable>1.0</FractionOperable>
1629
- <AttachedToWall idref='Wall6'/>
1630
- </Window>
1631
- <Window>
1632
- <SystemIdentifier id='Window17'/>
1633
- <Area>8.0</Area>
1634
- <Azimuth>90</Azimuth>
1635
- <UFactor>0.33</UFactor>
1636
- <SHGC>0.45</SHGC>
1637
- <InteriorShading>
1638
- <SystemIdentifier id='Window17InteriorShading'/>
1639
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1640
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1641
- </InteriorShading>
1642
- <FractionOperable>1.0</FractionOperable>
1643
- <AttachedToWall idref='Wall7'/>
1644
- </Window>
1645
- <Window>
1646
- <SystemIdentifier id='Window18'/>
1647
- <Area>8.0</Area>
1648
- <Azimuth>90</Azimuth>
1649
- <UFactor>0.33</UFactor>
1650
- <SHGC>0.45</SHGC>
1651
- <InteriorShading>
1652
- <SystemIdentifier id='Window18InteriorShading'/>
1653
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1654
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1655
- </InteriorShading>
1656
- <FractionOperable>1.0</FractionOperable>
1657
- <AttachedToWall idref='Wall8'/>
1658
- </Window>
1659
- <Window>
1660
- <SystemIdentifier id='Window19'/>
1661
- <Area>8.0</Area>
1662
- <Azimuth>90</Azimuth>
1663
- <UFactor>0.33</UFactor>
1664
- <SHGC>0.45</SHGC>
1665
- <InteriorShading>
1666
- <SystemIdentifier id='Window19InteriorShading'/>
1667
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1668
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1669
- </InteriorShading>
1670
- <FractionOperable>1.0</FractionOperable>
1671
- <AttachedToWall idref='Wall9'/>
1672
- </Window>
1673
- <Window>
1674
- <SystemIdentifier id='Window20'/>
1675
- <Area>8.0</Area>
1676
- <Azimuth>90</Azimuth>
1677
- <UFactor>0.33</UFactor>
1678
- <SHGC>0.45</SHGC>
1679
- <InteriorShading>
1680
- <SystemIdentifier id='Window20InteriorShading'/>
1681
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1682
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1683
- </InteriorShading>
1684
- <FractionOperable>1.0</FractionOperable>
1685
- <AttachedToWall idref='Wall10'/>
1686
- </Window>
1687
- <Window>
1688
- <SystemIdentifier id='Window21'/>
1689
- <Area>12.0</Area>
1690
- <Azimuth>180</Azimuth>
1691
- <UFactor>0.33</UFactor>
1692
- <SHGC>0.45</SHGC>
1693
- <InteriorShading>
1694
- <SystemIdentifier id='Window21InteriorShading'/>
1695
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1696
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1697
- </InteriorShading>
1698
- <FractionOperable>0.0</FractionOperable>
1699
- <AttachedToWall idref='Wall3'/>
1700
- </Window>
1701
- <Window>
1702
- <SystemIdentifier id='Window22'/>
1703
- <Area>12.0</Area>
1704
- <Azimuth>180</Azimuth>
1705
- <UFactor>0.33</UFactor>
1706
- <SHGC>0.45</SHGC>
1707
- <InteriorShading>
1708
- <SystemIdentifier id='Window22InteriorShading'/>
1709
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1710
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1711
- </InteriorShading>
1712
- <FractionOperable>0.0</FractionOperable>
1713
- <AttachedToWall idref='Wall4'/>
1714
- </Window>
1715
- <Window>
1716
- <SystemIdentifier id='Window23'/>
1717
- <Area>12.0</Area>
1718
- <Azimuth>180</Azimuth>
1719
- <UFactor>0.33</UFactor>
1720
- <SHGC>0.45</SHGC>
1721
- <InteriorShading>
1722
- <SystemIdentifier id='Window23InteriorShading'/>
1723
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1724
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1725
- </InteriorShading>
1726
- <FractionOperable>1.0</FractionOperable>
1727
- <AttachedToWall idref='Wall5'/>
1728
- </Window>
1729
- <Window>
1730
- <SystemIdentifier id='Window24'/>
1731
- <Area>12.0</Area>
1732
- <Azimuth>180</Azimuth>
1733
- <UFactor>0.33</UFactor>
1734
- <SHGC>0.45</SHGC>
1735
- <InteriorShading>
1736
- <SystemIdentifier id='Window24InteriorShading'/>
1737
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1738
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1739
- </InteriorShading>
1740
- <FractionOperable>1.0</FractionOperable>
1741
- <AttachedToWall idref='Wall6'/>
1742
- </Window>
1743
- <Window>
1744
- <SystemIdentifier id='Window25'/>
1745
- <Area>12.0</Area>
1746
- <Azimuth>180</Azimuth>
1747
- <UFactor>0.33</UFactor>
1748
- <SHGC>0.45</SHGC>
1749
- <InteriorShading>
1750
- <SystemIdentifier id='Window25InteriorShading'/>
1751
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1752
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1753
- </InteriorShading>
1754
- <FractionOperable>1.0</FractionOperable>
1755
- <AttachedToWall idref='Wall7'/>
1756
- </Window>
1757
- <Window>
1758
- <SystemIdentifier id='Window26'/>
1759
- <Area>12.0</Area>
1760
- <Azimuth>180</Azimuth>
1761
- <UFactor>0.33</UFactor>
1762
- <SHGC>0.45</SHGC>
1763
- <InteriorShading>
1764
- <SystemIdentifier id='Window26InteriorShading'/>
1765
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1766
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1767
- </InteriorShading>
1768
- <FractionOperable>1.0</FractionOperable>
1769
- <AttachedToWall idref='Wall8'/>
1770
- </Window>
1771
- <Window>
1772
- <SystemIdentifier id='Window27'/>
1773
- <Area>12.0</Area>
1774
- <Azimuth>180</Azimuth>
1775
- <UFactor>0.33</UFactor>
1776
- <SHGC>0.45</SHGC>
1777
- <InteriorShading>
1778
- <SystemIdentifier id='Window27InteriorShading'/>
1779
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1780
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1781
- </InteriorShading>
1782
- <FractionOperable>1.0</FractionOperable>
1783
- <AttachedToWall idref='Wall9'/>
1784
- </Window>
1785
- <Window>
1786
- <SystemIdentifier id='Window28'/>
1787
- <Area>12.0</Area>
1788
- <Azimuth>180</Azimuth>
1789
- <UFactor>0.33</UFactor>
1790
- <SHGC>0.45</SHGC>
1791
- <InteriorShading>
1792
- <SystemIdentifier id='Window28InteriorShading'/>
1793
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1794
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1795
- </InteriorShading>
1796
- <FractionOperable>1.0</FractionOperable>
1797
- <AttachedToWall idref='Wall10'/>
1798
- </Window>
1799
- <Window>
1800
- <SystemIdentifier id='Window29'/>
1801
- <Area>8.0</Area>
1802
- <Azimuth>270</Azimuth>
1803
- <UFactor>0.33</UFactor>
1804
- <SHGC>0.45</SHGC>
1805
- <InteriorShading>
1806
- <SystemIdentifier id='Window29InteriorShading'/>
1807
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1808
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1809
- </InteriorShading>
1810
- <FractionOperable>0.0</FractionOperable>
1811
- <AttachedToWall idref='Wall3'/>
1812
- </Window>
1813
- <Window>
1814
- <SystemIdentifier id='Window30'/>
1815
- <Area>8.0</Area>
1816
- <Azimuth>270</Azimuth>
1817
- <UFactor>0.33</UFactor>
1818
- <SHGC>0.45</SHGC>
1819
- <InteriorShading>
1820
- <SystemIdentifier id='Window30InteriorShading'/>
1821
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1822
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1823
- </InteriorShading>
1824
- <FractionOperable>0.0</FractionOperable>
1825
- <AttachedToWall idref='Wall4'/>
1826
- </Window>
1827
- <Window>
1828
- <SystemIdentifier id='Window31'/>
1829
- <Area>8.0</Area>
1830
- <Azimuth>270</Azimuth>
1831
- <UFactor>0.33</UFactor>
1832
- <SHGC>0.45</SHGC>
1833
- <InteriorShading>
1834
- <SystemIdentifier id='Window31InteriorShading'/>
1835
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1836
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1837
- </InteriorShading>
1838
- <FractionOperable>1.0</FractionOperable>
1839
- <AttachedToWall idref='Wall5'/>
1840
- </Window>
1841
- <Window>
1842
- <SystemIdentifier id='Window32'/>
1843
- <Area>8.0</Area>
1844
- <Azimuth>270</Azimuth>
1845
- <UFactor>0.33</UFactor>
1846
- <SHGC>0.45</SHGC>
1847
- <InteriorShading>
1848
- <SystemIdentifier id='Window32InteriorShading'/>
1849
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1850
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1851
- </InteriorShading>
1852
- <FractionOperable>1.0</FractionOperable>
1853
- <AttachedToWall idref='Wall6'/>
1854
- </Window>
1855
- <Window>
1856
- <SystemIdentifier id='Window33'/>
1857
- <Area>8.0</Area>
1858
- <Azimuth>270</Azimuth>
1859
- <UFactor>0.33</UFactor>
1860
- <SHGC>0.45</SHGC>
1861
- <InteriorShading>
1862
- <SystemIdentifier id='Window33InteriorShading'/>
1863
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1864
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1865
- </InteriorShading>
1866
- <FractionOperable>1.0</FractionOperable>
1867
- <AttachedToWall idref='Wall7'/>
1868
- </Window>
1869
- <Window>
1870
- <SystemIdentifier id='Window34'/>
1871
- <Area>8.0</Area>
1872
- <Azimuth>270</Azimuth>
1873
- <UFactor>0.33</UFactor>
1874
- <SHGC>0.45</SHGC>
1875
- <InteriorShading>
1876
- <SystemIdentifier id='Window34InteriorShading'/>
1877
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1878
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1879
- </InteriorShading>
1880
- <FractionOperable>1.0</FractionOperable>
1881
- <AttachedToWall idref='Wall8'/>
1882
- </Window>
1883
- <Window>
1884
- <SystemIdentifier id='Window35'/>
1885
- <Area>8.0</Area>
1886
- <Azimuth>270</Azimuth>
1887
- <UFactor>0.33</UFactor>
1888
- <SHGC>0.45</SHGC>
1889
- <InteriorShading>
1890
- <SystemIdentifier id='Window35InteriorShading'/>
1891
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1892
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1893
- </InteriorShading>
1894
- <FractionOperable>1.0</FractionOperable>
1895
- <AttachedToWall idref='Wall9'/>
1896
- </Window>
1897
- <Window>
1898
- <SystemIdentifier id='Window36'/>
1899
- <Area>8.0</Area>
1900
- <Azimuth>270</Azimuth>
1901
- <UFactor>0.33</UFactor>
1902
- <SHGC>0.45</SHGC>
1903
- <InteriorShading>
1904
- <SystemIdentifier id='Window36InteriorShading'/>
1905
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1906
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1907
- </InteriorShading>
1908
- <FractionOperable>1.0</FractionOperable>
1909
- <AttachedToWall idref='Wall10'/>
1910
- </Window>
1911
- <Window>
1912
- <SystemIdentifier id='Window37'/>
1913
- <Area>0.1</Area>
1914
- <Azimuth>270</Azimuth>
1915
- <UFactor>0.33</UFactor>
1916
- <SHGC>0.45</SHGC>
1917
- <InteriorShading>
1918
- <SystemIdentifier id='Window37InteriorShading'/>
1919
- <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1920
- <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1921
- </InteriorShading>
1922
- <FractionOperable>1.0</FractionOperable>
1923
- <AttachedToWall idref='Wall10'/>
1924
- </Window>
1925
- </Windows>
1926
- <Skylights>
1927
- <Skylight>
1928
- <SystemIdentifier id='Skylight1'/>
1929
- <Area>1.7</Area>
1930
- <Azimuth>0</Azimuth>
1931
- <UFactor>0.33</UFactor>
1932
- <SHGC>0.45</SHGC>
1933
- <InteriorShading>
1934
- <SystemIdentifier id='Skylight1InteriorShading'/>
1935
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
1936
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
1937
- </InteriorShading>
1938
- <AttachedToRoof idref='Roof1'/>
1939
- </Skylight>
1940
- <Skylight>
1941
- <SystemIdentifier id='Skylight2'/>
1942
- <Area>1.7</Area>
1943
- <Azimuth>180</Azimuth>
1944
- <UFactor>0.33</UFactor>
1945
- <SHGC>0.45</SHGC>
1946
- <InteriorShading>
1947
- <SystemIdentifier id='Skylight2InteriorShading'/>
1948
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
1949
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
1950
- </InteriorShading>
1951
- <AttachedToRoof idref='Roof1'/>
1952
- </Skylight>
1953
- <Skylight>
1954
- <SystemIdentifier id='Skylight3'/>
1955
- <Area>1.7</Area>
1956
- <Azimuth>0</Azimuth>
1957
- <UFactor>0.33</UFactor>
1958
- <SHGC>0.45</SHGC>
1959
- <InteriorShading>
1960
- <SystemIdentifier id='Skylight3InteriorShading'/>
1961
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
1962
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
1963
- </InteriorShading>
1964
- <AttachedToRoof idref='Roof2'/>
1965
- </Skylight>
1966
- <Skylight>
1967
- <SystemIdentifier id='Skylight4'/>
1968
- <Area>1.7</Area>
1969
- <Azimuth>0</Azimuth>
1970
- <UFactor>0.33</UFactor>
1971
- <SHGC>0.45</SHGC>
1972
- <InteriorShading>
1973
- <SystemIdentifier id='Skylight4InteriorShading'/>
1974
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
1975
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
1976
- </InteriorShading>
1977
- <AttachedToRoof idref='Roof3'/>
1978
- </Skylight>
1979
- <Skylight>
1980
- <SystemIdentifier id='Skylight5'/>
1981
- <Area>1.7</Area>
1982
- <Azimuth>0</Azimuth>
1983
- <UFactor>0.33</UFactor>
1984
- <SHGC>0.45</SHGC>
1985
- <InteriorShading>
1986
- <SystemIdentifier id='Skylight5InteriorShading'/>
1987
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
1988
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
1989
- </InteriorShading>
1990
- <AttachedToRoof idref='Roof4'/>
1991
- </Skylight>
1992
- <Skylight>
1993
- <SystemIdentifier id='Skylight6'/>
1994
- <Area>1.7</Area>
1995
- <Azimuth>0</Azimuth>
1996
- <UFactor>0.33</UFactor>
1997
- <SHGC>0.45</SHGC>
1998
- <InteriorShading>
1999
- <SystemIdentifier id='Skylight6InteriorShading'/>
2000
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
2001
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
2002
- </InteriorShading>
2003
- <AttachedToRoof idref='Roof5'/>
2004
- </Skylight>
2005
- <Skylight>
2006
- <SystemIdentifier id='Skylight7'/>
2007
- <Area>1.7</Area>
2008
- <Azimuth>0</Azimuth>
2009
- <UFactor>0.33</UFactor>
2010
- <SHGC>0.45</SHGC>
2011
- <InteriorShading>
2012
- <SystemIdentifier id='Skylight7InteriorShading'/>
2013
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
2014
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
2015
- </InteriorShading>
2016
- <AttachedToRoof idref='Roof6'/>
2017
- </Skylight>
2018
- <Skylight>
2019
- <SystemIdentifier id='Skylight8'/>
2020
- <Area>1.7</Area>
2021
- <Azimuth>0</Azimuth>
2022
- <UFactor>0.33</UFactor>
2023
- <SHGC>0.45</SHGC>
2024
- <InteriorShading>
2025
- <SystemIdentifier id='Skylight8InteriorShading'/>
2026
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
2027
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
2028
- </InteriorShading>
2029
- <AttachedToRoof idref='Roof7'/>
2030
- </Skylight>
2031
- <Skylight>
2032
- <SystemIdentifier id='Skylight9'/>
2033
- <Area>1.7</Area>
2034
- <Azimuth>0</Azimuth>
2035
- <UFactor>0.33</UFactor>
2036
- <SHGC>0.45</SHGC>
2037
- <InteriorShading>
2038
- <SystemIdentifier id='Skylight9InteriorShading'/>
2039
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
2040
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
2041
- </InteriorShading>
2042
- <AttachedToRoof idref='Roof8'/>
2043
- </Skylight>
2044
- <Skylight>
2045
- <SystemIdentifier id='Skylight10'/>
2046
- <Area>1.7</Area>
2047
- <Azimuth>0</Azimuth>
2048
- <UFactor>0.33</UFactor>
2049
- <SHGC>0.45</SHGC>
2050
- <InteriorShading>
2051
- <SystemIdentifier id='Skylight10InteriorShading'/>
2052
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
2053
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
2054
- </InteriorShading>
2055
- <AttachedToRoof idref='Roof9'/>
2056
- </Skylight>
2057
- <Skylight>
2058
- <SystemIdentifier id='Skylight11'/>
2059
- <Area>1.7</Area>
2060
- <Azimuth>180</Azimuth>
2061
- <UFactor>0.33</UFactor>
2062
- <SHGC>0.45</SHGC>
2063
- <InteriorShading>
2064
- <SystemIdentifier id='Skylight11InteriorShading'/>
2065
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
2066
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
2067
- </InteriorShading>
2068
- <AttachedToRoof idref='Roof2'/>
2069
- </Skylight>
2070
- <Skylight>
2071
- <SystemIdentifier id='Skylight12'/>
2072
- <Area>1.7</Area>
2073
- <Azimuth>180</Azimuth>
2074
- <UFactor>0.33</UFactor>
2075
- <SHGC>0.45</SHGC>
2076
- <InteriorShading>
2077
- <SystemIdentifier id='Skylight12InteriorShading'/>
2078
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
2079
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
2080
- </InteriorShading>
2081
- <AttachedToRoof idref='Roof3'/>
2082
- </Skylight>
2083
- <Skylight>
2084
- <SystemIdentifier id='Skylight13'/>
2085
- <Area>1.7</Area>
2086
- <Azimuth>180</Azimuth>
2087
- <UFactor>0.33</UFactor>
2088
- <SHGC>0.45</SHGC>
2089
- <InteriorShading>
2090
- <SystemIdentifier id='Skylight13InteriorShading'/>
2091
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
2092
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
2093
- </InteriorShading>
2094
- <AttachedToRoof idref='Roof4'/>
2095
- </Skylight>
2096
- <Skylight>
2097
- <SystemIdentifier id='Skylight14'/>
2098
- <Area>1.7</Area>
2099
- <Azimuth>180</Azimuth>
2100
- <UFactor>0.33</UFactor>
2101
- <SHGC>0.45</SHGC>
2102
- <InteriorShading>
2103
- <SystemIdentifier id='Skylight14InteriorShading'/>
2104
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
2105
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
2106
- </InteriorShading>
2107
- <AttachedToRoof idref='Roof5'/>
2108
- </Skylight>
2109
- <Skylight>
2110
- <SystemIdentifier id='Skylight15'/>
2111
- <Area>1.7</Area>
2112
- <Azimuth>180</Azimuth>
2113
- <UFactor>0.33</UFactor>
2114
- <SHGC>0.45</SHGC>
2115
- <InteriorShading>
2116
- <SystemIdentifier id='Skylight15InteriorShading'/>
2117
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
2118
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
2119
- </InteriorShading>
2120
- <AttachedToRoof idref='Roof6'/>
2121
- </Skylight>
2122
- <Skylight>
2123
- <SystemIdentifier id='Skylight16'/>
2124
- <Area>1.7</Area>
2125
- <Azimuth>180</Azimuth>
2126
- <UFactor>0.33</UFactor>
2127
- <SHGC>0.45</SHGC>
2128
- <InteriorShading>
2129
- <SystemIdentifier id='Skylight16InteriorShading'/>
2130
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
2131
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
2132
- </InteriorShading>
2133
- <AttachedToRoof idref='Roof7'/>
2134
- </Skylight>
2135
- <Skylight>
2136
- <SystemIdentifier id='Skylight17'/>
2137
- <Area>1.7</Area>
2138
- <Azimuth>180</Azimuth>
2139
- <UFactor>0.33</UFactor>
2140
- <SHGC>0.45</SHGC>
2141
- <InteriorShading>
2142
- <SystemIdentifier id='Skylight17InteriorShading'/>
2143
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
2144
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
2145
- </InteriorShading>
2146
- <AttachedToRoof idref='Roof8'/>
2147
- </Skylight>
2148
- <Skylight>
2149
- <SystemIdentifier id='Skylight18'/>
2150
- <Area>1.7</Area>
2151
- <Azimuth>180</Azimuth>
2152
- <UFactor>0.33</UFactor>
2153
- <SHGC>0.45</SHGC>
2154
- <InteriorShading>
2155
- <SystemIdentifier id='Skylight18InteriorShading'/>
2156
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
2157
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
2158
- </InteriorShading>
2159
- <AttachedToRoof idref='Roof9'/>
2160
- </Skylight>
2161
- <Skylight>
2162
- <SystemIdentifier id='Skylight19'/>
2163
- <Area>0.1</Area>
2164
- <Azimuth>180</Azimuth>
2165
- <UFactor>0.33</UFactor>
2166
- <SHGC>0.45</SHGC>
2167
- <InteriorShading>
2168
- <SystemIdentifier id='Skylight19InteriorShading'/>
2169
- <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
2170
- <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
2171
- </InteriorShading>
2172
- <AttachedToRoof idref='Roof9'/>
2173
- </Skylight>
2174
- </Skylights>
2175
- <Doors>
2176
- <Door>
2177
- <SystemIdentifier id='Door1'/>
2178
- <AttachedToWall idref='Wall1'/>
2179
- <Area>4.4</Area>
2180
- <Azimuth>180</Azimuth>
2181
- <RValue>4.4</RValue>
2182
- </Door>
2183
- <Door>
2184
- <SystemIdentifier id='Door2'/>
2185
- <AttachedToWall idref='Wall3'/>
2186
- <Area>4.4</Area>
2187
- <Azimuth>180</Azimuth>
2188
- <RValue>4.4</RValue>
2189
- </Door>
2190
- <Door>
2191
- <SystemIdentifier id='Door3'/>
2192
- <AttachedToWall idref='Wall4'/>
2193
- <Area>4.4</Area>
2194
- <Azimuth>180</Azimuth>
2195
- <RValue>4.4</RValue>
2196
- </Door>
2197
- <Door>
2198
- <SystemIdentifier id='Door4'/>
2199
- <AttachedToWall idref='Wall5'/>
2200
- <Area>4.4</Area>
2201
- <Azimuth>180</Azimuth>
2202
- <RValue>4.4</RValue>
2203
- </Door>
2204
- <Door>
2205
- <SystemIdentifier id='Door5'/>
2206
- <AttachedToWall idref='Wall6'/>
2207
- <Area>4.4</Area>
2208
- <Azimuth>180</Azimuth>
2209
- <RValue>4.4</RValue>
2210
- </Door>
2211
- <Door>
2212
- <SystemIdentifier id='Door6'/>
2213
- <AttachedToWall idref='Wall7'/>
2214
- <Area>4.4</Area>
2215
- <Azimuth>180</Azimuth>
2216
- <RValue>4.4</RValue>
2217
- </Door>
2218
- <Door>
2219
- <SystemIdentifier id='Door7'/>
2220
- <AttachedToWall idref='Wall8'/>
2221
- <Area>4.4</Area>
2222
- <Azimuth>180</Azimuth>
2223
- <RValue>4.4</RValue>
2224
- </Door>
2225
- <Door>
2226
- <SystemIdentifier id='Door8'/>
2227
- <AttachedToWall idref='Wall9'/>
2228
- <Area>4.4</Area>
2229
- <Azimuth>180</Azimuth>
2230
- <RValue>4.4</RValue>
2231
- </Door>
2232
- <Door>
2233
- <SystemIdentifier id='Door9'/>
2234
- <AttachedToWall idref='Wall10'/>
2235
- <Area>4.4</Area>
2236
- <Azimuth>180</Azimuth>
2237
- <RValue>4.4</RValue>
2238
- </Door>
2239
- <Door>
2240
- <SystemIdentifier id='Door10'/>
2241
- <AttachedToWall idref='Wall10'/>
2242
- <Area>0.1</Area>
2243
- <Azimuth>180</Azimuth>
2244
- <RValue>4.4</RValue>
2245
- </Door>
2246
- </Doors>
2247
- </Enclosure>
2248
- <Systems>
2249
- <HVAC>
2250
- <HVACPlant>
2251
- <PrimarySystems>
2252
- <PrimaryHeatingSystem idref='HeatingSystem1'/>
2253
- <PrimaryCoolingSystem idref='CoolingSystem1'/>
2254
- </PrimarySystems>
2255
- <HeatingSystem>
2256
- <SystemIdentifier id='HeatingSystem1'/>
2257
- <DistributionSystem idref='HVACDistribution1'/>
2258
- <HeatingSystemType>
2259
- <Furnace/>
2260
- </HeatingSystemType>
2261
- <HeatingSystemFuel>natural gas</HeatingSystemFuel>
2262
- <HeatingCapacity>36000.0</HeatingCapacity>
2263
- <AnnualHeatingEfficiency>
2264
- <Units>AFUE</Units>
2265
- <Value>0.92</Value>
2266
- </AnnualHeatingEfficiency>
2267
- <FractionHeatLoadServed>1.0</FractionHeatLoadServed>
2268
- </HeatingSystem>
2269
- <CoolingSystem>
2270
- <SystemIdentifier id='CoolingSystem1'/>
2271
- <DistributionSystem idref='HVACDistribution1'/>
2272
- <CoolingSystemType>central air conditioner</CoolingSystemType>
2273
- <CoolingSystemFuel>electricity</CoolingSystemFuel>
2274
- <CoolingCapacity>24000.0</CoolingCapacity>
2275
- <CompressorType>single stage</CompressorType>
2276
- <FractionCoolLoadServed>1.0</FractionCoolLoadServed>
2277
- <AnnualCoolingEfficiency>
2278
- <Units>SEER</Units>
2279
- <Value>13.0</Value>
2280
- </AnnualCoolingEfficiency>
2281
- <SensibleHeatFraction>0.73</SensibleHeatFraction>
2282
- </CoolingSystem>
2283
- </HVACPlant>
2284
- <HVACControl>
2285
- <SystemIdentifier id='HVACControl1'/>
2286
- <SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
2287
- <SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
2288
- </HVACControl>
2289
- <HVACDistribution>
2290
- <SystemIdentifier id='HVACDistribution1'/>
2291
- <DistributionSystemType>
2292
- <AirDistribution>
2293
- <AirDistributionType>regular velocity</AirDistributionType>
2294
- <DuctLeakageMeasurement>
2295
- <DuctType>supply</DuctType>
2296
- <DuctLeakage>
2297
- <Units>CFM25</Units>
2298
- <Value>75.0</Value>
2299
- <TotalOrToOutside>to outside</TotalOrToOutside>
2300
- </DuctLeakage>
2301
- </DuctLeakageMeasurement>
2302
- <DuctLeakageMeasurement>
2303
- <DuctType>return</DuctType>
2304
- <DuctLeakage>
2305
- <Units>CFM25</Units>
2306
- <Value>25.0</Value>
2307
- <TotalOrToOutside>to outside</TotalOrToOutside>
2308
- </DuctLeakage>
2309
- </DuctLeakageMeasurement>
2310
- <Ducts>
2311
- <SystemIdentifier id='Ducts1'/>
2312
- <DuctType>supply</DuctType>
2313
- <DuctInsulationRValue>4.0</DuctInsulationRValue>
2314
- <DuctLocation>attic - unvented</DuctLocation>
2315
- <DuctSurfaceArea>150.0</DuctSurfaceArea>
2316
- </Ducts>
2317
- <Ducts>
2318
- <SystemIdentifier id='Ducts2'/>
2319
- <DuctType>return</DuctType>
2320
- <DuctInsulationRValue>0.0</DuctInsulationRValue>
2321
- <DuctLocation>attic - unvented</DuctLocation>
2322
- <DuctSurfaceArea>50.0</DuctSurfaceArea>
2323
- </Ducts>
2324
- </AirDistribution>
2325
- </DistributionSystemType>
2326
- </HVACDistribution>
2327
- </HVAC>
2328
- <WaterHeating>
2329
- <WaterHeatingSystem>
2330
- <SystemIdentifier id='WaterHeatingSystem1'/>
2331
- <FuelType>electricity</FuelType>
2332
- <WaterHeaterType>storage water heater</WaterHeaterType>
2333
- <Location>living space</Location>
2334
- <TankVolume>40.0</TankVolume>
2335
- <FractionDHWLoadServed>1.0</FractionDHWLoadServed>
2336
- <HeatingCapacity>18767.0</HeatingCapacity>
2337
- <EnergyFactor>0.95</EnergyFactor>
2338
- <HotWaterTemperature>125.0</HotWaterTemperature>
2339
- </WaterHeatingSystem>
2340
- <HotWaterDistribution>
2341
- <SystemIdentifier id='HotWaterDistribution1'/>
2342
- <SystemType>
2343
- <Standard>
2344
- <PipingLength>50.0</PipingLength>
2345
- </Standard>
2346
- </SystemType>
2347
- <PipeInsulation>
2348
- <PipeRValue>0.0</PipeRValue>
2349
- </PipeInsulation>
2350
- </HotWaterDistribution>
2351
- <WaterFixture>
2352
- <SystemIdentifier id='WaterFixture1'/>
2353
- <WaterFixtureType>shower head</WaterFixtureType>
2354
- <LowFlow>true</LowFlow>
2355
- </WaterFixture>
2356
- <WaterFixture>
2357
- <SystemIdentifier id='WaterFixture2'/>
2358
- <WaterFixtureType>faucet</WaterFixtureType>
2359
- <LowFlow>false</LowFlow>
2360
- </WaterFixture>
2361
- </WaterHeating>
2362
- </Systems>
2363
- <Appliances>
2364
- <ClothesWasher>
2365
- <SystemIdentifier id='ClothesWasher1'/>
2366
- <Location>living space</Location>
2367
- <IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
2368
- <RatedAnnualkWh>380.0</RatedAnnualkWh>
2369
- <LabelElectricRate>0.12</LabelElectricRate>
2370
- <LabelGasRate>1.09</LabelGasRate>
2371
- <LabelAnnualGasCost>27.0</LabelAnnualGasCost>
2372
- <LabelUsage>6.0</LabelUsage>
2373
- <Capacity>3.2</Capacity>
2374
- </ClothesWasher>
2375
- <ClothesDryer>
2376
- <SystemIdentifier id='ClothesDryer1'/>
2377
- <Location>living space</Location>
2378
- <FuelType>electricity</FuelType>
2379
- <CombinedEnergyFactor>3.73</CombinedEnergyFactor>
2380
- <Vented>true</Vented>
2381
- <VentedFlowRate>150.0</VentedFlowRate>
2382
- </ClothesDryer>
2383
- <Dishwasher>
2384
- <SystemIdentifier id='Dishwasher1'/>
2385
- <Location>living space</Location>
2386
- <RatedAnnualkWh>307.0</RatedAnnualkWh>
2387
- <PlaceSettingCapacity>12</PlaceSettingCapacity>
2388
- <LabelElectricRate>0.12</LabelElectricRate>
2389
- <LabelGasRate>1.09</LabelGasRate>
2390
- <LabelAnnualGasCost>22.32</LabelAnnualGasCost>
2391
- <LabelUsage>4.0</LabelUsage>
2392
- </Dishwasher>
2393
- <Refrigerator>
2394
- <SystemIdentifier id='Refrigerator1'/>
2395
- <Location>living space</Location>
2396
- <RatedAnnualkWh>650.0</RatedAnnualkWh>
2397
- <PrimaryIndicator>true</PrimaryIndicator>
2398
- </Refrigerator>
2399
- <CookingRange>
2400
- <SystemIdentifier id='CookingRange1'/>
2401
- <Location>living space</Location>
2402
- <FuelType>electricity</FuelType>
2403
- <IsInduction>false</IsInduction>
2404
- </CookingRange>
2405
- <Oven>
2406
- <SystemIdentifier id='Oven1'/>
2407
- <IsConvection>false</IsConvection>
2408
- </Oven>
2409
- </Appliances>
2410
- <Lighting>
2411
- <LightingGroup>
2412
- <SystemIdentifier id='LightingGroup1'/>
2413
- <Location>interior</Location>
2414
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
2415
- <LightingType>
2416
- <CompactFluorescent/>
2417
- </LightingType>
2418
- </LightingGroup>
2419
- <LightingGroup>
2420
- <SystemIdentifier id='LightingGroup2'/>
2421
- <Location>exterior</Location>
2422
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
2423
- <LightingType>
2424
- <CompactFluorescent/>
2425
- </LightingType>
2426
- </LightingGroup>
2427
- <LightingGroup>
2428
- <SystemIdentifier id='LightingGroup3'/>
2429
- <Location>garage</Location>
2430
- <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
2431
- <LightingType>
2432
- <CompactFluorescent/>
2433
- </LightingType>
2434
- </LightingGroup>
2435
- <LightingGroup>
2436
- <SystemIdentifier id='LightingGroup4'/>
2437
- <Location>interior</Location>
2438
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
2439
- <LightingType>
2440
- <FluorescentTube/>
2441
- </LightingType>
2442
- </LightingGroup>
2443
- <LightingGroup>
2444
- <SystemIdentifier id='LightingGroup5'/>
2445
- <Location>exterior</Location>
2446
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
2447
- <LightingType>
2448
- <FluorescentTube/>
2449
- </LightingType>
2450
- </LightingGroup>
2451
- <LightingGroup>
2452
- <SystemIdentifier id='LightingGroup6'/>
2453
- <Location>garage</Location>
2454
- <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
2455
- <LightingType>
2456
- <FluorescentTube/>
2457
- </LightingType>
2458
- </LightingGroup>
2459
- <LightingGroup>
2460
- <SystemIdentifier id='LightingGroup7'/>
2461
- <Location>interior</Location>
2462
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
2463
- <LightingType>
2464
- <LightEmittingDiode/>
2465
- </LightingType>
2466
- </LightingGroup>
2467
- <LightingGroup>
2468
- <SystemIdentifier id='LightingGroup8'/>
2469
- <Location>exterior</Location>
2470
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
2471
- <LightingType>
2472
- <LightEmittingDiode/>
2473
- </LightingType>
2474
- </LightingGroup>
2475
- <LightingGroup>
2476
- <SystemIdentifier id='LightingGroup9'/>
2477
- <Location>garage</Location>
2478
- <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
2479
- <LightingType>
2480
- <LightEmittingDiode/>
2481
- </LightingType>
2482
- </LightingGroup>
2483
- </Lighting>
2484
- <MiscLoads>
2485
- <PlugLoad>
2486
- <SystemIdentifier id='PlugLoad1'/>
2487
- <PlugLoadType>TV other</PlugLoadType>
2488
- <Load>
2489
- <Units>kWh/year</Units>
2490
- <Value>620.0</Value>
2491
- </Load>
2492
- </PlugLoad>
2493
- <PlugLoad>
2494
- <SystemIdentifier id='PlugLoad2'/>
2495
- <PlugLoadType>other</PlugLoadType>
2496
- <Load>
2497
- <Units>kWh/year</Units>
2498
- <Value>2457.0</Value>
2499
- </Load>
2500
- <extension>
2501
- <FracSensible>0.855</FracSensible>
2502
- <FracLatent>0.045</FracLatent>
2503
- </extension>
2504
- </PlugLoad>
2505
- </MiscLoads>
2506
- </BuildingDetails>
2507
- </Building>
2508
- </HPXML>