urbanopt-cli 0.6.2 → 0.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1061) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -0
  3. data/CHANGELOG.md +32 -0
  4. data/CMakeLists.txt +23 -23
  5. data/FindOpenStudioSDK.cmake +6 -6
  6. data/Gemfile +5 -5
  7. data/example_files/Gemfile +10 -7
  8. data/example_files/base_workflow_res.osw +10 -0
  9. data/example_files/example_project_combined.json +13 -3
  10. data/example_files/example_project_with_PV.json +751 -0
  11. data/example_files/mappers/Baseline.rb +51 -30
  12. data/example_files/mappers/CreateBar.rb +37 -0
  13. data/example_files/mappers/FlexibleHotWater.rb +69 -0
  14. data/example_files/mappers/Floorspace.rb +30 -0
  15. data/example_files/mappers/HighEfficiency.rb +5 -4
  16. data/example_files/mappers/base_workflow.osw +5 -0
  17. data/example_files/mappers/createbar_workflow.osw +3 -1
  18. data/example_files/mappers/floorspace_workflow.osw +2 -1
  19. data/example_files/measures/BuildResidentialModel/measure.rb +109 -76
  20. data/example_files/osm_building/7.osm +0 -307
  21. data/example_files/osm_building/8.osm +0 -419
  22. data/example_files/osm_building/9.osm +0 -664
  23. data/example_files/reopt/base_assumptions.json +3 -3
  24. data/example_files/reopt/multiPV_assumptions.json +2 -2
  25. data/example_files/residential/enclosure.tsv +102 -102
  26. data/example_files/resources/hpxml-measures/.github/workflows/config.yml +22 -16
  27. data/example_files/resources/hpxml-measures/.gitignore +3 -7
  28. data/example_files/resources/hpxml-measures/.rubocop.yml +67 -8
  29. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +1752 -1455
  30. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +3229 -5431
  31. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb +386 -553
  32. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +1075 -363
  33. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb +212 -0
  34. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml +898 -0
  35. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules.rb +109 -188
  36. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_README.md +0 -0
  37. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML/resources/schedules_clothes_dryer_power_consumption_dist.csv → BuildResidentialScheduleFile/resources/schedules_clothes_dryer_consumption_dist.csv} +0 -0
  38. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML/resources/schedules_clothes_dryer_power_duration_dist.csv → BuildResidentialScheduleFile/resources/schedules_clothes_dryer_duration_dist.csv} +0 -0
  39. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML/resources/schedules_clothes_washer_power_consumption_dist.csv → BuildResidentialScheduleFile/resources/schedules_clothes_washer_consumption_dist.csv} +0 -0
  40. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML/resources/schedules_clothes_washer_power_duration_dist.csv → BuildResidentialScheduleFile/resources/schedules_clothes_washer_duration_dist.csv} +0 -0
  41. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_config.json +2 -2
  42. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_config.md +0 -0
  43. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML/resources/schedules_cooking_power_consumption_dist.csv → BuildResidentialScheduleFile/resources/schedules_cooking_consumption_dist.csv} +0 -0
  44. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML/resources/schedules_cooking_power_duration_dist.csv → BuildResidentialScheduleFile/resources/schedules_cooking_duration_dist.csv} +0 -0
  45. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML/resources/schedules_dishwasher_power_consumption_dist.csv → BuildResidentialScheduleFile/resources/schedules_dishwasher_consumption_dist.csv} +0 -0
  46. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML/resources/schedules_dishwasher_power_duration_dist.csv → BuildResidentialScheduleFile/resources/schedules_dishwasher_duration_dist.csv} +0 -0
  47. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML/resources/schedules_clothes_washer_cluster_size_probability.csv → BuildResidentialScheduleFile/resources/schedules_hot_water_clothes_washer_cluster_size_probability.csv} +0 -0
  48. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML/resources/schedules_clothes_washer_event_duration_probability.csv → BuildResidentialScheduleFile/resources/schedules_hot_water_clothes_washer_event_duration_probability.csv} +0 -0
  49. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML/resources/schedules_dishwasher_cluster_size_probability.csv → BuildResidentialScheduleFile/resources/schedules_hot_water_dishwasher_cluster_size_probability.csv} +0 -0
  50. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML/resources/schedules_dishwasher_event_duration_probability.csv → BuildResidentialScheduleFile/resources/schedules_hot_water_dishwasher_event_duration_probability.csv} +0 -0
  51. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_shower_cluster_size_probability.csv +0 -0
  52. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_shower_event_duration_probability.csv +0 -0
  53. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_0_cooking_evening_duration_probability.csv +0 -0
  54. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_0_cooking_midday_duration_probability.csv +0 -0
  55. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_0_cooking_morning_duration_probability.csv +0 -0
  56. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_0_dishwashing_evening_duration_probability.csv +0 -0
  57. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_0_dishwashing_midday_duration_probability.csv +0 -0
  58. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_0_dishwashing_morning_duration_probability.csv +0 -0
  59. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_0_laundry_evening_duration_probability.csv +0 -0
  60. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_0_laundry_midday_duration_probability.csv +0 -0
  61. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_0_laundry_morning_duration_probability.csv +0 -0
  62. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_0_shower_evening_duration_probability.csv +0 -0
  63. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_0_shower_midday_duration_probability.csv +0 -0
  64. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_0_shower_morning_duration_probability.csv +0 -0
  65. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_1_cooking_evening_duration_probability.csv +0 -0
  66. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_1_cooking_midday_duration_probability.csv +0 -0
  67. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_1_cooking_morning_duration_probability.csv +0 -0
  68. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_1_dishwashing_evening_duration_probability.csv +0 -0
  69. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_1_dishwashing_midday_duration_probability.csv +0 -0
  70. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_1_dishwashing_morning_duration_probability.csv +0 -0
  71. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_1_laundry_evening_duration_probability.csv +0 -0
  72. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_1_laundry_midday_duration_probability.csv +0 -0
  73. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_1_laundry_morning_duration_probability.csv +0 -0
  74. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_1_shower_evening_duration_probability.csv +0 -0
  75. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_1_shower_midday_duration_probability.csv +0 -0
  76. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_1_shower_morning_duration_probability.csv +0 -0
  77. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_2_cooking_evening_duration_probability.csv +0 -0
  78. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_2_cooking_midday_duration_probability.csv +0 -0
  79. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_2_cooking_morning_duration_probability.csv +0 -0
  80. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_2_dishwashing_evening_duration_probability.csv +0 -0
  81. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_2_dishwashing_midday_duration_probability.csv +0 -0
  82. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_2_dishwashing_morning_duration_probability.csv +0 -0
  83. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_2_laundry_evening_duration_probability.csv +0 -0
  84. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_2_laundry_midday_duration_probability.csv +0 -0
  85. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_2_laundry_morning_duration_probability.csv +0 -0
  86. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_2_shower_evening_duration_probability.csv +0 -0
  87. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_2_shower_midday_duration_probability.csv +0 -0
  88. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_2_shower_morning_duration_probability.csv +0 -0
  89. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_3_cooking_evening_duration_probability.csv +0 -0
  90. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_3_cooking_midday_duration_probability.csv +0 -0
  91. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_3_cooking_morning_duration_probability.csv +0 -0
  92. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_3_dishwashing_evening_duration_probability.csv +0 -0
  93. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_3_dishwashing_midday_duration_probability.csv +0 -0
  94. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_3_dishwashing_morning_duration_probability.csv +0 -0
  95. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_3_laundry_evening_duration_probability.csv +0 -0
  96. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_3_laundry_midday_duration_probability.csv +0 -0
  97. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_3_laundry_morning_duration_probability.csv +0 -0
  98. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_3_shower_evening_duration_probability.csv +0 -0
  99. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_3_shower_midday_duration_probability.csv +0 -0
  100. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_duration_probability_cluster_3_shower_morning_duration_probability.csv +0 -0
  101. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_mkv_chain_initial_prob_cluster_0.csv +0 -0
  102. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_mkv_chain_initial_prob_cluster_1.csv +0 -0
  103. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_mkv_chain_initial_prob_cluster_2.csv +0 -0
  104. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_mkv_chain_initial_prob_cluster_3.csv +0 -0
  105. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_mkv_chain_transition_prob_cluster_0.csv +0 -0
  106. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_mkv_chain_transition_prob_cluster_1.csv +0 -0
  107. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_mkv_chain_transition_prob_cluster_2.csv +0 -0
  108. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_mkv_chain_transition_prob_cluster_3.csv +0 -0
  109. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekday_state_and_monthly_schedule_shift.csv +0 -0
  110. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_0_cooking_evening_duration_probability.csv +0 -0
  111. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_0_cooking_midday_duration_probability.csv +0 -0
  112. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_0_cooking_morning_duration_probability.csv +0 -0
  113. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_0_dishwashing_evening_duration_probability.csv +0 -0
  114. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_0_dishwashing_midday_duration_probability.csv +0 -0
  115. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_0_dishwashing_morning_duration_probability.csv +0 -0
  116. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_0_laundry_evening_duration_probability.csv +0 -0
  117. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_0_laundry_midday_duration_probability.csv +0 -0
  118. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_0_laundry_morning_duration_probability.csv +0 -0
  119. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_0_shower_evening_duration_probability.csv +0 -0
  120. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_0_shower_midday_duration_probability.csv +0 -0
  121. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_0_shower_morning_duration_probability.csv +0 -0
  122. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_1_cooking_evening_duration_probability.csv +0 -0
  123. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_1_cooking_midday_duration_probability.csv +0 -0
  124. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_1_cooking_morning_duration_probability.csv +0 -0
  125. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_1_dishwashing_evening_duration_probability.csv +0 -0
  126. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_1_dishwashing_midday_duration_probability.csv +0 -0
  127. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_1_dishwashing_morning_duration_probability.csv +0 -0
  128. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_1_laundry_evening_duration_probability.csv +0 -0
  129. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_1_laundry_midday_duration_probability.csv +0 -0
  130. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_1_laundry_morning_duration_probability.csv +0 -0
  131. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_1_shower_evening_duration_probability.csv +0 -0
  132. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_1_shower_midday_duration_probability.csv +0 -0
  133. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_1_shower_morning_duration_probability.csv +0 -0
  134. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_2_cooking_evening_duration_probability.csv +0 -0
  135. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_2_cooking_midday_duration_probability.csv +0 -0
  136. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_2_cooking_morning_duration_probability.csv +0 -0
  137. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_2_dishwashing_evening_duration_probability.csv +0 -0
  138. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_2_dishwashing_midday_duration_probability.csv +0 -0
  139. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_2_dishwashing_morning_duration_probability.csv +0 -0
  140. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_2_laundry_evening_duration_probability.csv +0 -0
  141. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_2_laundry_midday_duration_probability.csv +0 -0
  142. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_2_laundry_morning_duration_probability.csv +0 -0
  143. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_2_shower_evening_duration_probability.csv +0 -0
  144. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_2_shower_midday_duration_probability.csv +0 -0
  145. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_2_shower_morning_duration_probability.csv +0 -0
  146. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_3_cooking_evening_duration_probability.csv +0 -0
  147. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_3_cooking_midday_duration_probability.csv +0 -0
  148. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_3_cooking_morning_duration_probability.csv +0 -0
  149. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_3_dishwashing_evening_duration_probability.csv +0 -0
  150. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_3_dishwashing_midday_duration_probability.csv +0 -0
  151. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_3_dishwashing_morning_duration_probability.csv +0 -0
  152. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_3_laundry_evening_duration_probability.csv +0 -0
  153. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_3_laundry_midday_duration_probability.csv +0 -0
  154. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_3_laundry_morning_duration_probability.csv +0 -0
  155. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_3_shower_evening_duration_probability.csv +0 -0
  156. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_3_shower_midday_duration_probability.csv +0 -0
  157. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_duration_probability_cluster_3_shower_morning_duration_probability.csv +0 -0
  158. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_mkv_chain_initial_prob_cluster_0.csv +0 -0
  159. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_mkv_chain_initial_prob_cluster_1.csv +0 -0
  160. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_mkv_chain_initial_prob_cluster_2.csv +0 -0
  161. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_mkv_chain_initial_prob_cluster_3.csv +0 -0
  162. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_mkv_chain_transition_prob_cluster_0.csv +0 -0
  163. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_mkv_chain_transition_prob_cluster_1.csv +0 -0
  164. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_mkv_chain_transition_prob_cluster_2.csv +0 -0
  165. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_mkv_chain_transition_prob_cluster_3.csv +0 -0
  166. data/example_files/resources/hpxml-measures/{BuildResidentialHPXML → BuildResidentialScheduleFile}/resources/schedules_weekend_state_and_monthly_schedule_shift.csv +0 -0
  167. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb +526 -0
  168. data/example_files/resources/hpxml-measures/Changelog.md +84 -8
  169. data/example_files/resources/hpxml-measures/Gemfile +3 -0
  170. data/example_files/resources/hpxml-measures/Gemfile.lock +3 -11
  171. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb +387 -387
  172. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +167 -251
  173. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/BaseElements.xsd +275 -59
  174. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/EPvalidator.xml +471 -247
  175. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXML.xsd +1 -1
  176. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLDataTypes.xsd +171 -79
  177. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLvalidator.xml +155 -78
  178. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb +188 -141
  179. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/battery.rb +83 -0
  180. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb +99 -11
  181. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb +558 -342
  182. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/energyplus.rb +2 -0
  183. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb +64 -72
  184. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +96 -93
  185. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +965 -350
  186. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +887 -216
  187. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb +664 -760
  188. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +306 -287
  189. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb +20 -29
  190. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb +0 -20
  191. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lu_hvac_equipment_efficiency.csv +493 -0
  192. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lu_water_heater_efficiency.csv +157 -0
  193. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/materials.rb +156 -108
  194. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb +41 -3
  195. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/minitest_helper.rb +14 -2
  196. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb +18 -18
  197. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb +14 -7
  198. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/smooth.csv +8761 -0
  199. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/stochastic-vacancy.csv +8761 -0
  200. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/stochastic.csv +8761 -0
  201. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +431 -428
  202. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/validator.rb +21 -12
  203. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb +3 -3
  204. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb +245 -234
  205. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb +10 -5
  206. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb +19 -8
  207. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb +44 -23
  208. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_battery.rb +241 -0
  209. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +1374 -297
  210. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb +702 -55
  211. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb +0 -1
  212. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb +1 -1
  213. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +238 -40
  214. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb +2 -2
  215. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb +0 -2
  216. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb +186 -0
  217. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +955 -176
  218. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb +47 -61
  219. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/util.rb +1 -1
  220. data/example_files/resources/hpxml-measures/LICENSE.md +1 -1
  221. data/example_files/resources/hpxml-measures/README.md +12 -9
  222. data/example_files/resources/hpxml-measures/Rakefile +1 -1
  223. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/measure.rb +448 -0
  224. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/measure.xml +81 -0
  225. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/resources/constants.rb +71 -0
  226. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/tests/hpxml_output_report_test.rb +232 -0
  227. data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.rb +1977 -0
  228. data/example_files/resources/hpxml-measures/{SimulationOutputReport → ReportSimulationOutput}/measure.xml +682 -31
  229. data/example_files/resources/hpxml-measures/{SimulationOutputReport → ReportSimulationOutput}/resources/constants.rb +20 -2
  230. data/example_files/resources/hpxml-measures/{SimulationOutputReport → ReportSimulationOutput}/tests/output_report_test.rb +83 -218
  231. data/example_files/resources/hpxml-measures/docs/source/index.rst +1 -2
  232. data/example_files/resources/hpxml-measures/docs/source/intro.rst +6 -3
  233. data/example_files/resources/hpxml-measures/docs/source/usage_instructions.rst +73 -0
  234. data/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst +915 -494
  235. data/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst +263 -111
  236. data/example_files/resources/hpxml-measures/tasks.rb +3830 -6981
  237. data/example_files/resources/hpxml-measures/weather/ZAF_Cape.Town.688160_IWEC-cache.csv +35 -0
  238. data/example_files/resources/hpxml-measures/weather/ZAF_Cape.Town.688160_IWEC.epw +8768 -0
  239. data/example_files/resources/hpxml-measures/workflow/run_simulation.rb +25 -5
  240. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +102 -91
  241. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +93 -83
  242. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +93 -83
  243. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +93 -83
  244. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +93 -83
  245. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +102 -91
  246. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +103 -97
  247. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml +96 -85
  248. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +102 -91
  249. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +102 -91
  250. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +102 -91
  251. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +96 -125
  252. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +119 -104
  253. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +94 -89
  254. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +93 -83
  255. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +104 -95
  256. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +104 -95
  257. data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery-outside.xml +584 -0
  258. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml +99 -68
  259. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml +119 -79
  260. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml +99 -68
  261. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml +99 -68
  262. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml +99 -68
  263. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml +97 -66
  264. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml +97 -66
  265. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml +97 -66
  266. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml +100 -69
  267. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml +100 -69
  268. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml +94 -65
  269. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml +94 -65
  270. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml +94 -65
  271. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml +94 -65
  272. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml +97 -68
  273. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml +94 -65
  274. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml +94 -65
  275. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml +94 -65
  276. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml +97 -68
  277. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml +97 -68
  278. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml +98 -67
  279. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +96 -64
  280. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml +105 -84
  281. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml +108 -77
  282. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml +100 -69
  283. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml +100 -69
  284. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml +98 -67
  285. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml +97 -66
  286. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml +97 -66
  287. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml +97 -66
  288. data/example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/invalid-facility-type-surfaces.xml → base-bldgtype-single-family-attached-2stories.xml} +152 -167
  289. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached.xml +124 -114
  290. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +102 -95
  291. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +102 -95
  292. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +102 -95
  293. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +104 -94
  294. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +105 -96
  295. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +102 -95
  296. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +102 -95
  297. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +102 -95
  298. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +104 -95
  299. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +102 -95
  300. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +102 -95
  301. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +102 -95
  302. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +104 -97
  303. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +102 -95
  304. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +104 -95
  305. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +104 -95
  306. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +104 -95
  307. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +102 -95
  308. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +104 -95
  309. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +108 -101
  310. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml +96 -85
  311. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +104 -95
  312. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +104 -95
  313. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +104 -95
  314. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +104 -95
  315. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +104 -95
  316. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +106 -97
  317. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +106 -97
  318. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +106 -97
  319. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +106 -97
  320. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +106 -97
  321. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +106 -97
  322. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +104 -95
  323. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +105 -96
  324. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +104 -95
  325. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +574 -0
  326. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +105 -96
  327. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +104 -95
  328. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +104 -95
  329. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +105 -97
  330. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +106 -97
  331. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +106 -97
  332. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +104 -95
  333. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +104 -95
  334. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +104 -95
  335. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +104 -95
  336. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +104 -95
  337. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +104 -95
  338. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +104 -95
  339. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +106 -97
  340. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +106 -97
  341. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +104 -95
  342. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +104 -95
  343. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +131 -119
  344. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +120 -99
  345. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +104 -95
  346. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +104 -95
  347. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +104 -95
  348. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +104 -95
  349. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +131 -118
  350. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +104 -95
  351. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +104 -95
  352. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +104 -95
  353. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +104 -95
  354. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +104 -95
  355. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml +579 -0
  356. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +110 -101
  357. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml +213 -95
  358. data/example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/invalid-id.xml → base-enclosure-skylights-physical-properties.xml} +123 -105
  359. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml +114 -105
  360. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +112 -103
  361. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +92 -82
  362. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces.xml +533 -547
  363. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces2.xml +545 -559
  364. data/example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/generator-output-greater-than-consumption.xml → base-enclosure-thermal-mass.xml} +117 -111
  365. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +239 -109
  366. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +88 -79
  367. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml +584 -0
  368. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml +115 -106
  369. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +89 -79
  370. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml +123 -110
  371. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +119 -172
  372. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +104 -95
  373. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-interior-insulation.xml +107 -95
  374. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +572 -0
  375. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +119 -128
  376. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +92 -82
  377. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +117 -110
  378. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +106 -91
  379. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +107 -98
  380. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +105 -97
  381. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +108 -98
  382. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +108 -98
  383. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +115 -110
  384. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +101 -94
  385. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +103 -95
  386. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +104 -94
  387. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +104 -94
  388. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml +590 -0
  389. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +589 -0
  390. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +104 -94
  391. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml +104 -94
  392. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml +105 -94
  393. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-manual-s-oversize-allowances.xml +103 -93
  394. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed.xml +106 -93
  395. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-manual-s-oversize-allowances.xml +103 -93
  396. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed.xml +106 -93
  397. data/example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/hvac-invalid-distribution-system-type.xml → base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml} +587 -570
  398. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-manual-s-oversize-allowances.xml +103 -93
  399. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed.xml +106 -93
  400. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml +102 -95
  401. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml +103 -94
  402. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml +101 -94
  403. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml +101 -94
  404. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml +101 -94
  405. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml +101 -94
  406. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml +108 -95
  407. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed.xml +106 -93
  408. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml +106 -93
  409. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml +99 -92
  410. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml +103 -94
  411. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml +99 -92
  412. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml +102 -95
  413. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml +104 -95
  414. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml +104 -95
  415. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml +101 -94
  416. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml +103 -94
  417. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +104 -94
  418. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +105 -94
  419. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-manual-s-oversize-allowances.xml +103 -93
  420. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump.xml +106 -93
  421. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml +101 -94
  422. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml +104 -94
  423. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml +105 -94
  424. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-manual-s-oversize-allowances.xml +103 -93
  425. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted.xml +106 -93
  426. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml +541 -0
  427. data/example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/invalid-relatedhvac-dhw-indirect.xml → base-hvac-autosize-ptac-with-heating.xml} +528 -517
  428. data/example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/boiler-invalid-afue.xml → base-hvac-autosize-ptac.xml} +109 -113
  429. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp.xml +531 -0
  430. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-only.xml +99 -92
  431. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml +99 -92
  432. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml +100 -93
  433. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml +104 -95
  434. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +101 -94
  435. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +102 -95
  436. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +103 -94
  437. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +101 -94
  438. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +101 -94
  439. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +101 -94
  440. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +101 -94
  441. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +101 -94
  442. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +101 -94
  443. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +101 -94
  444. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +106 -96
  445. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +104 -95
  446. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml +104 -94
  447. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +104 -94
  448. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +104 -94
  449. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +104 -94
  450. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +104 -94
  451. data/example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/unattached-solar-thermal-system.xml → base-hvac-ducts-area-fractions.xml} +596 -577
  452. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.xml → base-hvac-ducts-leakage-cfm50.xml} +108 -106
  453. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +104 -95
  454. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +99 -92
  455. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +103 -94
  456. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +101 -94
  457. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml +99 -92
  458. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml +99 -92
  459. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml +99 -92
  460. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +99 -92
  461. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml +101 -94
  462. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +104 -95
  463. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +102 -95
  464. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +104 -95
  465. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +104 -95
  466. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +101 -94
  467. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +103 -94
  468. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +101 -94
  469. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +101 -94
  470. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +101 -94
  471. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +104 -95
  472. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +101 -94
  473. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +102 -94
  474. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +103 -93
  475. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.xml → base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml} +104 -94
  476. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.xml → base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml} +104 -94
  477. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.xml → base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml} +104 -94
  478. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.xml → base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml} +104 -95
  479. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.xml → base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml} +104 -95
  480. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.xml → base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml} +104 -95
  481. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-install-quality-all-furnace-gas-only.xml → base-hvac-install-quality-furnace-gas-only.xml} +101 -94
  482. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-install-quality-all-ground-to-air-heat-pump.xml → base-hvac-install-quality-ground-to-air-heat-pump.xml} +104 -94
  483. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.xml → base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml} +101 -94
  484. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-install-quality-all-mini-split-heat-pump-ducted.xml → base-hvac-install-quality-mini-split-heat-pump-ducted.xml} +104 -94
  485. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +101 -94
  486. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +99 -92
  487. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +101 -94
  488. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +103 -95
  489. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +104 -94
  490. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +542 -0
  491. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +101 -92
  492. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +124 -100
  493. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml +94 -89
  494. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml +99 -92
  495. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat-detailed.xml +104 -95
  496. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat.xml +104 -95
  497. data/example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/cfis-with-hydronic-distribution.xml → base-hvac-ptac-with-heating.xml} +530 -532
  498. data/example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/hvac-distribution-return-duct-leakage-missing.xml → base-hvac-ptac.xml} +515 -528
  499. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml +531 -0
  500. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +99 -92
  501. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +516 -0
  502. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +99 -92
  503. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml +584 -0
  504. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +104 -95
  505. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml +99 -92
  506. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +99 -92
  507. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml +104 -95
  508. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +104 -95
  509. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +100 -93
  510. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml +110 -96
  511. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml +586 -0
  512. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml +95 -86
  513. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +104 -95
  514. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +108 -98
  515. data/example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/invalid-foundation-wall-properties.xml → base-location-capetown-zaf.xml} +134 -127
  516. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +92 -82
  517. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +105 -98
  518. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml +104 -95
  519. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml +92 -82
  520. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +92 -82
  521. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml +92 -82
  522. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml +108 -98
  523. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +106 -97
  524. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +106 -97
  525. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +107 -98
  526. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +104 -97
  527. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +107 -98
  528. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +106 -97
  529. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +106 -97
  530. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +105 -96
  531. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +106 -97
  532. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +106 -97
  533. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +106 -97
  534. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +141 -114
  535. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +106 -97
  536. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +105 -96
  537. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml +101 -101
  538. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml +105 -96
  539. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml +157 -112
  540. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml +157 -112
  541. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +96 -87
  542. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +108 -99
  543. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml +104 -95
  544. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +113 -102
  545. data/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml +318 -291
  546. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml +608 -0
  547. data/example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/enclosure-garage-missing-roof-ceiling.xml → base-pv-battery-garage.xml} +678 -626
  548. data/example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/multifamily-reference-surface.xml → base-pv-battery-outside-degrades.xml} +610 -575
  549. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-outside.xml +608 -0
  550. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml +105 -96
  551. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.xml → base-schedules-detailed-smooth.xml} +105 -101
  552. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.xml → base-schedules-detailed-stochastic-vacancy.xml} +105 -98
  553. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-install-quality-blower-efficiency-furnace-gas-central-ac-1-speed.xml → base-schedules-detailed-stochastic.xml} +105 -101
  554. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-lighting-detailed.xml → base-schedules-simple.xml} +625 -585
  555. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +104 -95
  556. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +104 -95
  557. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +104 -95
  558. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +104 -95
  559. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +104 -95
  560. data/example_files/resources/hpxml-measures/workflow/sample_files/base.xml +104 -95
  561. data/example_files/resources/hpxml-measures/workflow/template-build-hpxml-and-stocastic-schedules.osw +129 -0
  562. data/example_files/resources/hpxml-measures/workflow/template-stochastic-schedules.osw +53 -0
  563. data/example_files/resources/hpxml-measures/workflow/template.osw +7 -2
  564. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml +75 -44
  565. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml +75 -44
  566. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml +75 -44
  567. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml +75 -44
  568. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml +75 -44
  569. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml +75 -44
  570. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml +75 -44
  571. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml +75 -44
  572. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml +63 -32
  573. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml +63 -32
  574. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml +66 -35
  575. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml +66 -35
  576. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml +66 -35
  577. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml +66 -35
  578. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml +69 -38
  579. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml +69 -38
  580. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml +75 -44
  581. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml +75 -44
  582. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml +75 -44
  583. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml +75 -44
  584. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml +75 -44
  585. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml +75 -44
  586. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml +78 -47
  587. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml +78 -47
  588. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml +114 -103
  589. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml +126 -103
  590. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results.csv +321 -294
  591. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_ashrae_140.csv +26 -26
  592. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_hvac_sizing.csv +320 -293
  593. data/example_files/resources/hpxml-measures/workflow/tests/compare.py +351 -0
  594. data/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb +253 -260
  595. data/example_files/visualization/input_visualization_feature.html +14 -5
  596. data/example_files/visualization/input_visualization_scenario.html +12 -6
  597. data/example_files/weather/USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.ddy +17 -17
  598. data/lib/uo_cli/version.rb +1 -1
  599. data/lib/uo_cli.rb +66 -17
  600. data/uo_cli.gemspec +6 -6
  601. metadata +219 -639
  602. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/constants.rb +0 -59
  603. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-coal.osw +0 -337
  604. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-portable.osw +0 -337
  605. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-whole-home.osw +0 -337
  606. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier.osw +0 -337
  607. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-gas.osw +0 -337
  608. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-modified.osw +0 -337
  609. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-none.osw +0 -337
  610. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-oil.osw +0 -337
  611. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-propane.osw +0 -337
  612. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-wood.osw +0 -337
  613. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-flat.osw +0 -337
  614. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-radiant-barrier.osw +0 -337
  615. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-unvented-insulated-roof.osw +0 -337
  616. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-vented.osw +0 -337
  617. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-boiler-only-baseboard.osw +0 -341
  618. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-boiler-only-fan-coil.osw +0 -341
  619. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent-preconditioning.osw +0 -348
  620. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent.osw +0 -342
  621. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-pv.osw +0 -341
  622. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-water-heater.osw +0 -341
  623. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily.osw +0 -341
  624. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-single-family-attached.osw +0 -339
  625. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless-outside.osw +0 -337
  626. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless.osw +0 -337
  627. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-dwhr.osw +0 -337
  628. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-outside.osw +0 -337
  629. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-standbyloss.osw +0 -337
  630. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-with-solar-fraction.osw +0 -337
  631. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect.osw +0 -337
  632. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-electric.osw +0 -337
  633. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-gas.osw +0 -337
  634. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-hpwh.osw +0 -337
  635. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-indirect.osw +0 -337
  636. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-low-flow-fixtures.osw +0 -337
  637. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-none.osw +0 -337
  638. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-demand.osw +0 -337
  639. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-manual.osw +0 -337
  640. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-nocontrol.osw +0 -337
  641. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-temperature.osw +0 -337
  642. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-timer.osw +0 -337
  643. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-evacuated-tube.osw +0 -337
  644. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-flat-plate.osw +0 -337
  645. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-ics.osw +0 -337
  646. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-fraction.osw +0 -337
  647. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-indirect-flat-plate.osw +0 -337
  648. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-thermosyphon-flat-plate.osw +0 -337
  649. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-coal.osw +0 -337
  650. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-elec-uef.osw +0 -338
  651. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-outside.osw +0 -337
  652. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-uef.osw +0 -338
  653. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas.osw +0 -337
  654. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-outside.osw +0 -337
  655. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-uef.osw +0 -338
  656. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar-fraction.osw +0 -337
  657. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar.osw +0 -337
  658. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump.osw +0 -337
  659. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-oil.osw +0 -337
  660. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-wood.osw +0 -337
  661. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-outside.osw +0 -337
  662. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-uef.osw +0 -337
  663. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric.osw +0 -337
  664. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-uef.osw +0 -337
  665. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar-fraction.osw +0 -337
  666. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar.osw +0 -337
  667. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas.osw +0 -337
  668. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-propane.osw +0 -337
  669. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories-garage.osw +0 -337
  670. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories.osw +0 -337
  671. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-1.osw +0 -337
  672. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-2.osw +0 -337
  673. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-4.osw +0 -337
  674. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-5.osw +0 -337
  675. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-garage.osw +0 -337
  676. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-ach-house-pressure.osw +0 -337
  677. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm-house-pressure.osw +0 -337
  678. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm50.osw +0 -337
  679. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-flue.osw +0 -337
  680. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-natural-ach.osw +0 -337
  681. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-overhangs.osw +0 -337
  682. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-windows-none.osw +0 -337
  683. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-ambient.osw +0 -337
  684. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-conditioned-basement-slab-insulation.osw +0 -337
  685. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-slab.osw +0 -337
  686. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-assembly-r.osw +0 -338
  687. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-wall-insulation.osw +0 -337
  688. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement.osw +0 -337
  689. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unvented-crawlspace.osw +0 -337
  690. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-vented-crawlspace.osw +0 -337
  691. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.osw +0 -337
  692. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed-heating-only.osw +0 -337
  693. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed.osw +0 -337
  694. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-2-speed.osw +0 -337
  695. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-var-speed.osw +0 -337
  696. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-coal-only.osw +0 -337
  697. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-elec-only.osw +0 -337
  698. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-central-ac-1-speed.osw +0 -337
  699. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-only.osw +0 -337
  700. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-oil-only.osw +0 -337
  701. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-propane-only.osw +0 -337
  702. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-wood-only.osw +0 -337
  703. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-1-speed.osw +0 -337
  704. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-2-speed.osw +0 -337
  705. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-var-speed.osw +0 -337
  706. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.osw +0 -337
  707. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.osw +0 -338
  708. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.osw +0 -338
  709. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.osw +0 -338
  710. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.osw +0 -338
  711. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-mini-split-heat-pump-ducted.osw +0 -338
  712. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ducts-leakage-percent.osw +0 -337
  713. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-elec-resistance-only.osw +0 -337
  714. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-furnace-gas.osw +0 -335
  715. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only-ducted.osw +0 -335
  716. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only.osw +0 -335
  717. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fireplace-wood-only.osw +0 -337
  718. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fixed-heater-gas-only.osw +0 -337
  719. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-floor-furnace-propane-only.osw +0 -337
  720. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-coal-only.osw +0 -337
  721. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-elec-central-ac-1-speed.osw +0 -337
  722. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-elec-only.osw +0 -337
  723. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-2-speed.osw +0 -337
  724. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-var-speed.osw +0 -337
  725. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-only.osw +0 -337
  726. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-room-ac.osw +0 -336
  727. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-oil-only.osw +0 -337
  728. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-propane-only.osw +0 -337
  729. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-wood-only.osw +0 -337
  730. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump-cooling-only.osw +0 -336
  731. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump-heating-only.osw +0 -336
  732. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump.osw +0 -336
  733. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.osw +0 -339
  734. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.osw +0 -339
  735. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.osw +0 -339
  736. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.osw +0 -339
  737. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.osw +0 -340
  738. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.osw +0 -340
  739. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.osw +0 -340
  740. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-only.osw +0 -338
  741. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-ground-to-air-heat-pump.osw +0 -338
  742. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.osw +0 -338
  743. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-mini-split-heat-pump-ducted.osw +0 -339
  744. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.osw +0 -338
  745. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.osw +0 -340
  746. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-air-conditioner-only-ducted.osw +0 -336
  747. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-air-conditioner-only-ductless.osw +0 -336
  748. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-cooling-only.osw +0 -337
  749. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-heating-only.osw +0 -337
  750. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted.osw +0 -337
  751. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ductless.osw +0 -337
  752. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-none.osw +0 -337
  753. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-portable-heater-gas-only.osw +0 -337
  754. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-programmable-thermostat-detailed.osw +0 -337
  755. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-room-ac-only-33percent.osw +0 -336
  756. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-room-ac-only.osw +0 -336
  757. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-setpoints.osw +0 -337
  758. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-oil-only.osw +0 -337
  759. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-wood-pellets-only.osw +0 -337
  760. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-undersized.osw +0 -337
  761. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-wall-furnace-elec-only.osw +0 -337
  762. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-ceiling-fans.osw +0 -337
  763. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-detailed.osw +0 -337
  764. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-AMY-2012.osw +0 -337
  765. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-baltimore-md.osw +0 -337
  766. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-dallas-tx.osw +0 -337
  767. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-duluth-mn.osw +0 -337
  768. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-helena-mt.osw +0 -337
  769. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-honolulu-hi.osw +0 -337
  770. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-miami-fl.osw +0 -337
  771. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-phoenix-az.osw +0 -337
  772. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-portland-or.osw +0 -337
  773. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-balanced.osw +0 -337
  774. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-bath-kitchen-fans.osw +0 -345
  775. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis-evap-cooler-only-ducted.osw +0 -335
  776. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis.osw +0 -337
  777. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv-atre-asre.osw +0 -337
  778. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv.osw +0 -337
  779. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-exhaust-rated-flow-rate.osw +0 -337
  780. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-exhaust.osw +0 -337
  781. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv-asre.osw +0 -337
  782. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv.osw +0 -337
  783. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-supply.osw +0 -337
  784. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-whole-house-fan.osw +0 -337
  785. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-defaults.osw +0 -324
  786. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon.osw +0 -337
  787. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon2.osw +0 -337
  788. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-neighbor-shading.osw +0 -337
  789. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-shielding-of-home.osw +0 -337
  790. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-usage-multiplier.osw +0 -337
  791. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-pv.osw +0 -337
  792. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-stochastic-vacant.osw +0 -341
  793. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-stochastic.osw +0 -337
  794. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-user-specified.osw +0 -338
  795. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-calendar-year-custom.osw +0 -338
  796. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-custom.osw +0 -342
  797. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-disabled.osw +0 -338
  798. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-runperiod-1-month.osw +0 -341
  799. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-timestep-10-mins.osw +0 -337
  800. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base.osw +0 -337
  801. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-auto.osw +0 -337
  802. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-double-exterior.osw +0 -341
  803. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-double-loaded-interior.osw +0 -341
  804. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-eaves.osw +0 -341
  805. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-single-exterior-front.osw +0 -341
  806. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-double-loaded-interior.osw +0 -341
  807. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-bottom-double-loaded-interior.osw +0 -341
  808. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-bottom.osw +0 -341
  809. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-middle-double-loaded-interior.osw +0 -341
  810. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-middle.osw +0 -341
  811. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-top-double-loaded-interior.osw +0 -341
  812. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-top.osw +0 -341
  813. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-bottom-double-loaded-interior.osw +0 -341
  814. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-bottom.osw +0 -341
  815. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-middle-double-loaded-interior.osw +0 -341
  816. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-middle.osw +0 -341
  817. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-top-double-loaded-interior.osw +0 -341
  818. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-top.osw +0 -341
  819. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-bottom-double-loaded-interior.osw +0 -341
  820. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-bottom.osw +0 -341
  821. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-middle-double-loaded-interior.osw +0 -341
  822. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-middle.osw +0 -341
  823. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-top-double-loaded-interior.osw +0 -341
  824. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-top.osw +0 -341
  825. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab.osw +0 -341
  826. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-double-loaded-interior.osw +0 -341
  827. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom-double-loaded-interior.osw +0 -341
  828. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom.osw +0 -341
  829. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-middle-double-loaded-interior.osw +0 -341
  830. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-middle.osw +0 -341
  831. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-top-double-loaded-interior.osw +0 -341
  832. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-top.osw +0 -341
  833. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom-double-loaded-interior.osw +0 -341
  834. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom.osw +0 -341
  835. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle-double-loaded-interior.osw +0 -341
  836. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle.osw +0 -341
  837. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-top-double-loaded-interior.osw +0 -341
  838. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-top.osw +0 -341
  839. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom-double-loaded-interior.osw +0 -341
  840. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom.osw +0 -341
  841. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-middle-double-loaded-interior.osw +0 -341
  842. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-middle.osw +0 -341
  843. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-top-double-loaded-interior.osw +0 -341
  844. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-top.osw +0 -341
  845. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace.osw +0 -341
  846. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-double-loaded-interior.osw +0 -341
  847. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-bottom-double-loaded-interior.osw +0 -341
  848. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-bottom.osw +0 -341
  849. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-middle-double-loaded-interior.osw +0 -341
  850. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-middle.osw +0 -341
  851. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-top-double-loaded-interior.osw +0 -341
  852. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-top.osw +0 -341
  853. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom-double-loaded-interior.osw +0 -341
  854. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom.osw +0 -341
  855. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-middle-double-loaded-interior.osw +0 -341
  856. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-middle.osw +0 -341
  857. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-top-double-loaded-interior.osw +0 -341
  858. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-top.osw +0 -341
  859. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-bottom-double-loaded-interior.osw +0 -341
  860. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-bottom.osw +0 -341
  861. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-middle-double-loaded-interior.osw +0 -341
  862. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-middle.osw +0 -341
  863. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-top-double-loaded-interior.osw +0 -341
  864. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-top.osw +0 -341
  865. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace.osw +0 -341
  866. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-gable.osw +0 -339
  867. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-hip.osw +0 -339
  868. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-flat.osw +0 -339
  869. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-double-exterior.osw +0 -339
  870. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-double-loaded-interior.osw +0 -339
  871. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-single-exterior-front.osw +0 -339
  872. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab-middle.osw +0 -339
  873. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab-right.osw +0 -339
  874. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab.osw +0 -339
  875. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement-middle.osw +0 -339
  876. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement-right.osw +0 -339
  877. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement.osw +0 -339
  878. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace-middle.osw +0 -339
  879. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace-right.osw +0 -339
  880. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace.osw +0 -339
  881. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace-middle.osw +0 -339
  882. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace-right.osw +0 -339
  883. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace.osw +0 -339
  884. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-dhw-solar-latitude.osw +0 -337
  885. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-atticroof-conditioned-eaves-gable.osw +0 -337
  886. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-atticroof-conditioned-eaves-hip.osw +0 -337
  887. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-garage-atticroof-conditioned.osw +0 -337
  888. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-garage-partially-protruded.osw +0 -337
  889. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-windows-shading.osw +0 -339
  890. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-gas-hot-tub-heater-with-zero-kwh.osw +0 -337
  891. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-gas-pool-heater-with-zero-kwh.osw +0 -337
  892. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-pv-roofpitch.osw +0 -337
  893. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-schedules-random-seed.osw +0 -338
  894. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-boiler-to-heat-pump.osw +0 -336
  895. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-boiler-to-heating-system.osw +0 -337
  896. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-fireplace-to-heat-pump.osw +0 -337
  897. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-fireplace-to-heating-system.osw +0 -337
  898. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-portable-heater-to-heat-pump.osw +0 -337
  899. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-portable-heater-to-heating-system.osw +0 -337
  900. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-refrigerator.osw +0 -337
  901. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-clothes-washer-kwh.osw +0 -337
  902. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-dishwasher-kwh.osw +0 -337
  903. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-extra-refrigerator-kwh.osw +0 -337
  904. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-freezer-kwh.osw +0 -337
  905. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-refrigerator-kwh.osw +0 -337
  906. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-attic-with-floor-insulation.osw +0 -337
  907. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-attic-with-one-floor-above-grade.osw +0 -337
  908. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-basement-with-ceiling-insulation.osw +0 -337
  909. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/cooling-system-and-heat-pump.osw +0 -337
  910. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/dhw-indirect-without-boiler.osw +0 -337
  911. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/ducts-location-and-areas-not-same-type.osw +0 -337
  912. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/foundation-wall-insulation-greater-than-height.osw +0 -337
  913. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/heating-system-and-heat-pump.osw +0 -337
  914. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-crawlspace-zero-foundation-height.osw +0 -341
  915. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-slab-non-zero-foundation-height.osw +0 -341
  916. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-no-building-orientation.osw +0 -338
  917. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-fuel-loads.osw +0 -337
  918. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-other-plug-loads.osw +0 -337
  919. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-tv-plug-loads.osw +0 -337
  920. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-vehicle-plug-loads.osw +0 -337
  921. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-well-pump-plug-loads.osw +0 -337
  922. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-electric-heat-pump-water-heater.osw +0 -337
  923. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-ceiling-fan-quantity.osw +0 -337
  924. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-geometry-num-bathrooms.osw +0 -337
  925. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-but-no-primary-heating.osw +0 -337
  926. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-serves-majority-heat.osw +0 -337
  927. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-serves-total-heat-load.osw +0 -337
  928. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-attached-ambient.osw +0 -339
  929. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-attached-no-building-orientation.osw +0 -337
  930. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-finished-basement-zero-foundation-height.osw +0 -337
  931. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-slab-non-zero-foundation-height.osw +0 -337
  932. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-with-shared-system.osw +0 -337
  933. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/slab-non-zero-foundation-height-above-grade.osw +0 -337
  934. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unconditioned-basement-with-wall-and-ceiling-insulation.osw +0 -337
  935. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-attic-with-floor-and-roof-insulation.osw +0 -337
  936. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-crawlspace-with-wall-and-ceiling-insulation.osw +0 -337
  937. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-attic-with-floor-and-roof-insulation.osw +0 -337
  938. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-crawlspace-with-wall-and-ceiling-insulation.osw +0 -337
  939. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/zero-number-of-bedrooms.osw +0 -337
  940. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/schedules/stochastic.csv +0 -8761
  941. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/schedules/user-specified.csv +0 -8761
  942. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/schedules/vacant.csv +0 -8761
  943. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_bath_schedule_1bed.csv +0 -369
  944. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_bath_schedule_2bed.csv +0 -465
  945. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_bath_schedule_3bed.csv +0 -611
  946. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_bath_schedule_4bed.csv +0 -685
  947. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_bath_schedule_5bed.csv +0 -767
  948. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_clotheswasher_schedule_1bed.csv +0 -637
  949. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_clotheswasher_schedule_2bed.csv +0 -744
  950. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_clotheswasher_schedule_3bed.csv +0 -929
  951. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_clotheswasher_schedule_4bed.csv +0 -1044
  952. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_clotheswasher_schedule_5bed.csv +0 -1250
  953. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_dishwasher_schedule_1bed.csv +0 -754
  954. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_dishwasher_schedule_2bed.csv +0 -961
  955. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_dishwasher_schedule_3bed.csv +0 -1102
  956. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_dishwasher_schedule_4bed.csv +0 -1293
  957. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_dishwasher_schedule_5bed.csv +0 -1508
  958. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_fixtures_schedule_1bed.csv +0 -13097
  959. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_fixtures_schedule_2bed.csv +0 -15977
  960. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_fixtures_schedule_3bed.csv +0 -18624
  961. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_fixtures_schedule_4bed.csv +0 -22075
  962. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_fixtures_schedule_5bed.csv +0 -25005
  963. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data_hot_water_max_flows.csv +0 -6
  964. data/example_files/resources/hpxml-measures/SimulationOutputReport/measure.rb +0 -2444
  965. data/example_files/resources/hpxml-measures/docs/source/build_residential_hpxml.rst +0 -110
  966. data/example_files/resources/hpxml-measures/docs/source/getting_started.rst +0 -57
  967. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic-vacant.xml +0 -564
  968. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic.xml +0 -564
  969. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-user-specified.xml +0 -564
  970. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-dryer-location.xml +0 -563
  971. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-washer-location.xml +0 -563
  972. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/cooking-range-location.xml +0 -563
  973. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dehumidifier-fraction-served.xml +0 -535
  974. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dehumidifier-setpoints.xml +0 -535
  975. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-frac-load-served.xml +0 -576
  976. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-ef-tank.xml +0 -563
  977. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-uef-tank-heat-pump.xml +0 -564
  978. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dishwasher-location.xml +0 -563
  979. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-cfm25.xml +0 -563
  980. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-percent.xml +0 -563
  981. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location-unconditioned-space.xml +0 -563
  982. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location.xml +0 -563
  983. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duplicate-id.xml +0 -563
  984. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-attic-missing-roof.xml +0 -547
  985. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-exterior-foundation-wall.xml +0 -544
  986. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-slab.xml +0 -547
  987. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa.xml +0 -563
  988. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa2.xml +0 -448
  989. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-exterior-wall.xml +0 -614
  990. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-slab.xml +0 -611
  991. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-ceiling-roof.xml +0 -551
  992. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-exterior-wall.xml +0 -473
  993. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-floor-slab.xml +0 -489
  994. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-fuel-load.xml +0 -760
  995. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-plug-load.xml +0 -759
  996. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-fuel-load.xml +0 -761
  997. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-plug-load.xml +0 -759
  998. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/furnace-invalid-afue.xml +0 -563
  999. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/generator-number-of-bedrooms-served.xml +0 -460
  1000. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/heat-pump-mixed-fixed-and-autosize-capacities.xml +0 -560
  1001. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-cooling.xml +0 -921
  1002. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-heating.xml +0 -921
  1003. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-cooling.xml +0 -547
  1004. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-heating.xml +0 -547
  1005. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-frac-load-served.xml +0 -921
  1006. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-inconsistent-fan-powers.xml +0 -569
  1007. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-shared-negative-seer-eq.xml +0 -407
  1008. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-assembly-effective-rvalue.xml +0 -563
  1009. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-boolean.xml +0 -563
  1010. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-float.xml +0 -563
  1011. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-integer.xml +0 -563
  1012. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-daylight-saving.xml +0 -570
  1013. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-distribution-cfa-served.xml +0 -563
  1014. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-epw-filepath.xml +0 -563
  1015. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-facility-type-equipment.xml +0 -466
  1016. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-id2.xml +0 -591
  1017. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-infiltration-volume.xml +0 -563
  1018. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-input-parameters.xml +0 -565
  1019. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-neighbor-shading-azimuth.xml +0 -576
  1020. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-bedrooms-served.xml +0 -465
  1021. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-conditioned-floors.xml +0 -563
  1022. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-units-served.xml +0 -451
  1023. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-relatedhvac-desuperheater.xml +0 -551
  1024. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-runperiod.xml +0 -565
  1025. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-schema-version.xml +0 -563
  1026. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-shared-vent-in-unit-flowrate.xml +0 -473
  1027. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-timestep.xml +0 -563
  1028. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-window-height.xml +0 -583
  1029. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/lighting-fractions.xml +0 -563
  1030. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-duct-location.xml +0 -917
  1031. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-elements.xml +0 -561
  1032. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-appliance.xml +0 -563
  1033. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-duct.xml +0 -563
  1034. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-water-heater.xml +0 -563
  1035. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-without-building-id.xml +0 -1657
  1036. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-wrong-building-id.xml +0 -1657
  1037. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-shared-cooling-systems.xml +0 -432
  1038. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-shared-heating-systems.xml +0 -434
  1039. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/net-area-negative-roof.xml +0 -591
  1040. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/net-area-negative-wall.xml +0 -563
  1041. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/num-bedrooms-exceeds-limit.xml +0 -563
  1042. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/orphaned-hvac-distribution.xml +0 -547
  1043. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerator-location.xml +0 -563
  1044. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-multiple-primary.xml +0 -569
  1045. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-no-primary.xml +0 -569
  1046. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-desuperheater.xml +0 -564
  1047. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-dhw-indirect.xml +0 -527
  1048. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-fraction-one.xml +0 -571
  1049. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-combi-tankless.xml +0 -532
  1050. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-desuperheater.xml +0 -566
  1051. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-dhw-indirect.xml +0 -532
  1052. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-cfis.xml +0 -576
  1053. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-door.xml +0 -563
  1054. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-hvac-distribution.xml +0 -563
  1055. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-clothes-washer-water-heater.xml +0 -466
  1056. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-dishwasher-water-heater.xml +0 -466
  1057. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-skylight.xml +0 -591
  1058. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-window.xml +0 -563
  1059. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location-other.xml +0 -563
  1060. data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location.xml +0 -563
  1061. data/example_files/resources/hpxml-measures/workflow/tests/compare.rb +0 -130
@@ -1,5 +1,5 @@
1
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='3.0'>
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
3
  <XMLTransactionHeaderInformation>
4
4
  <XMLType>HPXML</XMLType>
5
5
  <XMLGeneratedBy>tasks.rb</XMLGeneratedBy>
@@ -28,6 +28,9 @@
28
28
  <BuildingSummary>
29
29
  <Site>
30
30
  <SiteType>suburban</SiteType>
31
+ <Surroundings>stand-alone</Surroundings>
32
+ <VerticalSurroundings>no units above or below</VerticalSurroundings>
33
+ <AzimuthOfFrontOfHome>180</AzimuthOfFrontOfHome>
31
34
  <FuelTypesAvailable>
32
35
  <Fuel>electricity</Fuel>
33
36
  <Fuel>natural gas</Fuel>
@@ -40,6 +43,7 @@
40
43
  <ResidentialFacilityType>single-family detached</ResidentialFacilityType>
41
44
  <NumberofConditionedFloors>2.0</NumberofConditionedFloors>
42
45
  <NumberofConditionedFloorsAboveGrade>1.0</NumberofConditionedFloorsAboveGrade>
46
+ <AverageCeilingHeight>8.0</AverageCeilingHeight>
43
47
  <NumberofBedrooms>3</NumberofBedrooms>
44
48
  <NumberofBathrooms>2</NumberofBathrooms>
45
49
  <ConditionedFloorArea>2700.0</ConditionedFloorArea>
@@ -53,7 +57,7 @@
53
57
  </ClimateZoneIECC>
54
58
  <WeatherStation>
55
59
  <SystemIdentifier id='WeatherStation'/>
56
- <Name>Denver, CO</Name>
60
+ <Name>USA_CO_Denver.Intl.AP.725650_TMY3</Name>
57
61
  <extension>
58
62
  <EPWFilePath>USA_CO_Denver.Intl.AP.725650_TMY3.epw</EPWFilePath>
59
63
  </extension>
@@ -62,7 +66,7 @@
62
66
  <Enclosure>
63
67
  <AirInfiltration>
64
68
  <AirInfiltrationMeasurement>
65
- <SystemIdentifier id='InfiltrationMeasurement'/>
69
+ <SystemIdentifier id='AirInfiltrationMeasurement1'/>
66
70
  <HousePressure>50.0</HousePressure>
67
71
  <BuildingAirLeakage>
68
72
  <UnitofMeasure>ACH</UnitofMeasure>
@@ -73,44 +77,50 @@
73
77
  </AirInfiltration>
74
78
  <Attics>
75
79
  <Attic>
76
- <SystemIdentifier id='UnventedAttic'/>
80
+ <SystemIdentifier id='Attic1'/>
77
81
  <AtticType>
78
82
  <Attic>
79
83
  <Vented>false</Vented>
80
84
  </Attic>
81
85
  </AtticType>
82
86
  <WithinInfiltrationVolume>false</WithinInfiltrationVolume>
87
+ <AttachedToRoof idref='Roof1'/>
88
+ <AttachedToWall idref='Wall2'/>
89
+ <AttachedToFrameFloor idref='FrameFloor1'/>
83
90
  </Attic>
84
91
  </Attics>
85
92
  <Foundations>
86
93
  <Foundation>
87
- <SystemIdentifier id='ConditionedBasement'/>
94
+ <SystemIdentifier id='Foundation1'/>
88
95
  <FoundationType>
89
96
  <Basement>
90
97
  <Conditioned>true</Conditioned>
91
98
  </Basement>
92
99
  </FoundationType>
100
+ <AttachedToRimJoist idref='RimJoist1'/>
101
+ <AttachedToFoundationWall idref='FoundationWall1'/>
102
+ <AttachedToSlab idref='Slab1'/>
93
103
  </Foundation>
94
104
  </Foundations>
95
105
  <Roofs>
96
106
  <Roof>
97
- <SystemIdentifier id='Roof'/>
107
+ <SystemIdentifier id='Roof1'/>
98
108
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
99
- <Area>167.77777777777777</Area>
109
+ <Area>167.7111111111111</Area>
100
110
  <RoofType>asphalt or fiberglass shingles</RoofType>
101
111
  <SolarAbsorptance>0.7</SolarAbsorptance>
102
112
  <Emittance>0.92</Emittance>
103
113
  <Pitch>6.0</Pitch>
104
114
  <RadiantBarrier>false</RadiantBarrier>
105
115
  <Insulation>
106
- <SystemIdentifier id='RoofInsulation'/>
116
+ <SystemIdentifier id='Roof1Insulation'/>
107
117
  <AssemblyEffectiveRValue>2.3</AssemblyEffectiveRValue>
108
118
  </Insulation>
109
119
  </Roof>
110
120
  <Roof>
111
121
  <SystemIdentifier id='Roof2'/>
112
122
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
113
- <Area>167.77777777777777</Area>
123
+ <Area>167.7111111111111</Area>
114
124
  <RoofType>asphalt or fiberglass shingles</RoofType>
115
125
  <SolarAbsorptance>0.7</SolarAbsorptance>
116
126
  <Emittance>0.92</Emittance>
@@ -124,7 +134,7 @@
124
134
  <Roof>
125
135
  <SystemIdentifier id='Roof3'/>
126
136
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
127
- <Area>167.77777777777777</Area>
137
+ <Area>167.7111111111111</Area>
128
138
  <RoofType>asphalt or fiberglass shingles</RoofType>
129
139
  <SolarAbsorptance>0.7</SolarAbsorptance>
130
140
  <Emittance>0.92</Emittance>
@@ -138,7 +148,7 @@
138
148
  <Roof>
139
149
  <SystemIdentifier id='Roof4'/>
140
150
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
141
- <Area>167.77777777777777</Area>
151
+ <Area>167.7111111111111</Area>
142
152
  <RoofType>asphalt or fiberglass shingles</RoofType>
143
153
  <SolarAbsorptance>0.7</SolarAbsorptance>
144
154
  <Emittance>0.92</Emittance>
@@ -152,7 +162,7 @@
152
162
  <Roof>
153
163
  <SystemIdentifier id='Roof5'/>
154
164
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
155
- <Area>167.77777777777777</Area>
165
+ <Area>167.7111111111111</Area>
156
166
  <RoofType>asphalt or fiberglass shingles</RoofType>
157
167
  <SolarAbsorptance>0.7</SolarAbsorptance>
158
168
  <Emittance>0.92</Emittance>
@@ -166,7 +176,7 @@
166
176
  <Roof>
167
177
  <SystemIdentifier id='Roof6'/>
168
178
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
169
- <Area>167.77777777777777</Area>
179
+ <Area>167.7111111111111</Area>
170
180
  <RoofType>asphalt or fiberglass shingles</RoofType>
171
181
  <SolarAbsorptance>0.7</SolarAbsorptance>
172
182
  <Emittance>0.92</Emittance>
@@ -180,7 +190,7 @@
180
190
  <Roof>
181
191
  <SystemIdentifier id='Roof7'/>
182
192
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
183
- <Area>167.77777777777777</Area>
193
+ <Area>167.7111111111111</Area>
184
194
  <RoofType>asphalt or fiberglass shingles</RoofType>
185
195
  <SolarAbsorptance>0.7</SolarAbsorptance>
186
196
  <Emittance>0.92</Emittance>
@@ -194,7 +204,7 @@
194
204
  <Roof>
195
205
  <SystemIdentifier id='Roof8'/>
196
206
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
197
- <Area>167.77777777777777</Area>
207
+ <Area>167.7111111111111</Area>
198
208
  <RoofType>asphalt or fiberglass shingles</RoofType>
199
209
  <SolarAbsorptance>0.7</SolarAbsorptance>
200
210
  <Emittance>0.92</Emittance>
@@ -208,7 +218,7 @@
208
218
  <Roof>
209
219
  <SystemIdentifier id='Roof9'/>
210
220
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
211
- <Area>167.77777777777777</Area>
221
+ <Area>167.7111111111111</Area>
212
222
  <RoofType>asphalt or fiberglass shingles</RoofType>
213
223
  <SolarAbsorptance>0.7</SolarAbsorptance>
214
224
  <Emittance>0.92</Emittance>
@@ -220,7 +230,7 @@
220
230
  </Insulation>
221
231
  </Roof>
222
232
  <Roof>
223
- <SystemIdentifier id='TinyRoof'/>
233
+ <SystemIdentifier id='Roof10'/>
224
234
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
225
235
  <Area>0.05</Area>
226
236
  <RoofType>asphalt or fiberglass shingles</RoofType>
@@ -229,131 +239,131 @@
229
239
  <Pitch>6.0</Pitch>
230
240
  <RadiantBarrier>false</RadiantBarrier>
231
241
  <Insulation>
232
- <SystemIdentifier id='TinyRoofInsulation'/>
242
+ <SystemIdentifier id='Roof10Insulation'/>
233
243
  <AssemblyEffectiveRValue>2.3899999999999997</AssemblyEffectiveRValue>
234
244
  </Insulation>
235
245
  </Roof>
236
246
  </Roofs>
237
247
  <RimJoists>
238
248
  <RimJoist>
239
- <SystemIdentifier id='RimJoistFoundation'/>
249
+ <SystemIdentifier id='RimJoist1'/>
240
250
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
241
251
  <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
242
- <Area>12.88888888888889</Area>
252
+ <Area>12.844444444444443</Area>
243
253
  <Siding>wood siding</Siding>
244
254
  <SolarAbsorptance>0.7</SolarAbsorptance>
245
255
  <Emittance>0.92</Emittance>
246
256
  <Insulation>
247
- <SystemIdentifier id='RimJoistFoundationInsulation'/>
257
+ <SystemIdentifier id='RimJoist1Insulation'/>
248
258
  <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
249
259
  </Insulation>
250
260
  </RimJoist>
251
261
  <RimJoist>
252
- <SystemIdentifier id='RimJoistFoundation2'/>
262
+ <SystemIdentifier id='RimJoist2'/>
253
263
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
254
264
  <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
255
- <Area>12.88888888888889</Area>
265
+ <Area>12.844444444444443</Area>
256
266
  <Siding>wood siding</Siding>
257
267
  <SolarAbsorptance>0.7</SolarAbsorptance>
258
268
  <Emittance>0.92</Emittance>
259
269
  <Insulation>
260
- <SystemIdentifier id='RimJoistFoundation2Insulation'/>
270
+ <SystemIdentifier id='RimJoist2Insulation'/>
261
271
  <AssemblyEffectiveRValue>23.02</AssemblyEffectiveRValue>
262
272
  </Insulation>
263
273
  </RimJoist>
264
274
  <RimJoist>
265
- <SystemIdentifier id='RimJoistFoundation3'/>
275
+ <SystemIdentifier id='RimJoist3'/>
266
276
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
267
277
  <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
268
- <Area>12.88888888888889</Area>
278
+ <Area>12.844444444444443</Area>
269
279
  <Siding>wood siding</Siding>
270
280
  <SolarAbsorptance>0.7</SolarAbsorptance>
271
281
  <Emittance>0.92</Emittance>
272
282
  <Insulation>
273
- <SystemIdentifier id='RimJoistFoundation3Insulation'/>
283
+ <SystemIdentifier id='RimJoist3Insulation'/>
274
284
  <AssemblyEffectiveRValue>23.03</AssemblyEffectiveRValue>
275
285
  </Insulation>
276
286
  </RimJoist>
277
287
  <RimJoist>
278
- <SystemIdentifier id='RimJoistFoundation4'/>
288
+ <SystemIdentifier id='RimJoist4'/>
279
289
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
280
290
  <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
281
- <Area>12.88888888888889</Area>
291
+ <Area>12.844444444444443</Area>
282
292
  <Siding>wood siding</Siding>
283
293
  <SolarAbsorptance>0.7</SolarAbsorptance>
284
294
  <Emittance>0.92</Emittance>
285
295
  <Insulation>
286
- <SystemIdentifier id='RimJoistFoundation4Insulation'/>
296
+ <SystemIdentifier id='RimJoist4Insulation'/>
287
297
  <AssemblyEffectiveRValue>23.04</AssemblyEffectiveRValue>
288
298
  </Insulation>
289
299
  </RimJoist>
290
300
  <RimJoist>
291
- <SystemIdentifier id='RimJoistFoundation5'/>
301
+ <SystemIdentifier id='RimJoist5'/>
292
302
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
293
303
  <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
294
- <Area>12.88888888888889</Area>
304
+ <Area>12.844444444444443</Area>
295
305
  <Siding>wood siding</Siding>
296
306
  <SolarAbsorptance>0.7</SolarAbsorptance>
297
307
  <Emittance>0.92</Emittance>
298
308
  <Insulation>
299
- <SystemIdentifier id='RimJoistFoundation5Insulation'/>
309
+ <SystemIdentifier id='RimJoist5Insulation'/>
300
310
  <AssemblyEffectiveRValue>23.05</AssemblyEffectiveRValue>
301
311
  </Insulation>
302
312
  </RimJoist>
303
313
  <RimJoist>
304
- <SystemIdentifier id='RimJoistFoundation6'/>
314
+ <SystemIdentifier id='RimJoist6'/>
305
315
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
306
316
  <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
307
- <Area>12.88888888888889</Area>
317
+ <Area>12.844444444444443</Area>
308
318
  <Siding>wood siding</Siding>
309
319
  <SolarAbsorptance>0.7</SolarAbsorptance>
310
320
  <Emittance>0.92</Emittance>
311
321
  <Insulation>
312
- <SystemIdentifier id='RimJoistFoundation6Insulation'/>
322
+ <SystemIdentifier id='RimJoist6Insulation'/>
313
323
  <AssemblyEffectiveRValue>23.06</AssemblyEffectiveRValue>
314
324
  </Insulation>
315
325
  </RimJoist>
316
326
  <RimJoist>
317
- <SystemIdentifier id='RimJoistFoundation7'/>
327
+ <SystemIdentifier id='RimJoist7'/>
318
328
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
319
329
  <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
320
- <Area>12.88888888888889</Area>
330
+ <Area>12.844444444444443</Area>
321
331
  <Siding>wood siding</Siding>
322
332
  <SolarAbsorptance>0.7</SolarAbsorptance>
323
333
  <Emittance>0.92</Emittance>
324
334
  <Insulation>
325
- <SystemIdentifier id='RimJoistFoundation7Insulation'/>
335
+ <SystemIdentifier id='RimJoist7Insulation'/>
326
336
  <AssemblyEffectiveRValue>23.07</AssemblyEffectiveRValue>
327
337
  </Insulation>
328
338
  </RimJoist>
329
339
  <RimJoist>
330
- <SystemIdentifier id='RimJoistFoundation8'/>
340
+ <SystemIdentifier id='RimJoist8'/>
331
341
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
332
342
  <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
333
- <Area>12.88888888888889</Area>
343
+ <Area>12.844444444444443</Area>
334
344
  <Siding>wood siding</Siding>
335
345
  <SolarAbsorptance>0.7</SolarAbsorptance>
336
346
  <Emittance>0.92</Emittance>
337
347
  <Insulation>
338
- <SystemIdentifier id='RimJoistFoundation8Insulation'/>
348
+ <SystemIdentifier id='RimJoist8Insulation'/>
339
349
  <AssemblyEffectiveRValue>23.08</AssemblyEffectiveRValue>
340
350
  </Insulation>
341
351
  </RimJoist>
342
352
  <RimJoist>
343
- <SystemIdentifier id='RimJoistFoundation9'/>
353
+ <SystemIdentifier id='RimJoist9'/>
344
354
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
345
355
  <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
346
- <Area>12.88888888888889</Area>
356
+ <Area>12.844444444444443</Area>
347
357
  <Siding>wood siding</Siding>
348
358
  <SolarAbsorptance>0.7</SolarAbsorptance>
349
359
  <Emittance>0.92</Emittance>
350
360
  <Insulation>
351
- <SystemIdentifier id='RimJoistFoundation9Insulation'/>
361
+ <SystemIdentifier id='RimJoist9Insulation'/>
352
362
  <AssemblyEffectiveRValue>23.09</AssemblyEffectiveRValue>
353
363
  </Insulation>
354
364
  </RimJoist>
355
365
  <RimJoist>
356
- <SystemIdentifier id='TinyRimJoist'/>
366
+ <SystemIdentifier id='RimJoist10'/>
357
367
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
358
368
  <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
359
369
  <Area>0.05</Area>
@@ -361,14 +371,14 @@
361
371
  <SolarAbsorptance>0.7</SolarAbsorptance>
362
372
  <Emittance>0.92</Emittance>
363
373
  <Insulation>
364
- <SystemIdentifier id='TinyRimJoistInsulation'/>
374
+ <SystemIdentifier id='RimJoist10Insulation'/>
365
375
  <AssemblyEffectiveRValue>23.09</AssemblyEffectiveRValue>
366
376
  </Insulation>
367
377
  </RimJoist>
368
378
  </RimJoists>
369
379
  <Walls>
370
380
  <Wall>
371
- <SystemIdentifier id='Wall'/>
381
+ <SystemIdentifier id='Wall1'/>
372
382
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
373
383
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
374
384
  <WallType>
@@ -378,29 +388,33 @@
378
388
  <Siding>wood siding</Siding>
379
389
  <SolarAbsorptance>0.7</SolarAbsorptance>
380
390
  <Emittance>0.92</Emittance>
391
+ <InteriorFinish>
392
+ <Type>gypsum board</Type>
393
+ </InteriorFinish>
381
394
  <Insulation>
382
- <SystemIdentifier id='WallInsulation'/>
395
+ <SystemIdentifier id='Wall1Insulation'/>
383
396
  <AssemblyEffectiveRValue>23.0</AssemblyEffectiveRValue>
384
397
  </Insulation>
385
398
  </Wall>
386
399
  <Wall>
387
- <SystemIdentifier id='WallAtticGable'/>
400
+ <SystemIdentifier id='Wall2'/>
388
401
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
389
402
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
403
+ <AtticWallType>gable</AtticWallType>
390
404
  <WallType>
391
405
  <WoodStud/>
392
406
  </WallType>
393
- <Area>32.22222222222222</Area>
407
+ <Area>25.0</Area>
394
408
  <Siding>wood siding</Siding>
395
409
  <SolarAbsorptance>0.7</SolarAbsorptance>
396
410
  <Emittance>0.92</Emittance>
397
411
  <Insulation>
398
- <SystemIdentifier id='WallAtticGableInsulation'/>
412
+ <SystemIdentifier id='Wall2Insulation'/>
399
413
  <AssemblyEffectiveRValue>4.0</AssemblyEffectiveRValue>
400
414
  </Insulation>
401
415
  </Wall>
402
416
  <Wall>
403
- <SystemIdentifier id='Wall2'/>
417
+ <SystemIdentifier id='Wall3'/>
404
418
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
405
419
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
406
420
  <WallType>
@@ -410,13 +424,16 @@
410
424
  <Siding>wood siding</Siding>
411
425
  <SolarAbsorptance>0.7</SolarAbsorptance>
412
426
  <Emittance>0.92</Emittance>
427
+ <InteriorFinish>
428
+ <Type>gypsum board</Type>
429
+ </InteriorFinish>
413
430
  <Insulation>
414
- <SystemIdentifier id='Wall2Insulation'/>
431
+ <SystemIdentifier id='Wall3Insulation'/>
415
432
  <AssemblyEffectiveRValue>23.02</AssemblyEffectiveRValue>
416
433
  </Insulation>
417
434
  </Wall>
418
435
  <Wall>
419
- <SystemIdentifier id='Wall3'/>
436
+ <SystemIdentifier id='Wall4'/>
420
437
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
421
438
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
422
439
  <WallType>
@@ -426,13 +443,16 @@
426
443
  <Siding>wood siding</Siding>
427
444
  <SolarAbsorptance>0.7</SolarAbsorptance>
428
445
  <Emittance>0.92</Emittance>
446
+ <InteriorFinish>
447
+ <Type>gypsum board</Type>
448
+ </InteriorFinish>
429
449
  <Insulation>
430
- <SystemIdentifier id='Wall3Insulation'/>
450
+ <SystemIdentifier id='Wall4Insulation'/>
431
451
  <AssemblyEffectiveRValue>23.03</AssemblyEffectiveRValue>
432
452
  </Insulation>
433
453
  </Wall>
434
454
  <Wall>
435
- <SystemIdentifier id='Wall4'/>
455
+ <SystemIdentifier id='Wall5'/>
436
456
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
437
457
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
438
458
  <WallType>
@@ -442,13 +462,16 @@
442
462
  <Siding>wood siding</Siding>
443
463
  <SolarAbsorptance>0.7</SolarAbsorptance>
444
464
  <Emittance>0.92</Emittance>
465
+ <InteriorFinish>
466
+ <Type>gypsum board</Type>
467
+ </InteriorFinish>
445
468
  <Insulation>
446
- <SystemIdentifier id='Wall4Insulation'/>
469
+ <SystemIdentifier id='Wall5Insulation'/>
447
470
  <AssemblyEffectiveRValue>23.04</AssemblyEffectiveRValue>
448
471
  </Insulation>
449
472
  </Wall>
450
473
  <Wall>
451
- <SystemIdentifier id='Wall5'/>
474
+ <SystemIdentifier id='Wall6'/>
452
475
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
453
476
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
454
477
  <WallType>
@@ -458,13 +481,16 @@
458
481
  <Siding>wood siding</Siding>
459
482
  <SolarAbsorptance>0.7</SolarAbsorptance>
460
483
  <Emittance>0.92</Emittance>
484
+ <InteriorFinish>
485
+ <Type>gypsum board</Type>
486
+ </InteriorFinish>
461
487
  <Insulation>
462
- <SystemIdentifier id='Wall5Insulation'/>
488
+ <SystemIdentifier id='Wall6Insulation'/>
463
489
  <AssemblyEffectiveRValue>23.05</AssemblyEffectiveRValue>
464
490
  </Insulation>
465
491
  </Wall>
466
492
  <Wall>
467
- <SystemIdentifier id='Wall6'/>
493
+ <SystemIdentifier id='Wall7'/>
468
494
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
469
495
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
470
496
  <WallType>
@@ -474,13 +500,16 @@
474
500
  <Siding>wood siding</Siding>
475
501
  <SolarAbsorptance>0.7</SolarAbsorptance>
476
502
  <Emittance>0.92</Emittance>
503
+ <InteriorFinish>
504
+ <Type>gypsum board</Type>
505
+ </InteriorFinish>
477
506
  <Insulation>
478
- <SystemIdentifier id='Wall6Insulation'/>
507
+ <SystemIdentifier id='Wall7Insulation'/>
479
508
  <AssemblyEffectiveRValue>23.06</AssemblyEffectiveRValue>
480
509
  </Insulation>
481
510
  </Wall>
482
511
  <Wall>
483
- <SystemIdentifier id='Wall7'/>
512
+ <SystemIdentifier id='Wall8'/>
484
513
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
485
514
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
486
515
  <WallType>
@@ -490,13 +519,16 @@
490
519
  <Siding>wood siding</Siding>
491
520
  <SolarAbsorptance>0.7</SolarAbsorptance>
492
521
  <Emittance>0.92</Emittance>
522
+ <InteriorFinish>
523
+ <Type>gypsum board</Type>
524
+ </InteriorFinish>
493
525
  <Insulation>
494
- <SystemIdentifier id='Wall7Insulation'/>
526
+ <SystemIdentifier id='Wall8Insulation'/>
495
527
  <AssemblyEffectiveRValue>23.07</AssemblyEffectiveRValue>
496
528
  </Insulation>
497
529
  </Wall>
498
530
  <Wall>
499
- <SystemIdentifier id='Wall8'/>
531
+ <SystemIdentifier id='Wall9'/>
500
532
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
501
533
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
502
534
  <WallType>
@@ -506,13 +538,16 @@
506
538
  <Siding>wood siding</Siding>
507
539
  <SolarAbsorptance>0.7</SolarAbsorptance>
508
540
  <Emittance>0.92</Emittance>
541
+ <InteriorFinish>
542
+ <Type>gypsum board</Type>
543
+ </InteriorFinish>
509
544
  <Insulation>
510
- <SystemIdentifier id='Wall8Insulation'/>
545
+ <SystemIdentifier id='Wall9Insulation'/>
511
546
  <AssemblyEffectiveRValue>23.08</AssemblyEffectiveRValue>
512
547
  </Insulation>
513
548
  </Wall>
514
549
  <Wall>
515
- <SystemIdentifier id='Wall9'/>
550
+ <SystemIdentifier id='Wall10'/>
516
551
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
517
552
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
518
553
  <WallType>
@@ -522,143 +557,155 @@
522
557
  <Siding>wood siding</Siding>
523
558
  <SolarAbsorptance>0.7</SolarAbsorptance>
524
559
  <Emittance>0.92</Emittance>
560
+ <InteriorFinish>
561
+ <Type>gypsum board</Type>
562
+ </InteriorFinish>
525
563
  <Insulation>
526
- <SystemIdentifier id='Wall9Insulation'/>
564
+ <SystemIdentifier id='Wall10Insulation'/>
527
565
  <AssemblyEffectiveRValue>23.09</AssemblyEffectiveRValue>
528
566
  </Insulation>
529
567
  </Wall>
530
568
  <Wall>
531
- <SystemIdentifier id='WallAtticGable2'/>
569
+ <SystemIdentifier id='Wall11'/>
532
570
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
533
571
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
572
+ <AtticWallType>gable</AtticWallType>
534
573
  <WallType>
535
574
  <WoodStud/>
536
575
  </WallType>
537
- <Area>32.22222222222222</Area>
576
+ <Area>25.0</Area>
538
577
  <Siding>wood siding</Siding>
539
578
  <SolarAbsorptance>0.7</SolarAbsorptance>
540
579
  <Emittance>0.92</Emittance>
541
580
  <Insulation>
542
- <SystemIdentifier id='WallAtticGable2Insulation'/>
581
+ <SystemIdentifier id='Wall11Insulation'/>
543
582
  <AssemblyEffectiveRValue>4.02</AssemblyEffectiveRValue>
544
583
  </Insulation>
545
584
  </Wall>
546
585
  <Wall>
547
- <SystemIdentifier id='WallAtticGable3'/>
586
+ <SystemIdentifier id='Wall12'/>
548
587
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
549
588
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
589
+ <AtticWallType>gable</AtticWallType>
550
590
  <WallType>
551
591
  <WoodStud/>
552
592
  </WallType>
553
- <Area>32.22222222222222</Area>
593
+ <Area>25.0</Area>
554
594
  <Siding>wood siding</Siding>
555
595
  <SolarAbsorptance>0.7</SolarAbsorptance>
556
596
  <Emittance>0.92</Emittance>
557
597
  <Insulation>
558
- <SystemIdentifier id='WallAtticGable3Insulation'/>
598
+ <SystemIdentifier id='Wall12Insulation'/>
559
599
  <AssemblyEffectiveRValue>4.03</AssemblyEffectiveRValue>
560
600
  </Insulation>
561
601
  </Wall>
562
602
  <Wall>
563
- <SystemIdentifier id='WallAtticGable4'/>
603
+ <SystemIdentifier id='Wall13'/>
564
604
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
565
605
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
606
+ <AtticWallType>gable</AtticWallType>
566
607
  <WallType>
567
608
  <WoodStud/>
568
609
  </WallType>
569
- <Area>32.22222222222222</Area>
610
+ <Area>25.0</Area>
570
611
  <Siding>wood siding</Siding>
571
612
  <SolarAbsorptance>0.7</SolarAbsorptance>
572
613
  <Emittance>0.92</Emittance>
573
614
  <Insulation>
574
- <SystemIdentifier id='WallAtticGable4Insulation'/>
615
+ <SystemIdentifier id='Wall13Insulation'/>
575
616
  <AssemblyEffectiveRValue>4.04</AssemblyEffectiveRValue>
576
617
  </Insulation>
577
618
  </Wall>
578
619
  <Wall>
579
- <SystemIdentifier id='WallAtticGable5'/>
620
+ <SystemIdentifier id='Wall14'/>
580
621
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
581
622
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
623
+ <AtticWallType>gable</AtticWallType>
582
624
  <WallType>
583
625
  <WoodStud/>
584
626
  </WallType>
585
- <Area>32.22222222222222</Area>
627
+ <Area>25.0</Area>
586
628
  <Siding>wood siding</Siding>
587
629
  <SolarAbsorptance>0.7</SolarAbsorptance>
588
630
  <Emittance>0.92</Emittance>
589
631
  <Insulation>
590
- <SystemIdentifier id='WallAtticGable5Insulation'/>
632
+ <SystemIdentifier id='Wall14Insulation'/>
591
633
  <AssemblyEffectiveRValue>4.05</AssemblyEffectiveRValue>
592
634
  </Insulation>
593
635
  </Wall>
594
636
  <Wall>
595
- <SystemIdentifier id='WallAtticGable6'/>
637
+ <SystemIdentifier id='Wall15'/>
596
638
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
597
639
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
640
+ <AtticWallType>gable</AtticWallType>
598
641
  <WallType>
599
642
  <WoodStud/>
600
643
  </WallType>
601
- <Area>32.22222222222222</Area>
644
+ <Area>25.0</Area>
602
645
  <Siding>wood siding</Siding>
603
646
  <SolarAbsorptance>0.7</SolarAbsorptance>
604
647
  <Emittance>0.92</Emittance>
605
648
  <Insulation>
606
- <SystemIdentifier id='WallAtticGable6Insulation'/>
649
+ <SystemIdentifier id='Wall15Insulation'/>
607
650
  <AssemblyEffectiveRValue>4.06</AssemblyEffectiveRValue>
608
651
  </Insulation>
609
652
  </Wall>
610
653
  <Wall>
611
- <SystemIdentifier id='WallAtticGable7'/>
654
+ <SystemIdentifier id='Wall16'/>
612
655
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
613
656
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
657
+ <AtticWallType>gable</AtticWallType>
614
658
  <WallType>
615
659
  <WoodStud/>
616
660
  </WallType>
617
- <Area>32.22222222222222</Area>
661
+ <Area>25.0</Area>
618
662
  <Siding>wood siding</Siding>
619
663
  <SolarAbsorptance>0.7</SolarAbsorptance>
620
664
  <Emittance>0.92</Emittance>
621
665
  <Insulation>
622
- <SystemIdentifier id='WallAtticGable7Insulation'/>
666
+ <SystemIdentifier id='Wall16Insulation'/>
623
667
  <AssemblyEffectiveRValue>4.07</AssemblyEffectiveRValue>
624
668
  </Insulation>
625
669
  </Wall>
626
670
  <Wall>
627
- <SystemIdentifier id='WallAtticGable8'/>
671
+ <SystemIdentifier id='Wall17'/>
628
672
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
629
673
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
674
+ <AtticWallType>gable</AtticWallType>
630
675
  <WallType>
631
676
  <WoodStud/>
632
677
  </WallType>
633
- <Area>32.22222222222222</Area>
678
+ <Area>25.0</Area>
634
679
  <Siding>wood siding</Siding>
635
680
  <SolarAbsorptance>0.7</SolarAbsorptance>
636
681
  <Emittance>0.92</Emittance>
637
682
  <Insulation>
638
- <SystemIdentifier id='WallAtticGable8Insulation'/>
683
+ <SystemIdentifier id='Wall17Insulation'/>
639
684
  <AssemblyEffectiveRValue>4.08</AssemblyEffectiveRValue>
640
685
  </Insulation>
641
686
  </Wall>
642
687
  <Wall>
643
- <SystemIdentifier id='WallAtticGable9'/>
688
+ <SystemIdentifier id='Wall18'/>
644
689
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
645
690
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
691
+ <AtticWallType>gable</AtticWallType>
646
692
  <WallType>
647
693
  <WoodStud/>
648
694
  </WallType>
649
- <Area>32.22222222222222</Area>
695
+ <Area>25.0</Area>
650
696
  <Siding>wood siding</Siding>
651
697
  <SolarAbsorptance>0.7</SolarAbsorptance>
652
698
  <Emittance>0.92</Emittance>
653
699
  <Insulation>
654
- <SystemIdentifier id='WallAtticGable9Insulation'/>
700
+ <SystemIdentifier id='Wall18Insulation'/>
655
701
  <AssemblyEffectiveRValue>4.09</AssemblyEffectiveRValue>
656
702
  </Insulation>
657
703
  </Wall>
658
704
  <Wall>
659
- <SystemIdentifier id='TinyWall'/>
705
+ <SystemIdentifier id='Wall19'/>
660
706
  <ExteriorAdjacentTo>outside</ExteriorAdjacentTo>
661
707
  <InteriorAdjacentTo>attic - unvented</InteriorAdjacentTo>
708
+ <AtticWallType>gable</AtticWallType>
662
709
  <WallType>
663
710
  <WoodStud/>
664
711
  </WallType>
@@ -667,37 +714,34 @@
667
714
  <SolarAbsorptance>0.7</SolarAbsorptance>
668
715
  <Emittance>0.92</Emittance>
669
716
  <Insulation>
670
- <SystemIdentifier id='TinyWallInsulation'/>
717
+ <SystemIdentifier id='Wall19Insulation'/>
671
718
  <AssemblyEffectiveRValue>4.09</AssemblyEffectiveRValue>
672
719
  </Insulation>
673
720
  </Wall>
674
721
  </Walls>
675
722
  <FoundationWalls>
676
723
  <FoundationWall>
677
- <SystemIdentifier id='FoundationWall'/>
724
+ <SystemIdentifier id='FoundationWall1'/>
678
725
  <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
679
726
  <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
680
727
  <Height>8.0</Height>
681
728
  <Area>133.33333333333334</Area>
682
729
  <Thickness>8.0</Thickness>
683
730
  <DepthBelowGrade>7.0</DepthBelowGrade>
731
+ <InteriorFinish>
732
+ <Type>gypsum board</Type>
733
+ </InteriorFinish>
684
734
  <Insulation>
685
- <SystemIdentifier id='FoundationWallInsulation'/>
735
+ <SystemIdentifier id='FoundationWall1Insulation'/>
686
736
  <Layer>
687
737
  <InstallationType>continuous - exterior</InstallationType>
688
738
  <NominalRValue>8.9</NominalRValue>
689
- <extension>
690
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
691
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
692
- </extension>
739
+ <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
740
+ <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
693
741
  </Layer>
694
742
  <Layer>
695
743
  <InstallationType>continuous - interior</InstallationType>
696
744
  <NominalRValue>0.0</NominalRValue>
697
- <extension>
698
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
699
- <DistanceToBottomOfInsulation>0.0</DistanceToBottomOfInsulation>
700
- </extension>
701
745
  </Layer>
702
746
  </Insulation>
703
747
  </FoundationWall>
@@ -709,23 +753,20 @@
709
753
  <Area>133.33333333333334</Area>
710
754
  <Thickness>8.0</Thickness>
711
755
  <DepthBelowGrade>7.0</DepthBelowGrade>
756
+ <InteriorFinish>
757
+ <Type>gypsum board</Type>
758
+ </InteriorFinish>
712
759
  <Insulation>
713
760
  <SystemIdentifier id='FoundationWall2Insulation'/>
714
761
  <Layer>
715
762
  <InstallationType>continuous - exterior</InstallationType>
716
763
  <NominalRValue>8.92</NominalRValue>
717
- <extension>
718
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
719
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
720
- </extension>
764
+ <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
765
+ <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
721
766
  </Layer>
722
767
  <Layer>
723
768
  <InstallationType>continuous - interior</InstallationType>
724
769
  <NominalRValue>0.0</NominalRValue>
725
- <extension>
726
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
727
- <DistanceToBottomOfInsulation>0.0</DistanceToBottomOfInsulation>
728
- </extension>
729
770
  </Layer>
730
771
  </Insulation>
731
772
  </FoundationWall>
@@ -737,23 +778,20 @@
737
778
  <Area>133.33333333333334</Area>
738
779
  <Thickness>8.0</Thickness>
739
780
  <DepthBelowGrade>7.0</DepthBelowGrade>
781
+ <InteriorFinish>
782
+ <Type>gypsum board</Type>
783
+ </InteriorFinish>
740
784
  <Insulation>
741
785
  <SystemIdentifier id='FoundationWall3Insulation'/>
742
786
  <Layer>
743
787
  <InstallationType>continuous - exterior</InstallationType>
744
788
  <NominalRValue>8.93</NominalRValue>
745
- <extension>
746
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
747
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
748
- </extension>
789
+ <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
790
+ <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
749
791
  </Layer>
750
792
  <Layer>
751
793
  <InstallationType>continuous - interior</InstallationType>
752
794
  <NominalRValue>0.0</NominalRValue>
753
- <extension>
754
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
755
- <DistanceToBottomOfInsulation>0.0</DistanceToBottomOfInsulation>
756
- </extension>
757
795
  </Layer>
758
796
  </Insulation>
759
797
  </FoundationWall>
@@ -765,23 +803,20 @@
765
803
  <Area>133.33333333333334</Area>
766
804
  <Thickness>8.0</Thickness>
767
805
  <DepthBelowGrade>7.0</DepthBelowGrade>
806
+ <InteriorFinish>
807
+ <Type>gypsum board</Type>
808
+ </InteriorFinish>
768
809
  <Insulation>
769
810
  <SystemIdentifier id='FoundationWall4Insulation'/>
770
811
  <Layer>
771
812
  <InstallationType>continuous - exterior</InstallationType>
772
813
  <NominalRValue>8.94</NominalRValue>
773
- <extension>
774
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
775
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
776
- </extension>
814
+ <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
815
+ <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
777
816
  </Layer>
778
817
  <Layer>
779
818
  <InstallationType>continuous - interior</InstallationType>
780
819
  <NominalRValue>0.0</NominalRValue>
781
- <extension>
782
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
783
- <DistanceToBottomOfInsulation>0.0</DistanceToBottomOfInsulation>
784
- </extension>
785
820
  </Layer>
786
821
  </Insulation>
787
822
  </FoundationWall>
@@ -793,23 +828,20 @@
793
828
  <Area>133.33333333333334</Area>
794
829
  <Thickness>8.0</Thickness>
795
830
  <DepthBelowGrade>7.0</DepthBelowGrade>
831
+ <InteriorFinish>
832
+ <Type>gypsum board</Type>
833
+ </InteriorFinish>
796
834
  <Insulation>
797
835
  <SystemIdentifier id='FoundationWall5Insulation'/>
798
836
  <Layer>
799
837
  <InstallationType>continuous - exterior</InstallationType>
800
838
  <NominalRValue>8.950000000000001</NominalRValue>
801
- <extension>
802
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
803
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
804
- </extension>
839
+ <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
840
+ <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
805
841
  </Layer>
806
842
  <Layer>
807
843
  <InstallationType>continuous - interior</InstallationType>
808
844
  <NominalRValue>0.0</NominalRValue>
809
- <extension>
810
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
811
- <DistanceToBottomOfInsulation>0.0</DistanceToBottomOfInsulation>
812
- </extension>
813
845
  </Layer>
814
846
  </Insulation>
815
847
  </FoundationWall>
@@ -821,23 +853,20 @@
821
853
  <Area>133.33333333333334</Area>
822
854
  <Thickness>8.0</Thickness>
823
855
  <DepthBelowGrade>7.0</DepthBelowGrade>
856
+ <InteriorFinish>
857
+ <Type>gypsum board</Type>
858
+ </InteriorFinish>
824
859
  <Insulation>
825
860
  <SystemIdentifier id='FoundationWall6Insulation'/>
826
861
  <Layer>
827
862
  <InstallationType>continuous - exterior</InstallationType>
828
863
  <NominalRValue>8.96</NominalRValue>
829
- <extension>
830
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
831
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
832
- </extension>
864
+ <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
865
+ <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
833
866
  </Layer>
834
867
  <Layer>
835
868
  <InstallationType>continuous - interior</InstallationType>
836
869
  <NominalRValue>0.0</NominalRValue>
837
- <extension>
838
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
839
- <DistanceToBottomOfInsulation>0.0</DistanceToBottomOfInsulation>
840
- </extension>
841
870
  </Layer>
842
871
  </Insulation>
843
872
  </FoundationWall>
@@ -849,23 +878,20 @@
849
878
  <Area>133.33333333333334</Area>
850
879
  <Thickness>8.0</Thickness>
851
880
  <DepthBelowGrade>7.0</DepthBelowGrade>
881
+ <InteriorFinish>
882
+ <Type>gypsum board</Type>
883
+ </InteriorFinish>
852
884
  <Insulation>
853
885
  <SystemIdentifier id='FoundationWall7Insulation'/>
854
886
  <Layer>
855
887
  <InstallationType>continuous - exterior</InstallationType>
856
888
  <NominalRValue>8.97</NominalRValue>
857
- <extension>
858
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
859
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
860
- </extension>
889
+ <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
890
+ <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
861
891
  </Layer>
862
892
  <Layer>
863
893
  <InstallationType>continuous - interior</InstallationType>
864
894
  <NominalRValue>0.0</NominalRValue>
865
- <extension>
866
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
867
- <DistanceToBottomOfInsulation>0.0</DistanceToBottomOfInsulation>
868
- </extension>
869
895
  </Layer>
870
896
  </Insulation>
871
897
  </FoundationWall>
@@ -877,23 +903,20 @@
877
903
  <Area>133.33333333333334</Area>
878
904
  <Thickness>8.0</Thickness>
879
905
  <DepthBelowGrade>7.0</DepthBelowGrade>
906
+ <InteriorFinish>
907
+ <Type>gypsum board</Type>
908
+ </InteriorFinish>
880
909
  <Insulation>
881
910
  <SystemIdentifier id='FoundationWall8Insulation'/>
882
911
  <Layer>
883
912
  <InstallationType>continuous - exterior</InstallationType>
884
913
  <NominalRValue>8.98</NominalRValue>
885
- <extension>
886
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
887
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
888
- </extension>
914
+ <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
915
+ <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
889
916
  </Layer>
890
917
  <Layer>
891
918
  <InstallationType>continuous - interior</InstallationType>
892
919
  <NominalRValue>0.0</NominalRValue>
893
- <extension>
894
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
895
- <DistanceToBottomOfInsulation>0.0</DistanceToBottomOfInsulation>
896
- </extension>
897
920
  </Layer>
898
921
  </Insulation>
899
922
  </FoundationWall>
@@ -905,176 +928,200 @@
905
928
  <Area>133.33333333333334</Area>
906
929
  <Thickness>8.0</Thickness>
907
930
  <DepthBelowGrade>7.0</DepthBelowGrade>
931
+ <InteriorFinish>
932
+ <Type>gypsum board</Type>
933
+ </InteriorFinish>
908
934
  <Insulation>
909
935
  <SystemIdentifier id='FoundationWall9Insulation'/>
910
936
  <Layer>
911
937
  <InstallationType>continuous - exterior</InstallationType>
912
938
  <NominalRValue>8.99</NominalRValue>
913
- <extension>
914
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
915
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
916
- </extension>
939
+ <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
940
+ <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
917
941
  </Layer>
918
942
  <Layer>
919
943
  <InstallationType>continuous - interior</InstallationType>
920
944
  <NominalRValue>0.0</NominalRValue>
921
- <extension>
922
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
923
- <DistanceToBottomOfInsulation>0.0</DistanceToBottomOfInsulation>
924
- </extension>
925
945
  </Layer>
926
946
  </Insulation>
927
947
  </FoundationWall>
928
948
  <FoundationWall>
929
- <SystemIdentifier id='TinyFoundationWall'/>
949
+ <SystemIdentifier id='FoundationWall10'/>
930
950
  <ExteriorAdjacentTo>ground</ExteriorAdjacentTo>
931
951
  <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
932
952
  <Height>8.0</Height>
933
953
  <Area>0.05</Area>
934
954
  <Thickness>8.0</Thickness>
935
955
  <DepthBelowGrade>7.0</DepthBelowGrade>
956
+ <InteriorFinish>
957
+ <Type>gypsum board</Type>
958
+ </InteriorFinish>
936
959
  <Insulation>
937
- <SystemIdentifier id='TinyFoundationWallInsulation'/>
960
+ <SystemIdentifier id='FoundationWall10Insulation'/>
938
961
  <Layer>
939
962
  <InstallationType>continuous - exterior</InstallationType>
940
963
  <NominalRValue>8.99</NominalRValue>
941
- <extension>
942
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
943
- <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
944
- </extension>
964
+ <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
965
+ <DistanceToBottomOfInsulation>8.0</DistanceToBottomOfInsulation>
945
966
  </Layer>
946
967
  <Layer>
947
968
  <InstallationType>continuous - interior</InstallationType>
948
969
  <NominalRValue>0.0</NominalRValue>
949
- <extension>
950
- <DistanceToTopOfInsulation>0.0</DistanceToTopOfInsulation>
951
- <DistanceToBottomOfInsulation>0.0</DistanceToBottomOfInsulation>
952
- </extension>
953
970
  </Layer>
954
971
  </Insulation>
955
972
  </FoundationWall>
956
973
  </FoundationWalls>
957
974
  <FrameFloors>
958
975
  <FrameFloor>
959
- <SystemIdentifier id='FloorBelowAttic'/>
976
+ <SystemIdentifier id='FrameFloor1'/>
960
977
  <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
961
978
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
962
979
  <Area>150.0</Area>
980
+ <InteriorFinish>
981
+ <Type>gypsum board</Type>
982
+ </InteriorFinish>
963
983
  <Insulation>
964
- <SystemIdentifier id='FloorBelowAtticInsulation'/>
984
+ <SystemIdentifier id='FrameFloor1Insulation'/>
965
985
  <AssemblyEffectiveRValue>39.3</AssemblyEffectiveRValue>
966
986
  </Insulation>
967
987
  </FrameFloor>
968
988
  <FrameFloor>
969
- <SystemIdentifier id='FloorBelowAttic2'/>
989
+ <SystemIdentifier id='FrameFloor2'/>
970
990
  <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
971
991
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
972
992
  <Area>150.0</Area>
993
+ <InteriorFinish>
994
+ <Type>gypsum board</Type>
995
+ </InteriorFinish>
973
996
  <Insulation>
974
- <SystemIdentifier id='FloorBelowAttic2Insulation'/>
997
+ <SystemIdentifier id='FrameFloor2Insulation'/>
975
998
  <AssemblyEffectiveRValue>39.32</AssemblyEffectiveRValue>
976
999
  </Insulation>
977
1000
  </FrameFloor>
978
1001
  <FrameFloor>
979
- <SystemIdentifier id='FloorBelowAttic3'/>
1002
+ <SystemIdentifier id='FrameFloor3'/>
980
1003
  <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
981
1004
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
982
1005
  <Area>150.0</Area>
1006
+ <InteriorFinish>
1007
+ <Type>gypsum board</Type>
1008
+ </InteriorFinish>
983
1009
  <Insulation>
984
- <SystemIdentifier id='FloorBelowAttic3Insulation'/>
1010
+ <SystemIdentifier id='FrameFloor3Insulation'/>
985
1011
  <AssemblyEffectiveRValue>39.33</AssemblyEffectiveRValue>
986
1012
  </Insulation>
987
1013
  </FrameFloor>
988
1014
  <FrameFloor>
989
- <SystemIdentifier id='FloorBelowAttic4'/>
1015
+ <SystemIdentifier id='FrameFloor4'/>
990
1016
  <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
991
1017
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
992
1018
  <Area>150.0</Area>
1019
+ <InteriorFinish>
1020
+ <Type>gypsum board</Type>
1021
+ </InteriorFinish>
993
1022
  <Insulation>
994
- <SystemIdentifier id='FloorBelowAttic4Insulation'/>
1023
+ <SystemIdentifier id='FrameFloor4Insulation'/>
995
1024
  <AssemblyEffectiveRValue>39.339999999999996</AssemblyEffectiveRValue>
996
1025
  </Insulation>
997
1026
  </FrameFloor>
998
1027
  <FrameFloor>
999
- <SystemIdentifier id='FloorBelowAttic5'/>
1028
+ <SystemIdentifier id='FrameFloor5'/>
1000
1029
  <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1001
1030
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1002
1031
  <Area>150.0</Area>
1032
+ <InteriorFinish>
1033
+ <Type>gypsum board</Type>
1034
+ </InteriorFinish>
1003
1035
  <Insulation>
1004
- <SystemIdentifier id='FloorBelowAttic5Insulation'/>
1036
+ <SystemIdentifier id='FrameFloor5Insulation'/>
1005
1037
  <AssemblyEffectiveRValue>39.349999999999994</AssemblyEffectiveRValue>
1006
1038
  </Insulation>
1007
1039
  </FrameFloor>
1008
1040
  <FrameFloor>
1009
- <SystemIdentifier id='FloorBelowAttic6'/>
1041
+ <SystemIdentifier id='FrameFloor6'/>
1010
1042
  <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1011
1043
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1012
1044
  <Area>150.0</Area>
1045
+ <InteriorFinish>
1046
+ <Type>gypsum board</Type>
1047
+ </InteriorFinish>
1013
1048
  <Insulation>
1014
- <SystemIdentifier id='FloorBelowAttic6Insulation'/>
1049
+ <SystemIdentifier id='FrameFloor6Insulation'/>
1015
1050
  <AssemblyEffectiveRValue>39.36</AssemblyEffectiveRValue>
1016
1051
  </Insulation>
1017
1052
  </FrameFloor>
1018
1053
  <FrameFloor>
1019
- <SystemIdentifier id='FloorBelowAttic7'/>
1054
+ <SystemIdentifier id='FrameFloor7'/>
1020
1055
  <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1021
1056
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1022
1057
  <Area>150.0</Area>
1058
+ <InteriorFinish>
1059
+ <Type>gypsum board</Type>
1060
+ </InteriorFinish>
1023
1061
  <Insulation>
1024
- <SystemIdentifier id='FloorBelowAttic7Insulation'/>
1062
+ <SystemIdentifier id='FrameFloor7Insulation'/>
1025
1063
  <AssemblyEffectiveRValue>39.37</AssemblyEffectiveRValue>
1026
1064
  </Insulation>
1027
1065
  </FrameFloor>
1028
1066
  <FrameFloor>
1029
- <SystemIdentifier id='FloorBelowAttic8'/>
1067
+ <SystemIdentifier id='FrameFloor8'/>
1030
1068
  <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1031
1069
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1032
1070
  <Area>150.0</Area>
1071
+ <InteriorFinish>
1072
+ <Type>gypsum board</Type>
1073
+ </InteriorFinish>
1033
1074
  <Insulation>
1034
- <SystemIdentifier id='FloorBelowAttic8Insulation'/>
1075
+ <SystemIdentifier id='FrameFloor8Insulation'/>
1035
1076
  <AssemblyEffectiveRValue>39.379999999999995</AssemblyEffectiveRValue>
1036
1077
  </Insulation>
1037
1078
  </FrameFloor>
1038
1079
  <FrameFloor>
1039
- <SystemIdentifier id='FloorBelowAttic9'/>
1080
+ <SystemIdentifier id='FrameFloor9'/>
1040
1081
  <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1041
1082
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1042
1083
  <Area>150.0</Area>
1084
+ <InteriorFinish>
1085
+ <Type>gypsum board</Type>
1086
+ </InteriorFinish>
1043
1087
  <Insulation>
1044
- <SystemIdentifier id='FloorBelowAttic9Insulation'/>
1088
+ <SystemIdentifier id='FrameFloor9Insulation'/>
1045
1089
  <AssemblyEffectiveRValue>39.39</AssemblyEffectiveRValue>
1046
1090
  </Insulation>
1047
1091
  </FrameFloor>
1048
1092
  <FrameFloor>
1049
- <SystemIdentifier id='TinyFloor'/>
1093
+ <SystemIdentifier id='FrameFloor10'/>
1050
1094
  <ExteriorAdjacentTo>attic - unvented</ExteriorAdjacentTo>
1051
1095
  <InteriorAdjacentTo>living space</InteriorAdjacentTo>
1052
1096
  <Area>0.05</Area>
1097
+ <InteriorFinish>
1098
+ <Type>gypsum board</Type>
1099
+ </InteriorFinish>
1053
1100
  <Insulation>
1054
- <SystemIdentifier id='TinyFloorInsulation'/>
1101
+ <SystemIdentifier id='FrameFloor10Insulation'/>
1055
1102
  <AssemblyEffectiveRValue>39.39</AssemblyEffectiveRValue>
1056
1103
  </Insulation>
1057
1104
  </FrameFloor>
1058
1105
  </FrameFloors>
1059
1106
  <Slabs>
1060
1107
  <Slab>
1061
- <SystemIdentifier id='Slab'/>
1108
+ <SystemIdentifier id='Slab1'/>
1062
1109
  <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1063
1110
  <Area>150.0</Area>
1064
1111
  <Thickness>4.0</Thickness>
1065
1112
  <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1066
- <PerimeterInsulationDepth>0.0</PerimeterInsulationDepth>
1067
- <UnderSlabInsulationWidth>0.0</UnderSlabInsulationWidth>
1068
1113
  <PerimeterInsulation>
1069
- <SystemIdentifier id='SlabPerimeterInsulation'/>
1114
+ <SystemIdentifier id='Slab1PerimeterInsulation'/>
1070
1115
  <Layer>
1071
1116
  <NominalRValue>0.0</NominalRValue>
1117
+ <InsulationDepth>0.0</InsulationDepth>
1072
1118
  </Layer>
1073
1119
  </PerimeterInsulation>
1074
1120
  <UnderSlabInsulation>
1075
- <SystemIdentifier id='SlabUnderSlabInsulation'/>
1121
+ <SystemIdentifier id='Slab1UnderSlabInsulation'/>
1076
1122
  <Layer>
1077
1123
  <NominalRValue>0.0</NominalRValue>
1124
+ <InsulationWidth>0.0</InsulationWidth>
1078
1125
  </Layer>
1079
1126
  </UnderSlabInsulation>
1080
1127
  <extension>
@@ -1088,18 +1135,18 @@
1088
1135
  <Area>150.0</Area>
1089
1136
  <Thickness>4.0</Thickness>
1090
1137
  <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1091
- <PerimeterInsulationDepth>0.02</PerimeterInsulationDepth>
1092
- <UnderSlabInsulationWidth>0.0</UnderSlabInsulationWidth>
1093
1138
  <PerimeterInsulation>
1094
1139
  <SystemIdentifier id='Slab2PerimeterInsulation'/>
1095
1140
  <Layer>
1096
1141
  <NominalRValue>0.02</NominalRValue>
1142
+ <InsulationDepth>0.02</InsulationDepth>
1097
1143
  </Layer>
1098
1144
  </PerimeterInsulation>
1099
1145
  <UnderSlabInsulation>
1100
1146
  <SystemIdentifier id='Slab2UnderSlabInsulation'/>
1101
1147
  <Layer>
1102
1148
  <NominalRValue>0.0</NominalRValue>
1149
+ <InsulationWidth>0.0</InsulationWidth>
1103
1150
  </Layer>
1104
1151
  </UnderSlabInsulation>
1105
1152
  <extension>
@@ -1113,18 +1160,18 @@
1113
1160
  <Area>150.0</Area>
1114
1161
  <Thickness>4.0</Thickness>
1115
1162
  <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1116
- <PerimeterInsulationDepth>0.03</PerimeterInsulationDepth>
1117
- <UnderSlabInsulationWidth>0.0</UnderSlabInsulationWidth>
1118
1163
  <PerimeterInsulation>
1119
1164
  <SystemIdentifier id='Slab3PerimeterInsulation'/>
1120
1165
  <Layer>
1121
1166
  <NominalRValue>0.03</NominalRValue>
1167
+ <InsulationDepth>0.03</InsulationDepth>
1122
1168
  </Layer>
1123
1169
  </PerimeterInsulation>
1124
1170
  <UnderSlabInsulation>
1125
1171
  <SystemIdentifier id='Slab3UnderSlabInsulation'/>
1126
1172
  <Layer>
1127
1173
  <NominalRValue>0.0</NominalRValue>
1174
+ <InsulationWidth>0.0</InsulationWidth>
1128
1175
  </Layer>
1129
1176
  </UnderSlabInsulation>
1130
1177
  <extension>
@@ -1138,18 +1185,18 @@
1138
1185
  <Area>150.0</Area>
1139
1186
  <Thickness>4.0</Thickness>
1140
1187
  <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1141
- <PerimeterInsulationDepth>0.04</PerimeterInsulationDepth>
1142
- <UnderSlabInsulationWidth>0.0</UnderSlabInsulationWidth>
1143
1188
  <PerimeterInsulation>
1144
1189
  <SystemIdentifier id='Slab4PerimeterInsulation'/>
1145
1190
  <Layer>
1146
1191
  <NominalRValue>0.04</NominalRValue>
1192
+ <InsulationDepth>0.04</InsulationDepth>
1147
1193
  </Layer>
1148
1194
  </PerimeterInsulation>
1149
1195
  <UnderSlabInsulation>
1150
1196
  <SystemIdentifier id='Slab4UnderSlabInsulation'/>
1151
1197
  <Layer>
1152
1198
  <NominalRValue>0.0</NominalRValue>
1199
+ <InsulationWidth>0.0</InsulationWidth>
1153
1200
  </Layer>
1154
1201
  </UnderSlabInsulation>
1155
1202
  <extension>
@@ -1163,18 +1210,18 @@
1163
1210
  <Area>150.0</Area>
1164
1211
  <Thickness>4.0</Thickness>
1165
1212
  <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1166
- <PerimeterInsulationDepth>0.05</PerimeterInsulationDepth>
1167
- <UnderSlabInsulationWidth>0.0</UnderSlabInsulationWidth>
1168
1213
  <PerimeterInsulation>
1169
1214
  <SystemIdentifier id='Slab5PerimeterInsulation'/>
1170
1215
  <Layer>
1171
1216
  <NominalRValue>0.05</NominalRValue>
1217
+ <InsulationDepth>0.05</InsulationDepth>
1172
1218
  </Layer>
1173
1219
  </PerimeterInsulation>
1174
1220
  <UnderSlabInsulation>
1175
1221
  <SystemIdentifier id='Slab5UnderSlabInsulation'/>
1176
1222
  <Layer>
1177
1223
  <NominalRValue>0.0</NominalRValue>
1224
+ <InsulationWidth>0.0</InsulationWidth>
1178
1225
  </Layer>
1179
1226
  </UnderSlabInsulation>
1180
1227
  <extension>
@@ -1188,18 +1235,18 @@
1188
1235
  <Area>150.0</Area>
1189
1236
  <Thickness>4.0</Thickness>
1190
1237
  <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1191
- <PerimeterInsulationDepth>0.06</PerimeterInsulationDepth>
1192
- <UnderSlabInsulationWidth>0.0</UnderSlabInsulationWidth>
1193
1238
  <PerimeterInsulation>
1194
1239
  <SystemIdentifier id='Slab6PerimeterInsulation'/>
1195
1240
  <Layer>
1196
1241
  <NominalRValue>0.06</NominalRValue>
1242
+ <InsulationDepth>0.06</InsulationDepth>
1197
1243
  </Layer>
1198
1244
  </PerimeterInsulation>
1199
1245
  <UnderSlabInsulation>
1200
1246
  <SystemIdentifier id='Slab6UnderSlabInsulation'/>
1201
1247
  <Layer>
1202
1248
  <NominalRValue>0.0</NominalRValue>
1249
+ <InsulationWidth>0.0</InsulationWidth>
1203
1250
  </Layer>
1204
1251
  </UnderSlabInsulation>
1205
1252
  <extension>
@@ -1213,18 +1260,18 @@
1213
1260
  <Area>150.0</Area>
1214
1261
  <Thickness>4.0</Thickness>
1215
1262
  <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1216
- <PerimeterInsulationDepth>0.07</PerimeterInsulationDepth>
1217
- <UnderSlabInsulationWidth>0.0</UnderSlabInsulationWidth>
1218
1263
  <PerimeterInsulation>
1219
1264
  <SystemIdentifier id='Slab7PerimeterInsulation'/>
1220
1265
  <Layer>
1221
1266
  <NominalRValue>0.07</NominalRValue>
1267
+ <InsulationDepth>0.07</InsulationDepth>
1222
1268
  </Layer>
1223
1269
  </PerimeterInsulation>
1224
1270
  <UnderSlabInsulation>
1225
1271
  <SystemIdentifier id='Slab7UnderSlabInsulation'/>
1226
1272
  <Layer>
1227
1273
  <NominalRValue>0.0</NominalRValue>
1274
+ <InsulationWidth>0.0</InsulationWidth>
1228
1275
  </Layer>
1229
1276
  </UnderSlabInsulation>
1230
1277
  <extension>
@@ -1238,18 +1285,18 @@
1238
1285
  <Area>150.0</Area>
1239
1286
  <Thickness>4.0</Thickness>
1240
1287
  <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1241
- <PerimeterInsulationDepth>0.08</PerimeterInsulationDepth>
1242
- <UnderSlabInsulationWidth>0.0</UnderSlabInsulationWidth>
1243
1288
  <PerimeterInsulation>
1244
1289
  <SystemIdentifier id='Slab8PerimeterInsulation'/>
1245
1290
  <Layer>
1246
1291
  <NominalRValue>0.08</NominalRValue>
1292
+ <InsulationDepth>0.08</InsulationDepth>
1247
1293
  </Layer>
1248
1294
  </PerimeterInsulation>
1249
1295
  <UnderSlabInsulation>
1250
1296
  <SystemIdentifier id='Slab8UnderSlabInsulation'/>
1251
1297
  <Layer>
1252
1298
  <NominalRValue>0.0</NominalRValue>
1299
+ <InsulationWidth>0.0</InsulationWidth>
1253
1300
  </Layer>
1254
1301
  </UnderSlabInsulation>
1255
1302
  <extension>
@@ -1263,18 +1310,18 @@
1263
1310
  <Area>150.0</Area>
1264
1311
  <Thickness>4.0</Thickness>
1265
1312
  <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1266
- <PerimeterInsulationDepth>0.09</PerimeterInsulationDepth>
1267
- <UnderSlabInsulationWidth>0.0</UnderSlabInsulationWidth>
1268
1313
  <PerimeterInsulation>
1269
1314
  <SystemIdentifier id='Slab9PerimeterInsulation'/>
1270
1315
  <Layer>
1271
1316
  <NominalRValue>0.09</NominalRValue>
1317
+ <InsulationDepth>0.09</InsulationDepth>
1272
1318
  </Layer>
1273
1319
  </PerimeterInsulation>
1274
1320
  <UnderSlabInsulation>
1275
1321
  <SystemIdentifier id='Slab9UnderSlabInsulation'/>
1276
1322
  <Layer>
1277
1323
  <NominalRValue>0.0</NominalRValue>
1324
+ <InsulationWidth>0.0</InsulationWidth>
1278
1325
  </Layer>
1279
1326
  </UnderSlabInsulation>
1280
1327
  <extension>
@@ -1283,23 +1330,23 @@
1283
1330
  </extension>
1284
1331
  </Slab>
1285
1332
  <Slab>
1286
- <SystemIdentifier id='TinySlab'/>
1333
+ <SystemIdentifier id='Slab10'/>
1287
1334
  <InteriorAdjacentTo>basement - conditioned</InteriorAdjacentTo>
1288
1335
  <Area>0.05</Area>
1289
1336
  <Thickness>4.0</Thickness>
1290
1337
  <ExposedPerimeter>16.666666666666668</ExposedPerimeter>
1291
- <PerimeterInsulationDepth>0.09</PerimeterInsulationDepth>
1292
- <UnderSlabInsulationWidth>0.0</UnderSlabInsulationWidth>
1293
1338
  <PerimeterInsulation>
1294
- <SystemIdentifier id='TinySlabPerimeterInsulation'/>
1339
+ <SystemIdentifier id='Slab10PerimeterInsulation'/>
1295
1340
  <Layer>
1296
1341
  <NominalRValue>0.09</NominalRValue>
1342
+ <InsulationDepth>0.09</InsulationDepth>
1297
1343
  </Layer>
1298
1344
  </PerimeterInsulation>
1299
1345
  <UnderSlabInsulation>
1300
- <SystemIdentifier id='TinySlabUnderSlabInsulation'/>
1346
+ <SystemIdentifier id='Slab10UnderSlabInsulation'/>
1301
1347
  <Layer>
1302
1348
  <NominalRValue>0.0</NominalRValue>
1349
+ <InsulationWidth>0.0</InsulationWidth>
1303
1350
  </Layer>
1304
1351
  </UnderSlabInsulation>
1305
1352
  <extension>
@@ -1310,903 +1357,840 @@
1310
1357
  </Slabs>
1311
1358
  <Windows>
1312
1359
  <Window>
1313
- <SystemIdentifier id='WindowNorth'/>
1360
+ <SystemIdentifier id='Window1'/>
1314
1361
  <Area>12.0</Area>
1315
1362
  <Azimuth>0</Azimuth>
1316
1363
  <UFactor>0.33</UFactor>
1317
1364
  <SHGC>0.45</SHGC>
1318
1365
  <InteriorShading>
1319
- <SystemIdentifier id='WindowNorthInteriorShading'/>
1366
+ <SystemIdentifier id='Window1InteriorShading'/>
1320
1367
  <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1321
1368
  <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1322
1369
  </InteriorShading>
1323
1370
  <FractionOperable>0.0</FractionOperable>
1324
- <AttachedToWall idref='Wall'/>
1371
+ <AttachedToWall idref='Wall1'/>
1325
1372
  </Window>
1326
1373
  <Window>
1327
- <SystemIdentifier id='WindowSouth'/>
1328
- <Area>12.0</Area>
1329
- <Azimuth>180</Azimuth>
1374
+ <SystemIdentifier id='Window2'/>
1375
+ <Area>8.0</Area>
1376
+ <Azimuth>90</Azimuth>
1330
1377
  <UFactor>0.33</UFactor>
1331
1378
  <SHGC>0.45</SHGC>
1332
1379
  <InteriorShading>
1333
- <SystemIdentifier id='WindowSouthInteriorShading'/>
1380
+ <SystemIdentifier id='Window2InteriorShading'/>
1334
1381
  <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1335
1382
  <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1336
1383
  </InteriorShading>
1337
1384
  <FractionOperable>0.0</FractionOperable>
1338
- <AttachedToWall idref='Wall'/>
1385
+ <AttachedToWall idref='Wall1'/>
1339
1386
  </Window>
1340
1387
  <Window>
1341
- <SystemIdentifier id='WindowEast'/>
1342
- <Area>8.0</Area>
1343
- <Azimuth>90</Azimuth>
1388
+ <SystemIdentifier id='Window3'/>
1389
+ <Area>12.0</Area>
1390
+ <Azimuth>180</Azimuth>
1344
1391
  <UFactor>0.33</UFactor>
1345
1392
  <SHGC>0.45</SHGC>
1346
1393
  <InteriorShading>
1347
- <SystemIdentifier id='WindowEastInteriorShading'/>
1394
+ <SystemIdentifier id='Window3InteriorShading'/>
1348
1395
  <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1349
1396
  <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1350
1397
  </InteriorShading>
1351
1398
  <FractionOperable>0.0</FractionOperable>
1352
- <AttachedToWall idref='Wall'/>
1399
+ <AttachedToWall idref='Wall1'/>
1353
1400
  </Window>
1354
1401
  <Window>
1355
- <SystemIdentifier id='WindowWest'/>
1402
+ <SystemIdentifier id='Window4'/>
1356
1403
  <Area>8.0</Area>
1357
1404
  <Azimuth>270</Azimuth>
1358
1405
  <UFactor>0.33</UFactor>
1359
1406
  <SHGC>0.45</SHGC>
1360
1407
  <InteriorShading>
1361
- <SystemIdentifier id='WindowWestInteriorShading'/>
1408
+ <SystemIdentifier id='Window4InteriorShading'/>
1362
1409
  <SummerShadingCoefficient>0.7</SummerShadingCoefficient>
1363
1410
  <WinterShadingCoefficient>0.85</WinterShadingCoefficient>
1364
1411
  </InteriorShading>
1365
1412
  <FractionOperable>0.0</FractionOperable>
1366
- <AttachedToWall idref='Wall'/>
1413
+ <AttachedToWall idref='Wall1'/>
1367
1414
  </Window>
1368
1415
  <Window>
1369
- <SystemIdentifier id='WindowNorth2'/>
1416
+ <SystemIdentifier id='Window5'/>
1370
1417
  <Area>12.0</Area>
1371
1418
  <Azimuth>0</Azimuth>
1372
1419
  <UFactor>0.35000000000000003</UFactor>
1373
1420
  <SHGC>0.45</SHGC>
1374
1421
  <InteriorShading>
1375
- <SystemIdentifier id='WindowNorth2InteriorShading'/>
1422
+ <SystemIdentifier id='Window5InteriorShading'/>
1376
1423
  <SummerShadingCoefficient>0.6599999999999999</SummerShadingCoefficient>
1377
1424
  <WinterShadingCoefficient>0.83</WinterShadingCoefficient>
1378
1425
  </InteriorShading>
1379
1426
  <FractionOperable>0.0</FractionOperable>
1380
- <AttachedToWall idref='Wall2'/>
1427
+ <AttachedToWall idref='Wall3'/>
1381
1428
  </Window>
1382
1429
  <Window>
1383
- <SystemIdentifier id='WindowNorth3'/>
1430
+ <SystemIdentifier id='Window6'/>
1384
1431
  <Area>12.0</Area>
1385
1432
  <Azimuth>0</Azimuth>
1386
1433
  <UFactor>0.36</UFactor>
1387
1434
  <SHGC>0.45</SHGC>
1388
1435
  <InteriorShading>
1389
- <SystemIdentifier id='WindowNorth3InteriorShading'/>
1436
+ <SystemIdentifier id='Window6InteriorShading'/>
1390
1437
  <SummerShadingCoefficient>0.6399999999999999</SummerShadingCoefficient>
1391
1438
  <WinterShadingCoefficient>0.82</WinterShadingCoefficient>
1392
1439
  </InteriorShading>
1393
1440
  <FractionOperable>0.0</FractionOperable>
1394
- <AttachedToWall idref='Wall3'/>
1441
+ <AttachedToWall idref='Wall4'/>
1395
1442
  </Window>
1396
1443
  <Window>
1397
- <SystemIdentifier id='WindowNorth4'/>
1444
+ <SystemIdentifier id='Window7'/>
1398
1445
  <Area>12.0</Area>
1399
1446
  <Azimuth>0</Azimuth>
1400
1447
  <UFactor>0.37</UFactor>
1401
1448
  <SHGC>0.45</SHGC>
1402
1449
  <InteriorShading>
1403
- <SystemIdentifier id='WindowNorth4InteriorShading'/>
1450
+ <SystemIdentifier id='Window7InteriorShading'/>
1404
1451
  <SummerShadingCoefficient>0.62</SummerShadingCoefficient>
1405
1452
  <WinterShadingCoefficient>0.8099999999999999</WinterShadingCoefficient>
1406
1453
  </InteriorShading>
1407
1454
  <FractionOperable>1.0</FractionOperable>
1408
- <AttachedToWall idref='Wall4'/>
1455
+ <AttachedToWall idref='Wall5'/>
1409
1456
  </Window>
1410
1457
  <Window>
1411
- <SystemIdentifier id='WindowNorth5'/>
1458
+ <SystemIdentifier id='Window8'/>
1412
1459
  <Area>12.0</Area>
1413
1460
  <Azimuth>0</Azimuth>
1414
1461
  <UFactor>0.38</UFactor>
1415
1462
  <SHGC>0.45</SHGC>
1416
1463
  <InteriorShading>
1417
- <SystemIdentifier id='WindowNorth5InteriorShading'/>
1464
+ <SystemIdentifier id='Window8InteriorShading'/>
1418
1465
  <SummerShadingCoefficient>0.6</SummerShadingCoefficient>
1419
1466
  <WinterShadingCoefficient>0.7999999999999999</WinterShadingCoefficient>
1420
1467
  </InteriorShading>
1421
1468
  <FractionOperable>1.0</FractionOperable>
1422
- <AttachedToWall idref='Wall5'/>
1469
+ <AttachedToWall idref='Wall6'/>
1423
1470
  </Window>
1424
1471
  <Window>
1425
- <SystemIdentifier id='WindowNorth6'/>
1472
+ <SystemIdentifier id='Window9'/>
1426
1473
  <Area>12.0</Area>
1427
1474
  <Azimuth>0</Azimuth>
1428
1475
  <UFactor>0.39</UFactor>
1429
1476
  <SHGC>0.45</SHGC>
1430
1477
  <InteriorShading>
1431
- <SystemIdentifier id='WindowNorth6InteriorShading'/>
1478
+ <SystemIdentifier id='Window9InteriorShading'/>
1432
1479
  <SummerShadingCoefficient>0.58</SummerShadingCoefficient>
1433
1480
  <WinterShadingCoefficient>0.79</WinterShadingCoefficient>
1434
1481
  </InteriorShading>
1435
1482
  <FractionOperable>1.0</FractionOperable>
1436
- <AttachedToWall idref='Wall6'/>
1483
+ <AttachedToWall idref='Wall7'/>
1437
1484
  </Window>
1438
1485
  <Window>
1439
- <SystemIdentifier id='WindowNorth7'/>
1486
+ <SystemIdentifier id='Window10'/>
1440
1487
  <Area>12.0</Area>
1441
1488
  <Azimuth>0</Azimuth>
1442
1489
  <UFactor>0.4</UFactor>
1443
1490
  <SHGC>0.45</SHGC>
1444
1491
  <InteriorShading>
1445
- <SystemIdentifier id='WindowNorth7InteriorShading'/>
1492
+ <SystemIdentifier id='Window10InteriorShading'/>
1446
1493
  <SummerShadingCoefficient>0.5599999999999999</SummerShadingCoefficient>
1447
1494
  <WinterShadingCoefficient>0.78</WinterShadingCoefficient>
1448
1495
  </InteriorShading>
1449
1496
  <FractionOperable>1.0</FractionOperable>
1450
- <AttachedToWall idref='Wall7'/>
1497
+ <AttachedToWall idref='Wall8'/>
1451
1498
  </Window>
1452
1499
  <Window>
1453
- <SystemIdentifier id='WindowNorth8'/>
1500
+ <SystemIdentifier id='Window11'/>
1454
1501
  <Area>12.0</Area>
1455
1502
  <Azimuth>0</Azimuth>
1456
1503
  <UFactor>0.41000000000000003</UFactor>
1457
1504
  <SHGC>0.45</SHGC>
1458
1505
  <InteriorShading>
1459
- <SystemIdentifier id='WindowNorth8InteriorShading'/>
1506
+ <SystemIdentifier id='Window11InteriorShading'/>
1460
1507
  <SummerShadingCoefficient>0.5399999999999999</SummerShadingCoefficient>
1461
1508
  <WinterShadingCoefficient>0.77</WinterShadingCoefficient>
1462
1509
  </InteriorShading>
1463
1510
  <FractionOperable>1.0</FractionOperable>
1464
- <AttachedToWall idref='Wall8'/>
1511
+ <AttachedToWall idref='Wall9'/>
1465
1512
  </Window>
1466
1513
  <Window>
1467
- <SystemIdentifier id='WindowNorth9'/>
1514
+ <SystemIdentifier id='Window12'/>
1468
1515
  <Area>12.0</Area>
1469
1516
  <Azimuth>0</Azimuth>
1470
1517
  <UFactor>0.42000000000000004</UFactor>
1471
1518
  <SHGC>0.45</SHGC>
1472
1519
  <InteriorShading>
1473
- <SystemIdentifier id='WindowNorth9InteriorShading'/>
1520
+ <SystemIdentifier id='Window12InteriorShading'/>
1474
1521
  <SummerShadingCoefficient>0.52</SummerShadingCoefficient>
1475
1522
  <WinterShadingCoefficient>0.76</WinterShadingCoefficient>
1476
1523
  </InteriorShading>
1477
1524
  <FractionOperable>1.0</FractionOperable>
1478
- <AttachedToWall idref='Wall9'/>
1525
+ <AttachedToWall idref='Wall10'/>
1479
1526
  </Window>
1480
1527
  <Window>
1481
- <SystemIdentifier id='WindowSouth2'/>
1482
- <Area>12.0</Area>
1483
- <Azimuth>180</Azimuth>
1528
+ <SystemIdentifier id='Window13'/>
1529
+ <Area>8.0</Area>
1530
+ <Azimuth>90</Azimuth>
1484
1531
  <UFactor>0.35000000000000003</UFactor>
1485
1532
  <SHGC>0.45</SHGC>
1486
1533
  <InteriorShading>
1487
- <SystemIdentifier id='WindowSouth2InteriorShading'/>
1534
+ <SystemIdentifier id='Window13InteriorShading'/>
1488
1535
  <SummerShadingCoefficient>0.6599999999999999</SummerShadingCoefficient>
1489
1536
  <WinterShadingCoefficient>0.83</WinterShadingCoefficient>
1490
1537
  </InteriorShading>
1491
1538
  <FractionOperable>0.0</FractionOperable>
1492
- <AttachedToWall idref='Wall2'/>
1539
+ <AttachedToWall idref='Wall3'/>
1493
1540
  </Window>
1494
1541
  <Window>
1495
- <SystemIdentifier id='WindowSouth3'/>
1496
- <Area>12.0</Area>
1497
- <Azimuth>180</Azimuth>
1542
+ <SystemIdentifier id='Window14'/>
1543
+ <Area>8.0</Area>
1544
+ <Azimuth>90</Azimuth>
1498
1545
  <UFactor>0.36</UFactor>
1499
1546
  <SHGC>0.45</SHGC>
1500
1547
  <InteriorShading>
1501
- <SystemIdentifier id='WindowSouth3InteriorShading'/>
1548
+ <SystemIdentifier id='Window14InteriorShading'/>
1502
1549
  <SummerShadingCoefficient>0.6399999999999999</SummerShadingCoefficient>
1503
1550
  <WinterShadingCoefficient>0.82</WinterShadingCoefficient>
1504
1551
  </InteriorShading>
1505
1552
  <FractionOperable>0.0</FractionOperable>
1506
- <AttachedToWall idref='Wall3'/>
1553
+ <AttachedToWall idref='Wall4'/>
1507
1554
  </Window>
1508
1555
  <Window>
1509
- <SystemIdentifier id='WindowSouth4'/>
1510
- <Area>12.0</Area>
1511
- <Azimuth>180</Azimuth>
1556
+ <SystemIdentifier id='Window15'/>
1557
+ <Area>8.0</Area>
1558
+ <Azimuth>90</Azimuth>
1512
1559
  <UFactor>0.37</UFactor>
1513
1560
  <SHGC>0.45</SHGC>
1514
1561
  <InteriorShading>
1515
- <SystemIdentifier id='WindowSouth4InteriorShading'/>
1562
+ <SystemIdentifier id='Window15InteriorShading'/>
1516
1563
  <SummerShadingCoefficient>0.62</SummerShadingCoefficient>
1517
1564
  <WinterShadingCoefficient>0.8099999999999999</WinterShadingCoefficient>
1518
1565
  </InteriorShading>
1519
1566
  <FractionOperable>1.0</FractionOperable>
1520
- <AttachedToWall idref='Wall4'/>
1567
+ <AttachedToWall idref='Wall5'/>
1521
1568
  </Window>
1522
1569
  <Window>
1523
- <SystemIdentifier id='WindowSouth5'/>
1524
- <Area>12.0</Area>
1525
- <Azimuth>180</Azimuth>
1570
+ <SystemIdentifier id='Window16'/>
1571
+ <Area>8.0</Area>
1572
+ <Azimuth>90</Azimuth>
1526
1573
  <UFactor>0.38</UFactor>
1527
1574
  <SHGC>0.45</SHGC>
1528
1575
  <InteriorShading>
1529
- <SystemIdentifier id='WindowSouth5InteriorShading'/>
1576
+ <SystemIdentifier id='Window16InteriorShading'/>
1530
1577
  <SummerShadingCoefficient>0.6</SummerShadingCoefficient>
1531
1578
  <WinterShadingCoefficient>0.7999999999999999</WinterShadingCoefficient>
1532
1579
  </InteriorShading>
1533
1580
  <FractionOperable>1.0</FractionOperable>
1534
- <AttachedToWall idref='Wall5'/>
1581
+ <AttachedToWall idref='Wall6'/>
1535
1582
  </Window>
1536
1583
  <Window>
1537
- <SystemIdentifier id='WindowSouth6'/>
1538
- <Area>12.0</Area>
1539
- <Azimuth>180</Azimuth>
1584
+ <SystemIdentifier id='Window17'/>
1585
+ <Area>8.0</Area>
1586
+ <Azimuth>90</Azimuth>
1540
1587
  <UFactor>0.39</UFactor>
1541
1588
  <SHGC>0.45</SHGC>
1542
1589
  <InteriorShading>
1543
- <SystemIdentifier id='WindowSouth6InteriorShading'/>
1590
+ <SystemIdentifier id='Window17InteriorShading'/>
1544
1591
  <SummerShadingCoefficient>0.58</SummerShadingCoefficient>
1545
1592
  <WinterShadingCoefficient>0.79</WinterShadingCoefficient>
1546
1593
  </InteriorShading>
1547
1594
  <FractionOperable>1.0</FractionOperable>
1548
- <AttachedToWall idref='Wall6'/>
1595
+ <AttachedToWall idref='Wall7'/>
1549
1596
  </Window>
1550
1597
  <Window>
1551
- <SystemIdentifier id='WindowSouth7'/>
1552
- <Area>12.0</Area>
1553
- <Azimuth>180</Azimuth>
1598
+ <SystemIdentifier id='Window18'/>
1599
+ <Area>8.0</Area>
1600
+ <Azimuth>90</Azimuth>
1554
1601
  <UFactor>0.4</UFactor>
1555
1602
  <SHGC>0.45</SHGC>
1556
1603
  <InteriorShading>
1557
- <SystemIdentifier id='WindowSouth7InteriorShading'/>
1604
+ <SystemIdentifier id='Window18InteriorShading'/>
1558
1605
  <SummerShadingCoefficient>0.5599999999999999</SummerShadingCoefficient>
1559
1606
  <WinterShadingCoefficient>0.78</WinterShadingCoefficient>
1560
1607
  </InteriorShading>
1561
1608
  <FractionOperable>1.0</FractionOperable>
1562
- <AttachedToWall idref='Wall7'/>
1609
+ <AttachedToWall idref='Wall8'/>
1563
1610
  </Window>
1564
1611
  <Window>
1565
- <SystemIdentifier id='WindowSouth8'/>
1566
- <Area>12.0</Area>
1567
- <Azimuth>180</Azimuth>
1612
+ <SystemIdentifier id='Window19'/>
1613
+ <Area>8.0</Area>
1614
+ <Azimuth>90</Azimuth>
1568
1615
  <UFactor>0.41000000000000003</UFactor>
1569
1616
  <SHGC>0.45</SHGC>
1570
1617
  <InteriorShading>
1571
- <SystemIdentifier id='WindowSouth8InteriorShading'/>
1618
+ <SystemIdentifier id='Window19InteriorShading'/>
1572
1619
  <SummerShadingCoefficient>0.5399999999999999</SummerShadingCoefficient>
1573
1620
  <WinterShadingCoefficient>0.77</WinterShadingCoefficient>
1574
1621
  </InteriorShading>
1575
1622
  <FractionOperable>1.0</FractionOperable>
1576
- <AttachedToWall idref='Wall8'/>
1623
+ <AttachedToWall idref='Wall9'/>
1577
1624
  </Window>
1578
1625
  <Window>
1579
- <SystemIdentifier id='WindowSouth9'/>
1580
- <Area>12.0</Area>
1581
- <Azimuth>180</Azimuth>
1626
+ <SystemIdentifier id='Window20'/>
1627
+ <Area>8.0</Area>
1628
+ <Azimuth>90</Azimuth>
1582
1629
  <UFactor>0.42000000000000004</UFactor>
1583
1630
  <SHGC>0.45</SHGC>
1584
1631
  <InteriorShading>
1585
- <SystemIdentifier id='WindowSouth9InteriorShading'/>
1632
+ <SystemIdentifier id='Window20InteriorShading'/>
1586
1633
  <SummerShadingCoefficient>0.52</SummerShadingCoefficient>
1587
1634
  <WinterShadingCoefficient>0.76</WinterShadingCoefficient>
1588
1635
  </InteriorShading>
1589
1636
  <FractionOperable>1.0</FractionOperable>
1590
- <AttachedToWall idref='Wall9'/>
1637
+ <AttachedToWall idref='Wall10'/>
1591
1638
  </Window>
1592
1639
  <Window>
1593
- <SystemIdentifier id='WindowEast2'/>
1594
- <Area>8.0</Area>
1595
- <Azimuth>90</Azimuth>
1640
+ <SystemIdentifier id='Window21'/>
1641
+ <Area>12.0</Area>
1642
+ <Azimuth>180</Azimuth>
1596
1643
  <UFactor>0.35000000000000003</UFactor>
1597
1644
  <SHGC>0.45</SHGC>
1598
1645
  <InteriorShading>
1599
- <SystemIdentifier id='WindowEast2InteriorShading'/>
1646
+ <SystemIdentifier id='Window21InteriorShading'/>
1600
1647
  <SummerShadingCoefficient>0.6599999999999999</SummerShadingCoefficient>
1601
1648
  <WinterShadingCoefficient>0.83</WinterShadingCoefficient>
1602
1649
  </InteriorShading>
1603
1650
  <FractionOperable>0.0</FractionOperable>
1604
- <AttachedToWall idref='Wall2'/>
1651
+ <AttachedToWall idref='Wall3'/>
1605
1652
  </Window>
1606
1653
  <Window>
1607
- <SystemIdentifier id='WindowEast3'/>
1608
- <Area>8.0</Area>
1609
- <Azimuth>90</Azimuth>
1654
+ <SystemIdentifier id='Window22'/>
1655
+ <Area>12.0</Area>
1656
+ <Azimuth>180</Azimuth>
1610
1657
  <UFactor>0.36</UFactor>
1611
1658
  <SHGC>0.45</SHGC>
1612
1659
  <InteriorShading>
1613
- <SystemIdentifier id='WindowEast3InteriorShading'/>
1660
+ <SystemIdentifier id='Window22InteriorShading'/>
1614
1661
  <SummerShadingCoefficient>0.6399999999999999</SummerShadingCoefficient>
1615
1662
  <WinterShadingCoefficient>0.82</WinterShadingCoefficient>
1616
1663
  </InteriorShading>
1617
1664
  <FractionOperable>0.0</FractionOperable>
1618
- <AttachedToWall idref='Wall3'/>
1665
+ <AttachedToWall idref='Wall4'/>
1619
1666
  </Window>
1620
1667
  <Window>
1621
- <SystemIdentifier id='WindowEast4'/>
1622
- <Area>8.0</Area>
1623
- <Azimuth>90</Azimuth>
1668
+ <SystemIdentifier id='Window23'/>
1669
+ <Area>12.0</Area>
1670
+ <Azimuth>180</Azimuth>
1624
1671
  <UFactor>0.37</UFactor>
1625
1672
  <SHGC>0.45</SHGC>
1626
1673
  <InteriorShading>
1627
- <SystemIdentifier id='WindowEast4InteriorShading'/>
1674
+ <SystemIdentifier id='Window23InteriorShading'/>
1628
1675
  <SummerShadingCoefficient>0.62</SummerShadingCoefficient>
1629
1676
  <WinterShadingCoefficient>0.8099999999999999</WinterShadingCoefficient>
1630
1677
  </InteriorShading>
1631
1678
  <FractionOperable>1.0</FractionOperable>
1632
- <AttachedToWall idref='Wall4'/>
1679
+ <AttachedToWall idref='Wall5'/>
1633
1680
  </Window>
1634
1681
  <Window>
1635
- <SystemIdentifier id='WindowEast5'/>
1636
- <Area>8.0</Area>
1637
- <Azimuth>90</Azimuth>
1682
+ <SystemIdentifier id='Window24'/>
1683
+ <Area>12.0</Area>
1684
+ <Azimuth>180</Azimuth>
1638
1685
  <UFactor>0.38</UFactor>
1639
1686
  <SHGC>0.45</SHGC>
1640
1687
  <InteriorShading>
1641
- <SystemIdentifier id='WindowEast5InteriorShading'/>
1688
+ <SystemIdentifier id='Window24InteriorShading'/>
1642
1689
  <SummerShadingCoefficient>0.6</SummerShadingCoefficient>
1643
1690
  <WinterShadingCoefficient>0.7999999999999999</WinterShadingCoefficient>
1644
1691
  </InteriorShading>
1645
1692
  <FractionOperable>1.0</FractionOperable>
1646
- <AttachedToWall idref='Wall5'/>
1693
+ <AttachedToWall idref='Wall6'/>
1647
1694
  </Window>
1648
1695
  <Window>
1649
- <SystemIdentifier id='WindowEast6'/>
1650
- <Area>8.0</Area>
1651
- <Azimuth>90</Azimuth>
1696
+ <SystemIdentifier id='Window25'/>
1697
+ <Area>12.0</Area>
1698
+ <Azimuth>180</Azimuth>
1652
1699
  <UFactor>0.39</UFactor>
1653
1700
  <SHGC>0.45</SHGC>
1654
1701
  <InteriorShading>
1655
- <SystemIdentifier id='WindowEast6InteriorShading'/>
1702
+ <SystemIdentifier id='Window25InteriorShading'/>
1656
1703
  <SummerShadingCoefficient>0.58</SummerShadingCoefficient>
1657
1704
  <WinterShadingCoefficient>0.79</WinterShadingCoefficient>
1658
1705
  </InteriorShading>
1659
1706
  <FractionOperable>1.0</FractionOperable>
1660
- <AttachedToWall idref='Wall6'/>
1707
+ <AttachedToWall idref='Wall7'/>
1661
1708
  </Window>
1662
1709
  <Window>
1663
- <SystemIdentifier id='WindowEast7'/>
1664
- <Area>8.0</Area>
1665
- <Azimuth>90</Azimuth>
1710
+ <SystemIdentifier id='Window26'/>
1711
+ <Area>12.0</Area>
1712
+ <Azimuth>180</Azimuth>
1666
1713
  <UFactor>0.4</UFactor>
1667
1714
  <SHGC>0.45</SHGC>
1668
1715
  <InteriorShading>
1669
- <SystemIdentifier id='WindowEast7InteriorShading'/>
1716
+ <SystemIdentifier id='Window26InteriorShading'/>
1670
1717
  <SummerShadingCoefficient>0.5599999999999999</SummerShadingCoefficient>
1671
1718
  <WinterShadingCoefficient>0.78</WinterShadingCoefficient>
1672
1719
  </InteriorShading>
1673
1720
  <FractionOperable>1.0</FractionOperable>
1674
- <AttachedToWall idref='Wall7'/>
1721
+ <AttachedToWall idref='Wall8'/>
1675
1722
  </Window>
1676
1723
  <Window>
1677
- <SystemIdentifier id='WindowEast8'/>
1678
- <Area>8.0</Area>
1679
- <Azimuth>90</Azimuth>
1724
+ <SystemIdentifier id='Window27'/>
1725
+ <Area>12.0</Area>
1726
+ <Azimuth>180</Azimuth>
1680
1727
  <UFactor>0.41000000000000003</UFactor>
1681
1728
  <SHGC>0.45</SHGC>
1682
1729
  <InteriorShading>
1683
- <SystemIdentifier id='WindowEast8InteriorShading'/>
1730
+ <SystemIdentifier id='Window27InteriorShading'/>
1684
1731
  <SummerShadingCoefficient>0.5399999999999999</SummerShadingCoefficient>
1685
1732
  <WinterShadingCoefficient>0.77</WinterShadingCoefficient>
1686
1733
  </InteriorShading>
1687
1734
  <FractionOperable>1.0</FractionOperable>
1688
- <AttachedToWall idref='Wall8'/>
1735
+ <AttachedToWall idref='Wall9'/>
1689
1736
  </Window>
1690
1737
  <Window>
1691
- <SystemIdentifier id='WindowEast9'/>
1692
- <Area>8.0</Area>
1693
- <Azimuth>90</Azimuth>
1738
+ <SystemIdentifier id='Window28'/>
1739
+ <Area>12.0</Area>
1740
+ <Azimuth>180</Azimuth>
1694
1741
  <UFactor>0.42000000000000004</UFactor>
1695
1742
  <SHGC>0.45</SHGC>
1696
1743
  <InteriorShading>
1697
- <SystemIdentifier id='WindowEast9InteriorShading'/>
1744
+ <SystemIdentifier id='Window28InteriorShading'/>
1698
1745
  <SummerShadingCoefficient>0.52</SummerShadingCoefficient>
1699
1746
  <WinterShadingCoefficient>0.76</WinterShadingCoefficient>
1700
1747
  </InteriorShading>
1701
1748
  <FractionOperable>1.0</FractionOperable>
1702
- <AttachedToWall idref='Wall9'/>
1749
+ <AttachedToWall idref='Wall10'/>
1703
1750
  </Window>
1704
1751
  <Window>
1705
- <SystemIdentifier id='WindowWest2'/>
1752
+ <SystemIdentifier id='Window29'/>
1706
1753
  <Area>8.0</Area>
1707
1754
  <Azimuth>270</Azimuth>
1708
1755
  <UFactor>0.35000000000000003</UFactor>
1709
1756
  <SHGC>0.45</SHGC>
1710
1757
  <InteriorShading>
1711
- <SystemIdentifier id='WindowWest2InteriorShading'/>
1758
+ <SystemIdentifier id='Window29InteriorShading'/>
1712
1759
  <SummerShadingCoefficient>0.6599999999999999</SummerShadingCoefficient>
1713
1760
  <WinterShadingCoefficient>0.83</WinterShadingCoefficient>
1714
1761
  </InteriorShading>
1715
1762
  <FractionOperable>0.0</FractionOperable>
1716
- <AttachedToWall idref='Wall2'/>
1763
+ <AttachedToWall idref='Wall3'/>
1717
1764
  </Window>
1718
1765
  <Window>
1719
- <SystemIdentifier id='WindowWest3'/>
1766
+ <SystemIdentifier id='Window30'/>
1720
1767
  <Area>8.0</Area>
1721
1768
  <Azimuth>270</Azimuth>
1722
1769
  <UFactor>0.36</UFactor>
1723
1770
  <SHGC>0.45</SHGC>
1724
1771
  <InteriorShading>
1725
- <SystemIdentifier id='WindowWest3InteriorShading'/>
1772
+ <SystemIdentifier id='Window30InteriorShading'/>
1726
1773
  <SummerShadingCoefficient>0.6399999999999999</SummerShadingCoefficient>
1727
1774
  <WinterShadingCoefficient>0.82</WinterShadingCoefficient>
1728
1775
  </InteriorShading>
1729
1776
  <FractionOperable>0.0</FractionOperable>
1730
- <AttachedToWall idref='Wall3'/>
1777
+ <AttachedToWall idref='Wall4'/>
1731
1778
  </Window>
1732
1779
  <Window>
1733
- <SystemIdentifier id='WindowWest4'/>
1780
+ <SystemIdentifier id='Window31'/>
1734
1781
  <Area>8.0</Area>
1735
1782
  <Azimuth>270</Azimuth>
1736
1783
  <UFactor>0.37</UFactor>
1737
1784
  <SHGC>0.45</SHGC>
1738
1785
  <InteriorShading>
1739
- <SystemIdentifier id='WindowWest4InteriorShading'/>
1786
+ <SystemIdentifier id='Window31InteriorShading'/>
1740
1787
  <SummerShadingCoefficient>0.62</SummerShadingCoefficient>
1741
1788
  <WinterShadingCoefficient>0.8099999999999999</WinterShadingCoefficient>
1742
1789
  </InteriorShading>
1743
1790
  <FractionOperable>1.0</FractionOperable>
1744
- <AttachedToWall idref='Wall4'/>
1791
+ <AttachedToWall idref='Wall5'/>
1745
1792
  </Window>
1746
1793
  <Window>
1747
- <SystemIdentifier id='WindowWest5'/>
1794
+ <SystemIdentifier id='Window32'/>
1748
1795
  <Area>8.0</Area>
1749
1796
  <Azimuth>270</Azimuth>
1750
1797
  <UFactor>0.38</UFactor>
1751
1798
  <SHGC>0.45</SHGC>
1752
1799
  <InteriorShading>
1753
- <SystemIdentifier id='WindowWest5InteriorShading'/>
1800
+ <SystemIdentifier id='Window32InteriorShading'/>
1754
1801
  <SummerShadingCoefficient>0.6</SummerShadingCoefficient>
1755
1802
  <WinterShadingCoefficient>0.7999999999999999</WinterShadingCoefficient>
1756
1803
  </InteriorShading>
1757
1804
  <FractionOperable>1.0</FractionOperable>
1758
- <AttachedToWall idref='Wall5'/>
1805
+ <AttachedToWall idref='Wall6'/>
1759
1806
  </Window>
1760
1807
  <Window>
1761
- <SystemIdentifier id='WindowWest6'/>
1808
+ <SystemIdentifier id='Window33'/>
1762
1809
  <Area>8.0</Area>
1763
1810
  <Azimuth>270</Azimuth>
1764
1811
  <UFactor>0.39</UFactor>
1765
1812
  <SHGC>0.45</SHGC>
1766
1813
  <InteriorShading>
1767
- <SystemIdentifier id='WindowWest6InteriorShading'/>
1814
+ <SystemIdentifier id='Window33InteriorShading'/>
1768
1815
  <SummerShadingCoefficient>0.58</SummerShadingCoefficient>
1769
1816
  <WinterShadingCoefficient>0.79</WinterShadingCoefficient>
1770
1817
  </InteriorShading>
1771
1818
  <FractionOperable>1.0</FractionOperable>
1772
- <AttachedToWall idref='Wall6'/>
1819
+ <AttachedToWall idref='Wall7'/>
1773
1820
  </Window>
1774
1821
  <Window>
1775
- <SystemIdentifier id='WindowWest7'/>
1822
+ <SystemIdentifier id='Window34'/>
1776
1823
  <Area>8.0</Area>
1777
1824
  <Azimuth>270</Azimuth>
1778
1825
  <UFactor>0.4</UFactor>
1779
1826
  <SHGC>0.45</SHGC>
1780
1827
  <InteriorShading>
1781
- <SystemIdentifier id='WindowWest7InteriorShading'/>
1828
+ <SystemIdentifier id='Window34InteriorShading'/>
1782
1829
  <SummerShadingCoefficient>0.5599999999999999</SummerShadingCoefficient>
1783
1830
  <WinterShadingCoefficient>0.78</WinterShadingCoefficient>
1784
1831
  </InteriorShading>
1785
1832
  <FractionOperable>1.0</FractionOperable>
1786
- <AttachedToWall idref='Wall7'/>
1833
+ <AttachedToWall idref='Wall8'/>
1787
1834
  </Window>
1788
1835
  <Window>
1789
- <SystemIdentifier id='WindowWest8'/>
1836
+ <SystemIdentifier id='Window35'/>
1790
1837
  <Area>8.0</Area>
1791
1838
  <Azimuth>270</Azimuth>
1792
1839
  <UFactor>0.41000000000000003</UFactor>
1793
1840
  <SHGC>0.45</SHGC>
1794
1841
  <InteriorShading>
1795
- <SystemIdentifier id='WindowWest8InteriorShading'/>
1842
+ <SystemIdentifier id='Window35InteriorShading'/>
1796
1843
  <SummerShadingCoefficient>0.5399999999999999</SummerShadingCoefficient>
1797
1844
  <WinterShadingCoefficient>0.77</WinterShadingCoefficient>
1798
1845
  </InteriorShading>
1799
1846
  <FractionOperable>1.0</FractionOperable>
1800
- <AttachedToWall idref='Wall8'/>
1847
+ <AttachedToWall idref='Wall9'/>
1801
1848
  </Window>
1802
1849
  <Window>
1803
- <SystemIdentifier id='WindowWest9'/>
1850
+ <SystemIdentifier id='Window36'/>
1804
1851
  <Area>8.0</Area>
1805
1852
  <Azimuth>270</Azimuth>
1806
1853
  <UFactor>0.42000000000000004</UFactor>
1807
1854
  <SHGC>0.45</SHGC>
1808
1855
  <InteriorShading>
1809
- <SystemIdentifier id='WindowWest9InteriorShading'/>
1856
+ <SystemIdentifier id='Window36InteriorShading'/>
1810
1857
  <SummerShadingCoefficient>0.52</SummerShadingCoefficient>
1811
1858
  <WinterShadingCoefficient>0.76</WinterShadingCoefficient>
1812
1859
  </InteriorShading>
1813
1860
  <FractionOperable>1.0</FractionOperable>
1814
- <AttachedToWall idref='Wall9'/>
1861
+ <AttachedToWall idref='Wall10'/>
1815
1862
  </Window>
1816
1863
  <Window>
1817
- <SystemIdentifier id='TinyWindow'/>
1864
+ <SystemIdentifier id='Window37'/>
1818
1865
  <Area>0.05</Area>
1819
1866
  <Azimuth>270</Azimuth>
1820
1867
  <UFactor>0.42000000000000004</UFactor>
1821
1868
  <SHGC>0.45</SHGC>
1822
1869
  <InteriorShading>
1823
- <SystemIdentifier id='TinyWindowInteriorShading'/>
1870
+ <SystemIdentifier id='Window37InteriorShading'/>
1824
1871
  <SummerShadingCoefficient>0.52</SummerShadingCoefficient>
1825
1872
  <WinterShadingCoefficient>0.76</WinterShadingCoefficient>
1826
1873
  </InteriorShading>
1827
1874
  <FractionOperable>1.0</FractionOperable>
1828
- <AttachedToWall idref='Wall9'/>
1875
+ <AttachedToWall idref='Wall10'/>
1829
1876
  </Window>
1830
1877
  </Windows>
1831
1878
  <Skylights>
1832
1879
  <Skylight>
1833
- <SystemIdentifier id='SkylightNorth'/>
1880
+ <SystemIdentifier id='Skylight1'/>
1834
1881
  <Area>1.6666666666666667</Area>
1835
1882
  <Azimuth>0</Azimuth>
1836
1883
  <UFactor>0.33</UFactor>
1837
1884
  <SHGC>0.45</SHGC>
1838
1885
  <InteriorShading>
1839
- <SystemIdentifier id='SkylightNorthInteriorShading'/>
1886
+ <SystemIdentifier id='Skylight1InteriorShading'/>
1840
1887
  <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
1841
1888
  <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
1842
1889
  </InteriorShading>
1843
- <AttachedToRoof idref='Roof'/>
1890
+ <AttachedToRoof idref='Roof1'/>
1844
1891
  </Skylight>
1845
1892
  <Skylight>
1846
- <SystemIdentifier id='SkylightSouth'/>
1893
+ <SystemIdentifier id='Skylight2'/>
1847
1894
  <Area>1.6666666666666667</Area>
1848
1895
  <Azimuth>180</Azimuth>
1849
- <UFactor>0.35</UFactor>
1850
- <SHGC>0.47</SHGC>
1896
+ <UFactor>0.33</UFactor>
1897
+ <SHGC>0.45</SHGC>
1851
1898
  <InteriorShading>
1852
- <SystemIdentifier id='SkylightSouthInteriorShading'/>
1899
+ <SystemIdentifier id='Skylight2InteriorShading'/>
1853
1900
  <SummerShadingCoefficient>1.0</SummerShadingCoefficient>
1854
1901
  <WinterShadingCoefficient>1.0</WinterShadingCoefficient>
1855
1902
  </InteriorShading>
1856
- <AttachedToRoof idref='Roof'/>
1903
+ <AttachedToRoof idref='Roof1'/>
1857
1904
  </Skylight>
1858
1905
  <Skylight>
1859
- <SystemIdentifier id='SkylightNorth2'/>
1906
+ <SystemIdentifier id='Skylight3'/>
1860
1907
  <Area>1.6666666666666667</Area>
1861
1908
  <Azimuth>0</Azimuth>
1862
1909
  <UFactor>0.35000000000000003</UFactor>
1863
1910
  <SHGC>0.45</SHGC>
1864
1911
  <InteriorShading>
1865
- <SystemIdentifier id='SkylightNorth2InteriorShading'/>
1912
+ <SystemIdentifier id='Skylight3InteriorShading'/>
1866
1913
  <SummerShadingCoefficient>0.96</SummerShadingCoefficient>
1867
1914
  <WinterShadingCoefficient>0.98</WinterShadingCoefficient>
1868
1915
  </InteriorShading>
1869
1916
  <AttachedToRoof idref='Roof2'/>
1870
1917
  </Skylight>
1871
1918
  <Skylight>
1872
- <SystemIdentifier id='SkylightNorth3'/>
1919
+ <SystemIdentifier id='Skylight4'/>
1873
1920
  <Area>1.6666666666666667</Area>
1874
1921
  <Azimuth>0</Azimuth>
1875
1922
  <UFactor>0.36</UFactor>
1876
1923
  <SHGC>0.45</SHGC>
1877
1924
  <InteriorShading>
1878
- <SystemIdentifier id='SkylightNorth3InteriorShading'/>
1925
+ <SystemIdentifier id='Skylight4InteriorShading'/>
1879
1926
  <SummerShadingCoefficient>0.94</SummerShadingCoefficient>
1880
1927
  <WinterShadingCoefficient>0.97</WinterShadingCoefficient>
1881
1928
  </InteriorShading>
1882
- <AttachedToRoof idref='Roof'/>
1929
+ <AttachedToRoof idref='Roof3'/>
1883
1930
  </Skylight>
1884
1931
  <Skylight>
1885
- <SystemIdentifier id='SkylightNorth4'/>
1932
+ <SystemIdentifier id='Skylight5'/>
1886
1933
  <Area>1.6666666666666667</Area>
1887
1934
  <Azimuth>0</Azimuth>
1888
1935
  <UFactor>0.37</UFactor>
1889
1936
  <SHGC>0.45</SHGC>
1890
1937
  <InteriorShading>
1891
- <SystemIdentifier id='SkylightNorth4InteriorShading'/>
1938
+ <SystemIdentifier id='Skylight5InteriorShading'/>
1892
1939
  <SummerShadingCoefficient>0.92</SummerShadingCoefficient>
1893
1940
  <WinterShadingCoefficient>0.96</WinterShadingCoefficient>
1894
1941
  </InteriorShading>
1895
1942
  <AttachedToRoof idref='Roof4'/>
1896
1943
  </Skylight>
1897
1944
  <Skylight>
1898
- <SystemIdentifier id='SkylightNorth5'/>
1945
+ <SystemIdentifier id='Skylight6'/>
1899
1946
  <Area>1.6666666666666667</Area>
1900
1947
  <Azimuth>0</Azimuth>
1901
1948
  <UFactor>0.38</UFactor>
1902
1949
  <SHGC>0.45</SHGC>
1903
1950
  <InteriorShading>
1904
- <SystemIdentifier id='SkylightNorth5InteriorShading'/>
1951
+ <SystemIdentifier id='Skylight6InteriorShading'/>
1905
1952
  <SummerShadingCoefficient>0.9</SummerShadingCoefficient>
1906
1953
  <WinterShadingCoefficient>0.95</WinterShadingCoefficient>
1907
1954
  </InteriorShading>
1908
- <AttachedToRoof idref='Roof'/>
1955
+ <AttachedToRoof idref='Roof5'/>
1909
1956
  </Skylight>
1910
1957
  <Skylight>
1911
- <SystemIdentifier id='SkylightNorth6'/>
1958
+ <SystemIdentifier id='Skylight7'/>
1912
1959
  <Area>1.6666666666666667</Area>
1913
1960
  <Azimuth>0</Azimuth>
1914
1961
  <UFactor>0.39</UFactor>
1915
1962
  <SHGC>0.45</SHGC>
1916
1963
  <InteriorShading>
1917
- <SystemIdentifier id='SkylightNorth6InteriorShading'/>
1964
+ <SystemIdentifier id='Skylight7InteriorShading'/>
1918
1965
  <SummerShadingCoefficient>0.88</SummerShadingCoefficient>
1919
1966
  <WinterShadingCoefficient>0.94</WinterShadingCoefficient>
1920
1967
  </InteriorShading>
1921
1968
  <AttachedToRoof idref='Roof6'/>
1922
1969
  </Skylight>
1923
1970
  <Skylight>
1924
- <SystemIdentifier id='SkylightNorth7'/>
1971
+ <SystemIdentifier id='Skylight8'/>
1925
1972
  <Area>1.6666666666666667</Area>
1926
1973
  <Azimuth>0</Azimuth>
1927
1974
  <UFactor>0.4</UFactor>
1928
1975
  <SHGC>0.45</SHGC>
1929
1976
  <InteriorShading>
1930
- <SystemIdentifier id='SkylightNorth7InteriorShading'/>
1977
+ <SystemIdentifier id='Skylight8InteriorShading'/>
1931
1978
  <SummerShadingCoefficient>0.86</SummerShadingCoefficient>
1932
1979
  <WinterShadingCoefficient>0.9299999999999999</WinterShadingCoefficient>
1933
1980
  </InteriorShading>
1934
- <AttachedToRoof idref='Roof'/>
1981
+ <AttachedToRoof idref='Roof7'/>
1935
1982
  </Skylight>
1936
1983
  <Skylight>
1937
- <SystemIdentifier id='SkylightNorth8'/>
1984
+ <SystemIdentifier id='Skylight9'/>
1938
1985
  <Area>1.6666666666666667</Area>
1939
1986
  <Azimuth>0</Azimuth>
1940
1987
  <UFactor>0.41000000000000003</UFactor>
1941
1988
  <SHGC>0.45</SHGC>
1942
1989
  <InteriorShading>
1943
- <SystemIdentifier id='SkylightNorth8InteriorShading'/>
1990
+ <SystemIdentifier id='Skylight9InteriorShading'/>
1944
1991
  <SummerShadingCoefficient>0.84</SummerShadingCoefficient>
1945
1992
  <WinterShadingCoefficient>0.92</WinterShadingCoefficient>
1946
1993
  </InteriorShading>
1947
1994
  <AttachedToRoof idref='Roof8'/>
1948
1995
  </Skylight>
1949
1996
  <Skylight>
1950
- <SystemIdentifier id='SkylightNorth9'/>
1997
+ <SystemIdentifier id='Skylight10'/>
1951
1998
  <Area>1.6666666666666667</Area>
1952
1999
  <Azimuth>0</Azimuth>
1953
2000
  <UFactor>0.42000000000000004</UFactor>
1954
2001
  <SHGC>0.45</SHGC>
1955
2002
  <InteriorShading>
1956
- <SystemIdentifier id='SkylightNorth9InteriorShading'/>
2003
+ <SystemIdentifier id='Skylight10InteriorShading'/>
1957
2004
  <SummerShadingCoefficient>0.8200000000000001</SummerShadingCoefficient>
1958
2005
  <WinterShadingCoefficient>0.91</WinterShadingCoefficient>
1959
2006
  </InteriorShading>
1960
- <AttachedToRoof idref='Roof'/>
2007
+ <AttachedToRoof idref='Roof9'/>
1961
2008
  </Skylight>
1962
2009
  <Skylight>
1963
- <SystemIdentifier id='SkylightSouth2'/>
2010
+ <SystemIdentifier id='Skylight11'/>
1964
2011
  <Area>1.6666666666666667</Area>
1965
2012
  <Azimuth>180</Azimuth>
1966
- <UFactor>0.37</UFactor>
1967
- <SHGC>0.47</SHGC>
2013
+ <UFactor>0.35000000000000003</UFactor>
2014
+ <SHGC>0.45</SHGC>
1968
2015
  <InteriorShading>
1969
- <SystemIdentifier id='SkylightSouth2InteriorShading'/>
2016
+ <SystemIdentifier id='Skylight11InteriorShading'/>
1970
2017
  <SummerShadingCoefficient>0.96</SummerShadingCoefficient>
1971
2018
  <WinterShadingCoefficient>0.98</WinterShadingCoefficient>
1972
2019
  </InteriorShading>
1973
2020
  <AttachedToRoof idref='Roof2'/>
1974
2021
  </Skylight>
1975
2022
  <Skylight>
1976
- <SystemIdentifier id='SkylightSouth3'/>
2023
+ <SystemIdentifier id='Skylight12'/>
1977
2024
  <Area>1.6666666666666667</Area>
1978
2025
  <Azimuth>180</Azimuth>
1979
- <UFactor>0.38</UFactor>
1980
- <SHGC>0.47</SHGC>
2026
+ <UFactor>0.36</UFactor>
2027
+ <SHGC>0.45</SHGC>
1981
2028
  <InteriorShading>
1982
- <SystemIdentifier id='SkylightSouth3InteriorShading'/>
2029
+ <SystemIdentifier id='Skylight12InteriorShading'/>
1983
2030
  <SummerShadingCoefficient>0.94</SummerShadingCoefficient>
1984
2031
  <WinterShadingCoefficient>0.97</WinterShadingCoefficient>
1985
2032
  </InteriorShading>
1986
- <AttachedToRoof idref='Roof'/>
2033
+ <AttachedToRoof idref='Roof3'/>
1987
2034
  </Skylight>
1988
2035
  <Skylight>
1989
- <SystemIdentifier id='SkylightSouth4'/>
2036
+ <SystemIdentifier id='Skylight13'/>
1990
2037
  <Area>1.6666666666666667</Area>
1991
2038
  <Azimuth>180</Azimuth>
1992
- <UFactor>0.38999999999999996</UFactor>
1993
- <SHGC>0.47</SHGC>
2039
+ <UFactor>0.37</UFactor>
2040
+ <SHGC>0.45</SHGC>
1994
2041
  <InteriorShading>
1995
- <SystemIdentifier id='SkylightSouth4InteriorShading'/>
2042
+ <SystemIdentifier id='Skylight13InteriorShading'/>
1996
2043
  <SummerShadingCoefficient>0.92</SummerShadingCoefficient>
1997
2044
  <WinterShadingCoefficient>0.96</WinterShadingCoefficient>
1998
2045
  </InteriorShading>
1999
2046
  <AttachedToRoof idref='Roof4'/>
2000
2047
  </Skylight>
2001
2048
  <Skylight>
2002
- <SystemIdentifier id='SkylightSouth5'/>
2049
+ <SystemIdentifier id='Skylight14'/>
2003
2050
  <Area>1.6666666666666667</Area>
2004
2051
  <Azimuth>180</Azimuth>
2005
- <UFactor>0.39999999999999997</UFactor>
2006
- <SHGC>0.47</SHGC>
2052
+ <UFactor>0.38</UFactor>
2053
+ <SHGC>0.45</SHGC>
2007
2054
  <InteriorShading>
2008
- <SystemIdentifier id='SkylightSouth5InteriorShading'/>
2055
+ <SystemIdentifier id='Skylight14InteriorShading'/>
2009
2056
  <SummerShadingCoefficient>0.9</SummerShadingCoefficient>
2010
2057
  <WinterShadingCoefficient>0.95</WinterShadingCoefficient>
2011
2058
  </InteriorShading>
2012
- <AttachedToRoof idref='Roof'/>
2059
+ <AttachedToRoof idref='Roof5'/>
2013
2060
  </Skylight>
2014
2061
  <Skylight>
2015
- <SystemIdentifier id='SkylightSouth6'/>
2062
+ <SystemIdentifier id='Skylight15'/>
2016
2063
  <Area>1.6666666666666667</Area>
2017
2064
  <Azimuth>180</Azimuth>
2018
- <UFactor>0.41</UFactor>
2019
- <SHGC>0.47</SHGC>
2065
+ <UFactor>0.39</UFactor>
2066
+ <SHGC>0.45</SHGC>
2020
2067
  <InteriorShading>
2021
- <SystemIdentifier id='SkylightSouth6InteriorShading'/>
2068
+ <SystemIdentifier id='Skylight15InteriorShading'/>
2022
2069
  <SummerShadingCoefficient>0.88</SummerShadingCoefficient>
2023
2070
  <WinterShadingCoefficient>0.94</WinterShadingCoefficient>
2024
2071
  </InteriorShading>
2025
2072
  <AttachedToRoof idref='Roof6'/>
2026
2073
  </Skylight>
2027
2074
  <Skylight>
2028
- <SystemIdentifier id='SkylightSouth7'/>
2075
+ <SystemIdentifier id='Skylight16'/>
2029
2076
  <Area>1.6666666666666667</Area>
2030
2077
  <Azimuth>180</Azimuth>
2031
- <UFactor>0.42</UFactor>
2032
- <SHGC>0.47</SHGC>
2078
+ <UFactor>0.4</UFactor>
2079
+ <SHGC>0.45</SHGC>
2033
2080
  <InteriorShading>
2034
- <SystemIdentifier id='SkylightSouth7InteriorShading'/>
2081
+ <SystemIdentifier id='Skylight16InteriorShading'/>
2035
2082
  <SummerShadingCoefficient>0.86</SummerShadingCoefficient>
2036
2083
  <WinterShadingCoefficient>0.9299999999999999</WinterShadingCoefficient>
2037
2084
  </InteriorShading>
2038
- <AttachedToRoof idref='Roof'/>
2085
+ <AttachedToRoof idref='Roof7'/>
2039
2086
  </Skylight>
2040
2087
  <Skylight>
2041
- <SystemIdentifier id='SkylightSouth8'/>
2088
+ <SystemIdentifier id='Skylight17'/>
2042
2089
  <Area>1.6666666666666667</Area>
2043
2090
  <Azimuth>180</Azimuth>
2044
- <UFactor>0.43</UFactor>
2045
- <SHGC>0.47</SHGC>
2091
+ <UFactor>0.41000000000000003</UFactor>
2092
+ <SHGC>0.45</SHGC>
2046
2093
  <InteriorShading>
2047
- <SystemIdentifier id='SkylightSouth8InteriorShading'/>
2094
+ <SystemIdentifier id='Skylight17InteriorShading'/>
2048
2095
  <SummerShadingCoefficient>0.84</SummerShadingCoefficient>
2049
2096
  <WinterShadingCoefficient>0.92</WinterShadingCoefficient>
2050
2097
  </InteriorShading>
2051
2098
  <AttachedToRoof idref='Roof8'/>
2052
2099
  </Skylight>
2053
2100
  <Skylight>
2054
- <SystemIdentifier id='SkylightSouth9'/>
2101
+ <SystemIdentifier id='Skylight18'/>
2055
2102
  <Area>1.6666666666666667</Area>
2056
2103
  <Azimuth>180</Azimuth>
2057
- <UFactor>0.43999999999999995</UFactor>
2058
- <SHGC>0.47</SHGC>
2104
+ <UFactor>0.42000000000000004</UFactor>
2105
+ <SHGC>0.45</SHGC>
2059
2106
  <InteriorShading>
2060
- <SystemIdentifier id='SkylightSouth9InteriorShading'/>
2107
+ <SystemIdentifier id='Skylight18InteriorShading'/>
2061
2108
  <SummerShadingCoefficient>0.8200000000000001</SummerShadingCoefficient>
2062
2109
  <WinterShadingCoefficient>0.91</WinterShadingCoefficient>
2063
2110
  </InteriorShading>
2064
- <AttachedToRoof idref='Roof'/>
2111
+ <AttachedToRoof idref='Roof9'/>
2065
2112
  </Skylight>
2066
2113
  <Skylight>
2067
- <SystemIdentifier id='TinySkylight'/>
2114
+ <SystemIdentifier id='Skylight19'/>
2068
2115
  <Area>0.05</Area>
2069
2116
  <Azimuth>180</Azimuth>
2070
- <UFactor>0.43999999999999995</UFactor>
2071
- <SHGC>0.47</SHGC>
2117
+ <UFactor>0.42000000000000004</UFactor>
2118
+ <SHGC>0.45</SHGC>
2072
2119
  <InteriorShading>
2073
- <SystemIdentifier id='TinySkylightInteriorShading'/>
2120
+ <SystemIdentifier id='Skylight19InteriorShading'/>
2074
2121
  <SummerShadingCoefficient>0.8200000000000001</SummerShadingCoefficient>
2075
2122
  <WinterShadingCoefficient>0.91</WinterShadingCoefficient>
2076
2123
  </InteriorShading>
2077
- <AttachedToRoof idref='Roof'/>
2124
+ <AttachedToRoof idref='Roof9'/>
2078
2125
  </Skylight>
2079
2126
  </Skylights>
2080
2127
  <Doors>
2081
2128
  <Door>
2082
- <SystemIdentifier id='DoorNorth'/>
2083
- <AttachedToWall idref='Wall'/>
2084
- <Area>4.444444444444445</Area>
2085
- <Azimuth>0</Azimuth>
2086
- <RValue>4.4</RValue>
2087
- </Door>
2088
- <Door>
2089
- <SystemIdentifier id='DoorSouth'/>
2090
- <AttachedToWall idref='Wall'/>
2129
+ <SystemIdentifier id='Door1'/>
2130
+ <AttachedToWall idref='Wall1'/>
2091
2131
  <Area>4.444444444444445</Area>
2092
2132
  <Azimuth>180</Azimuth>
2093
2133
  <RValue>4.4</RValue>
2094
2134
  </Door>
2095
2135
  <Door>
2096
- <SystemIdentifier id='DoorNorth2'/>
2097
- <AttachedToWall idref='Wall2'/>
2098
- <Area>4.444444444444445</Area>
2099
- <Azimuth>0</Azimuth>
2100
- <RValue>4.42</RValue>
2101
- </Door>
2102
- <Door>
2103
- <SystemIdentifier id='DoorNorth3'/>
2136
+ <SystemIdentifier id='Door2'/>
2104
2137
  <AttachedToWall idref='Wall3'/>
2105
2138
  <Area>4.444444444444445</Area>
2106
- <Azimuth>0</Azimuth>
2107
- <RValue>4.430000000000001</RValue>
2108
- </Door>
2109
- <Door>
2110
- <SystemIdentifier id='DoorNorth4'/>
2111
- <AttachedToWall idref='Wall4'/>
2112
- <Area>4.444444444444445</Area>
2113
- <Azimuth>0</Azimuth>
2114
- <RValue>4.44</RValue>
2115
- </Door>
2116
- <Door>
2117
- <SystemIdentifier id='DoorNorth5'/>
2118
- <AttachedToWall idref='Wall5'/>
2119
- <Area>4.444444444444445</Area>
2120
- <Azimuth>0</Azimuth>
2121
- <RValue>4.45</RValue>
2122
- </Door>
2123
- <Door>
2124
- <SystemIdentifier id='DoorNorth6'/>
2125
- <AttachedToWall idref='Wall6'/>
2126
- <Area>4.444444444444445</Area>
2127
- <Azimuth>0</Azimuth>
2128
- <RValue>4.46</RValue>
2129
- </Door>
2130
- <Door>
2131
- <SystemIdentifier id='DoorNorth7'/>
2132
- <AttachedToWall idref='Wall7'/>
2133
- <Area>4.444444444444445</Area>
2134
- <Azimuth>0</Azimuth>
2135
- <RValue>4.470000000000001</RValue>
2136
- </Door>
2137
- <Door>
2138
- <SystemIdentifier id='DoorNorth8'/>
2139
- <AttachedToWall idref='Wall8'/>
2140
- <Area>4.444444444444445</Area>
2141
- <Azimuth>0</Azimuth>
2142
- <RValue>4.48</RValue>
2143
- </Door>
2144
- <Door>
2145
- <SystemIdentifier id='DoorNorth9'/>
2146
- <AttachedToWall idref='Wall9'/>
2147
- <Area>4.444444444444445</Area>
2148
- <Azimuth>0</Azimuth>
2149
- <RValue>4.49</RValue>
2150
- </Door>
2151
- <Door>
2152
- <SystemIdentifier id='DoorSouth2'/>
2153
- <AttachedToWall idref='Wall2'/>
2154
- <Area>4.444444444444445</Area>
2155
2139
  <Azimuth>180</Azimuth>
2156
2140
  <RValue>4.42</RValue>
2157
2141
  </Door>
2158
2142
  <Door>
2159
- <SystemIdentifier id='DoorSouth3'/>
2160
- <AttachedToWall idref='Wall3'/>
2143
+ <SystemIdentifier id='Door3'/>
2144
+ <AttachedToWall idref='Wall4'/>
2161
2145
  <Area>4.444444444444445</Area>
2162
2146
  <Azimuth>180</Azimuth>
2163
2147
  <RValue>4.430000000000001</RValue>
2164
2148
  </Door>
2165
2149
  <Door>
2166
- <SystemIdentifier id='DoorSouth4'/>
2167
- <AttachedToWall idref='Wall4'/>
2150
+ <SystemIdentifier id='Door4'/>
2151
+ <AttachedToWall idref='Wall5'/>
2168
2152
  <Area>4.444444444444445</Area>
2169
2153
  <Azimuth>180</Azimuth>
2170
2154
  <RValue>4.44</RValue>
2171
2155
  </Door>
2172
2156
  <Door>
2173
- <SystemIdentifier id='DoorSouth5'/>
2174
- <AttachedToWall idref='Wall5'/>
2157
+ <SystemIdentifier id='Door5'/>
2158
+ <AttachedToWall idref='Wall6'/>
2175
2159
  <Area>4.444444444444445</Area>
2176
2160
  <Azimuth>180</Azimuth>
2177
2161
  <RValue>4.45</RValue>
2178
2162
  </Door>
2179
2163
  <Door>
2180
- <SystemIdentifier id='DoorSouth6'/>
2181
- <AttachedToWall idref='Wall6'/>
2164
+ <SystemIdentifier id='Door6'/>
2165
+ <AttachedToWall idref='Wall7'/>
2182
2166
  <Area>4.444444444444445</Area>
2183
2167
  <Azimuth>180</Azimuth>
2184
2168
  <RValue>4.46</RValue>
2185
2169
  </Door>
2186
2170
  <Door>
2187
- <SystemIdentifier id='DoorSouth7'/>
2188
- <AttachedToWall idref='Wall7'/>
2171
+ <SystemIdentifier id='Door7'/>
2172
+ <AttachedToWall idref='Wall8'/>
2189
2173
  <Area>4.444444444444445</Area>
2190
2174
  <Azimuth>180</Azimuth>
2191
2175
  <RValue>4.470000000000001</RValue>
2192
2176
  </Door>
2193
2177
  <Door>
2194
- <SystemIdentifier id='DoorSouth8'/>
2195
- <AttachedToWall idref='Wall8'/>
2178
+ <SystemIdentifier id='Door8'/>
2179
+ <AttachedToWall idref='Wall9'/>
2196
2180
  <Area>4.444444444444445</Area>
2197
2181
  <Azimuth>180</Azimuth>
2198
2182
  <RValue>4.48</RValue>
2199
2183
  </Door>
2200
2184
  <Door>
2201
- <SystemIdentifier id='DoorSouth9'/>
2202
- <AttachedToWall idref='Wall9'/>
2185
+ <SystemIdentifier id='Door9'/>
2186
+ <AttachedToWall idref='Wall10'/>
2203
2187
  <Area>4.444444444444445</Area>
2204
2188
  <Azimuth>180</Azimuth>
2205
2189
  <RValue>4.49</RValue>
2206
2190
  </Door>
2207
2191
  <Door>
2208
- <SystemIdentifier id='TinyDoor'/>
2209
- <AttachedToWall idref='Wall9'/>
2192
+ <SystemIdentifier id='Door10'/>
2193
+ <AttachedToWall idref='Wall10'/>
2210
2194
  <Area>0.05</Area>
2211
2195
  <Azimuth>180</Azimuth>
2212
2196
  <RValue>4.49</RValue>
@@ -2216,9 +2200,13 @@
2216
2200
  <Systems>
2217
2201
  <HVAC>
2218
2202
  <HVACPlant>
2203
+ <PrimarySystems>
2204
+ <PrimaryHeatingSystem idref='HeatingSystem1'/>
2205
+ <PrimaryCoolingSystem idref='CoolingSystem1'/>
2206
+ </PrimarySystems>
2219
2207
  <HeatingSystem>
2220
- <SystemIdentifier id='HeatingSystem'/>
2221
- <DistributionSystem idref='HVACDistribution'/>
2208
+ <SystemIdentifier id='HeatingSystem1'/>
2209
+ <DistributionSystem idref='HVACDistribution1'/>
2222
2210
  <HeatingSystemType>
2223
2211
  <Furnace/>
2224
2212
  </HeatingSystemType>
@@ -2231,8 +2219,8 @@
2231
2219
  <FractionHeatLoadServed>1.0</FractionHeatLoadServed>
2232
2220
  </HeatingSystem>
2233
2221
  <CoolingSystem>
2234
- <SystemIdentifier id='CoolingSystem'/>
2235
- <DistributionSystem idref='HVACDistribution'/>
2222
+ <SystemIdentifier id='CoolingSystem1'/>
2223
+ <DistributionSystem idref='HVACDistribution1'/>
2236
2224
  <CoolingSystemType>central air conditioner</CoolingSystemType>
2237
2225
  <CoolingSystemFuel>electricity</CoolingSystemFuel>
2238
2226
  <CoolingCapacity>24000.0</CoolingCapacity>
@@ -2246,13 +2234,13 @@
2246
2234
  </CoolingSystem>
2247
2235
  </HVACPlant>
2248
2236
  <HVACControl>
2249
- <SystemIdentifier id='HVACControl'/>
2237
+ <SystemIdentifier id='HVACControl1'/>
2250
2238
  <ControlType>manual thermostat</ControlType>
2251
2239
  <SetpointTempHeatingSeason>68.0</SetpointTempHeatingSeason>
2252
2240
  <SetpointTempCoolingSeason>78.0</SetpointTempCoolingSeason>
2253
2241
  </HVACControl>
2254
2242
  <HVACDistribution>
2255
- <SystemIdentifier id='HVACDistribution'/>
2243
+ <SystemIdentifier id='HVACDistribution1'/>
2256
2244
  <DistributionSystemType>
2257
2245
  <AirDistribution>
2258
2246
  <AirDistributionType>regular velocity</AirDistributionType>
@@ -2292,7 +2280,7 @@
2292
2280
  </HVAC>
2293
2281
  <WaterHeating>
2294
2282
  <WaterHeatingSystem>
2295
- <SystemIdentifier id='WaterHeater'/>
2283
+ <SystemIdentifier id='WaterHeatingSystem1'/>
2296
2284
  <FuelType>electricity</FuelType>
2297
2285
  <WaterHeaterType>storage water heater</WaterHeaterType>
2298
2286
  <Location>living space</Location>
@@ -2303,7 +2291,7 @@
2303
2291
  <HotWaterTemperature>125.0</HotWaterTemperature>
2304
2292
  </WaterHeatingSystem>
2305
2293
  <HotWaterDistribution>
2306
- <SystemIdentifier id='HotWaterDistribution'/>
2294
+ <SystemIdentifier id='HotWaterDistribution1'/>
2307
2295
  <SystemType>
2308
2296
  <Standard>
2309
2297
  <PipingLength>50.0</PipingLength>
@@ -2314,7 +2302,7 @@
2314
2302
  </PipeInsulation>
2315
2303
  </HotWaterDistribution>
2316
2304
  <WaterFixture>
2317
- <SystemIdentifier id='WaterFixture'/>
2305
+ <SystemIdentifier id='WaterFixture1'/>
2318
2306
  <WaterFixtureType>shower head</WaterFixtureType>
2319
2307
  <LowFlow>true</LowFlow>
2320
2308
  </WaterFixture>
@@ -2327,7 +2315,7 @@
2327
2315
  </Systems>
2328
2316
  <Appliances>
2329
2317
  <ClothesWasher>
2330
- <SystemIdentifier id='ClothesWasher'/>
2318
+ <SystemIdentifier id='ClothesWasher1'/>
2331
2319
  <Location>living space</Location>
2332
2320
  <IntegratedModifiedEnergyFactor>1.21</IntegratedModifiedEnergyFactor>
2333
2321
  <RatedAnnualkWh>380.0</RatedAnnualkWh>
@@ -2338,17 +2326,15 @@
2338
2326
  <Capacity>3.2</Capacity>
2339
2327
  </ClothesWasher>
2340
2328
  <ClothesDryer>
2341
- <SystemIdentifier id='ClothesDryer'/>
2329
+ <SystemIdentifier id='ClothesDryer1'/>
2342
2330
  <Location>living space</Location>
2343
2331
  <FuelType>electricity</FuelType>
2344
2332
  <CombinedEnergyFactor>3.73</CombinedEnergyFactor>
2345
- <extension>
2346
- <IsVented>true</IsVented>
2347
- <VentedFlowRate>150.0</VentedFlowRate>
2348
- </extension>
2333
+ <Vented>true</Vented>
2334
+ <VentedFlowRate>150.0</VentedFlowRate>
2349
2335
  </ClothesDryer>
2350
2336
  <Dishwasher>
2351
- <SystemIdentifier id='Dishwasher'/>
2337
+ <SystemIdentifier id='Dishwasher1'/>
2352
2338
  <Location>living space</Location>
2353
2339
  <RatedAnnualkWh>307.0</RatedAnnualkWh>
2354
2340
  <PlaceSettingCapacity>12</PlaceSettingCapacity>
@@ -2358,25 +2344,25 @@
2358
2344
  <LabelUsage>4.0</LabelUsage>
2359
2345
  </Dishwasher>
2360
2346
  <Refrigerator>
2361
- <SystemIdentifier id='Refrigerator'/>
2347
+ <SystemIdentifier id='Refrigerator1'/>
2362
2348
  <Location>living space</Location>
2363
2349
  <RatedAnnualkWh>650.0</RatedAnnualkWh>
2364
2350
  <PrimaryIndicator>true</PrimaryIndicator>
2365
2351
  </Refrigerator>
2366
2352
  <CookingRange>
2367
- <SystemIdentifier id='Range'/>
2353
+ <SystemIdentifier id='CookingRange1'/>
2368
2354
  <Location>living space</Location>
2369
2355
  <FuelType>electricity</FuelType>
2370
2356
  <IsInduction>false</IsInduction>
2371
2357
  </CookingRange>
2372
2358
  <Oven>
2373
- <SystemIdentifier id='Oven'/>
2359
+ <SystemIdentifier id='Oven1'/>
2374
2360
  <IsConvection>false</IsConvection>
2375
2361
  </Oven>
2376
2362
  </Appliances>
2377
2363
  <Lighting>
2378
2364
  <LightingGroup>
2379
- <SystemIdentifier id='Lighting_CFL_Interior'/>
2365
+ <SystemIdentifier id='LightingGroup1'/>
2380
2366
  <Location>interior</Location>
2381
2367
  <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
2382
2368
  <LightingType>
@@ -2384,7 +2370,7 @@
2384
2370
  </LightingType>
2385
2371
  </LightingGroup>
2386
2372
  <LightingGroup>
2387
- <SystemIdentifier id='Lighting_CFL_Exterior'/>
2373
+ <SystemIdentifier id='LightingGroup2'/>
2388
2374
  <Location>exterior</Location>
2389
2375
  <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
2390
2376
  <LightingType>
@@ -2392,7 +2378,7 @@
2392
2378
  </LightingType>
2393
2379
  </LightingGroup>
2394
2380
  <LightingGroup>
2395
- <SystemIdentifier id='Lighting_CFL_Garage'/>
2381
+ <SystemIdentifier id='LightingGroup3'/>
2396
2382
  <Location>garage</Location>
2397
2383
  <FractionofUnitsInLocation>0.4</FractionofUnitsInLocation>
2398
2384
  <LightingType>
@@ -2400,7 +2386,7 @@
2400
2386
  </LightingType>
2401
2387
  </LightingGroup>
2402
2388
  <LightingGroup>
2403
- <SystemIdentifier id='Lighting_LFL_Interior'/>
2389
+ <SystemIdentifier id='LightingGroup4'/>
2404
2390
  <Location>interior</Location>
2405
2391
  <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
2406
2392
  <LightingType>
@@ -2408,7 +2394,7 @@
2408
2394
  </LightingType>
2409
2395
  </LightingGroup>
2410
2396
  <LightingGroup>
2411
- <SystemIdentifier id='Lighting_LFL_Exterior'/>
2397
+ <SystemIdentifier id='LightingGroup5'/>
2412
2398
  <Location>exterior</Location>
2413
2399
  <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
2414
2400
  <LightingType>
@@ -2416,7 +2402,7 @@
2416
2402
  </LightingType>
2417
2403
  </LightingGroup>
2418
2404
  <LightingGroup>
2419
- <SystemIdentifier id='Lighting_LFL_Garage'/>
2405
+ <SystemIdentifier id='LightingGroup6'/>
2420
2406
  <Location>garage</Location>
2421
2407
  <FractionofUnitsInLocation>0.1</FractionofUnitsInLocation>
2422
2408
  <LightingType>
@@ -2424,7 +2410,7 @@
2424
2410
  </LightingType>
2425
2411
  </LightingGroup>
2426
2412
  <LightingGroup>
2427
- <SystemIdentifier id='Lighting_LED_Interior'/>
2413
+ <SystemIdentifier id='LightingGroup7'/>
2428
2414
  <Location>interior</Location>
2429
2415
  <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
2430
2416
  <LightingType>
@@ -2432,7 +2418,7 @@
2432
2418
  </LightingType>
2433
2419
  </LightingGroup>
2434
2420
  <LightingGroup>
2435
- <SystemIdentifier id='Lighting_LED_Exterior'/>
2421
+ <SystemIdentifier id='LightingGroup8'/>
2436
2422
  <Location>exterior</Location>
2437
2423
  <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
2438
2424
  <LightingType>
@@ -2440,7 +2426,7 @@
2440
2426
  </LightingType>
2441
2427
  </LightingGroup>
2442
2428
  <LightingGroup>
2443
- <SystemIdentifier id='Lighting_LED_Garage'/>
2429
+ <SystemIdentifier id='LightingGroup9'/>
2444
2430
  <Location>garage</Location>
2445
2431
  <FractionofUnitsInLocation>0.25</FractionofUnitsInLocation>
2446
2432
  <LightingType>
@@ -2450,7 +2436,15 @@
2450
2436
  </Lighting>
2451
2437
  <MiscLoads>
2452
2438
  <PlugLoad>
2453
- <SystemIdentifier id='PlugLoadMisc'/>
2439
+ <SystemIdentifier id='PlugLoad1'/>
2440
+ <PlugLoadType>TV other</PlugLoadType>
2441
+ <Load>
2442
+ <Units>kWh/year</Units>
2443
+ <Value>620.0</Value>
2444
+ </Load>
2445
+ </PlugLoad>
2446
+ <PlugLoad>
2447
+ <SystemIdentifier id='PlugLoad2'/>
2454
2448
  <PlugLoadType>other</PlugLoadType>
2455
2449
  <Load>
2456
2450
  <Units>kWh/year</Units>
@@ -2461,14 +2455,6 @@
2461
2455
  <FracLatent>0.045</FracLatent>
2462
2456
  </extension>
2463
2457
  </PlugLoad>
2464
- <PlugLoad>
2465
- <SystemIdentifier id='PlugLoadMisc2'/>
2466
- <PlugLoadType>TV other</PlugLoadType>
2467
- <Load>
2468
- <Units>kWh/year</Units>
2469
- <Value>620.0</Value>
2470
- </Load>
2471
- </PlugLoad>
2472
2458
  </MiscLoads>
2473
2459
  </BuildingDetails>
2474
2460
  </Building>