urbanopt-cli 0.8.3 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (649) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +5 -6
  3. data/CHANGELOG.md +14 -0
  4. data/CMakeLists.txt +7 -7
  5. data/Gemfile +3 -1
  6. data/README.md +9 -0
  7. data/example_files/Gemfile +23 -16
  8. data/example_files/Gemfile.lock +177 -0
  9. data/example_files/base_workflow_res.osw +57 -14
  10. data/example_files/class_project_coincident.json +1322 -0
  11. data/example_files/class_project_diverse.json +1322 -0
  12. data/example_files/disco/config.json +42 -0
  13. data/example_files/disco/cost_database.xlsx +0 -0
  14. data/example_files/disco/technical_catalog.json +12126 -0
  15. data/example_files/mappers/Baseline.rb +10 -7
  16. data/example_files/mappers/ChilledWaterStorage.rb +98 -0
  17. data/example_files/mappers/ClassProject.rb +110 -0
  18. data/example_files/mappers/CreateBar.rb +1 -0
  19. data/example_files/mappers/HighEfficiency.rb +13 -11
  20. data/example_files/mappers/PeakHoursMelsShedding.rb +72 -0
  21. data/example_files/mappers/PeakHoursThermostatAdjust.rb +78 -0
  22. data/example_files/mappers/ThermalStorage.rb +1 -0
  23. data/example_files/mappers/base_workflow.osw +55 -14
  24. data/example_files/mappers/class_project_workflow.osw +328 -0
  25. data/example_files/mappers/createbar_workflow.osw +16 -16
  26. data/example_files/measures/BuildResidentialModel/measure.rb +7 -1
  27. data/example_files/measures/BuildResidentialModel/measure.xml +1313 -706
  28. data/example_files/opendss/electrical_database.json +1446 -1446
  29. data/example_files/python_deps/dependencies.json +5 -0
  30. data/example_files/python_deps/install_python.ps1 +96 -0
  31. data/example_files/python_deps/install_python.sh +120 -0
  32. data/example_files/residential/clothes_dryer.tsv +11 -11
  33. data/example_files/residential/clothes_washer.tsv +3 -3
  34. data/example_files/residential/dishwasher.tsv +3 -3
  35. data/example_files/resources/hpxml-measures/.github/pull_request_template.md +0 -1
  36. data/example_files/resources/hpxml-measures/.github/workflows/config.yml +8 -21
  37. data/example_files/resources/hpxml-measures/.gitignore +2 -0
  38. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +1272 -1094
  39. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +978 -659
  40. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb +52 -74
  41. data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +77 -140
  42. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.rb +30 -27
  43. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/measure.xml +32 -13
  44. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/resources/schedules.rb +55 -51
  45. data/example_files/resources/hpxml-measures/BuildResidentialScheduleFile/tests/build_residential_schedule_file_test.rb +89 -16
  46. data/example_files/resources/hpxml-measures/Changelog.md +65 -0
  47. data/example_files/resources/hpxml-measures/Gemfile +2 -4
  48. data/example_files/resources/hpxml-measures/Gemfile.lock +2 -13
  49. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb +276 -300
  50. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +221 -215
  51. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb +215 -170
  52. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/battery.rb +108 -16
  53. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb +24 -44
  54. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb +564 -197
  55. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/cambium/README.md +8 -8
  56. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/energyplus.rb +1 -0
  57. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb +7 -55
  58. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +24 -19
  59. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +541 -211
  60. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +300 -172
  61. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXML.xsd +0 -2
  62. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLBaseElements.xsd +230 -141
  63. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLDataTypes.xsd +145 -137
  64. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +191 -97
  65. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/iso-schematron.xsd +391 -0
  66. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb +194 -198
  67. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +140 -145
  68. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb +11 -11
  69. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb +33 -1
  70. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/materials.rb +4 -4
  71. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb +17 -9
  72. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb +14 -12
  73. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/output.rb +39 -17
  74. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/psychrometrics.rb +1 -1
  75. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedule_files/battery.csv +8761 -0
  76. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +114 -57
  77. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb +1 -0
  78. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/utility_bills.rb +148 -0
  79. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb +2 -2
  80. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb +85 -127
  81. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/weather.rb +26 -32
  82. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb +2 -14
  83. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlvalidator.rb +67 -0
  84. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb +117 -56
  85. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_battery.rb +141 -14
  86. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +453 -344
  87. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb +124 -20
  88. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb +1 -1
  89. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb +28 -32
  90. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +172 -79
  91. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +54 -8
  92. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb +3 -3
  93. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb +4 -4
  94. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb +7 -7
  95. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb +1 -1
  96. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_schedules.rb +6 -9
  97. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb +8 -8
  98. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +213 -95
  99. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb +1 -10
  100. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_weather.rb +76 -0
  101. data/example_files/resources/hpxml-measures/README.md +2 -3
  102. data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.rb +585 -287
  103. data/example_files/resources/hpxml-measures/ReportSimulationOutput/measure.xml +304 -352
  104. data/example_files/resources/hpxml-measures/ReportSimulationOutput/tests/output_report_test.rb +404 -279
  105. data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.rb +222 -501
  106. data/example_files/resources/hpxml-measures/ReportUtilityBills/measure.xml +137 -200
  107. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Annual Charge.json +649 -0
  108. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Flat Rate Min Monthly Charge.json +649 -0
  109. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Flat Rate.json +647 -0
  110. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate Min Annual Charge.json +8776 -0
  111. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate Min Monthly Charge.json +8776 -0
  112. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Real-Time Pricing Rate.json +8774 -0
  113. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate Min Annual Charge.json +659 -0
  114. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate Min Monthly Charge.json +659 -0
  115. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Rate.json +657 -0
  116. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate Min Annual Charge.json +670 -0
  117. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate Min Monthly Charge.json +670 -0
  118. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Tiered Time-of-Use Rate.json +668 -0
  119. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate Min Annual Charge.json +655 -0
  120. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate Min Monthly Charge.json +655 -0
  121. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/Sample Time-of-Use Rate.json +653 -0
  122. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/detailed_rates/openei_rates.zip +0 -0
  123. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/Average_retail_price_of_electricity.csv +0 -0
  124. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/HouseholdConsumption.csv +0 -0
  125. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/NG_PRI_SUM_A_EPG0_PRS_DMCF_A.csv +0 -0
  126. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/PET_PRI_WFR_A_EPD2F_PRS_DPGAL_W.csv +0 -0
  127. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/PET_PRI_WFR_A_EPLLPA_PRS_DPGAL_W.csv +0 -0
  128. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/{Data/UtilityRates → simple_rates}/README.md +0 -0
  129. data/example_files/resources/hpxml-measures/ReportUtilityBills/resources/util.rb +506 -25
  130. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Contains Demand Charges.json +1312 -0
  131. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Invalid Fixed Charge Units.json +657 -0
  132. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Invalid Min Charge Units.json +659 -0
  133. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/JacksonElectricMemberCorp-ResidentialSeniorCitizenLowIncomeAssistance.json +681 -0
  134. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/Missing Required Fields.json +54 -0
  135. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/data.csv +8761 -0
  136. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/utility_bills_test.rb +1006 -235
  137. data/example_files/resources/hpxml-measures/docs/source/conf.py +1 -1
  138. data/example_files/resources/hpxml-measures/docs/source/intro.rst +0 -1
  139. data/example_files/resources/hpxml-measures/docs/source/usage_instructions.rst +2 -2
  140. data/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst +461 -261
  141. data/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst +146 -152
  142. data/example_files/resources/hpxml-measures/tasks.rb +616 -802
  143. data/example_files/resources/hpxml-measures/workflow/real_homes/house001.xml +19 -11
  144. data/example_files/resources/hpxml-measures/workflow/real_homes/house002.xml +20 -12
  145. data/example_files/resources/hpxml-measures/workflow/real_homes/house003.xml +12 -7
  146. data/example_files/resources/hpxml-measures/workflow/real_homes/house004.xml +12 -7
  147. data/example_files/resources/hpxml-measures/workflow/real_homes/house005.xml +19 -11
  148. data/example_files/resources/hpxml-measures/workflow/real_homes/house006.xml +12 -7
  149. data/example_files/resources/hpxml-measures/workflow/real_homes/house007.xml +20 -12
  150. data/example_files/resources/hpxml-measures/workflow/real_homes/house008.xml +28 -16
  151. data/example_files/resources/hpxml-measures/workflow/real_homes/house009.xml +28 -17
  152. data/example_files/resources/hpxml-measures/workflow/real_homes/house010.xml +28 -16
  153. data/example_files/resources/hpxml-measures/workflow/real_homes/house011.xml +20 -12
  154. data/example_files/resources/hpxml-measures/workflow/real_homes/house012.xml +20 -12
  155. data/example_files/resources/hpxml-measures/workflow/real_homes/house013.xml +20 -12
  156. data/example_files/resources/hpxml-measures/workflow/real_homes/house014.xml +20 -12
  157. data/example_files/resources/hpxml-measures/workflow/real_homes/house015.xml +20 -12
  158. data/example_files/resources/hpxml-measures/workflow/real_homes/house016.xml +22 -12
  159. data/example_files/resources/hpxml-measures/workflow/real_homes/house017.xml +19 -11
  160. data/example_files/resources/hpxml-measures/workflow/real_homes/house018.xml +20 -12
  161. data/example_files/resources/hpxml-measures/workflow/real_homes/house019.xml +13 -7
  162. data/example_files/resources/hpxml-measures/workflow/real_homes/house020.xml +12 -7
  163. data/example_files/resources/hpxml-measures/workflow/real_homes/house021.xml +31 -16
  164. data/example_files/resources/hpxml-measures/workflow/real_homes/house022.xml +22 -12
  165. data/example_files/resources/hpxml-measures/workflow/real_homes/house023.xml +21 -12
  166. data/example_files/resources/hpxml-measures/workflow/real_homes/house024.xml +37 -22
  167. data/example_files/resources/hpxml-measures/workflow/real_homes/house025.xml +24 -12
  168. data/example_files/resources/hpxml-measures/workflow/real_homes/house026.xml +33 -21
  169. data/example_files/resources/hpxml-measures/workflow/real_homes/house027.xml +28 -16
  170. data/example_files/resources/hpxml-measures/workflow/real_homes/house028.xml +28 -16
  171. data/example_files/resources/hpxml-measures/workflow/real_homes/house029.xml +30 -17
  172. data/example_files/resources/hpxml-measures/workflow/real_homes/house030.xml +10 -7
  173. data/example_files/resources/hpxml-measures/workflow/real_homes/house031.xml +22 -11
  174. data/example_files/resources/hpxml-measures/workflow/real_homes/house032.xml +12 -7
  175. data/example_files/resources/hpxml-measures/workflow/real_homes/house033.xml +18 -12
  176. data/example_files/resources/hpxml-measures/workflow/real_homes/house034.xml +25 -16
  177. data/example_files/resources/hpxml-measures/workflow/real_homes/house035.xml +22 -12
  178. data/example_files/resources/hpxml-measures/workflow/real_homes/house036.xml +20 -12
  179. data/example_files/resources/hpxml-measures/workflow/real_homes/house037.xml +26 -17
  180. data/example_files/resources/hpxml-measures/workflow/real_homes/house038.xml +19 -11
  181. data/example_files/resources/hpxml-measures/workflow/real_homes/house039.xml +25 -16
  182. data/example_files/resources/hpxml-measures/workflow/real_homes/house040.xml +20 -12
  183. data/example_files/resources/hpxml-measures/workflow/real_homes/house041.xml +35 -21
  184. data/example_files/resources/hpxml-measures/workflow/real_homes/house042.xml +28 -17
  185. data/example_files/resources/hpxml-measures/workflow/real_homes/house043.xml +20 -12
  186. data/example_files/resources/hpxml-measures/workflow/real_homes/house044.xml +35 -21
  187. data/example_files/resources/hpxml-measures/workflow/real_homes/house045.xml +20 -12
  188. data/example_files/resources/hpxml-measures/workflow/real_homes/house046.xml +20 -13
  189. data/example_files/resources/hpxml-measures/workflow/real_homes/house047.xml +12 -9
  190. data/example_files/resources/hpxml-measures/workflow/real_homes/house048.xml +25 -14
  191. data/example_files/resources/hpxml-measures/workflow/real_homes/house049.xml +10 -7
  192. data/example_files/resources/hpxml-measures/workflow/real_homes/house050.xml +20 -11
  193. data/example_files/resources/hpxml-measures/workflow/run_simulation.rb +91 -88
  194. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +18 -7
  195. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +546 -535
  196. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +546 -535
  197. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +555 -544
  198. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +18 -7
  199. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +18 -7
  200. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +18 -7
  201. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml +18 -7
  202. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil-location-miami-fl.xml +580 -569
  203. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +18 -7
  204. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane-location-portland-or.xml +580 -569
  205. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +18 -7
  206. data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +18 -7
  207. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +7 -0
  208. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +17 -6
  209. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +7 -0
  210. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +18 -7
  211. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +18 -7
  212. data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +18 -7
  213. data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml +600 -0
  214. data/example_files/resources/hpxml-measures/workflow/sample_files/base-battery.xml +598 -587
  215. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml +494 -485
  216. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml +606 -593
  217. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml +494 -485
  218. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml +494 -485
  219. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml +494 -485
  220. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-calctype-operational.xml +480 -471
  221. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml +464 -457
  222. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml +496 -487
  223. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml +466 -459
  224. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml +518 -509
  225. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml +513 -504
  226. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml +445 -438
  227. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml +476 -467
  228. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml +443 -436
  229. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml +446 -439
  230. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml +494 -485
  231. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml +445 -438
  232. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml +476 -467
  233. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml +446 -439
  234. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml +494 -485
  235. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml +489 -480
  236. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml +499 -490
  237. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +491 -482
  238. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml +510 -0
  239. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml +495 -486
  240. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml +709 -695
  241. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml +528 -519
  242. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml +512 -503
  243. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml +504 -495
  244. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml +497 -488
  245. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml +490 -481
  246. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml +487 -478
  247. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached-2stories.xml +639 -628
  248. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached-atticroof-cathedral.xml +587 -580
  249. data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached.xml +639 -628
  250. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational-misc-defaults.xml +539 -528
  251. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational-misc-loads-large-uncommon.xml +644 -633
  252. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational-misc-loads-large-uncommon2.xml +644 -633
  253. data/example_files/resources/hpxml-measures/workflow/sample_files/base-calctype-operational.xml +575 -564
  254. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +16 -7
  255. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +16 -7
  256. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +18 -7
  257. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +585 -574
  258. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +18 -7
  259. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +18 -7
  260. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +18 -7
  261. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +18 -7
  262. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +18 -7
  263. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml +536 -0
  264. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +16 -7
  265. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +16 -7
  266. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +20 -8
  267. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +16 -7
  268. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +16 -7
  269. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +18 -7
  270. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +18 -7
  271. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +18 -7
  272. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +16 -7
  273. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +18 -7
  274. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +16 -7
  275. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml +18 -7
  276. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +19 -8
  277. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +19 -8
  278. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +19 -8
  279. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +19 -8
  280. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +19 -8
  281. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +18 -7
  282. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +18 -7
  283. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +18 -7
  284. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +18 -7
  285. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +18 -7
  286. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +18 -7
  287. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +18 -7
  288. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml +582 -571
  289. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +583 -572
  290. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +18 -7
  291. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +584 -573
  292. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +584 -573
  293. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +18 -7
  294. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml +583 -572
  295. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml +585 -574
  296. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +18 -7
  297. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +582 -571
  298. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +18 -7
  299. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +18 -7
  300. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +18 -7
  301. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml +586 -575
  302. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml +585 -574
  303. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +18 -7
  304. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +18 -7
  305. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml +580 -569
  306. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +18 -7
  307. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +580 -569
  308. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +18 -7
  309. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +580 -569
  310. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +18 -7
  311. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +18 -7
  312. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +18 -7
  313. data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +18 -7
  314. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +28 -11
  315. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +20 -7
  316. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +18 -7
  317. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +18 -7
  318. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +18 -7
  319. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +18 -7
  320. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml +607 -0
  321. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml +550 -0
  322. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +27 -12
  323. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +18 -7
  324. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +18 -7
  325. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +18 -7
  326. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +18 -7
  327. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +18 -7
  328. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml +589 -578
  329. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +18 -7
  330. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml +18 -7
  331. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml +619 -608
  332. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml +620 -609
  333. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml +618 -607
  334. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +18 -7
  335. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +537 -526
  336. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces.xml +90 -43
  337. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces2.xml +2507 -2460
  338. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml +595 -584
  339. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +19 -8
  340. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml +584 -0
  341. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +18 -7
  342. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml +594 -583
  343. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml +597 -586
  344. data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml +598 -587
  345. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +27 -12
  346. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml +671 -656
  347. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +18 -7
  348. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +18 -7
  349. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-foundation-conditioned-basement-wall-interior-insulation.xml → base-foundation-conditioned-basement-wall-insulation.xml} +585 -574
  350. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +582 -571
  351. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +35 -16
  352. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +18 -7
  353. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +27 -12
  354. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +27 -12
  355. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +27 -12
  356. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +27 -12
  357. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +27 -12
  358. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +27 -12
  359. data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +18 -7
  360. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-backup-lockout-temperature.xml +586 -575
  361. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +573 -562
  362. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +580 -569
  363. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml +583 -0
  364. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +18 -7
  365. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +18 -7
  366. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml +600 -589
  367. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +599 -588
  368. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml +629 -616
  369. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +18 -7
  370. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml +573 -562
  371. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml +579 -568
  372. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +581 -570
  373. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +581 -570
  374. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml +582 -0
  375. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +581 -570
  376. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml +581 -570
  377. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml +581 -570
  378. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml +581 -570
  379. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml +598 -587
  380. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml +628 -615
  381. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml +581 -570
  382. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml +581 -570
  383. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml +581 -570
  384. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-elec-only.xml +535 -526
  385. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-central-ac-1-speed.xml +589 -578
  386. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-boiler-gas-only.xml +536 -527
  387. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-1-speed.xml +18 -7
  388. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-2-speed.xml +565 -554
  389. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-only-var-speed.xml +565 -554
  390. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml +18 -7
  391. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml +582 -571
  392. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml +582 -571
  393. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml +582 -571
  394. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml +18 -7
  395. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-elec-resistance-only.xml +526 -517
  396. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-evap-cooler-furnace-gas.xml +573 -562
  397. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-floor-furnace-propane-only.xml +529 -520
  398. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-elec-only.xml +565 -554
  399. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-2-speed.xml +580 -569
  400. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-central-ac-var-speed.xml +580 -569
  401. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml +565 -554
  402. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-room-ac.xml +578 -567
  403. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +575 -564
  404. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +581 -570
  405. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml +583 -572
  406. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml +583 -572
  407. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml +583 -572
  408. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml +18 -7
  409. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml +18 -7
  410. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml +18 -7
  411. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml +580 -569
  412. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml +580 -569
  413. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml +580 -569
  414. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml +551 -542
  415. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac-with-heating.xml +532 -530
  416. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ptac.xml +525 -516
  417. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-acca.xml +541 -532
  418. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-hers.xml +541 -532
  419. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-pthp-sizing-methodology-maxload.xml +541 -532
  420. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-only.xml +525 -516
  421. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-heating.xml +533 -0
  422. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-acca.xml +542 -0
  423. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-hers.xml +542 -0
  424. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-room-ac-with-reverse-cycle-sizing-methodology-maxload.xml +542 -0
  425. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-stove-oil-only.xml +529 -520
  426. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-wall-furnace-elec-only.xml +529 -520
  427. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml +580 -569
  428. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +16 -7
  429. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +16 -7
  430. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +18 -7
  431. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +16 -7
  432. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +16 -7
  433. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +16 -7
  434. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +16 -7
  435. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml +567 -0
  436. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +18 -7
  437. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +18 -7
  438. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +18 -7
  439. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +18 -7
  440. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +16 -7
  441. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml +18 -7
  442. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +18 -7
  443. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +18 -7
  444. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +18 -7
  445. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +18 -7
  446. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml +611 -598
  447. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml +589 -0
  448. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +582 -571
  449. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +18 -7
  450. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +16 -7
  451. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +18 -7
  452. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +17 -7
  453. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml +16 -7
  454. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml +530 -521
  455. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml +530 -521
  456. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +530 -521
  457. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml +566 -555
  458. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +18 -7
  459. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +18 -7
  460. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +18 -7
  461. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +18 -7
  462. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml +566 -555
  463. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +566 -555
  464. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +18 -7
  465. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +18 -7
  466. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +18 -7
  467. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +18 -7
  468. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +16 -7
  469. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +574 -563
  470. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +581 -570
  471. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +583 -572
  472. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +587 -576
  473. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml +587 -576
  474. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml +587 -576
  475. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +591 -580
  476. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml +591 -580
  477. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml +591 -580
  478. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml +570 -559
  479. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +586 -575
  480. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +570 -559
  481. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +586 -575
  482. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +18 -7
  483. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +16 -7
  484. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +18 -7
  485. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +18 -7
  486. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +18 -7
  487. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +552 -543
  488. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +16 -7
  489. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +963 -938
  490. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml +33 -69
  491. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml +530 -521
  492. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +535 -0
  493. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-ptac-with-heating.xml → base-hvac-ptac-with-heating-natural-gas.xml} +23 -21
  494. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml +526 -517
  495. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml +541 -532
  496. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +16 -7
  497. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +526 -517
  498. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml +526 -517
  499. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +16 -7
  500. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml +535 -0
  501. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml +542 -0
  502. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml +594 -583
  503. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml +586 -575
  504. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml +18 -7
  505. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +18 -7
  506. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml +530 -521
  507. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +530 -521
  508. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml +18 -7
  509. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +18 -7
  510. data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +530 -521
  511. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml +18 -7
  512. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml +18 -7
  513. data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml +18 -7
  514. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +18 -7
  515. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +27 -12
  516. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml +591 -576
  517. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +18 -7
  518. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +27 -12
  519. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml +582 -571
  520. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml +537 -526
  521. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +18 -7
  522. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml +537 -526
  523. data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml +601 -586
  524. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +18 -7
  525. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +18 -7
  526. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +601 -587
  527. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +19 -7
  528. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +20 -7
  529. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +607 -0
  530. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml +607 -0
  531. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +21 -7
  532. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +18 -7
  533. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +18 -7
  534. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +18 -7
  535. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +18 -7
  536. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +18 -7
  537. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +18 -7
  538. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +37 -19
  539. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +18 -7
  540. data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +18 -7
  541. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml +590 -579
  542. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-none.xml +578 -0
  543. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml +632 -0
  544. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml +614 -0
  545. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml +677 -0
  546. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-bills.xml +593 -0
  547. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml +27 -9
  548. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-emissions.xml +676 -665
  549. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml +616 -0
  550. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml +615 -0
  551. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml +598 -587
  552. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml +586 -0
  553. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml +18 -7
  554. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml +18 -7
  555. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +18 -7
  556. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +18 -7
  557. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml +583 -572
  558. data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +18 -7
  559. data/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml +1700 -1677
  560. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml +622 -611
  561. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml +697 -682
  562. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-pv-battery-lifetime-model.xml → base-pv-battery-round-trip-efficiency.xml} +20 -11
  563. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml +624 -0
  564. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-battery.xml +622 -611
  565. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml +640 -0
  566. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml +639 -0
  567. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv-generators.xml +623 -0
  568. data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml +606 -595
  569. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml +582 -571
  570. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-smooth.xml +583 -572
  571. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml +584 -0
  572. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml +583 -572
  573. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml +583 -572
  574. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml +581 -570
  575. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml +581 -570
  576. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml +581 -570
  577. data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-simple.xml +636 -625
  578. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +18 -7
  579. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +27 -14
  580. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +21 -10
  581. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +21 -10
  582. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-dhw-tank-heat-pump-detailed-operating-modes.xml → base-simcontrol-temperature-capacitance-multiplier.xml} +25 -13
  583. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml +584 -0
  584. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml +584 -0
  585. data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +18 -7
  586. data/example_files/resources/hpxml-measures/workflow/sample_files/{base-dhw-tank-heat-pump-detailed-setpoints.xml → base-simcontrol-timestep-30-mins.xml} +25 -14
  587. data/example_files/resources/hpxml-measures/workflow/sample_files/base.xml +18 -7
  588. data/example_files/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw +18 -13
  589. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml-with-stochastic-occupancy.osw +12 -7
  590. data/example_files/resources/hpxml-measures/workflow/template-run-hpxml.osw +8 -24
  591. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml +366 -358
  592. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml +369 -361
  593. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml +369 -361
  594. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml +369 -361
  595. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml +369 -361
  596. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml +369 -361
  597. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml +369 -361
  598. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml +369 -361
  599. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml +311 -303
  600. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml +311 -303
  601. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml +327 -319
  602. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml +327 -319
  603. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml +332 -324
  604. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml +332 -324
  605. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml +341 -333
  606. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml +341 -333
  607. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml +369 -361
  608. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml +369 -361
  609. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml +369 -361
  610. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml +369 -361
  611. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml +369 -361
  612. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml +369 -361
  613. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml +383 -379
  614. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml +383 -379
  615. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml +538 -534
  616. data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml +550 -546
  617. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results.csv +444 -410
  618. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_ashrae_140.csv +8 -8
  619. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_bills.csv +444 -410
  620. data/example_files/resources/hpxml-measures/workflow/tests/compare.py +18 -4
  621. data/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb +133 -288
  622. data/example_files/scripts/convert_urbanopt_to_disco.py +130 -0
  623. data/example_files/scripts/default_control_changes.csv +8 -0
  624. data/example_files/scripts/default_voltage_regulators.csv +3 -0
  625. data/example_files/scripts/read_data.py +331 -0
  626. data/example_files/visualization/input_visualization_feature.html +172 -81
  627. data/example_files/visualization/input_visualization_scenario.html +178 -82
  628. data/example_files/xml_building/17/README.md +2 -2
  629. data/example_files/xml_building/17/unit 1.xml +40 -41
  630. data/example_files/xml_building/17/unit 2.xml +35 -36
  631. data/example_files/xml_building/17/unit 3.xml +35 -36
  632. data/example_files/xml_building/17/unit 4.xml +41 -42
  633. data/lib/uo_cli/version.rb +1 -1
  634. data/lib/uo_cli.rb +596 -96
  635. data/uo_cli.gemspec +6 -5
  636. metadata +121 -36
  637. data/example_files/residential/exhaust.tsv +0 -3
  638. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/hvac_equipment_efficiency.csv +0 -493
  639. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/data/water_heater_efficiency.csv +0 -157
  640. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/HPXMLvalidator.xml +0 -620
  641. data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/validator.rb +0 -107
  642. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/measure.rb +0 -450
  643. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/measure.xml +0 -85
  644. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/resources/constants.rb +0 -72
  645. data/example_files/resources/hpxml-measures/ReportHPXMLOutput/tests/hpxml_output_report_test.rb +0 -290
  646. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/PV_10kW.csv +0 -8761
  647. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/PV_1kW.csv +0 -8761
  648. data/example_files/resources/hpxml-measures/ReportUtilityBills/tests/PV_None.csv +0 -8761
  649. data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_hvac_sizing.csv +0 -410
@@ -0,0 +1,1322 @@
1
+ {
2
+ "type": "FeatureCollection",
3
+ "project": {
4
+ "id": "fce0aefb-163d-4efe-bcb4-25b886e2dcb8",
5
+ "name": "New Project",
6
+ "surface_elevation": 176,
7
+ "import_surrounding_buildings_as_shading": null,
8
+ "weather_filename": "USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw",
9
+ "tariff_filename": null,
10
+ "climate_zone": "6A",
11
+ "cec_climate_zone": null,
12
+ "begin_date": "2017-01-01T07:00:00.000Z",
13
+ "end_date": "2017-12-31T07:00:00.000Z",
14
+ "timesteps_per_hour": 1,
15
+ "default_template": "90.1-2013"
16
+ },
17
+ "features": [
18
+ {
19
+ "type": "Feature",
20
+ "properties": {
21
+ "id": "703cb361-cebc-4c7b-a251-53a3680df5b9",
22
+ "name": "Site Origin",
23
+ "type": "Site Origin",
24
+ "begin_date": "2017-01-01T07:00:00.000Z",
25
+ "end_date": "2017-01-02T07:00:00.000Z",
26
+ "cec_climate_zone": null,
27
+ "climate_zone": "6A",
28
+ "default_template": "90.1-2013",
29
+ "import_surrounding_buildings_as_shading": null,
30
+ "surface_elevation": 176,
31
+ "tariff_filename": null,
32
+ "timesteps_per_hour": 1,
33
+ "weather_filename": "USA_NY_Buffalo-Greater.Buffalo.Intl.AP.725280_TMY3.epw",
34
+ "only_lv_customers": null,
35
+ "underground_cables_ratio": null,
36
+ "max_number_of_lv_nodes_per_building": null
37
+ },
38
+ "geometry": {
39
+ "type": "Point",
40
+ "coordinates": [
41
+ -78.84984479858313,
42
+ 42.822010107024454
43
+ ]
44
+ }
45
+ },
46
+ {
47
+ "type": "Feature",
48
+ "properties": {
49
+ "id": "1",
50
+ "name": "mall_1",
51
+ "type": "Building",
52
+ "footprint_area": 44102,
53
+ "footprint_perimeter": 840,
54
+ "building_type": "Enclosed mall",
55
+ "number_of_stories": 2,
56
+ "weekday_start_time": "11:00",
57
+ "weekday_duration": "8:00",
58
+ "weekend_start_time": "11:00",
59
+ "weekend_duration": "8:00",
60
+ "floor_area": 88204
61
+ },
62
+ "geometry": {
63
+ "type": "Polygon",
64
+ "coordinates": [
65
+ [
66
+ [
67
+ -78.85264914739417,
68
+ 42.82051134901141
69
+ ],
70
+ [
71
+ -78.85188192954766,
72
+ 42.82071387618734
73
+ ],
74
+ [
75
+ -78.85213715535123,
76
+ 42.82123404026666
77
+ ],
78
+ [
79
+ -78.85290437319775,
80
+ 42.821031514794555
81
+ ],
82
+ [
83
+ -78.85264914739417,
84
+ 42.82051134901141
85
+ ]
86
+ ]
87
+ ]
88
+ }
89
+ },
90
+ {
91
+ "type": "Feature",
92
+ "properties": {
93
+ "id": "2",
94
+ "name": "hotel_1",
95
+ "type": "Building",
96
+ "footprint_area": 21137,
97
+ "footprint_perimeter": 768,
98
+ "building_type": "Lodging",
99
+ "number_of_stories": 6,
100
+ "weekday_start_time": "7:00",
101
+ "weekday_duration": "8:00",
102
+ "weekend_start_time": "7:00",
103
+ "weekend_duration": "8:00",
104
+ "floor_area": 126822
105
+ },
106
+ "geometry": {
107
+ "type": "Polygon",
108
+ "coordinates": [
109
+ [
110
+ [
111
+ -78.84996604224372,
112
+ 42.82135570954273
113
+ ],
114
+ [
115
+ -78.85010773343716,
116
+ 42.82164448144968
117
+ ],
118
+ [
119
+ -78.85056937730309,
120
+ 42.82151634783165
121
+ ],
122
+ [
123
+ -78.85063477323853,
124
+ 42.82164962699463
125
+ ],
126
+ [
127
+ -78.84985402840056,
128
+ 42.82185363032286
129
+ ],
130
+ [
131
+ -78.8496505743792,
132
+ 42.821438984462645
133
+ ],
134
+ [
135
+ -78.84996604224372,
136
+ 42.82135570954273
137
+ ]
138
+ ]
139
+ ]
140
+ }
141
+ },
142
+ {
143
+ "type": "Feature",
144
+ "properties": {
145
+ "id": "3",
146
+ "name": "office_1",
147
+ "type": "Building",
148
+ "footprint_area": 7202,
149
+ "footprint_perimeter": 375,
150
+ "building_type": "Office",
151
+ "number_of_stories": 3,
152
+ "weekday_start_time": "9:00",
153
+ "weekday_duration": "8:00",
154
+ "weekend_start_time": "9:00",
155
+ "weekend_duration": "8:00",
156
+ "floor_area": 21606
157
+ },
158
+ "geometry": {
159
+ "type": "Polygon",
160
+ "coordinates": [
161
+ [
162
+ [
163
+ -78.8514206022935,
164
+ 42.82128777889886
165
+ ],
166
+ [
167
+ -78.8509511861111,
168
+ 42.82141169207529
169
+ ],
170
+ [
171
+ -78.85101930687718,
172
+ 42.821550524765485
173
+ ],
174
+ [
175
+ -78.85148872305959,
176
+ 42.82142661186734
177
+ ],
178
+ [
179
+ -78.8514206022935,
180
+ 42.82128777889886
181
+ ]
182
+ ]
183
+ ]
184
+ }
185
+ },
186
+ {
187
+ "type": "Feature",
188
+ "properties": {
189
+ "id": "4",
190
+ "name": "office_2",
191
+ "type": "Building",
192
+ "footprint_area": 9319,
193
+ "footprint_perimeter": 409,
194
+ "building_type": "Office",
195
+ "number_of_stories": 6,
196
+ "weekday_start_time": "9:00",
197
+ "weekday_duration": "8:00",
198
+ "weekend_start_time": "9:00",
199
+ "weekend_duration": "8:00",
200
+ "floor_area": 55914
201
+ },
202
+ "geometry": {
203
+ "type": "Polygon",
204
+ "coordinates": [
205
+ [
206
+ [
207
+ -78.85166261042086,
208
+ 42.82097926278058
209
+ ],
210
+ [
211
+ -78.85142285484383,
212
+ 42.82104255211539
213
+ ],
214
+ [
215
+ -78.85159542745123,
216
+ 42.821394263091605
217
+ ],
218
+ [
219
+ -78.85183518302826,
220
+ 42.82133097411679
221
+ ],
222
+ [
223
+ -78.85166261042086,
224
+ 42.82097926278058
225
+ ]
226
+ ]
227
+ ]
228
+ }
229
+ },
230
+ {
231
+ "type": "Feature",
232
+ "properties": {
233
+ "id": "5",
234
+ "name": "office_3",
235
+ "type": "Building",
236
+ "footprint_area": 14542,
237
+ "footprint_perimeter": 640,
238
+ "building_type": "Office",
239
+ "number_of_stories": 3,
240
+ "weekday_start_time": "9:00",
241
+ "weekday_duration": "8:00",
242
+ "weekend_start_time": "9:00",
243
+ "weekend_duration": "8:00",
244
+ "floor_area": 43626
245
+ },
246
+ "geometry": {
247
+ "type": "Polygon",
248
+ "coordinates": [
249
+ [
250
+ [
251
+ -78.85114489506135,
252
+ 42.82068520457
253
+ ],
254
+ [
255
+ -78.85129175795923,
256
+ 42.82079279848986
257
+ ],
258
+ [
259
+ -78.8506181762648,
260
+ 42.821319783129866
261
+ ],
262
+ [
263
+ -78.85046737524566,
264
+ 42.821221593172794
265
+ ],
266
+ [
267
+ -78.85114489506135,
268
+ 42.82068520457
269
+ ]
270
+ ]
271
+ ]
272
+ }
273
+ },
274
+ {
275
+ "type": "Feature",
276
+ "properties": {
277
+ "id": "6",
278
+ "name": "office_4",
279
+ "type": "Building",
280
+ "footprint_area": 7191,
281
+ "footprint_perimeter": 378,
282
+ "building_type": "Office",
283
+ "number_of_stories": 2,
284
+ "floor_area": 14382,
285
+ "number_of_stories_above_ground": 2,
286
+ "number_of_bedrooms": 4,
287
+ "weekday_start_time": "9:00",
288
+ "weekday_duration": "8:00",
289
+ "weekend_start_time": "9:00",
290
+ "weekend_duration": "8:00",
291
+ "template": "90.1-2013"
292
+ },
293
+ "geometry": {
294
+ "type": "Polygon",
295
+ "coordinates": [
296
+ [
297
+ [
298
+ -78.84952192772535,
299
+ 42.820067131029674
300
+ ],
301
+ [
302
+ -78.84933643262102,
303
+ 42.82011609771672
304
+ ],
305
+ [
306
+ -78.84950855108998,
307
+ 42.82046688839665
308
+ ],
309
+ [
310
+ -78.8496940461943,
311
+ 42.82041792198737
312
+ ],
313
+ [
314
+ -78.84952192772535,
315
+ 42.820067131029674
316
+ ]
317
+ ]
318
+ ]
319
+ }
320
+ },
321
+ {
322
+ "type": "Feature",
323
+ "properties": {
324
+ "id": "7",
325
+ "name": "office_5",
326
+ "type": "Building",
327
+ "footprint_area": 6983,
328
+ "footprint_perimeter": 375,
329
+ "building_type": "Office",
330
+ "number_of_stories": 2,
331
+ "floor_area": 13966,
332
+ "number_of_stories_above_ground": 2,
333
+ "number_of_bedrooms": 4,
334
+ "weekday_start_time": "9:00",
335
+ "weekday_duration": "8:00",
336
+ "weekend_start_time": "9:00",
337
+ "weekend_duration": "8:00",
338
+ "template": "90.1-2013"
339
+ },
340
+ "geometry": {
341
+ "type": "Polygon",
342
+ "coordinates": [
343
+ [
344
+ [
345
+ -78.849324124453,
346
+ 42.81966979981971
347
+ ],
348
+ [
349
+ -78.84914493870596,
350
+ 42.8197171012778
351
+ ],
352
+ [
353
+ -78.84931796545179,
354
+ 42.820069745366226
355
+ ],
356
+ [
357
+ -78.84949715119886,
358
+ 42.82002244417791
359
+ ],
360
+ [
361
+ -78.849324124453,
362
+ 42.81966979981971
363
+ ]
364
+ ]
365
+ ]
366
+ }
367
+ },
368
+ {
369
+ "type": "Feature",
370
+ "properties": {
371
+ "id": "8",
372
+ "name": "office_6",
373
+ "type": "Building",
374
+ "footprint_area": 6615,
375
+ "footprint_perimeter": 364,
376
+ "building_type": "Office",
377
+ "number_of_stories": 2,
378
+ "floor_area": 13230,
379
+ "number_of_stories_above_ground": 2,
380
+ "number_of_bedrooms": 4,
381
+ "weekday_start_time": "9:00",
382
+ "weekday_duration": "8:00",
383
+ "weekend_start_time": "9:00",
384
+ "weekend_duration": "8:00",
385
+ "template": "90.1-2013"
386
+ },
387
+ "geometry": {
388
+ "type": "Polygon",
389
+ "coordinates": [
390
+ [
391
+ [
392
+ -78.8503016067586,
393
+ 42.820659515674805
394
+ ],
395
+ [
396
+ -78.85044372718437,
397
+ 42.820751634439915
398
+ ],
399
+ [
400
+ -78.85009981408426,
401
+ 42.821015226482785
402
+ ],
403
+ [
404
+ -78.84996778863015,
405
+ 42.82092044329238
406
+ ],
407
+ [
408
+ -78.8503016067586,
409
+ 42.820659515674805
410
+ ]
411
+ ]
412
+ ]
413
+ }
414
+ },
415
+ {
416
+ "type": "Feature",
417
+ "properties": {
418
+ "id": "9",
419
+ "name": "office_7",
420
+ "type": "Building",
421
+ "footprint_area": 6527,
422
+ "footprint_perimeter": 362,
423
+ "building_type": "Office",
424
+ "number_of_stories": 2,
425
+ "floor_area": 13054,
426
+ "number_of_stories_above_ground": 2,
427
+ "number_of_bedrooms": 4,
428
+ "weekday_start_time": "9:00",
429
+ "weekday_duration": "8:00",
430
+ "weekend_start_time": "9:00",
431
+ "weekend_duration": "8:00",
432
+ "template": "90.1-2013"
433
+ },
434
+ "geometry": {
435
+ "type": "Polygon",
436
+ "coordinates": [
437
+ [
438
+ [
439
+ -78.85043991277222,
440
+ 42.82055234770493
441
+ ],
442
+ [
443
+ -78.85057355369236,
444
+ 42.8206446141246
445
+ ],
446
+ [
447
+ -78.85091115227259,
448
+ 42.82037986081579
449
+ ],
450
+ [
451
+ -78.85076994012371,
452
+ 42.820289592634964
453
+ ],
454
+ [
455
+ -78.85043991277222,
456
+ 42.82055234770493
457
+ ]
458
+ ]
459
+ ]
460
+ }
461
+ },
462
+ {
463
+ "type": "Feature",
464
+ "properties": {
465
+ "id": "10",
466
+ "name": "res_1",
467
+ "type": "Building",
468
+ "footprint_area": 2248,
469
+ "footprint_perimeter": 189,
470
+ "building_type": "Single-Family Detached",
471
+ "number_of_stories": 2,
472
+ "floor_area": 4496,
473
+ "number_of_stories_above_ground": 2,
474
+ "number_of_bedrooms": 4,
475
+ "foundation_type": "crawlspace - unvented",
476
+ "attic_type": "attic - vented",
477
+ "system_type": "Residential - electric resistance and no cooling",
478
+ "heating_system_fuel_type": "electricity",
479
+ "template": "Residential IECC 2015 - Customizable Template Sep 2020"
480
+ },
481
+ "geometry": {
482
+ "type": "Polygon",
483
+ "coordinates": [
484
+ [
485
+ [
486
+ -78.85038533283176,
487
+ 42.81905267394876
488
+ ],
489
+ [
490
+ -78.8502212895422,
491
+ 42.81909597853411
492
+ ],
493
+ [
494
+ -78.85028214409326,
495
+ 42.819220007064075
496
+ ],
497
+ [
498
+ -78.85044618738281,
499
+ 42.81917670256553
500
+ ],
501
+ [
502
+ -78.85038533283176,
503
+ 42.81905267394876
504
+ ]
505
+ ]
506
+ ]
507
+ }
508
+ },
509
+ {
510
+ "type": "Feature",
511
+ "properties": {
512
+ "id": "11",
513
+ "name": "res_2",
514
+ "type": "Building",
515
+ "footprint_area": 2304,
516
+ "footprint_perimeter": 192,
517
+ "building_type": "Single-Family Detached",
518
+ "number_of_stories": 2,
519
+ "floor_area": 4608,
520
+ "number_of_stories_above_ground": 2,
521
+ "number_of_bedrooms": 4,
522
+ "foundation_type": "crawlspace - unvented",
523
+ "attic_type": "attic - vented",
524
+ "system_type": "Residential - electric resistance and no cooling",
525
+ "heating_system_fuel_type": "electricity",
526
+ "template": "Residential IECC 2015 - Customizable Template Sep 2020"
527
+ },
528
+ "geometry": {
529
+ "type": "Polygon",
530
+ "coordinates": [
531
+ [
532
+ [
533
+ -78.85017586216975,
534
+ 42.81910797056781
535
+ ],
536
+ [
537
+ -78.8500116684338,
538
+ 42.81915131482961
539
+ ],
540
+ [
541
+ -78.85007396277759,
542
+ 42.81927827770508
543
+ ],
544
+ [
545
+ -78.85023815651353,
546
+ 42.81923493353227
547
+ ],
548
+ [
549
+ -78.85017586216975,
550
+ 42.81910797056781
551
+ ]
552
+ ]
553
+ ]
554
+ }
555
+ },
556
+ {
557
+ "type": "Feature",
558
+ "properties": {
559
+ "id": "12",
560
+ "name": "res_3",
561
+ "type": "Building",
562
+ "footprint_area": 2282,
563
+ "footprint_perimeter": 191,
564
+ "building_type": "Single-Family Detached",
565
+ "number_of_stories": 2,
566
+ "floor_area": 4564,
567
+ "number_of_stories_above_ground": 2,
568
+ "number_of_bedrooms": 4,
569
+ "foundation_type": "crawlspace - unvented",
570
+ "attic_type": "attic - vented",
571
+ "system_type": "Residential - electric resistance and no cooling",
572
+ "heating_system_fuel_type": "electricity",
573
+ "template": "Residential IECC 2015 - Customizable Template Sep 2020"
574
+ },
575
+ "geometry": {
576
+ "type": "Polygon",
577
+ "coordinates": [
578
+ [
579
+ [
580
+ -78.84996586430029,
581
+ 42.81916253897066
582
+ ],
583
+ [
584
+ -78.84980182101073,
585
+ 42.81920584347907
586
+ ],
587
+ [
588
+ -78.84986358383865,
589
+ 42.819331722955525
590
+ ],
591
+ [
592
+ -78.85002762712821,
593
+ 42.81928841853528
594
+ ],
595
+ [
596
+ -78.84996586430029,
597
+ 42.81916253897066
598
+ ]
599
+ ]
600
+ ]
601
+ }
602
+ },
603
+ {
604
+ "type": "Feature",
605
+ "properties": {
606
+ "id": "13",
607
+ "name": "res_4",
608
+ "type": "Building",
609
+ "footprint_area": 2212,
610
+ "footprint_perimeter": 188,
611
+ "building_type": "Single-Family Detached",
612
+ "number_of_stories": 2,
613
+ "floor_area": 4424,
614
+ "number_of_stories_above_ground": 2,
615
+ "number_of_bedrooms": 4,
616
+ "foundation_type": "crawlspace - unvented",
617
+ "attic_type": "attic - vented",
618
+ "system_type": "Residential - electric resistance and no cooling",
619
+ "heating_system_fuel_type": "electricity",
620
+ "template": "Residential IECC 2015 - Customizable Template Sep 2020"
621
+ },
622
+ "geometry": {
623
+ "type": "Polygon",
624
+ "coordinates": [
625
+ [
626
+ [
627
+ -78.84975846582189,
628
+ 42.81921680795014
629
+ ],
630
+ [
631
+ -78.84959947001819,
632
+ 42.81925877997574
633
+ ],
634
+ [
635
+ -78.84966123284607,
636
+ 42.81938465934445
637
+ ],
638
+ [
639
+ -78.8498202286498,
640
+ 42.81934268740426
641
+ ],
642
+ [
643
+ -78.84975846582189,
644
+ 42.81921680795014
645
+ ]
646
+ ]
647
+ ]
648
+ }
649
+ },
650
+ {
651
+ "type": "Feature",
652
+ "properties": {
653
+ "id": "14",
654
+ "name": "res_5",
655
+ "type": "Building",
656
+ "footprint_area": 2412,
657
+ "footprint_perimeter": 206,
658
+ "building_type": "Single-Family Detached",
659
+ "number_of_stories": 2,
660
+ "floor_area": 4824,
661
+ "number_of_stories_above_ground": 2,
662
+ "number_of_bedrooms": 4,
663
+ "foundation_type": "crawlspace - unvented",
664
+ "attic_type": "attic - vented",
665
+ "system_type": "Residential - electric resistance and no cooling",
666
+ "heating_system_fuel_type": "electricity",
667
+ "template": "Residential IECC 2015 - Customizable Template Sep 2020"
668
+ },
669
+ "geometry": {
670
+ "type": "Polygon",
671
+ "coordinates": [
672
+ [
673
+ [
674
+ -78.85047854718988,
675
+ 42.81929719488102
676
+ ],
677
+ [
678
+ -78.8503530162275,
679
+ 42.81933269736737
680
+ ],
681
+ [
682
+ -78.8504452085442,
683
+ 42.819503610235444
684
+ ],
685
+ [
686
+ -78.85057027163133,
687
+ 42.819466605177496
688
+ ],
689
+ [
690
+ -78.85047854718988,
691
+ 42.81929719488102
692
+ ]
693
+ ]
694
+ ]
695
+ }
696
+ },
697
+ {
698
+ "type": "Feature",
699
+ "properties": {
700
+ "id": "15",
701
+ "name": "res_6",
702
+ "type": "Building",
703
+ "footprint_area": 2206,
704
+ "footprint_perimeter": 199,
705
+ "building_type": "Single-Family Detached",
706
+ "number_of_stories": 2,
707
+ "floor_area": 4412,
708
+ "number_of_stories_above_ground": 2,
709
+ "number_of_bedrooms": 4,
710
+ "foundation_type": "crawlspace - unvented",
711
+ "attic_type": "attic - vented",
712
+ "system_type": "Residential - electric resistance and no cooling",
713
+ "heating_system_fuel_type": "electricity",
714
+ "template": "Residential IECC 2015 - Customizable Template Sep 2020"
715
+ },
716
+ "geometry": {
717
+ "type": "Polygon",
718
+ "coordinates": [
719
+ [
720
+ [
721
+ -78.85031322293278,
722
+ 42.81934636469157
723
+ ],
724
+ [
725
+ -78.85039963666922,
726
+ 42.81951268892027
727
+ ],
728
+ [
729
+ -78.85028429441212,
730
+ 42.81954853748621
731
+ ],
732
+ [
733
+ -78.85019607564655,
734
+ 42.81937663234157
735
+ ],
736
+ [
737
+ -78.85031322293278,
738
+ 42.81934636469157
739
+ ]
740
+ ]
741
+ ]
742
+ }
743
+ },
744
+ {
745
+ "type": "Feature",
746
+ "properties": {
747
+ "id": "16",
748
+ "name": "res_7",
749
+ "type": "Building",
750
+ "footprint_area": 2112,
751
+ "footprint_perimeter": 195,
752
+ "building_type": "Single-Family Detached",
753
+ "number_of_stories": 2,
754
+ "floor_area": 4224,
755
+ "number_of_stories_above_ground": 2,
756
+ "number_of_bedrooms": 4,
757
+ "foundation_type": "crawlspace - unvented",
758
+ "attic_type": "attic - vented",
759
+ "system_type": "Residential - electric resistance and no cooling",
760
+ "heating_system_fuel_type": "electricity",
761
+ "template": "Residential IECC 2015 - Customizable Template Sep 2020"
762
+ },
763
+ "geometry": {
764
+ "type": "Polygon",
765
+ "coordinates": [
766
+ [
767
+ [
768
+ -78.85014508303539,
769
+ 42.81939597660815
770
+ ],
771
+ [
772
+ -78.85023661048791,
773
+ 42.819561539936274
774
+ ],
775
+ [
776
+ -78.85012424086725,
777
+ 42.81959406784682
778
+ ],
779
+ [
780
+ -78.85003271341472,
781
+ 42.81942850460581
782
+ ],
783
+ [
784
+ -78.85014508303539,
785
+ 42.81939597660815
786
+ ]
787
+ ]
788
+ ]
789
+ }
790
+ },
791
+ {
792
+ "type": "Feature",
793
+ "properties": {
794
+ "id": "17",
795
+ "name": "res_8",
796
+ "type": "Building",
797
+ "footprint_area": 2085,
798
+ "footprint_perimeter": 192,
799
+ "building_type": "Single-Family Detached",
800
+ "number_of_stories": 2,
801
+ "floor_area": 4170,
802
+ "number_of_stories_above_ground": 2,
803
+ "number_of_bedrooms": 4,
804
+ "foundation_type": "crawlspace - unvented",
805
+ "attic_type": "attic - vented",
806
+ "system_type": "Residential - electric resistance and no cooling",
807
+ "heating_system_fuel_type": "electricity",
808
+ "template": "Residential IECC 2015 - Customizable Template Sep 2020"
809
+ },
810
+ "geometry": {
811
+ "type": "Polygon",
812
+ "coordinates": [
813
+ [
814
+ [
815
+ -78.84999615202318,
816
+ 42.819448093904896
817
+ ],
818
+ [
819
+ -78.85007820073768,
820
+ 42.81960828231158
821
+ ],
822
+ [
823
+ -78.84996097024627,
824
+ 42.81964017136036
825
+ ],
826
+ [
827
+ -78.8498802369335,
828
+ 42.8194773967509
829
+ ],
830
+ [
831
+ -78.84999615202318,
832
+ 42.819448093904896
833
+ ]
834
+ ]
835
+ ]
836
+ }
837
+ },
838
+ {
839
+ "type": "Feature",
840
+ "properties": {
841
+ "id": "18",
842
+ "name": "res_9",
843
+ "type": "Building",
844
+ "footprint_area": 2126,
845
+ "footprint_perimeter": 193,
846
+ "building_type": "Single-Family Detached",
847
+ "number_of_stories": 2,
848
+ "floor_area": 4252,
849
+ "number_of_stories_above_ground": 2,
850
+ "number_of_bedrooms": 4,
851
+ "foundation_type": "crawlspace - unvented",
852
+ "attic_type": "attic - vented",
853
+ "system_type": "Residential - electric resistance and no cooling",
854
+ "heating_system_fuel_type": "electricity",
855
+ "template": "Residential IECC 2015 - Customizable Template Sep 2020"
856
+ },
857
+ "geometry": {
858
+ "type": "Polygon",
859
+ "coordinates": [
860
+ [
861
+ [
862
+ -78.84983691778234,
863
+ 42.819492870139584
864
+ ],
865
+ [
866
+ -78.84991855989054,
867
+ 42.81965224734324
868
+ ],
869
+ [
870
+ -78.84979926233189,
871
+ 42.81968678976884
872
+ ],
873
+ [
874
+ -78.84971977921587,
875
+ 42.8195218997015
876
+ ],
877
+ [
878
+ -78.84983691778234,
879
+ 42.819492870139584
880
+ ]
881
+ ]
882
+ ]
883
+ }
884
+ },
885
+ {
886
+ "type": "Feature",
887
+ "properties": {
888
+ "id": "67d3b7f0-a1e5-4bf1-80a7-da4746a8e3c8",
889
+ "type": "Road",
890
+ "total_length": 95
891
+ },
892
+ "geometry": {
893
+ "type": "LineString",
894
+ "coordinates": [
895
+ [
896
+ -78.85013954868406,
897
+ 42.82065128277753
898
+ ],
899
+ [
900
+ -78.84985840955878,
901
+ 42.820491471044676
902
+ ],
903
+ [
904
+ -78.84944283077441,
905
+ 42.81964144535482
906
+ ]
907
+ ]
908
+ }
909
+ },
910
+ {
911
+ "type": "Feature",
912
+ "properties": {
913
+ "id": "132ea25b-d038-4709-ba0f-1f7832b27554",
914
+ "type": "Road",
915
+ "total_length": 72
916
+ },
917
+ "geometry": {
918
+ "type": "LineString",
919
+ "coordinates": [
920
+ [
921
+ -78.85082189290078,
922
+ 42.81968865558912
923
+ ],
924
+ [
925
+ -78.85055497147029,
926
+ 42.81967358726891
927
+ ],
928
+ [
929
+ -78.84958560566729,
930
+ 42.81994193357889
931
+ ]
932
+ ]
933
+ }
934
+ },
935
+ {
936
+ "type": "Feature",
937
+ "properties": {
938
+ "id": "6f455626-c135-4795-8dd0-027ad3d4d833",
939
+ "type": "Road",
940
+ "total_length": 300
941
+ },
942
+ "geometry": {
943
+ "type": "LineString",
944
+ "coordinates": [
945
+ [
946
+ -78.85202960605203,
947
+ 42.82139507746135
948
+ ],
949
+ [
950
+ -78.85164885123362,
951
+ 42.8206216002294
952
+ ],
953
+ [
954
+ -78.85077869236524,
955
+ 42.82015963747091
956
+ ]
957
+ ]
958
+ }
959
+ },
960
+ {
961
+ "type": "Feature",
962
+ "properties": {
963
+ "id": "d4070679-f54f-47b3-8fb3-d32cd47d4036",
964
+ "type": "Road",
965
+ "total_length": 392
966
+ },
967
+ "geometry": {
968
+ "type": "LineString",
969
+ "coordinates": [
970
+ [
971
+ -78.84978890419005,
972
+ 42.820918529201606
973
+ ],
974
+ [
975
+ -78.85080814361571,
976
+ 42.82014732265435
977
+ ],
978
+ [
979
+ -78.85088860988616,
980
+ 42.819226583872705
981
+ ],
982
+ [
983
+ -78.85068476200102,
984
+ 42.81882129707171
985
+ ]
986
+ ]
987
+ }
988
+ },
989
+ {
990
+ "type": "Feature",
991
+ "properties": {
992
+ "id": "7c21780d-f7c9-4052-8a83-a26dda9b95c1",
993
+ "type": "Road",
994
+ "total_length": 3
995
+ },
996
+ "geometry": {
997
+ "type": "LineString",
998
+ "coordinates": [
999
+ [
1000
+ -78.85067939758301,
1001
+ 42.818809492561996
1002
+ ],
1003
+ [
1004
+ -78.85069012641907,
1005
+ 42.818809492561996
1006
+ ]
1007
+ ]
1008
+ }
1009
+ },
1010
+ {
1011
+ "type": "Feature",
1012
+ "properties": {
1013
+ "id": "f65d9cf8-32bf-4976-884e-5d078b20f22a",
1014
+ "type": "Road",
1015
+ "total_length": 238
1016
+ },
1017
+ "geometry": {
1018
+ "type": "LineString",
1019
+ "coordinates": [
1020
+ [
1021
+ -78.84937584400176,
1022
+ 42.821378887708704
1023
+ ],
1024
+ [
1025
+ -78.8502126932144,
1026
+ 42.8211546109155
1027
+ ],
1028
+ [
1029
+ -78.85109782218932,
1030
+ 42.820497514574726
1031
+ ],
1032
+ [
1033
+ -78.8513821363449,
1034
+ 42.82010797512362
1035
+ ],
1036
+ [
1037
+ -78.85143041610716,
1038
+ 42.819246257921634
1039
+ ],
1040
+ [
1041
+ -78.85117292404173,
1042
+ 42.8186914473406
1043
+ ]
1044
+ ]
1045
+ }
1046
+ },
1047
+ {
1048
+ "type": "Feature",
1049
+ "properties": {
1050
+ "id": "6680204c-b285-4370-819b-798c3a428039",
1051
+ "type": "Road",
1052
+ "total_length": 1010
1053
+ },
1054
+ "geometry": {
1055
+ "type": "LineString",
1056
+ "coordinates": [
1057
+ [
1058
+ -78.84969234466551,
1059
+ 42.822020236153946
1060
+ ],
1061
+ [
1062
+ -78.84841561317441,
1063
+ 42.81941545448416
1064
+ ],
1065
+ [
1066
+ -78.85184884071349,
1067
+ 42.8185104442301
1068
+ ],
1069
+ [
1070
+ -78.85313630104064,
1071
+ 42.82110739464483
1072
+ ],
1073
+ [
1074
+ -78.84969234466551,
1075
+ 42.822012366888174
1076
+ ]
1077
+ ]
1078
+ }
1079
+ },
1080
+ {
1081
+ "type": "Feature",
1082
+ "properties": {
1083
+ "id": "19",
1084
+ "geometryType": "Rectangle",
1085
+ "name": "restaurant_1",
1086
+ "type": "Building",
1087
+ "footprint_area": 22954,
1088
+ "footprint_perimeter": 838,
1089
+ "floor_area": 45908,
1090
+ "building_type": "Food sales",
1091
+ "number_of_stories": 2,
1092
+ "weekday_start_time": "10:00",
1093
+ "weekday_duration": "6:00",
1094
+ "weekend_start_time": "10:00",
1095
+ "weekend_duration": "6:00"
1096
+ },
1097
+ "geometry": {
1098
+ "type": "Polygon",
1099
+ "coordinates": [
1100
+ [
1101
+ [
1102
+ -78.85210040141494,
1103
+ 42.81944036741578
1104
+ ],
1105
+ [
1106
+ -78.8525400212367,
1107
+ 42.820357202230184
1108
+ ],
1109
+ [
1110
+ -78.85231229651535,
1111
+ 42.82041594925505
1112
+ ],
1113
+ [
1114
+ -78.8518726766936,
1115
+ 42.8194991153118
1116
+ ],
1117
+ [
1118
+ -78.85210040141494,
1119
+ 42.81944036741578
1120
+ ]
1121
+ ]
1122
+ ]
1123
+ }
1124
+ },
1125
+ {
1126
+ "type": "Feature",
1127
+ "properties": {
1128
+ "id": "20",
1129
+ "geometryType": "Rectangle",
1130
+ "name": "restaurant_2",
1131
+ "type": "Building",
1132
+ "footprint_area": 6030,
1133
+ "footprint_perimeter": 324,
1134
+ "floor_area": 12060,
1135
+ "building_type": "Food sales",
1136
+ "number_of_stories": 2,
1137
+ "weekday_start_time": "10:00",
1138
+ "weekday_duration": "6:00",
1139
+ "weekend_start_time": "10:00",
1140
+ "weekend_duration": "6:00"
1141
+ },
1142
+ "geometry": {
1143
+ "type": "Polygon",
1144
+ "coordinates": [
1145
+ [
1146
+ [
1147
+ -78.85192437751876,
1148
+ 42.819065203262
1149
+ ],
1150
+ [
1151
+ -78.85205138374018,
1152
+ 42.819336917985225
1153
+ ],
1154
+ [
1155
+ -78.85184840576065,
1156
+ 42.8193879640622
1157
+ ],
1158
+ [
1159
+ -78.85172139953922,
1160
+ 42.81911624956331
1161
+ ],
1162
+ [
1163
+ -78.85192437751876,
1164
+ 42.819065203262
1165
+ ]
1166
+ ]
1167
+ ]
1168
+ }
1169
+ },
1170
+ {
1171
+ "type": "Feature",
1172
+ "properties": {
1173
+ "id": "21",
1174
+ "geometryType": "Rectangle",
1175
+ "name": "restaurant_3",
1176
+ "type": "Building",
1177
+ "footprint_area": 6097,
1178
+ "footprint_perimeter": 324,
1179
+ "floor_area": 12194,
1180
+ "building_type": "Food sales",
1181
+ "number_of_stories": 2,
1182
+ "weekday_start_time": "10:00",
1183
+ "weekday_duration": "6:00",
1184
+ "weekend_start_time": "10:00",
1185
+ "weekend_duration": "6:00"
1186
+ },
1187
+ "geometry": {
1188
+ "type": "Polygon",
1189
+ "coordinates": [
1190
+ [
1191
+ [
1192
+ -78.85173010573301,
1193
+ 42.81868579856368
1194
+ ],
1195
+ [
1196
+ -78.85186738399523,
1197
+ 42.81895060823413
1198
+ ],
1199
+ [
1200
+ -78.85166180386628,
1201
+ 42.81900794802027
1202
+ ],
1203
+ [
1204
+ -78.85152452560403,
1205
+ 42.81874313859544
1206
+ ],
1207
+ [
1208
+ -78.85173010573301,
1209
+ 42.81868579856368
1210
+ ]
1211
+ ]
1212
+ ]
1213
+ }
1214
+ },
1215
+ {
1216
+ "type": "Feature",
1217
+ "properties": {
1218
+ "id": "22",
1219
+ "geometryType": "Rectangle",
1220
+ "name": "restaurant_4",
1221
+ "type": "Building",
1222
+ "footprint_area": 12967,
1223
+ "footprint_perimeter": 459,
1224
+ "floor_area": 25934,
1225
+ "building_type": "Food sales",
1226
+ "number_of_stories": 2,
1227
+ "weekday_start_time": "10:00",
1228
+ "weekday_duration": "6:00",
1229
+ "weekend_start_time": "10:00",
1230
+ "weekend_duration": "6:00"
1231
+ },
1232
+ "geometry": {
1233
+ "type": "Polygon",
1234
+ "coordinates": [
1235
+ [
1236
+ [
1237
+ -78.85114799681911,
1238
+ 42.81883760323174
1239
+ ],
1240
+ [
1241
+ -78.85132335012226,
1242
+ 42.819171773402246
1243
+ ],
1244
+ [
1245
+ -78.85097791012511,
1246
+ 42.81926929995882
1247
+ ],
1248
+ [
1249
+ -78.85080255682195,
1250
+ 42.81893513031545
1251
+ ],
1252
+ [
1253
+ -78.85114799681911,
1254
+ 42.81883760323174
1255
+ ]
1256
+ ]
1257
+ ]
1258
+ }
1259
+ },
1260
+ {
1261
+ "type": "Feature",
1262
+ "properties": {
1263
+ "id": "23",
1264
+ "geometryType": "Polygon",
1265
+ "name": "school_1",
1266
+ "type": "Building",
1267
+ "footprint_area": 18340,
1268
+ "footprint_perimeter": 769,
1269
+ "floor_area": 73360,
1270
+ "building_type": "Education",
1271
+ "number_of_stories": 4,
1272
+ "weekday_start_time": "8:00",
1273
+ "weekday_duration": "8:00",
1274
+ "weekend_start_time": "8:00",
1275
+ "weekend_duration": "8:00"
1276
+ },
1277
+ "geometry": {
1278
+ "type": "Polygon",
1279
+ "coordinates": [
1280
+ [
1281
+ [
1282
+ -78.85014832019806,
1283
+ 42.8203175004364
1284
+ ],
1285
+ [
1286
+ -78.84996861219405,
1287
+ 42.820364717310326
1288
+ ],
1289
+ [
1290
+ -78.84976208209991,
1291
+ 42.819967307496455
1292
+ ],
1293
+ [
1294
+ -78.85057479143144,
1295
+ 42.8197508951375
1296
+ ],
1297
+ [
1298
+ -78.85064721107481,
1299
+ 42.81989648171688
1300
+ ],
1301
+ [
1302
+ -78.85002493858337,
1303
+ 42.82006567650015
1304
+ ],
1305
+ [
1306
+ -78.85014832019806,
1307
+ 42.8203175004364
1308
+ ]
1309
+ ]
1310
+ ]
1311
+ }
1312
+ }
1313
+ ],
1314
+ "mappers": [],
1315
+ "scenarios": [
1316
+ {
1317
+ "id": "4207b13f-50a0-4a26-82d8-26b562c94fc8",
1318
+ "name": "New Scenario",
1319
+ "feature_mappings": []
1320
+ }
1321
+ ]
1322
+ }