urbanopt-cli 0.5.1 → 0.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +2 -2
- data/CHANGELOG.md +43 -1
- data/CMakeLists.txt +14 -14
- data/FindOpenStudioSDK.cmake +11 -6
- data/Gemfile +11 -5
- data/LICENSE.md +11 -1
- data/Rakefile +16 -6
- data/example_files/Gemfile +8 -8
- data/example_files/example_project_combined.json +100 -5
- data/example_files/example_project_with_streets.json +826 -0
- data/example_files/mappers/Baseline.rb +107 -59
- data/example_files/mappers/CreateBar.rb +17 -7
- data/example_files/mappers/EvCharging.rb +20 -10
- data/example_files/mappers/Floorspace.rb +17 -7
- data/example_files/mappers/HighEfficiency.rb +20 -8
- data/example_files/mappers/HighEfficiencyCreateBar.rb +19 -8
- data/example_files/mappers/HighEfficiencyFloorspace.rb +19 -8
- data/example_files/mappers/ThermalStorage.rb +16 -6
- data/example_files/measures/BuildResidentialModel/measure.rb +249 -134
- data/example_files/reopt/base_assumptions.json +2 -2
- data/example_files/reopt/multiPV_assumptions.json +4 -3
- data/example_files/residential/clothes_dryer.tsv +7 -7
- data/example_files/residential/clothes_washer.tsv +1 -1
- data/example_files/residential/cooling_system.tsv +42 -22
- data/example_files/residential/dishwasher.tsv +1 -1
- data/example_files/residential/exhaust.tsv +3 -0
- data/example_files/residential/heat_pump.tsv +62 -40
- data/example_files/resources/hpxml-measures/.github/pull_request_template.md +2 -1
- data/example_files/resources/hpxml-measures/.github/workflows/config.yml +116 -0
- data/example_files/resources/hpxml-measures/.gitignore +1 -8
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +746 -1236
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +1550 -1215
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/constants.rb +0 -8
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb +432 -343
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules.rb +134 -91
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_config.json +388 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_config.md +43 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_weekday_state_and_monthly_schedule_shift.csv +613 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_weekend_state_and_monthly_schedule_shift.csv +613 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-coal.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-portable.osw +35 -59
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-whole-home.osw +35 -59
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier.osw +35 -59
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-gas.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-modified.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-none.osw +41 -65
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-oil.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-propane.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-wood.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-flat.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-radiant-barrier.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-unvented-insulated-roof.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-vented.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-boiler-only-baseboard.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-boiler-only-fan-coil.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent-preconditioning.osw +39 -63
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent.osw +39 -63
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-pv.osw +39 -63
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-water-heater.osw +39 -63
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily.osw +39 -63
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-single-family-attached.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless-outside.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-dwhr.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-outside.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-standbyloss.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-with-solar-fraction.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-electric.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-gas.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-hpwh.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-indirect.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-low-flow-fixtures.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-none.osw +37 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-demand.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-manual.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-nocontrol.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-temperature.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-timer.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-evacuated-tube.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-flat-plate.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-ics.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-fraction.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-indirect-flat-plate.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-thermosyphon-flat-plate.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-coal.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-elec-uef.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-outside.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-uef.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-outside.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-uef.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar-fraction.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-oil.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-wood.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-outside.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-uef.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-uef.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar-fraction.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-propane.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories-garage.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-1.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-2.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-4.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-5.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-garage.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-ach-house-pressure.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm-house-pressure.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm50.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-flue.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-natural-ach.osw +37 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-overhangs.osw +37 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-windows-none.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-ambient.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-conditioned-basement-slab-insulation.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-slab.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-assembly-r.osw +35 -59
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-wall-insulation.osw +35 -59
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement.osw +35 -59
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unvented-crawlspace.osw +35 -59
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-vented-crawlspace.osw +35 -59
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed-heating-only.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-1-speed.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-2-speed.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-var-speed.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-coal-only.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-elec-only.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-central-ac-1-speed.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-only.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-oil-only.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-propane-only.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-wood-only.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-1-speed.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-2-speed.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-var-speed.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.osw +36 -62
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.osw +35 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.osw +35 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.osw +35 -59
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.osw +35 -59
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-mini-split-heat-pump-ducted.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ducts-leakage-percent.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-elec-resistance-only.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-furnace-gas.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only-ducted.osw +37 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fireplace-wood-only.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fixed-heater-gas-only.osw +37 -62
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-floor-furnace-propane-only.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-coal-only.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-elec-central-ac-1-speed.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-elec-only.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-2-speed.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-var-speed.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-only.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-room-ac.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-oil-only.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-propane-only.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-wood-only.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump-cooling-only.osw +336 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump-heating-only.osw +336 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ground-to-air-heat-pump.osw +36 -62
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{extra-plug-loads-additional-multipliers.osw → base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.osw} +41 -63
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.osw +340 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.osw +340 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.osw +340 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-furnace-gas-only.osw +338 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-ground-to-air-heat-pump.osw +338 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.osw +338 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-all-mini-split-heat-pump-ducted.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.osw +338 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.osw +340 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-air-conditioner-only-ducted.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-air-conditioner-only-ductless.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-cooling-only.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-heating-only.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted.osw +37 -62
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ductless.osw +37 -62
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-none.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-portable-heater-gas-only.osw +37 -62
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-programmable-thermostat-detailed.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-room-ac-only-33percent.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-room-ac-only.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-setpoints.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-oil-only.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-wood-pellets-only.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-undersized.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-wall-furnace-elec-only.osw +36 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-ceiling-fans.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-detailed.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-AMY-2012.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-baltimore-md.osw +45 -69
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-dallas-tx.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-duluth-mn.osw +49 -73
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-helena-mt.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{base-appliances-dehumidifier-50percent.osw → base-location-honolulu-hi.osw} +39 -63
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-miami-fl.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-phoenix-az.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-portland-or.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-balanced.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-bath-kitchen-fans.osw +44 -70
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis-evap-cooler-only-ducted.osw +37 -61
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv-atre-asre.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-exhaust-rated-flow-rate.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-exhaust.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv-asre.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-supply.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-whole-house-fan.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-defaults.osw +34 -58
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon.osw +34 -58
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon2.osw +34 -58
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-neighbor-shading.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-shielding-of-home.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-usage-multiplier.osw +35 -59
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-pv.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{extra-vacancy-6-months.osw → base-schedules-stochastic-vacant.osw} +39 -63
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-stochastic.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-user-specified.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-calendar-year-custom.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-custom.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-disabled.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-runperiod-1-month.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-timestep-10-mins.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +60 -57
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-auto.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-double-exterior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-eaves.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-single-exterior-front.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-bottom-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-bottom.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-middle-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-middle.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-top-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-left-top.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-bottom-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-bottom.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-middle-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-middle.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-top-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-middle-top.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-bottom-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-bottom.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-middle-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-middle.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-top-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab-right-top.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-slab.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-bottom.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-middle-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-middle.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-top-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-left-top.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-bottom.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-middle.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-top-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-middle-top.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-bottom.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-middle-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-middle.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-top-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace-right-top.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-unvented-crawlspace.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-bottom-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-bottom.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-middle-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-middle.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-top-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-left-top.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-bottom.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-middle-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-middle.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-top-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-middle-top.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-bottom-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-bottom.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-middle-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-middle.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-top-double-loaded-interior.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace-right-top.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-multifamily-vented-crawlspace.osw +341 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-gable.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-conditioned-eaves-hip.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-atticroof-flat.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-double-exterior.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-double-loaded-interior.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-single-exterior-front.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab-middle.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab-right.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-slab.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement-middle.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement-right.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unconditioned-basement.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace-middle.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace-right.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-unvented-crawlspace.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace-middle.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace-right.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-bldgtype-single-family-attached-vented-crawlspace.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-dhw-solar-latitude.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-atticroof-conditioned-eaves-gable.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-atticroof-conditioned-eaves-hip.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-garage-atticroof-conditioned.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-garage-partially-protruded.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-windows-shading.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-gas-hot-tub-heater-with-zero-kwh.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-gas-pool-heater-with-zero-kwh.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-pv-roofpitch.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-schedules-random-seed.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-boiler-to-heat-pump.osw +336 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-boiler-to-heating-system.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-fireplace-to-heat-pump.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{extra-second-heating-system-fireplace.osw → extra-second-heating-system-fireplace-to-heating-system.osw} +38 -62
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-heating-system-portable-heater-to-heat-pump.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{extra-second-heating-system-portable-heater.osw → extra-second-heating-system-portable-heater-to-heating-system.osw} +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-refrigerator.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-clothes-washer-kwh.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-dishwasher-kwh.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-extra-refrigerator-kwh.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-freezer-kwh.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-zero-refrigerator-kwh.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-attic-with-floor-insulation.osw +39 -63
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-attic-with-one-floor-above-grade.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/conditioned-basement-with-ceiling-insulation.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/cooling-system-and-heat-pump.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/dhw-indirect-without-boiler.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/ducts-location-and-areas-not-same-type.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/foundation-wall-insulation-greater-than-height.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/heating-system-and-heat-pump.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-crawlspace-zero-foundation-height.osw +39 -63
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-slab-non-zero-foundation-height.osw +39 -63
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-no-building-orientation.osw +38 -62
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-fuel-loads.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-other-plug-loads.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/{multipliers-without-plug-loads.osw → multipliers-without-tv-plug-loads.osw} +40 -64
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-vehicle-plug-loads.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-well-pump-plug-loads.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-electric-heat-pump-water-heater.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-ceiling-fan-quantity.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-geometry-num-bathrooms.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-but-no-primary-heating.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-serves-majority-heat.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/second-heating-system-serves-total-heat-load.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-attached-ambient.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-attached-no-building-orientation.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-finished-basement-zero-foundation-height.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-slab-non-zero-foundation-height.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-with-shared-system.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/slab-non-zero-foundation-height-above-grade.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unconditioned-basement-with-wall-and-ceiling-insulation.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-attic-with-floor-and-roof-insulation.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-crawlspace-with-wall-and-ceiling-insulation.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-attic-with-floor-and-roof-insulation.osw +38 -62
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-crawlspace-with-wall-and-ceiling-insulation.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/zero-number-of-bedrooms.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/schedules/vacant.csv +8761 -0
- data/example_files/resources/hpxml-measures/Changelog.md +249 -0
- data/example_files/resources/hpxml-measures/Gemfile +3 -4
- data/example_files/resources/hpxml-measures/Gemfile.lock +27 -32
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb +318 -1283
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +167 -121
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/BaseElements.xsd +7 -97
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/EPvalidator.xml +600 -203
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLDataTypes.xsd +21 -28
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLvalidator.xml +114 -22
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb +112 -177
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb +16 -180
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb +543 -94
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/energyplus.rb +1 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/generator.rb +4 -7
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb +410 -14
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +27 -25
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +782 -460
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +455 -107
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb +1466 -1403
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +1391 -1467
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/lighting.rb +2 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/location.rb +20 -7
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/meta_measure.rb +85 -13
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/minitest_helper.rb +4 -26
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb +14 -33
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb +3 -4
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +43 -7
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb +24 -7
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb +2 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb +2 -2
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb +4 -4
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb +32 -30
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb +6 -29
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +523 -635
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_enclosure.rb +151 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb +3 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb +4 -2
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +297 -7
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +0 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb +3 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb +3 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb +3 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb +3 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb +3 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +26 -3
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb +3 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/util.rb +26 -0
- data/example_files/resources/hpxml-measures/README.md +4 -5
- data/example_files/resources/hpxml-measures/Rakefile +1 -2
- data/example_files/resources/hpxml-measures/SimulationOutputReport/measure.rb +140 -47
- data/example_files/resources/hpxml-measures/SimulationOutputReport/measure.xml +351 -495
- data/example_files/resources/hpxml-measures/SimulationOutputReport/tests/output_report_test.rb +260 -189
- data/example_files/resources/hpxml-measures/docs/source/conf.py +4 -1
- data/example_files/resources/hpxml-measures/docs/source/getting_started.rst +3 -3
- data/example_files/resources/hpxml-measures/docs/source/intro.rst +4 -105
- data/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst +538 -396
- data/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst +158 -130
- data/example_files/resources/hpxml-measures/tasks.rb +1497 -736
- data/example_files/resources/hpxml-measures/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3-cache.csv +35 -0
- data/example_files/resources/hpxml-measures/weather/USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw +8768 -0
- data/example_files/resources/hpxml-measures/weather/USA_CO_Denver.Intl.AP.725650_TMY3-cache.csv +10 -10
- data/example_files/resources/hpxml-measures/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3-cache.csv +35 -0
- data/example_files/resources/hpxml-measures/weather/USA_HI_Honolulu.Intl.AP.911820_TMY3.epw +8768 -0
- data/example_files/resources/hpxml-measures/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3-cache.csv +35 -0
- data/example_files/resources/hpxml-measures/weather/USA_MT_Helena.Rgnl.AP.727720_TMY3.epw +8768 -0
- data/example_files/resources/hpxml-measures/weather/USA_OR_Portland.Intl.AP.726980_TMY3-cache.csv +35 -0
- data/example_files/resources/hpxml-measures/weather/USA_OR_Portland.Intl.AP.726980_TMY3.epw +8768 -0
- data/example_files/resources/hpxml-measures/workflow/run_simulation.rb +36 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +5 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +5 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +535 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +5 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml +4 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +6 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml +4 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml +3 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml +28 -18
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml +28 -18
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-baseboard.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml +4 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml +3 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml +3 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml +23 -11
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-baseboard.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml +4 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml +3 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml +23 -12
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml +23 -12
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +6 -6
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml +8 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached.xml +17 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +3 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +564 -564
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +3 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +3 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +3 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml +4 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +5 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +5 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +9 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml +601 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +6 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces.xml +22 -21
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces2.xml +2475 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-enclosure-windows-interior-shading.xml → base-enclosure-windows-shading.xml} +577 -561
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml +644 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-interior-insulation.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +6 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +5 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +5 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +5 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +556 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +562 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +6 -8
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +6 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +6 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml +553 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml +558 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize-manual-s-oversize-allowances.xml → base-hvac-autosize-air-to-air-heat-pump-1-speed-manual-s-oversize-allowances.xml} +2 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed.xml +558 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-2-speed-autosize-manual-s-oversize-allowances.xml → base-hvac-autosize-air-to-air-heat-pump-2-speed-manual-s-oversize-allowances.xml} +560 -559
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-2-speed-autosize.xml → base-hvac-autosize-air-to-air-heat-pump-2-speed.xml} +557 -556
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-var-speed-autosize-manual-s-oversize-allowances.xml → base-hvac-autosize-air-to-air-heat-pump-var-speed-manual-s-oversize-allowances.xml} +560 -559
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-var-speed-autosize.xml → base-hvac-autosize-air-to-air-heat-pump-var-speed.xml} +557 -556
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-boiler-elec-only-autosize.xml → base-hvac-autosize-boiler-elec-only.xml} +517 -518
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-boiler-gas-central-ac-1-speed-autosize.xml → base-hvac-autosize-boiler-gas-central-ac-1-speed.xml} +569 -569
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-boiler-gas-only-autosize.xml → base-hvac-autosize-boiler-gas-only.xml} +518 -519
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-central-ac-only-1-speed-autosize.xml → base-hvac-autosize-central-ac-only-1-speed.xml} +2 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-central-ac-only-2-speed-autosize.xml → base-hvac-autosize-central-ac-only-2-speed.xml} +547 -546
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-central-ac-only-var-speed-autosize.xml → base-hvac-autosize-central-ac-only-var-speed.xml} +547 -546
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-central-ac-plus-air-to-air-heat-pump-heating-autosize.xml → base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml} +2 -7
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-autosize.xml → base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed.xml} +2 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-dual-fuel-mini-split-heat-pump-ducted-autosize.xml → base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml} +2 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-elec-resistance-only-autosize.xml → base-hvac-autosize-elec-resistance-only.xml} +508 -509
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-evap-cooler-furnace-gas-autosize.xml → base-hvac-autosize-evap-cooler-furnace-gas.xml} +553 -552
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-floor-furnace-propane-only-autosize.xml → base-hvac-autosize-floor-furnace-propane-only.xml} +511 -512
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-furnace-elec-only-autosize.xml → base-hvac-autosize-furnace-elec-only.xml} +547 -546
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-furnace-gas-central-ac-2-speed-autosize.xml → base-hvac-autosize-furnace-gas-central-ac-2-speed.xml} +560 -559
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-furnace-gas-central-ac-var-speed-autosize.xml → base-hvac-autosize-furnace-gas-central-ac-var-speed.xml} +560 -559
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml +548 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-furnace-gas-room-ac-autosize.xml → base-hvac-autosize-furnace-gas-room-ac.xml} +558 -557
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +555 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +560 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-ground-to-air-heat-pump-autosize-manual-s-oversize-allowances.xml → base-hvac-autosize-ground-to-air-heat-pump-manual-s-oversize-allowances.xml} +562 -562
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-ground-to-air-heat-pump-autosize.xml → base-hvac-autosize-ground-to-air-heat-pump.xml} +559 -559
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml +547 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-cooling-only-autosize.xml → base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml} +2 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-heating-only-autosize.xml → base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml} +2 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-autosize-manual-s-oversize-allowances.xml → base-hvac-autosize-mini-split-heat-pump-ducted-manual-s-oversize-allowances.xml} +2 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted.xml +557 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-room-ac-only-autosize.xml → base-hvac-autosize-room-ac-only.xml} +507 -508
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-stove-oil-only-autosize.xml → base-hvac-autosize-stove-oil-only.xml} +511 -512
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-wall-furnace-elec-only-autosize.xml → base-hvac-autosize-wall-furnace-elec-only.xml} +511 -512
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-autosize.xml → base-hvac-autosize.xml} +560 -559
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +4 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +3 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +3 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +3 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +7 -12
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +2 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml +5 -7
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +5 -7
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +5 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +5 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +5 -7
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +4 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +11 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml +512 -513
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-fixed-heater-gas-only.xml +512 -563
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +512 -513
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml +548 -547
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +3 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +548 -550
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +3 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +3 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +3 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +4 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +557 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +563 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +562 -562
- data/example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/slab-zero-exposed-perimeter.xml → base-hvac-install-quality-airflow-defect-furnace-gas-central-ac-1-speed.xml} +568 -561
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize.xml → base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.xml} +566 -559
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.xml +567 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.xml +567 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-misc-shelter-coefficient.xml → base-hvac-install-quality-all-furnace-gas-central-ac-1-speed.xml} +571 -564
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.xml +572 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.xml +572 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-furnace-gas-only-autosize.xml → base-hvac-install-quality-all-furnace-gas-only.xml} +552 -549
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-ground-to-air-heat-pump.xml +566 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-mini-split-air-conditioner-only-ducted-autosize.xml → base-hvac-install-quality-all-mini-split-air-conditioner-only-ducted.xml} +552 -548
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-mini-split-heat-pump-ducted-autosize.xml → base-hvac-install-quality-all-mini-split-heat-pump-ducted.xml} +565 -558
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-blower-efficiency-furnace-gas-central-ac-1-speed.xml +569 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.xml +566 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.xml +570 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +3 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +1 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +3 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +5 -7
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +6 -8
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +3 -7
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +920 -913
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-none.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-portable-heater-gas-only.xml +512 -563
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat-detailed.xml +7 -6
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml +512 -513
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +512 -513
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized-allow-increased-fixed-capacities.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +512 -513
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-detailed.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +37 -25
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +37 -25
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml +563 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml +517 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml +517 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml +577 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +2 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +11 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +32 -29
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml +4 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml +5 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml +8 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml +12 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml +564 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +8 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml +1657 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic-vacant.xml +564 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-user-specified.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/boiler-invalid-afue.xml +519 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/cfis-with-hydronic-distribution.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-dryer-location.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-washer-location.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/cooking-range-location.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-appliances-dehumidifier-50percent.xml → invalid_files/dehumidifier-fraction-served.xml} +534 -523
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dehumidifier-setpoints.xml +535 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-frac-load-served.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-ef-tank.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-uef-tank-heat-pump.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dishwasher-location.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-cfm25.xml +563 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-percent.xml +563 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location-unconditioned-space.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duplicate-id.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-attic-missing-roof.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-exterior-foundation-wall.xml +5 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-slab.xml +5 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa.xml +7 -6
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa2.xml +448 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-exterior-wall.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-roof-ceiling.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-slab.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-ceiling-roof.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-exterior-wall.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-floor-slab.xml +14 -60
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-fuel-load.xml +760 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-plug-load.xml +759 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-fuel-load.xml +761 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-plug-load.xml +759 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/furnace-invalid-afue.xml +563 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/generator-number-of-bedrooms-served.xml +460 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/generator-output-greater-than-consumption.xml +579 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/heat-pump-mixed-fixed-and-autosize-capacities.xml +3 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-cooling.xml +920 -913
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-heating.xml +920 -913
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-return-duct-leakage-missing.xml +3 -7
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-cooling.xml +3 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-heating.xml +3 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-frac-load-served.xml +920 -913
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-inconsistent-fan-powers.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-invalid-distribution-system-type.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-shared-negative-seer-eq.xml +407 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-assembly-effective-rvalue.xml +563 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-boolean.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-float.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-integer.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-daylight-saving.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-distribution-cfa-served.xml +5 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-epw-filepath.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-facility-type-equipment.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-facility-type-surfaces.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-foundation-wall-properties.xml +574 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-id.xml +591 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-id2.xml +591 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-infiltration-volume.xml +563 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-input-parameters.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-neighbor-shading-azimuth.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-bedrooms-served.xml +465 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-conditioned-floors.xml +563 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-units-served.xml +451 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-relatedhvac-desuperheater.xml +3 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-relatedhvac-dhw-indirect.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-runperiod.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-schema-version.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-shared-vent-in-unit-flowrate.xml +473 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-timestep.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-window-height.xml +9 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/lighting-fractions.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-duct-location.xml +916 -909
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-elements.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-appliance.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-duct.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-surface.xml +15 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-water-heater.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-without-building-id.xml +1657 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-wrong-building-id.xml +1657 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-hvac-ideal-air.xml → invalid_files/multiple-shared-cooling-systems.xml} +431 -498
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-shared-heating-systems.xml +434 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/net-area-negative-roof.xml +5 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/net-area-negative-wall.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/num-bedrooms-exceeds-limit.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/orphaned-hvac-distribution.xml +3 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerator-location.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-multiple-primary.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-no-primary.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-desuperheater.xml +3 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-dhw-indirect.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-fraction-one.xml +571 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-combi-tankless.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-desuperheater.xml +3 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-dhw-indirect.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-cfis.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-door.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-hvac-distribution.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-clothes-washer-water-heater.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-dishwasher-water-heater.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-skylight.xml +6 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-solar-thermal-system.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-window.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location-other.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location.xml +4 -3
- data/example_files/resources/hpxml-measures/workflow/template.osw +5 -1
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AC.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L100AL.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AC.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L110AL.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AC.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L120AL.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AC.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L130AL.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AC.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L140AL.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AC.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L150AL.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AC.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L155AL.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AC.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L160AL.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AC.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L170AL.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AC.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L200AL.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AC.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L202AL.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L302XC.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L304XC.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L322XC.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/ASHRAE_Standard_140/L324XC.xml +0 -3
- data/example_files/resources/hpxml-measures/workflow/tests/base_results/results.csv +294 -0
- data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_ashrae_140.csv +27 -0
- data/example_files/resources/hpxml-measures/workflow/tests/base_results/results_hvac_sizing.csv +294 -0
- data/example_files/resources/hpxml-measures/workflow/tests/compare.rb +130 -0
- data/example_files/resources/hpxml-measures/workflow/tests/hpxml_translator_test.rb +324 -382
- data/example_files/{measures/BuildResidentialModel/resources → resources}/measure-info.json +0 -0
- data/example_files/{measures/BuildResidentialModel/resources → resources}/meta_measure.rb +53 -44
- data/example_files/visualization/input_visualization_feature.html +13 -14
- data/example_files/visualization/input_visualization_scenario.html +14 -9
- data/lib/uo_cli.rb +293 -60
- data/lib/uo_cli/version.rb +17 -7
- data/requirements.txt +2 -0
- data/scripts/setup-env-gitbash.sh +4 -4
- data/scripts/setup-env-unix.sh +4 -4
- data/scripts/setup-env.bat +3 -3
- data/scripts/setup-env.ps1 +3 -3
- data/uo_cli.gemspec +10 -7
- metadata +320 -82
- data/example_files/measures/ResidentialGeometryCreateMultifamily/measure.rb +0 -1005
- data/example_files/measures/ResidentialGeometryCreateMultifamily/measure.xml +0 -326
- data/example_files/measures/ResidentialGeometryCreateMultifamily/tests/create_residential_multifamily_geometry_test.rb +0 -477
- data/example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/measure.rb +0 -1039
- data/example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/measure.xml +0 -393
- data/example_files/measures/ResidentialGeometryCreateSingleFamilyAttached/tests/create_residential_single_family_attached_geometry_test.rb +0 -456
- data/example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/measure.rb +0 -979
- data/example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/measure.xml +0 -388
- data/example_files/measures/ResidentialGeometryCreateSingleFamilyDetached/tests/create_residential_single_family_detached_geometry_test.rb +0 -704
- data/example_files/resources/hpxml-measures/.circleci/config.yml +0 -20
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/location.rb +0 -24
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_config.yml +0 -74
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-hvac-programmable-thermostat.osw +0 -369
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_constructions.rb +0 -109
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple2.xml +0 -835
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/heat-pump-mixed-fixed-and-autosize-capacities2.xml +0 -563
data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_config.json
ADDED
@@ -0,0 +1,388 @@
|
|
1
|
+
{
|
2
|
+
"occupancy_types": {
|
3
|
+
"probabilities": [
|
4
|
+
0.381,
|
5
|
+
0.297,
|
6
|
+
0.165,
|
7
|
+
0.157
|
8
|
+
]
|
9
|
+
},
|
10
|
+
"plugload": {
|
11
|
+
"weekday_sch": [
|
12
|
+
0.035,
|
13
|
+
0.033,
|
14
|
+
0.032,
|
15
|
+
0.031,
|
16
|
+
0.032,
|
17
|
+
0.033,
|
18
|
+
0.037,
|
19
|
+
0.042,
|
20
|
+
0.043,
|
21
|
+
0.043,
|
22
|
+
0.043,
|
23
|
+
0.044,
|
24
|
+
0.045,
|
25
|
+
0.045,
|
26
|
+
0.044,
|
27
|
+
0.046,
|
28
|
+
0.048,
|
29
|
+
0.052,
|
30
|
+
0.053,
|
31
|
+
0.05,
|
32
|
+
0.047,
|
33
|
+
0.045,
|
34
|
+
0.04,
|
35
|
+
0.036
|
36
|
+
],
|
37
|
+
"weekend_sch": [
|
38
|
+
0.035,
|
39
|
+
0.033,
|
40
|
+
0.032,
|
41
|
+
0.031,
|
42
|
+
0.032,
|
43
|
+
0.033,
|
44
|
+
0.037,
|
45
|
+
0.042,
|
46
|
+
0.043,
|
47
|
+
0.043,
|
48
|
+
0.043,
|
49
|
+
0.044,
|
50
|
+
0.045,
|
51
|
+
0.045,
|
52
|
+
0.044,
|
53
|
+
0.046,
|
54
|
+
0.048,
|
55
|
+
0.052,
|
56
|
+
0.053,
|
57
|
+
0.05,
|
58
|
+
0.047,
|
59
|
+
0.045,
|
60
|
+
0.04,
|
61
|
+
0.036
|
62
|
+
],
|
63
|
+
"monthly_multiplier": [
|
64
|
+
1.248,
|
65
|
+
1.257,
|
66
|
+
0.993,
|
67
|
+
0.989,
|
68
|
+
0.993,
|
69
|
+
0.827,
|
70
|
+
0.821,
|
71
|
+
0.821,
|
72
|
+
0.827,
|
73
|
+
0.99,
|
74
|
+
0.987,
|
75
|
+
1.248
|
76
|
+
]
|
77
|
+
},
|
78
|
+
"lighting": {
|
79
|
+
"weekday_sch": [
|
80
|
+
0.04,
|
81
|
+
0.037,
|
82
|
+
0.037,
|
83
|
+
0.036,
|
84
|
+
0.033,
|
85
|
+
0.036,
|
86
|
+
0.043,
|
87
|
+
0.047,
|
88
|
+
0.034,
|
89
|
+
0.023,
|
90
|
+
0.024,
|
91
|
+
0.025,
|
92
|
+
0.024,
|
93
|
+
0.028,
|
94
|
+
0.031,
|
95
|
+
0.032,
|
96
|
+
0.039,
|
97
|
+
0.053,
|
98
|
+
0.063,
|
99
|
+
0.067,
|
100
|
+
0.071,
|
101
|
+
0.069,
|
102
|
+
0.059,
|
103
|
+
0.05
|
104
|
+
],
|
105
|
+
"weekend_sch": [
|
106
|
+
0.04,
|
107
|
+
0.037,
|
108
|
+
0.037,
|
109
|
+
0.036,
|
110
|
+
0.033,
|
111
|
+
0.036,
|
112
|
+
0.043,
|
113
|
+
0.047,
|
114
|
+
0.034,
|
115
|
+
0.023,
|
116
|
+
0.024,
|
117
|
+
0.025,
|
118
|
+
0.024,
|
119
|
+
0.028,
|
120
|
+
0.031,
|
121
|
+
0.032,
|
122
|
+
0.039,
|
123
|
+
0.053,
|
124
|
+
0.063,
|
125
|
+
0.067,
|
126
|
+
0.071,
|
127
|
+
0.069,
|
128
|
+
0.059,
|
129
|
+
0.05
|
130
|
+
],
|
131
|
+
"monthly_multiplier": [
|
132
|
+
1.248,
|
133
|
+
1.257,
|
134
|
+
0.993,
|
135
|
+
0.989,
|
136
|
+
0.993,
|
137
|
+
0.827,
|
138
|
+
0.821,
|
139
|
+
0.821,
|
140
|
+
0.827,
|
141
|
+
0.99,
|
142
|
+
0.987,
|
143
|
+
1.248
|
144
|
+
],
|
145
|
+
"holiday_sch": [
|
146
|
+
0.0,
|
147
|
+
0.0,
|
148
|
+
0.0,
|
149
|
+
0.0,
|
150
|
+
0.0,
|
151
|
+
0.0,
|
152
|
+
0.0,
|
153
|
+
0.0,
|
154
|
+
0.0,
|
155
|
+
0.0,
|
156
|
+
0.0,
|
157
|
+
0.0,
|
158
|
+
0.0,
|
159
|
+
0.0,
|
160
|
+
0.0,
|
161
|
+
0.0,
|
162
|
+
0.008168,
|
163
|
+
0.098016,
|
164
|
+
0.168028,
|
165
|
+
0.193699,
|
166
|
+
0.283547,
|
167
|
+
0.192532,
|
168
|
+
0.03734,
|
169
|
+
0.01867
|
170
|
+
]
|
171
|
+
},
|
172
|
+
"ceiling_fan": {
|
173
|
+
"weekday_sch": [
|
174
|
+
0.04,
|
175
|
+
0.037,
|
176
|
+
0.037,
|
177
|
+
0.036,
|
178
|
+
0.033,
|
179
|
+
0.036,
|
180
|
+
0.043,
|
181
|
+
0.047,
|
182
|
+
0.034,
|
183
|
+
0.023,
|
184
|
+
0.024,
|
185
|
+
0.025,
|
186
|
+
0.024,
|
187
|
+
0.028,
|
188
|
+
0.031,
|
189
|
+
0.032,
|
190
|
+
0.039,
|
191
|
+
0.053,
|
192
|
+
0.063,
|
193
|
+
0.067,
|
194
|
+
0.071,
|
195
|
+
0.069,
|
196
|
+
0.059,
|
197
|
+
0.05
|
198
|
+
],
|
199
|
+
"weekend_sch": [
|
200
|
+
0.04,
|
201
|
+
0.037,
|
202
|
+
0.037,
|
203
|
+
0.036,
|
204
|
+
0.033,
|
205
|
+
0.036,
|
206
|
+
0.043,
|
207
|
+
0.047,
|
208
|
+
0.034,
|
209
|
+
0.023,
|
210
|
+
0.024,
|
211
|
+
0.025,
|
212
|
+
0.024,
|
213
|
+
0.028,
|
214
|
+
0.031,
|
215
|
+
0.032,
|
216
|
+
0.039,
|
217
|
+
0.053,
|
218
|
+
0.063,
|
219
|
+
0.067,
|
220
|
+
0.071,
|
221
|
+
0.069,
|
222
|
+
0.059,
|
223
|
+
0.05
|
224
|
+
],
|
225
|
+
"monthly_multiplier": [
|
226
|
+
1.248,
|
227
|
+
1.257,
|
228
|
+
0.993,
|
229
|
+
0.989,
|
230
|
+
0.993,
|
231
|
+
0.827,
|
232
|
+
0.821,
|
233
|
+
0.821,
|
234
|
+
0.827,
|
235
|
+
0.99,
|
236
|
+
0.987,
|
237
|
+
1.248
|
238
|
+
]
|
239
|
+
},
|
240
|
+
"cooking": {
|
241
|
+
"monthly_multiplier": [
|
242
|
+
1.038,
|
243
|
+
1.026,
|
244
|
+
0.976,
|
245
|
+
0.945,
|
246
|
+
0.965,
|
247
|
+
0.947,
|
248
|
+
0.939,
|
249
|
+
0.965,
|
250
|
+
0.967,
|
251
|
+
1.006,
|
252
|
+
1.098,
|
253
|
+
1.129
|
254
|
+
]
|
255
|
+
},
|
256
|
+
"clothes_dryer": {
|
257
|
+
"monthly_multiplier": [
|
258
|
+
1.09,
|
259
|
+
1.054,
|
260
|
+
1.044,
|
261
|
+
0.996,
|
262
|
+
0.992,
|
263
|
+
0.967,
|
264
|
+
0.931,
|
265
|
+
0.906,
|
266
|
+
0.923,
|
267
|
+
0.955,
|
268
|
+
1.035,
|
269
|
+
1.108
|
270
|
+
]
|
271
|
+
},
|
272
|
+
"sink": {
|
273
|
+
"duration_probability": [
|
274
|
+
0.901242,
|
275
|
+
0.076572,
|
276
|
+
0.01722,
|
277
|
+
0.003798,
|
278
|
+
0.000944,
|
279
|
+
0.000154,
|
280
|
+
4.6e-05,
|
281
|
+
2.2e-05,
|
282
|
+
2.0e-06
|
283
|
+
],
|
284
|
+
"events_per_cluster_probs": [
|
285
|
+
0.62458,
|
286
|
+
0.18693,
|
287
|
+
0.08011,
|
288
|
+
0.0433,
|
289
|
+
0.02178,
|
290
|
+
0.01504,
|
291
|
+
0.0083,
|
292
|
+
0.00467,
|
293
|
+
0.0057,
|
294
|
+
0.00285,
|
295
|
+
0.00181,
|
296
|
+
0.00233,
|
297
|
+
0.0013,
|
298
|
+
0.00104,
|
299
|
+
0.00026
|
300
|
+
],
|
301
|
+
"hourly_onset_prob": [
|
302
|
+
0.007,
|
303
|
+
0.018,
|
304
|
+
0.042,
|
305
|
+
0.062,
|
306
|
+
0.066,
|
307
|
+
0.062,
|
308
|
+
0.054,
|
309
|
+
0.05,
|
310
|
+
0.049,
|
311
|
+
0.045,
|
312
|
+
0.041,
|
313
|
+
0.043,
|
314
|
+
0.048,
|
315
|
+
0.065,
|
316
|
+
0.075,
|
317
|
+
0.069,
|
318
|
+
0.057,
|
319
|
+
0.048,
|
320
|
+
0.04,
|
321
|
+
0.027,
|
322
|
+
0.014,
|
323
|
+
0.007,
|
324
|
+
0.005,
|
325
|
+
0.005
|
326
|
+
],
|
327
|
+
"avg_sink_clusters_per_hh": 6657,
|
328
|
+
"minutes_between_event_gap": 2,
|
329
|
+
"flow_rate_mean": 1.14,
|
330
|
+
"flow_rate_std": 0.61
|
331
|
+
},
|
332
|
+
"shower": {
|
333
|
+
"minutes_between_event_gap": 30,
|
334
|
+
"flow_rate_mean": 2.25,
|
335
|
+
"flow_rate_std": 0.68
|
336
|
+
},
|
337
|
+
"bath": {
|
338
|
+
"bath_to_shower_ratio": 0.078843,
|
339
|
+
"duration_mean": 5.65,
|
340
|
+
"duration_std": 2.09,
|
341
|
+
"flow_rate_mean": 4.4,
|
342
|
+
"flow_rate_std": 1.17
|
343
|
+
},
|
344
|
+
"dishwasher": {
|
345
|
+
"flow_rate_mean": 1.39,
|
346
|
+
"flow_rate_std": 0.2,
|
347
|
+
"minutes_between_event_gap": 10,
|
348
|
+
"monthly_multiplier": [
|
349
|
+
1.083,
|
350
|
+
1.056,
|
351
|
+
1.023,
|
352
|
+
0.999,
|
353
|
+
0.975,
|
354
|
+
0.944,
|
355
|
+
0.918,
|
356
|
+
0.928,
|
357
|
+
0.938,
|
358
|
+
0.984,
|
359
|
+
1.059,
|
360
|
+
1.094
|
361
|
+
]
|
362
|
+
},
|
363
|
+
"clothes_washer": {
|
364
|
+
"flow_rate_mean": 2.2,
|
365
|
+
"flow_rate_std": 0.62,
|
366
|
+
"minutes_between_event_gap": 4,
|
367
|
+
"load_size_probability": [
|
368
|
+
0.682926829,
|
369
|
+
0.227642276,
|
370
|
+
0.056910569,
|
371
|
+
0.032520325
|
372
|
+
],
|
373
|
+
"monthly_multiplier": [
|
374
|
+
0.968,
|
375
|
+
1.013,
|
376
|
+
0.99,
|
377
|
+
1.034,
|
378
|
+
1.019,
|
379
|
+
1.015,
|
380
|
+
1.048,
|
381
|
+
1,
|
382
|
+
1.021,
|
383
|
+
0.949,
|
384
|
+
0.945,
|
385
|
+
0.999
|
386
|
+
]
|
387
|
+
}
|
388
|
+
}
|
data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules_config.md
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
### Occupancy Types
|
2
|
+
|
3
|
+
Occupancy cluster types: Mostly Home, Early Regular Worker, Mostly Away, Regular Worker.
|
4
|
+
Probabilities are derived from ATUS using the k-modes algorithm.
|
5
|
+
|
6
|
+
### Plug Loads
|
7
|
+
|
8
|
+
This is the baseline schedule for plugload, lighting and ceiling fan.
|
9
|
+
It will be modified based on occupancy.
|
10
|
+
|
11
|
+
### Lighting
|
12
|
+
|
13
|
+
The exterior and garage lighting makes use of the weekday/weekend schedule.
|
14
|
+
Indoor lighting schedule is generated on the fly.
|
15
|
+
Holiday lighting makes use of the holiday_sch.
|
16
|
+
|
17
|
+
### Cooking
|
18
|
+
|
19
|
+
Monthly energy use multipliers for cooking stove/oven/range from average of multiple end-use submetering datasets (HEMS, RBSAM, ELCAP, Mass Res 1, Pecan St.).
|
20
|
+
Power draw distribution is based on csv files.
|
21
|
+
|
22
|
+
### Clothes Dryer
|
23
|
+
|
24
|
+
Monthly energy use multipliers for clothes dryer from average of multiple end-use submetering datasets (HEMS, RBSAM, ELCAP, Mass Res 1, Pecan St., FSEC).
|
25
|
+
Power draw distribution is based on csv files.
|
26
|
+
|
27
|
+
### Clothes Washer
|
28
|
+
|
29
|
+
Monthly energy use multipliers for clothes washer and dishwasher from average of multiple end-use submetering datasets (generally HEMS, RBSAM, ELCAP, Mass Res 1, and Pecan St.).
|
30
|
+
Power draw distribution is based on csv files.
|
31
|
+
|
32
|
+
### Dishwasher
|
33
|
+
|
34
|
+
Monthly energy use multipliers for clothes washer and dishwasher from average of multiple end-use submetering datasets (generally HEMS, RBSAM, ELCAP, Mass Res 1, Pecan St., and FSEC).
|
35
|
+
Power draw distribution is based on csv files.
|
36
|
+
|
37
|
+
### Water Draw Events
|
38
|
+
|
39
|
+
Probabilities for all water draw events are extracted from DHW event generators.
|
40
|
+
The onset, duration, events_per_cluster_probs, flow rate mean and std could all refer to the DHW event generator excel sheet ('event characteristics' and 'Start Times' sheet).
|
41
|
+
|
42
|
+
#### sink
|
43
|
+
avg_sink_clusters_per_hh -> Average sink cluster per house hold. Set to 6657 for U.S. average of 2.53 occupants per household, based on relationship of 6885 clusters for 25 gpd, from Building America DHW Event Schedule Generator,
|
@@ -0,0 +1,613 @@
|
|
1
|
+
Index,Month,State,Sample Count,Weight,Offset,Lead
|
2
|
+
0,Jan,AL,322,4770479685.057039,-33.0637931379581,30
|
3
|
+
1,Jan,AZ,386,6683098926.140461,-3.6719751608533215,0
|
4
|
+
2,Jan,AR,215,3582636447.758686,-11.53359174425475,30
|
5
|
+
3,Jan,CA,1917,34799947923.171265,5.273180787371416,0
|
6
|
+
4,Jan,CO,353,5095475556.302463,-6.767459127983898,15
|
7
|
+
5,Jan,CT,250,4293334091.0490756,5.142563084341077,-15
|
8
|
+
6,Jan,DE,59,1178861846.1594372,16.25459141658075,0
|
9
|
+
7,Jan,DC,53,634409131.0906543,3.9138288582140603,-30
|
10
|
+
8,Jan,FL,1065,17638867080.320923,13.498090536079985,0
|
11
|
+
9,Jan,GA,533,10018924398.838549,16.180437555366666,0
|
12
|
+
10,Jan,HI,59,857258587.5998942,-17.67068645832842,0
|
13
|
+
11,Jan,ID,106,1705272985.2992196,-25.31412076915774,15
|
14
|
+
12,Jan,IL,797,13603625760.265057,-2.7825314493460382,0
|
15
|
+
13,Jan,IN,427,7503702561.474615,0.4640942007429203,0
|
16
|
+
14,Jan,IA,253,3977290898.4515333,-4.174482276468666,0
|
17
|
+
15,Jan,KS,240,3514267206.500655,1.3518194800529955,0
|
18
|
+
16,Jan,KY,314,4557957092.249637,16.735805210748367,0
|
19
|
+
17,Jan,LA,284,4168927922.9033165,-16.551329088261355,0
|
20
|
+
18,Jan,ME,90,1540082488.2779734,14.400251946548224,0
|
21
|
+
19,Jan,MD,403,6696012251.0296335,9.348837572038406,-15
|
22
|
+
20,Jan,MA,415,6935140779.008692,9.089666156059934,0
|
23
|
+
21,Jan,MI,714,12553483306.033571,15.095886947948316,0
|
24
|
+
22,Jan,MN,415,6485604427.354405,-10.824594630884235,0
|
25
|
+
23,Jan,MS,188,2775040490.279479,-10.145423984458034,20
|
26
|
+
24,Jan,MO,389,6226571400.794956,5.797289209617816,0
|
27
|
+
25,Jan,MT,72,908474341.489644,6.188529483927027,0
|
28
|
+
26,Jan,NV,194,3118012343.82333,-28.8971331797311,30
|
29
|
+
27,Jan,NH,102,1810890293.3642685,-39.138587704776796,15
|
30
|
+
28,Jan,NJ,567,9226406264.504179,9.240912468337115,0
|
31
|
+
29,Jan,NM,166,2359370915.6764345,-24.75538203450219,25
|
32
|
+
30,Jan,NY,1034,16433875470.544922,-1.829866720177165,0
|
33
|
+
31,Jan,NC,574,9713522725.509409,-5.73412841609354,0
|
34
|
+
32,Jan,OH,753,11655558048.949366,14.678013776234366,0
|
35
|
+
33,Jan,OK,253,3398948138.1308637,-3.7062403287887946,0
|
36
|
+
34,Jan,OR,314,5134925064.998184,15.337323713180353,0
|
37
|
+
35,Jan,PA,836,15565754037.642654,-7.212289336617118,0
|
38
|
+
36,Jan,SC,321,4495193243.112128,11.194698868019486,-2
|
39
|
+
37,Jan,TN,360,6526632027.194073,-10.71688504998167,15
|
40
|
+
38,Jan,TX,1414,25611915019.355957,-2.781887900961806,0
|
41
|
+
39,Jan,UT,182,3145097461.4076686,9.004916532446487,0
|
42
|
+
40,Jan,VT,41,847602964.8727119,-6.945195358476212,30
|
43
|
+
41,Jan,VA,535,8241744916.778457,-12.65574320018004,0
|
44
|
+
42,Jan,WA,425,7224982816.163771,-5.702045933924978,8
|
45
|
+
43,Jan,WI,447,7483215644.490423,-26.881663771476497,30
|
46
|
+
44,Jan,NE,137,2071211969.696039,-5.750199865530021,0
|
47
|
+
45,Jan,ND,48,678965747.7387099,14.985839665794515,0
|
48
|
+
46,Jan,RI,70,1249513391.777745,-14.03076969745689,0
|
49
|
+
47,Jan,SD,56,763845304.9753928,7.49055615258942,0
|
50
|
+
48,Jan,WV,122,2013734386.417349,21.3937807241806,0
|
51
|
+
49,Jan,WY,37,709554665.3658283,-2.8311352374998933,33
|
52
|
+
50,Jan,AK,42,527809194.88608015,-26.77987149117314,0
|
53
|
+
51,Feb,AL,272,4295975754.631793,-22.425367152877243,15
|
54
|
+
52,Feb,AZ,297,4819620788.284443,-29.01654229626331,30
|
55
|
+
53,Feb,AR,141,2123000006.4149928,-9.22123624924643,5
|
56
|
+
54,Feb,CA,1517,28189662542.430866,2.4555831597203905,0
|
57
|
+
55,Feb,CO,289,4223311733.3730035,-5.589516700234867,12
|
58
|
+
56,Feb,CT,164,2875217228.6055408,16.021575958120025,-5
|
59
|
+
57,Feb,DE,41,593388637.26184,58.71458630057771,-45
|
60
|
+
58,Feb,DC,32,359958101.427902,7.286521873148558,0
|
61
|
+
59,Feb,FL,790,13457855221.613382,11.205669935425362,0
|
62
|
+
60,Feb,GA,429,8517525310.08934,17.0622243785632,0
|
63
|
+
61,Feb,HI,53,910129187.1172825,-0.34736869026824024,5
|
64
|
+
62,Feb,ID,99,1298985980.0633974,1.3598806522512632,0
|
65
|
+
63,Feb,IL,612,10800651522.77236,-10.469253775051811,0
|
66
|
+
64,Feb,IN,332,5660572088.96163,10.478507322583937,0
|
67
|
+
65,Feb,IA,199,2648402280.8375015,-2.2017364393676644,0
|
68
|
+
66,Feb,KS,183,2705247422.8888726,-7.71091861848663,18
|
69
|
+
67,Feb,KY,245,3433812063.4742193,1.5015409396835366,0
|
70
|
+
68,Feb,LA,237,3663390375.4709854,-23.63584968191583,30
|
71
|
+
69,Feb,ME,70,1117904077.3112333,-8.019183665465903,5
|
72
|
+
70,Feb,MD,285,4368150188.836962,-1.586238757299384,0
|
73
|
+
71,Feb,MA,319,5470515179.128872,-8.806744950563484,0
|
74
|
+
72,Feb,MI,521,8897879964.490149,12.558180871786476,0
|
75
|
+
73,Feb,MN,354,5679666392.337878,-8.125814061001961,11
|
76
|
+
74,Feb,MS,161,2311973428.9336925,-26.136583040250457,30
|
77
|
+
75,Feb,MO,366,6086099759.58458,-10.66964726371225,15
|
78
|
+
76,Feb,MT,61,1112342533.398297,15.794207371036464,-30
|
79
|
+
77,Feb,NV,122,1925322304.451198,7.788492062550176,0
|
80
|
+
78,Feb,NH,82,1516623953.262094,-17.39735167586707,30
|
81
|
+
79,Feb,NJ,408,7297238295.5594225,2.2264955167843254,0
|
82
|
+
80,Feb,NM,111,1605272770.6076245,6.142879712256104,0
|
83
|
+
81,Feb,NY,887,14329146718.834705,4.303899687716807,-15
|
84
|
+
82,Feb,NC,473,7713699727.896203,-7.017753136670194,0
|
85
|
+
83,Feb,OH,599,10498316248.788332,-11.056430730370494,0
|
86
|
+
84,Feb,OK,213,2812242854.1454225,5.118643685462075,0
|
87
|
+
85,Feb,OR,241,3911663542.638091,-16.479908298284386,15
|
88
|
+
86,Feb,PA,652,12104907351.771381,-7.66668826403793,0
|
89
|
+
87,Feb,SC,256,3699343931.399225,-9.004156581856023,0
|
90
|
+
88,Feb,TN,295,5414591986.51799,-12.573677216353303,15
|
91
|
+
89,Feb,TX,997,17835758118.254707,-1.3210675908344456,0
|
92
|
+
90,Feb,UT,151,2234479430.3961086,-16.770620720603688,11
|
93
|
+
91,Feb,VT,27,442422058.7009178,-5.1889851045300475,0
|
94
|
+
92,Feb,VA,408,7093918870.572657,1.331221844099673,0
|
95
|
+
93,Feb,WA,354,6345221039.784683,-8.098841412868751,2
|
96
|
+
94,Feb,WI,355,5612845320.170866,-13.838126972480495,30
|
97
|
+
95,Feb,NE,121,1654344895.018912,6.5632118075509425,0
|
98
|
+
96,Feb,ND,37,655168422.4648821,0.6497040497680473,-1
|
99
|
+
97,Feb,RI,58,1057812700.8113961,0.3411778450707743,30
|
100
|
+
98,Feb,SD,48,608118228.917038,-8.091619892533686,30
|
101
|
+
99,Feb,WV,124,2165316715.2617216,15.877620009898692,0
|
102
|
+
100,Feb,WY,41,638945771.8306189,-10.175019273969383,30
|
103
|
+
101,Feb,AK,36,674622028.9183232,-12.635120723991463,30
|
104
|
+
102,Mar,AL,282,4820960345.810608,-12.610934986052484,20
|
105
|
+
103,Mar,AZ,285,4910288232.826552,-27.806961890360867,7
|
106
|
+
104,Mar,AR,179,2460198049.047658,14.888535910396627,15
|
107
|
+
105,Mar,CA,1697,31181032838.36003,-4.4030193805469935,0
|
108
|
+
106,Mar,CO,336,4812061307.511513,-13.84039578652039,0
|
109
|
+
107,Mar,CT,209,3393842301.8246045,9.612726793365255,0
|
110
|
+
108,Mar,DE,60,833330376.4440901,18.38193487385024,-5
|
111
|
+
109,Mar,DC,51,756129634.6232551,-8.563013749779998,0
|
112
|
+
110,Mar,FL,986,16350275261.027481,0.014075770166186885,-13
|
113
|
+
111,Mar,GA,445,7838735771.309457,4.353706397887436,-5
|
114
|
+
112,Mar,HI,57,1234051029.1776495,-28.30563655702042,60
|
115
|
+
113,Mar,ID,87,1814942136.70289,2.624203845551847,15
|
116
|
+
114,Mar,IL,725,12711971035.081554,-3.877036070627014,0
|
117
|
+
115,Mar,IN,390,7330375742.959576,-3.7514190081348033,0
|
118
|
+
116,Mar,IA,238,3459690325.5688157,4.173714474226358,0
|
119
|
+
117,Mar,KS,220,3128117106.07873,7.6646193611043145,0
|
120
|
+
118,Mar,KY,299,4676920238.635747,-6.358748931781065,0
|
121
|
+
119,Mar,LA,257,3872778107.0847526,-8.47143297940272,30
|
122
|
+
120,Mar,ME,98,1623807509.1768858,-39.98955692776178,30
|
123
|
+
121,Mar,MD,353,6115127715.326363,-6.780768255386988,0
|
124
|
+
122,Mar,MA,370,7245683278.822421,1.5595411662363858,0
|
125
|
+
123,Mar,MI,564,9744271036.585466,0.2100433070897907,0
|
126
|
+
124,Mar,MN,386,6432875568.617161,2.234597322299237,0
|
127
|
+
125,Mar,MS,195,2782342703.2968273,-16.236388323545384,15
|
128
|
+
126,Mar,MO,358,5772361744.324101,-4.640094281723236,13
|
129
|
+
127,Mar,MT,61,1023402517.8015666,-18.443202550170668,0
|
130
|
+
128,Mar,NV,145,2155248192.707636,-24.371301571331173,30
|
131
|
+
129,Mar,NH,70,1213264310.743929,16.76158743520989,15
|
132
|
+
130,Mar,NJ,451,7810137759.171498,7.01287263674692,-15
|
133
|
+
131,Mar,NM,141,1910838222.3333614,-25.846700881392394,30
|
134
|
+
132,Mar,NY,966,17543404663.871334,-1.2838188667760733,-2
|
135
|
+
133,Mar,NC,516,8952243156.019615,-4.734763340397649,0
|
136
|
+
134,Mar,OH,668,12442032630.553473,7.7194657267258435,0
|
137
|
+
135,Mar,OK,236,3601234929.2192855,6.156310472398104,0
|
138
|
+
136,Mar,OR,245,4280478843.9884257,-11.183303977553692,0
|
139
|
+
137,Mar,PA,777,14172131547.68285,4.5053266092571675,0
|
140
|
+
138,Mar,SC,266,3650505966.4468155,-4.070736585387408,0
|
141
|
+
139,Mar,TN,315,5409983456.580576,-3.1050762750516014,0
|
142
|
+
140,Mar,TX,1188,22150188356.306442,-4.202994429759087,0
|
143
|
+
141,Mar,UT,170,2891055704.3523583,5.563229103388153,0
|
144
|
+
142,Mar,VT,42,481097319.53026,-45.87466697264517,30
|
145
|
+
143,Mar,VA,501,7719083516.674862,2.798226307214918,-5
|
146
|
+
144,Mar,WA,404,6370214799.422471,-9.789104863531975,16
|
147
|
+
145,Mar,WI,388,7449935059.13869,-3.029742129185024,0
|
148
|
+
146,Mar,NE,139,1709703590.8623157,-6.163323664186805,0
|
149
|
+
147,Mar,ND,46,582622646.8069338,12.957857357254284,-30
|
150
|
+
148,Mar,RI,62,1017083048.8094712,12.42817862641391,5
|
151
|
+
149,Mar,SD,55,870265403.046803,40.99232764259352,0
|
152
|
+
150,Mar,WV,111,1744183662.9946542,-9.03368553821474,0
|
153
|
+
151,Mar,WY,36,761326246.106632,-51.75840580274746,30
|
154
|
+
152,Mar,AK,33,609486939.785469,39.58893452498796,0
|
155
|
+
153,Apr,AL,265,4545353377.606846,-18.603991249813248,25
|
156
|
+
154,Apr,AZ,297,5628916162.9365015,-30.356316554903287,30
|
157
|
+
155,Apr,AR,154,2583825091.3561687,-13.060199544692523,15
|
158
|
+
156,Apr,CA,1614,33392758718.190517,-4.612430081958223,0
|
159
|
+
157,Apr,CO,283,4591319310.380867,-20.377644183324946,0
|
160
|
+
158,Apr,CT,202,3516908294.408216,14.939286554987575,0
|
161
|
+
159,Apr,DE,45,832017695.7945832,42.14280202376574,0
|
162
|
+
160,Apr,DC,37,548407172.706362,40.38622091908326,-31
|
163
|
+
161,Apr,FL,848,16231466303.928942,-3.3511719287487267,0
|
164
|
+
162,Apr,GA,436,9123227762.852367,14.989833317534362,0
|
165
|
+
163,Apr,HI,35,457516120.89654595,23.769703375183894,30
|
166
|
+
164,Apr,ID,83,1484934124.6506433,-10.114571569392297,0
|
167
|
+
165,Apr,IL,708,12871751905.944214,-11.509583889560986,0
|
168
|
+
166,Apr,IN,352,6990971861.761431,-3.556969258760887,0
|
169
|
+
167,Apr,IA,218,3475894236.254883,2.5286790417480915,0
|
170
|
+
168,Apr,KS,188,3664391739.766348,-10.086944510496664,0
|
171
|
+
169,Apr,KY,235,3668989920.684433,-18.965837132862703,0
|
172
|
+
170,Apr,LA,226,4110692616.993306,-20.047864302313087,27
|
173
|
+
171,Apr,ME,91,1431885733.359869,-4.990252051972448,15
|
174
|
+
172,Apr,MD,324,5473038427.540109,-10.48894173872236,0
|
175
|
+
173,Apr,MA,332,7290297996.144422,-3.172600427108364,0
|
176
|
+
174,Apr,MI,606,11365384562.490934,12.839346000107867,-30
|
177
|
+
175,Apr,MN,338,5872322833.8103485,1.7839416825195258,0
|
178
|
+
176,Apr,MS,156,2880047277.1924486,-11.411524771313566,25
|
179
|
+
177,Apr,MO,370,6769512129.496274,-9.382066390819773,0
|
180
|
+
178,Apr,MT,61,1002671690.9131713,-32.974283945461934,0
|
181
|
+
179,Apr,NV,146,2525682596.669427,-7.799242898668922,10
|
182
|
+
180,Apr,NH,92,1854295087.5960145,-4.324157936687925,25
|
183
|
+
181,Apr,NJ,467,9009766007.896173,9.022907402371516,-15
|
184
|
+
182,Apr,NM,124,1897897573.4676409,-21.13722412304287,5
|
185
|
+
183,Apr,NY,856,16813725012.503597,3.9461016834397924,-4
|
186
|
+
184,Apr,NC,523,9334042542.078928,1.2016861545606616,0
|
187
|
+
185,Apr,OH,601,10801909535.587786,10.867864282765709,-19
|
188
|
+
186,Apr,OK,177,3178094190.1605616,-13.013528973445773,0
|
189
|
+
187,Apr,OR,222,3855252866.2678733,-9.867212374063683,0
|
190
|
+
188,Apr,PA,672,13474013345.265745,8.498969807494177,0
|
191
|
+
189,Apr,SC,244,4034860591.3657403,4.4065488658462755,-5
|
192
|
+
190,Apr,TN,351,6589987550.428697,-11.585705867734418,6
|
193
|
+
191,Apr,TX,1126,22105901465.91374,-1.9906994012621908,0
|
194
|
+
192,Apr,UT,162,3087063187.564513,19.892617606512886,0
|
195
|
+
193,Apr,VT,34,789002633.294753,31.150601047472833,-15
|
196
|
+
194,Apr,VA,478,8617974029.4146,0.5905692432975229,0
|
197
|
+
195,Apr,WA,345,6474102750.777499,-7.073327087740154,0
|
198
|
+
196,Apr,WI,366,6507199320.970538,-15.109568734063487,5
|
199
|
+
197,Apr,NE,108,1911720003.6862924,6.026542706081045,0
|
200
|
+
198,Apr,ND,47,608574278.9802396,-16.03552873434637,-30
|
201
|
+
199,Apr,RI,59,1028475623.980529,-51.414918781256006,30
|
202
|
+
200,Apr,SD,59,931468947.6402158,-3.32955561406618,0
|
203
|
+
201,Apr,WV,112,2234740028.1738076,-30.657336320095283,0
|
204
|
+
202,Apr,WY,21,389844157.755938,-32.95729116248128,5
|
205
|
+
203,Apr,AK,44,955439913.0031226,-21.85959294217423,0
|
206
|
+
204,May,AL,260,4232410364.1910644,-21.456152515105487,20
|
207
|
+
205,May,AZ,274,4869980997.609402,-27.420215736485602,30
|
208
|
+
206,May,AR,188,2897417210.1047244,-6.521364942358446,5
|
209
|
+
207,May,CA,1540,33550676918.261276,-2.323342401656987,0
|
210
|
+
208,May,CO,312,5398729015.872258,-16.781112736774162,0
|
211
|
+
209,May,CT,188,3055173362.6181145,-0.6575458882707608,0
|
212
|
+
210,May,DE,44,745384214.8112963,11.030945597477512,3
|
213
|
+
211,May,DC,35,576569271.6682053,-32.13230385521865,0
|
214
|
+
212,May,FL,881,16118158774.159512,2.4596553681269597,0
|
215
|
+
213,May,GA,408,8019875236.437598,-1.5694389192419749,0
|
216
|
+
214,May,HI,48,811259244.2264867,-22.07717932705134,0
|
217
|
+
215,May,ID,104,1861634496.8073213,10.095915833155914,0
|
218
|
+
216,May,IL,665,12826856546.53931,-6.107701948646195,0
|
219
|
+
217,May,IN,362,8106548451.125851,-17.107888151553084,0
|
220
|
+
218,May,IA,178,3077154830.47065,-9.364139426738689,0
|
221
|
+
219,May,KS,195,3235692101.0894427,4.368587872838134,5
|
222
|
+
220,May,KY,258,4567393299.551556,-0.2472385317809085,0
|
223
|
+
221,May,LA,232,3859469719.801538,14.195078351805819,10
|
224
|
+
222,May,ME,74,1602711306.3609512,6.177063068144548,30
|
225
|
+
223,May,MD,293,5297106124.105904,5.0687908541926845,0
|
226
|
+
224,May,MA,322,5846178199.933386,2.099617072309343,0
|
227
|
+
225,May,MI,512,10087219897.94573,-9.306856377241843,-20
|
228
|
+
226,May,MN,356,6433799863.275913,8.704422189625916,0
|
229
|
+
227,May,MS,156,2333939964.828731,-20.038205125094123,0
|
230
|
+
228,May,MO,348,6632251352.498203,-29.029786289923322,0
|
231
|
+
229,May,MT,68,1001793865.2653469,-27.577597036778798,30
|
232
|
+
230,May,NV,139,2401293706.807368,-14.53911898209526,0
|
233
|
+
231,May,NH,81,1425011134.2925942,4.508203704945004,0
|
234
|
+
232,May,NJ,433,9433185183.316729,-5.595990535910005,0
|
235
|
+
233,May,NM,129,1659203619.490236,1.525697901859985,3
|
236
|
+
234,May,NY,785,15271100035.820278,-11.11649361729826,-9
|
237
|
+
235,May,NC,465,9152613416.19749,6.458124284070664,0
|
238
|
+
236,May,OH,607,12315989521.154339,-9.898001086890531,-20
|
239
|
+
237,May,OK,236,3968427406.580381,-4.7713619981801685,0
|
240
|
+
238,May,OR,246,4438141903.714709,1.5366001961203892,0
|
241
|
+
239,May,PA,637,12557134264.532001,-10.44816027733657,0
|
242
|
+
240,May,SC,247,3966130182.5328817,-2.4017496974501,0
|
243
|
+
241,May,TN,283,6093881499.025261,-18.117328919753277,0
|
244
|
+
242,May,TX,1073,20982850838.28942,3.305188179639117,0
|
245
|
+
243,May,UT,184,3613234490.514857,-10.74107147480072,0
|
246
|
+
244,May,VT,23,453914041.1302442,-26.84412558200313,30
|
247
|
+
245,May,VA,428,8320608690.300938,-3.559196937801403,-9
|
248
|
+
246,May,WA,308,6043469856.186263,-9.131303431416882,0
|
249
|
+
247,May,WI,355,7077236383.150806,-8.826409097960436,30
|
250
|
+
248,May,NE,112,2063079680.4381497,16.53535100094564,0
|
251
|
+
249,May,ND,50,1079042062.0135753,2.1067238047095316,0
|
252
|
+
250,May,RI,66,1169506181.698936,-13.049018042932971,9
|
253
|
+
251,May,SD,49,878727810.0846109,-21.11428720850654,0
|
254
|
+
252,May,WV,108,2093911998.1998065,2.732917069650398,-20
|
255
|
+
253,May,WY,35,456359908.95157605,-51.354787612755786,60
|
256
|
+
254,May,AK,39,685746138.9889522,35.17196231331229,0
|
257
|
+
255,Jun,AL,283,4474739602.246463,-14.549869538697067,30
|
258
|
+
256,Jun,AZ,289,5238978836.6043,-14.129938356358025,13
|
259
|
+
257,Jun,AR,165,2895471714.6329403,-3.1644629569126437,10
|
260
|
+
258,Jun,CA,1564,30033752603.477135,-5.157348144177149,0
|
261
|
+
259,Jun,CO,309,4779709130.553852,-12.784700506081435,0
|
262
|
+
260,Jun,CT,202,3948244272.0345974,-1.4863697990887204,0
|
263
|
+
261,Jun,DE,55,905079301.455927,-61.64212678671686,-60
|
264
|
+
262,Jun,DC,36,539501314.4924543,20.267358999612043,-30
|
265
|
+
263,Jun,FL,891,16266465994.419098,6.236894142239635,0
|
266
|
+
264,Jun,GA,402,7472170720.839482,4.098361053768485,-10
|
267
|
+
265,Jun,HI,54,925576765.6539989,-17.24019669010056,0
|
268
|
+
266,Jun,ID,95,1412336197.8596656,-2.8757864405171176,8
|
269
|
+
267,Jun,IL,644,12944516590.57394,-12.022064651246637,0
|
270
|
+
268,Jun,IN,372,7282430627.568274,1.4169125402249847,0
|
271
|
+
269,Jun,IA,226,3581938493.1385965,-17.952891587817703,0
|
272
|
+
270,Jun,KS,219,3304613765.406577,2.4353561728127033,0
|
273
|
+
271,Jun,KY,264,4124482521.589381,-4.695284984284399,0
|
274
|
+
272,Jun,LA,205,3067711475.894065,-24.29344076429868,10
|
275
|
+
273,Jun,ME,55,833344499.0726937,-5.426106658480762,0
|
276
|
+
274,Jun,MD,287,5321866500.440113,10.34337689064273,-30
|
277
|
+
275,Jun,MA,312,5596132611.055558,-8.564155293471913,0
|
278
|
+
276,Jun,MI,537,9600072181.174406,-0.9064894215789536,-30
|
279
|
+
277,Jun,MN,360,6065934480.68444,-20.87708833254362,0
|
280
|
+
278,Jun,MS,182,2880755766.0441666,-10.820593920873534,29
|
281
|
+
279,Jun,MO,342,5373530639.146533,-13.764360967835046,0
|
282
|
+
280,Jun,MT,58,837866991.6804069,-10.297784286722845,0
|
283
|
+
281,Jun,NV,140,2324126031.5873494,-19.53147496972315,0
|
284
|
+
282,Jun,NH,65,1083487674.655081,-10.96251993244664,30
|
285
|
+
283,Jun,NJ,429,8470724879.154278,16.649092996047784,0
|
286
|
+
284,Jun,NM,110,1864507711.291298,-29.840427651960567,0
|
287
|
+
285,Jun,NY,866,16283374060.289404,11.14756880396203,-20
|
288
|
+
286,Jun,NC,481,8531894617.331529,-1.012475328845312,0
|
289
|
+
287,Jun,OH,597,11423884317.853783,19.022047663219496,-30
|
290
|
+
288,Jun,OK,240,4093144167.212572,-5.744501612360978,0
|
291
|
+
289,Jun,OR,233,3753135345.0176134,2.7410752365544795,-20
|
292
|
+
290,Jun,PA,701,14142056336.526964,-5.4446280519524635,0
|
293
|
+
291,Jun,SC,263,4015662232.739259,13.845097859792077,-10
|
294
|
+
292,Jun,TN,307,6064748588.993725,14.82996643165825,0
|
295
|
+
293,Jun,TX,1083,20812207583.62748,-7.8882273827777,0
|
296
|
+
294,Jun,UT,168,3264052215.280054,-13.834678860783924,-30
|
297
|
+
295,Jun,VT,43,944446250.2452279,-1.6048726166238794,30
|
298
|
+
296,Jun,VA,439,7335859557.482198,1.9658580087653945,-13
|
299
|
+
297,Jun,WA,326,5586683270.14609,-4.008393460977459,0
|
300
|
+
298,Jun,WI,349,5768447003.132259,-14.17083158291075,0
|
301
|
+
299,Jun,NE,115,1911868683.4681466,-33.69000822545377,0
|
302
|
+
300,Jun,ND,38,787303277.422542,-2.4557830999552834,0
|
303
|
+
301,Jun,RI,64,858328558.5044342,9.292238399494295,0
|
304
|
+
302,Jun,SD,49,663636401.9151609,-25.73317539883078,0
|
305
|
+
303,Jun,WV,102,1454185921.1613789,-3.3258985275481336,0
|
306
|
+
304,Jun,WY,29,454814982.2829779,-20.278461922883366,37
|
307
|
+
305,Jun,AK,26,433590301.5230699,41.0184980880515,-42
|
308
|
+
306,July,AL,265,4623095157.742597,-9.12443762649184,25
|
309
|
+
307,July,AZ,255,5012048175.675645,-26.637019850628917,0
|
310
|
+
308,July,AR,157,3067359827.692923,-13.0451881219102,0
|
311
|
+
309,July,CA,1505,29899340412.633,-1.6492377540839698,0
|
312
|
+
310,July,CO,286,4676312408.996825,-16.7401857120459,0
|
313
|
+
311,July,CT,197,3125570205.66655,12.446792159661868,-10
|
314
|
+
312,July,DE,45,898775158.0961839,-16.349162186019498,0
|
315
|
+
313,July,DC,54,781583349.3235077,-2.753200932445793,-5
|
316
|
+
314,July,FL,900,17178455713.234467,1.8559933852382073,-8
|
317
|
+
315,July,GA,421,8559621801.987247,5.587799875486894,0
|
318
|
+
316,July,HI,45,735974044.8163931,-22.98264587542235,28
|
319
|
+
317,July,ID,91,1276325446.5677752,-6.800566112750857,-30
|
320
|
+
318,July,IL,694,13126602622.068523,-14.292178770181295,0
|
321
|
+
319,July,IN,329,6319591640.86917,-0.5482322931954968,0
|
322
|
+
320,July,IA,180,2789499972.9110303,-9.5765396908904,0
|
323
|
+
321,July,KS,192,3135221124.07444,-5.64384776216923,0
|
324
|
+
322,July,KY,284,4706037817.076679,-6.769274998314131,-20
|
325
|
+
323,July,LA,215,3912978279.8449264,-10.349839574377825,0
|
326
|
+
324,July,ME,96,1632577788.1506279,-55.729804299722446,30
|
327
|
+
325,July,MD,308,5564498623.025823,-14.414197475381002,-30
|
328
|
+
326,July,MA,330,6889901935.300478,17.35700362188402,-24
|
329
|
+
327,July,MI,531,10525377678.12523,3.149032507150423,-30
|
330
|
+
328,July,MN,350,5842233938.343931,-19.538985060107848,0
|
331
|
+
329,July,MS,173,3552449831.0961213,-10.600686500037455,0
|
332
|
+
330,July,MO,312,5340383287.060106,-19.13756060972969,0
|
333
|
+
331,July,MT,57,963370189.2795134,-6.224833321008191,0
|
334
|
+
332,July,NV,132,2084162564.8120673,-21.918120738774178,24
|
335
|
+
333,July,NH,67,1398495262.1556923,-46.781017644210465,30
|
336
|
+
334,July,NJ,427,8220731739.954223,16.82037641434067,-12
|
337
|
+
335,July,NM,127,2254104594.1527495,-16.255507281940595,0
|
338
|
+
336,July,NY,858,16033648597.370863,9.186373006913641,-15
|
339
|
+
337,July,NC,470,9118327400.181475,-0.7115471388513015,0
|
340
|
+
338,July,OH,632,12981343137.46132,-3.256973515653044,-30
|
341
|
+
339,July,OK,207,3007660084.99866,-4.11214861330734,0
|
342
|
+
340,July,OR,231,4319352868.302605,-14.49462888638152,0
|
343
|
+
341,July,PA,711,14281604589.550344,-2.207578076084701,0
|
344
|
+
342,July,SC,259,4178217601.3012195,10.894030498429629,0
|
345
|
+
343,July,TN,291,6050016182.291098,-6.639068239057792,4
|
346
|
+
344,July,TX,1173,23086169966.046024,-1.3134105206581808,0
|
347
|
+
345,July,UT,154,2802771287.3462667,2.7666048366220366,-30
|
348
|
+
346,July,VT,30,503194661.753783,-29.799030031096663,30
|
349
|
+
347,July,VA,464,8217887279.155638,-6.170718624873643,-14
|
350
|
+
348,July,WA,375,6721976542.579267,1.3836767390736213,-10
|
351
|
+
349,July,WI,349,6028459381.942889,-28.092606651583424,0
|
352
|
+
350,July,NE,114,1930367479.97492,-11.342156827927397,0
|
353
|
+
351,July,ND,39,691986958.961978,-11.161574805344685,0
|
354
|
+
352,July,RI,62,1179686513.3225498,-55.32896017158669,0
|
355
|
+
353,July,SD,60,1228922001.7397196,-13.504490223389666,0
|
356
|
+
354,July,WV,103,1842491973.6655333,-1.85680397255976,-15
|
357
|
+
355,July,WY,36,664673361.8360131,6.340020373328116,-30
|
358
|
+
356,July,AK,28,427122847.08929276,2.4340800999993917,30
|
359
|
+
357,Aug,AL,263,4514730740.55387,-31.218778203377383,18
|
360
|
+
358,Aug,AZ,302,6226737267.0423155,-12.231567229329244,30
|
361
|
+
359,Aug,AR,159,2603600017.349863,-11.598616028606443,0
|
362
|
+
360,Aug,CA,1541,31919730566.09396,-5.224636794250273,0
|
363
|
+
361,Aug,CO,283,5312102023.9574175,2.5795145517245146,0
|
364
|
+
362,Aug,CT,183,3387561512.943229,13.035034100112398,0
|
365
|
+
363,Aug,DE,43,815134308.5168855,18.701960200445455,0
|
366
|
+
364,Aug,DC,40,833106068.6770109,14.512483590897773,0
|
367
|
+
365,Aug,FL,835,15218168045.416052,6.759207967016891,-5
|
368
|
+
366,Aug,GA,413,7941573236.663953,7.600060331698046,-15
|
369
|
+
367,Aug,HI,52,1073610697.4258641,-25.80473285010794,0
|
370
|
+
368,Aug,ID,103,1769083726.4743168,-8.95351766510521,0
|
371
|
+
369,Aug,IL,659,12735102342.727276,-5.157780411477802,0
|
372
|
+
370,Aug,IN,345,6990676784.907407,-17.518165190663126,0
|
373
|
+
371,Aug,IA,216,3857067774.204428,6.883147413710958,0
|
374
|
+
372,Aug,KS,172,2956693486.089518,-5.027422151577184,0
|
375
|
+
373,Aug,KY,263,4593154149.070099,-12.748983177197374,0
|
376
|
+
374,Aug,LA,220,4286136762.2671733,-2.394291723594165,0
|
377
|
+
375,Aug,ME,75,1508690998.0191166,-52.40849292223584,30
|
378
|
+
376,Aug,MD,318,6852475856.927772,20.541224968250276,-30
|
379
|
+
377,Aug,MA,336,6731882616.339707,5.2339603680597975,0
|
380
|
+
378,Aug,MI,577,10479737394.262196,6.003155421226438,-15
|
381
|
+
379,Aug,MN,374,6824776574.118354,-7.899121894287532,0
|
382
|
+
380,Aug,MS,178,3146771639.956837,-14.797329165775068,26
|
383
|
+
381,Aug,MO,321,5745008458.959866,-7.281249942448312,0
|
384
|
+
382,Aug,MT,55,735670815.0980518,5.800660297695799,0
|
385
|
+
383,Aug,NV,141,2570127634.7481084,-26.496372042414237,30
|
386
|
+
384,Aug,NH,81,1710312150.4740903,2.5429169239331486,0
|
387
|
+
385,Aug,NJ,417,7877499390.384023,4.352776410501633,-25
|
388
|
+
386,Aug,NM,129,1921193125.2653275,-24.3658563450914,13
|
389
|
+
387,Aug,NY,911,17238553760.809105,-2.008800616366102,-20
|
390
|
+
388,Aug,NC,522,9227869867.663221,-11.787231185146197,-5
|
391
|
+
389,Aug,OH,612,11988587049.720457,-3.99491065382108,-30
|
392
|
+
390,Aug,OK,200,3532897953.1446075,-11.097945232648385,0
|
393
|
+
391,Aug,OR,241,4339444182.073283,-4.163236361535837,0
|
394
|
+
392,Aug,PA,680,13988465619.324165,-10.670594442865308,0
|
395
|
+
393,Aug,SC,262,4307955138.743373,-10.142413994380263,0
|
396
|
+
394,Aug,TN,313,6119095124.130107,-11.909435040260405,0
|
397
|
+
395,Aug,TX,1197,23798919580.73222,-8.860983543239513,0
|
398
|
+
396,Aug,UT,133,2560444879.020845,-9.803577201803137,0
|
399
|
+
397,Aug,VT,39,502204823.5676832,8.640639377122739,-15
|
400
|
+
398,Aug,VA,434,7857014159.794869,18.379827930213764,-10
|
401
|
+
399,Aug,WA,347,6431894657.589538,-18.20516380742731,0
|
402
|
+
400,Aug,WI,377,6389857849.888933,-7.006499122416244,0
|
403
|
+
401,Aug,NE,133,2259643837.737822,5.081903974034049,0
|
404
|
+
402,Aug,ND,44,661949422.9287491,-25.77580696728444,-30
|
405
|
+
403,Aug,RI,58,977732787.4015753,-28.287757993846185,3
|
406
|
+
404,Aug,SD,65,1217352910.9185944,-15.789492937988484,-10
|
407
|
+
405,Aug,WV,92,1736993468.0524466,7.26459495824372,0
|
408
|
+
406,Aug,WY,30,563165339.8748782,-1.109149885165266,-30
|
409
|
+
407,Aug,AK,26,401488566.919879,29.022238607229838,0
|
410
|
+
408,Sep,AL,239,4223336329.2930055,-9.931149885067725,0
|
411
|
+
409,Sep,AZ,275,5185405658.3233595,-14.778612531027875,30
|
412
|
+
410,Sep,AR,189,3726711234.6998477,-2.9796586589257004,15
|
413
|
+
411,Sep,CA,1546,31194783346.741146,-4.7281967931425015,0
|
414
|
+
412,Sep,CO,268,4400523033.075882,5.170034265837103,15
|
415
|
+
413,Sep,CT,204,3369549572.4973745,13.914628380036902,0
|
416
|
+
414,Sep,DE,42,700720323.5924549,34.49679181749343,0
|
417
|
+
415,Sep,DC,35,347158618.5939969,22.334281928409382,-30
|
418
|
+
416,Sep,FL,838,15501397654.091284,0.3866830407398538,0
|
419
|
+
417,Sep,GA,433,8839657095.867123,0.3987800204247378,-3
|
420
|
+
418,Sep,HI,39,702481093.7573448,-18.418567202647523,-30
|
421
|
+
419,Sep,ID,85,1303116251.7447314,-4.760843889765738,0
|
422
|
+
420,Sep,IL,659,11946488433.5344,-10.006296448262674,0
|
423
|
+
421,Sep,IN,326,6988278273.702606,9.97346060172697,0
|
424
|
+
422,Sep,IA,182,2999174933.9151936,-5.087392310961377,0
|
425
|
+
423,Sep,KS,160,2757497928.0488377,-3.7402775192496165,0
|
426
|
+
424,Sep,KY,260,4673969789.046483,7.673393561501143,0
|
427
|
+
425,Sep,LA,226,3942603476.807717,3.9764371085449284,0
|
428
|
+
426,Sep,ME,79,1421730570.3413615,4.910376678128159,5
|
429
|
+
427,Sep,MD,292,5674829199.213039,0.8332365995548798,0
|
430
|
+
428,Sep,MA,333,6010339744.304591,-11.166035707479864,0
|
431
|
+
429,Sep,MI,523,10601265120.215525,7.174751548163613,-14
|
432
|
+
430,Sep,MN,342,5496374452.439429,-7.862725451647975,0
|
433
|
+
431,Sep,MS,163,2792396409.051387,-12.804569777117308,30
|
434
|
+
432,Sep,MO,345,5954713519.48097,-17.157705135452147,11
|
435
|
+
433,Sep,MT,61,937119427.86814,15.86266336172946,9
|
436
|
+
434,Sep,NV,130,2185620966.47121,-31.609657396680745,10
|
437
|
+
435,Sep,NH,66,929336840.2129537,-3.134601658755855,0
|
438
|
+
436,Sep,NJ,431,8441634034.045566,5.736804626178468,-1
|
439
|
+
437,Sep,NM,127,1941617901.4036055,-10.875254840652246,0
|
440
|
+
438,Sep,NY,897,17578070787.729847,9.775620740424642,-20
|
441
|
+
439,Sep,NC,471,9789790263.629126,-9.89610709935846,0
|
442
|
+
440,Sep,OH,569,12247192088.396267,-2.254268016385595,0
|
443
|
+
441,Sep,OK,222,3684499253.792857,-22.19358472623594,0
|
444
|
+
442,Sep,OR,241,4036158117.389864,0.8802085101567627,21
|
445
|
+
443,Sep,PA,672,13619389422.169943,0.5506922051882839,0
|
446
|
+
444,Sep,SC,216,3326394720.414948,19.302470623683007,0
|
447
|
+
445,Sep,TN,282,5587250184.468258,-9.514020403780478,15
|
448
|
+
446,Sep,TX,1067,20329489584.57288,-6.664996749195325,0
|
449
|
+
447,Sep,UT,157,2702358621.123317,2.4997100420682727,0
|
450
|
+
448,Sep,VT,32,574547792.372944,-41.53331393834526,30
|
451
|
+
449,Sep,VA,461,8872126611.669905,-1.4819640402099594,0
|
452
|
+
450,Sep,WA,356,6815811896.965548,4.317050308353032,0
|
453
|
+
451,Sep,WI,345,5997898302.885914,-24.857080028290966,30
|
454
|
+
452,Sep,NE,101,1785328987.0067418,2.7157107557846984,7
|
455
|
+
453,Sep,ND,52,891532658.516012,-21.651019531449265,0
|
456
|
+
454,Sep,RI,48,699649436.7867562,-0.4910293906117431,0
|
457
|
+
455,Sep,SD,48,802277930.2860022,29.241872934180265,0
|
458
|
+
456,Sep,WV,114,2144368261.6947153,4.159999748652126,0
|
459
|
+
457,Sep,WY,29,585673742.0384002,-16.009318230386043,30
|
460
|
+
458,Sep,AK,28,520879504.68253475,26.4756706359791,0
|
461
|
+
459,Oct,AL,288,5293733211.491432,-12.348400186422055,30
|
462
|
+
460,Oct,AZ,274,5618672010.686819,-40.293971678180924,30
|
463
|
+
461,Oct,AR,160,2414668624.6951447,-28.740142878203415,30
|
464
|
+
462,Oct,CA,1559,31117455775.292942,-5.046084487441931,0
|
465
|
+
463,Oct,CO,327,5503442332.237095,3.0431731745570687,0
|
466
|
+
464,Oct,CT,200,3359595976.545434,-9.922298712882366,0
|
467
|
+
465,Oct,DE,42,918255314.647329,20.902760991204218,-11
|
468
|
+
466,Oct,DC,51,799990669.539036,29.11153285019509,-31
|
469
|
+
467,Oct,FL,886,17670748703.501324,11.146371483237544,0
|
470
|
+
468,Oct,GA,396,6935984312.610597,8.858985145519,0
|
471
|
+
469,Oct,HI,48,979943093.3672328,-44.107635872833384,0
|
472
|
+
470,Oct,ID,100,1557739573.095065,-4.213237428029743,0
|
473
|
+
471,Oct,IL,646,12344949951.424809,6.9704582012965375,0
|
474
|
+
472,Oct,IN,356,7594197583.292417,-26.640919276898217,0
|
475
|
+
473,Oct,IA,197,3108153643.3180323,-21.5074990035954,5
|
476
|
+
474,Oct,KS,198,3357530202.9637923,-6.9508902890682975,0
|
477
|
+
475,Oct,KY,280,5160485214.28805,-8.216572751807803,0
|
478
|
+
476,Oct,LA,228,4315019840.444842,-6.448941093954659,20
|
479
|
+
477,Oct,ME,73,1257047073.2522485,-40.81393388615595,30
|
480
|
+
478,Oct,MD,306,6309649760.188026,6.090727162951225,-22
|
481
|
+
479,Oct,MA,310,6115906971.549138,0.2797476430345114,0
|
482
|
+
480,Oct,MI,538,10698198255.978077,16.93169665208802,-14
|
483
|
+
481,Oct,MN,360,6310396573.856352,20.05872869173436,0
|
484
|
+
482,Oct,MS,151,2629147978.0884438,-38.04847027386279,30
|
485
|
+
483,Oct,MO,348,7024531892.727447,-17.984037507252765,0
|
486
|
+
484,Oct,MT,66,1296245456.4216673,-56.52049595567394,30
|
487
|
+
485,Oct,NV,115,2056567449.6160254,-33.97311653130896,30
|
488
|
+
486,Oct,NH,76,1265112405.6490362,1.3317403701273633,20
|
489
|
+
487,Oct,NJ,412,8902553161.296192,9.279349874891182,-15
|
490
|
+
488,Oct,NM,115,1714517041.4408398,29.249453316361837,30
|
491
|
+
489,Oct,NY,879,17044585979.943937,-0.015227014983565823,-15
|
492
|
+
490,Oct,NC,476,8624982847.081488,18.306568033339545,0
|
493
|
+
491,Oct,OH,641,12418067006.36168,3.9666185130356553,0
|
494
|
+
492,Oct,OK,257,3974417383.5067697,-11.668621726780088,0
|
495
|
+
493,Oct,OR,220,4024765014.34853,12.661710141636263,0
|
496
|
+
494,Oct,PA,682,14706614189.92426,-4.797760428188667,0
|
497
|
+
495,Oct,SC,265,3951683284.7608104,-5.918855428215238,-11
|
498
|
+
496,Oct,TN,314,6499200682.148956,0.7927729070898977,0
|
499
|
+
497,Oct,TX,1101,21935765674.340332,4.586336007316731,0
|
500
|
+
498,Oct,UT,180,3503780571.1102624,-0.21839436984316762,0
|
501
|
+
499,Oct,VT,39,461773655.664996,-6.273694671901126,0
|
502
|
+
500,Oct,VA,443,8372787448.15353,16.180433337629893,-15
|
503
|
+
501,Oct,WA,373,7278495895.041048,3.585343558170848,0
|
504
|
+
502,Oct,WI,374,7625767596.811182,-2.987102240184754,15
|
505
|
+
503,Oct,NE,109,1743243278.260685,-13.289132258654035,0
|
506
|
+
504,Oct,ND,49,971815592.866176,-10.387734795432266,0
|
507
|
+
505,Oct,RI,46,763456860.358554,-23.766502575155982,0
|
508
|
+
506,Oct,SD,51,851338255.8732342,8.425710250798943,-30
|
509
|
+
507,Oct,WV,112,1955879600.7499623,-14.031940979358183,0
|
510
|
+
508,Oct,WY,29,316493258.17611295,-3.979942859676953,0
|
511
|
+
509,Oct,AK,30,505581139.6181448,21.355076415614235,0
|
512
|
+
510,Nov,AL,273,4882156126.237691,-10.841600397624006,0
|
513
|
+
511,Nov,AZ,254,5209609164.130845,-17.82378050086686,30
|
514
|
+
512,Nov,AR,144,2372667598.1710563,-0.2802210334658639,0
|
515
|
+
513,Nov,CA,1541,31047182273.911568,-9.670192059461101,0
|
516
|
+
514,Nov,CO,295,5616753655.726931,-15.095071767896002,7
|
517
|
+
515,Nov,CT,179,3123816533.5702634,-14.176216286644717,30
|
518
|
+
516,Nov,DE,45,648432789.628825,26.780907808083953,-30
|
519
|
+
517,Nov,DC,33,701404681.0957798,31.2237822827625,-31
|
520
|
+
518,Nov,FL,805,14785595537.76787,1.5170136982285385,0
|
521
|
+
519,Nov,GA,425,9133304712.332943,-9.405417246919114,0
|
522
|
+
520,Nov,HI,46,865321129.5404052,18.324363079937598,-30
|
523
|
+
521,Nov,ID,87,1409361290.4892473,-14.883806175607106,33
|
524
|
+
522,Nov,IL,619,12126817644.49354,-4.957626877371013,0
|
525
|
+
523,Nov,IN,332,6418910684.497859,-10.460995072219134,0
|
526
|
+
524,Nov,IA,224,3310536461.5477796,-8.87118128497309,0
|
527
|
+
525,Nov,KS,160,2599843678.6561594,7.305107486356974,0
|
528
|
+
526,Nov,KY,249,4183712283.6692166,-11.008669771027144,0
|
529
|
+
527,Nov,LA,208,3573627290.59213,-48.87256833629078,25
|
530
|
+
528,Nov,ME,77,1534139837.3185358,-46.89735745574717,47
|
531
|
+
529,Nov,MD,312,5482267718.257624,-2.3705979031175275,0
|
532
|
+
530,Nov,MA,331,6485542267.779938,2.65744044477799,0
|
533
|
+
531,Nov,MI,544,11053986406.712902,1.306770141681227,0
|
534
|
+
532,Nov,MN,351,5953490468.514309,-15.226769301787385,0
|
535
|
+
533,Nov,MS,161,2530717662.104407,-24.52703775400505,35
|
536
|
+
534,Nov,MO,338,5966507632.086328,-17.04654261021676,30
|
537
|
+
535,Nov,MT,53,1027448569.9030796,-14.613869643554153,30
|
538
|
+
536,Nov,NV,128,2188081158.5274053,-17.051194823106243,29
|
539
|
+
537,Nov,NH,75,1447103411.3528292,-5.092741825509847,0
|
540
|
+
538,Nov,NJ,392,7516519025.832437,4.921056999690791,0
|
541
|
+
539,Nov,NM,103,1426213191.4886189,-23.844915177030884,30
|
542
|
+
540,Nov,NY,853,16702190941.394667,-3.915085950813591,0
|
543
|
+
541,Nov,NC,478,9602112978.863764,7.429326905291532,0
|
544
|
+
542,Nov,OH,579,11979948469.651283,-12.64208755878144,0
|
545
|
+
543,Nov,OK,194,2992872832.8273954,22.161743026736758,0
|
546
|
+
544,Nov,OR,199,3958590305.0379033,-3.6714616090986283,0
|
547
|
+
545,Nov,PA,659,13202701976.158386,-9.259741400629991,0
|
548
|
+
546,Nov,SC,267,4982390530.8982,10.067076314252631,-4
|
549
|
+
547,Nov,TN,316,6345614346.6442175,-22.456330043950175,9
|
550
|
+
548,Nov,TX,1084,23016832370.231976,-0.9839423050643745,0
|
551
|
+
549,Nov,UT,171,3056534229.6676283,-1.3174877946206607,0
|
552
|
+
550,Nov,VT,42,736576595.7952905,-62.93170098573387,60
|
553
|
+
551,Nov,VA,435,8592453993.300503,-9.620447624261487,0
|
554
|
+
552,Nov,WA,363,6792370419.778321,2.38022346576588,0
|
555
|
+
553,Nov,WI,346,6266919668.916316,-3.6348382279766156,0
|
556
|
+
554,Nov,NE,124,1947298622.2253036,9.302487787436576,0
|
557
|
+
555,Nov,ND,36,563691953.1479949,19.05491081582568,0
|
558
|
+
556,Nov,RI,55,1072213231.4024358,-55.479247335826926,30
|
559
|
+
557,Nov,SD,43,749088245.3267571,23.221825238837823,10
|
560
|
+
558,Nov,WV,105,1973633853.8085425,-21.418543913223402,30
|
561
|
+
559,Nov,WY,36,825427768.0097871,21.773849046963278,30
|
562
|
+
560,Nov,AK,25,350645904.1067259,34.98470641390145,15
|
563
|
+
561,Dec,AL,248,4052661990.5918827,-28.506437626279308,30
|
564
|
+
562,Dec,AZ,250,4354087517.383864,-39.876949236771,30
|
565
|
+
563,Dec,AR,167,2808312073.771635,-12.215221565040565,15
|
566
|
+
564,Dec,CA,1459,30334319287.01471,-7.969592446576598,0
|
567
|
+
565,Dec,CO,282,5271587100.953048,-8.05737578570745,0
|
568
|
+
566,Dec,CT,169,2967509713.285758,-21.05233920066553,0
|
569
|
+
567,Dec,DE,60,1108661060.409402,-4.692905448304259,0
|
570
|
+
568,Dec,DC,32,427723468.18739116,6.588164785497611,-60
|
571
|
+
569,Dec,FL,815,15817169687.117638,1.901963498095597,-6
|
572
|
+
570,Dec,GA,415,8760032108.130953,0.6713009293382584,-20
|
573
|
+
571,Dec,HI,44,745465995.3582728,-58.168806994285774,30
|
574
|
+
572,Dec,ID,91,1903228360.2536993,5.396120427556184,0
|
575
|
+
573,Dec,IL,634,12426890066.490356,-4.577968310443907,0
|
576
|
+
574,Dec,IN,369,7805582525.069725,-6.388144802241754,0
|
577
|
+
575,Dec,IA,203,3551947031.0836043,-7.273342251924419,0
|
578
|
+
576,Dec,KS,156,2561936702.2877874,-12.643182086941124,0
|
579
|
+
577,Dec,KY,258,4956565199.31428,2.312633923845965,-11
|
580
|
+
578,Dec,LA,223,3690672563.4359117,-10.78858254909835,29
|
581
|
+
579,Dec,ME,74,1248319676.593391,-19.87701102222161,30
|
582
|
+
580,Dec,MD,295,5467399929.675827,18.190035711216638,0
|
583
|
+
581,Dec,MA,337,6935715581.350615,-21.134815698381544,1
|
584
|
+
582,Dec,MI,539,10762075612.899063,5.002756903773047,-1
|
585
|
+
583,Dec,MN,355,6552934127.827269,-10.244842932519873,0
|
586
|
+
584,Dec,MS,175,2998673539.781294,-23.22402197681663,30
|
587
|
+
585,Dec,MO,314,5878592387.810089,-10.246760409906983,0
|
588
|
+
586,Dec,MT,52,963129820.1470933,-46.11062408827172,30
|
589
|
+
587,Dec,NV,140,3084320905.5365233,-1.0842440934683282,0
|
590
|
+
588,Dec,NH,67,1079912116.4096417,-25.008900919914254,15
|
591
|
+
589,Dec,NJ,406,8576979514.333734,14.659432669158036,0
|
592
|
+
590,Dec,NM,127,1779004137.668842,-34.60524912864798,30
|
593
|
+
591,Dec,NY,836,17638742685.630188,7.196782378377748,-14
|
594
|
+
592,Dec,NC,478,9290130966.855522,17.276660392016538,-6
|
595
|
+
593,Dec,OH,578,12303001751.634512,-15.255977994539876,0
|
596
|
+
594,Dec,OK,204,3275084551.7795615,20.64795995380905,0
|
597
|
+
595,Dec,OR,225,4211248169.657883,-0.13299101580696515,0
|
598
|
+
596,Dec,PA,656,15370157514.38166,2.899516953847524,0
|
599
|
+
597,Dec,SC,254,4254237930.2253623,-26.21748825250097,0
|
600
|
+
598,Dec,TN,267,5338876090.6356945,-8.44595445591358,0
|
601
|
+
599,Dec,TX,1149,24633921922.3137,-11.568507399693772,0
|
602
|
+
600,Dec,UT,138,2798365836.381611,10.27292645795319,0
|
603
|
+
601,Dec,VT,34,652160598.7689722,20.125508148172457,0
|
604
|
+
602,Dec,VA,444,8192463542.448703,5.6140789644520055,0
|
605
|
+
603,Dec,WA,342,6879809869.564644,2.2663515983282423,0
|
606
|
+
604,Dec,WI,339,6726191336.976771,-24.92282001823139,12
|
607
|
+
605,Dec,NE,104,2006242138.88688,1.3294512637090747,6
|
608
|
+
606,Dec,ND,41,773457702.3260839,41.433114067745464,-30
|
609
|
+
607,Dec,RI,61,1256930815.7085152,-3.493761129768245,4
|
610
|
+
608,Dec,SD,52,842472809.8404261,9.905745377848461,-15
|
611
|
+
609,Dec,WV,89,1563887791.3803394,-14.811237778821692,0
|
612
|
+
610,Dec,WY,29,451177306.2380711,-6.626111182503678,30
|
613
|
+
611,Dec,AK,22,400648797.053984,-2.618621530264136,15
|