urbanopt-cli 0.5.1 → 0.5.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -1
- data/CMakeLists.txt +8 -8
- data/LICENSE.md +11 -1
- data/Rakefile +16 -6
- data/example_files/example_project_combined.json +100 -5
- data/example_files/mappers/Baseline.rb +31 -18
- data/example_files/mappers/CreateBar.rb +16 -6
- data/example_files/mappers/EvCharging.rb +20 -10
- data/example_files/mappers/Floorspace.rb +16 -6
- data/example_files/mappers/HighEfficiencyCreateBar.rb +16 -6
- data/example_files/mappers/HighEfficiencyFloorspace.rb +16 -6
- data/example_files/mappers/ThermalStorage.rb +16 -6
- data/example_files/measures/BuildResidentialModel/measure.rb +211 -129
- 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 +1 -0
- data/example_files/resources/hpxml-measures/.github/workflows/config.yml +23 -0
- data/example_files/resources/hpxml-measures/.gitignore +1 -8
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +633 -1188
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +1524 -1211
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/constants.rb +0 -8
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/geometry.rb +424 -335
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/resources/schedules.rb +104 -62
- 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 +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-50percent.osw +30 -54
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-portable.osw +30 -54
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier-ief-whole-home.osw +30 -54
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-dehumidifier.osw +30 -54
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-gas.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-modified.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-none.osw +36 -60
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-oil.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-propane.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-appliances-wood.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-flat.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-radiant-barrier.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-unvented-insulated-roof.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-atticroof-vented.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent-preconditioning.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-mechvent.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-pv.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily-shared-water-heater.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-multifamily.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-bldgtype-single-family-attached.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless-outside.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-combi-tankless.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-dwhr.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-outside.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-standbyloss.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect-with-solar-fraction.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-indirect.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-electric.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-gas.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-hpwh.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-jacket-indirect.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-low-flow-fixtures.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-none.osw +32 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-demand.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-manual.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-nocontrol.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-temperature.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-recirc-timer.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-evacuated-tube.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-flat-plate.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-direct-ics.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-fraction.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-indirect-flat-plate.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-solar-thermosyphon-flat-plate.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-coal.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-elec-uef.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-outside.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas-uef.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-gas.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-outside.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-uef.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar-fraction.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump-with-solar.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-heat-pump.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-oil.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tank-wood.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-outside.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric-uef.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-electric.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-uef.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar-fraction.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas-with-solar.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-gas.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-dhw-tankless-propane.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories-garage.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-2stories.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-1.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-2.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-4.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-beds-5.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-garage.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-ach-house-pressure.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm-house-pressure.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-cfm50.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-flue.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-infil-natural-ach.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-overhangs.osw +32 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-enclosure-windows-none.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-ambient.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-conditioned-basement-slab-insulation.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-slab.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-assembly-r.osw +30 -54
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement-wall-insulation.osw +30 -54
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unconditioned-basement.osw +30 -54
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-unvented-crawlspace.osw +30 -54
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-foundation-vented-crawlspace.osw +30 -54
- 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 +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-2-speed.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-air-to-air-heat-pump-var-speed.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-coal-only.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-elec-only.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-central-ac-1-speed.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-gas-only.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-oil-only.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-propane-only.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-boiler-wood-only.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-1-speed.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-2-speed.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-only-var-speed.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.osw +31 -57
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-dual-fuel-mini-split-heat-pump-ducted.osw +32 -57
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-ducts-leakage-percent.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-elec-resistance-only.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-furnace-gas.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only-ducted.osw +32 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-evap-cooler-only.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fireplace-wood-only.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-fixed-heater-gas-only.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-floor-furnace-propane-only.osw +31 -56
- 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 +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-elec-only.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-2-speed.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-central-ac-var-speed.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-only.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-gas-room-ac.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-oil-only.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-propane-only.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-furnace-wood-only.osw +31 -55
- 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 +31 -57
- 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} +36 -58
- 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 +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-air-conditioner-only-ductless.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-cooling-only.osw +32 -57
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted-heating-only.osw +32 -57
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ducted.osw +32 -57
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-mini-split-heat-pump-ductless.osw +32 -57
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-none.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-portable-heater-gas-only.osw +31 -56
- 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 +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-room-ac-only.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-setpoints.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-oil-only.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-stove-wood-pellets-only.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-undersized.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-hvac-wall-furnace-elec-only.osw +31 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-ceiling-fans.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-lighting-detailed.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-AMY-2012.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-baltimore-md.osw +40 -64
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-dallas-tx.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-duluth-mn.osw +44 -68
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-helena-mt.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-honolulu-hi.osw +337 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-location-miami-fl.osw +31 -55
- 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 +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-bath-kitchen-fans.osw +39 -65
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis-evap-cooler-only-ducted.osw +32 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-cfis.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv-atre-asre.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-erv.osw +31 -55
- 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 +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv-asre.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-hrv.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-supply.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-mechvent-whole-house-fan.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-defaults.osw +29 -53
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon.osw +29 -53
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-loads-large-uncommon2.osw +29 -53
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-misc-neighbor-shading.osw +31 -55
- 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 +30 -54
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-pv.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/{extra-vacancy-6-months.osw → base-schedules-stochastic-vacant.osw} +34 -58
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-stochastic.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-schedules-user-specified.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-calendar-year-custom.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-custom.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-daylight-saving-disabled.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-runperiod-1-month.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base-simcontrol-timestep-10-mins.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/base.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/build_residential_hpxml_test.rb +57 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-auto.osw +31 -55
- 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-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 +31 -55
- 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 +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-enclosure-windows-shading.osw +339 -0
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-pv-roofpitch.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-schedules-random-seed.osw +31 -55
- 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} +34 -58
- 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} +32 -56
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/extra-second-refrigerator.osw +31 -55
- 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 +34 -58
- 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 +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/cooling-system-and-heat-pump.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/dhw-indirect-without-boiler.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/ducts-location-and-areas-not-same-type.osw +31 -55
- 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 +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-crawlspace-zero-foundation-height.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-bottom-slab-non-zero-foundation-height.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multifamily-no-building-orientation.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/multipliers-without-fuel-loads.osw +31 -55
- 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} +35 -59
- 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 +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-ceiling-fan-quantity.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/non-integer-geometry-num-bathrooms.osw +31 -55
- 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 +31 -55
- 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 +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-attached-no-building-orientation.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-finished-basement-zero-foundation-height.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/single-family-detached-slab-non-zero-foundation-height.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/slab-non-zero-foundation-height-above-grade.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unconditioned-basement-with-wall-and-ceiling-insulation.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-attic-with-floor-and-roof-insulation.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/unvented-crawlspace-with-wall-and-ceiling-insulation.osw +31 -55
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-attic-with-floor-and-roof-insulation.osw +33 -57
- data/example_files/resources/hpxml-measures/BuildResidentialHPXML/tests/invalid_files/vented-crawlspace-with-wall-and-ceiling-insulation.osw +31 -55
- 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 +238 -0
- data/example_files/resources/hpxml-measures/Gemfile +4 -2
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.rb +265 -838
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +135 -114
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/BaseElements.xsd +5 -97
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/EPvalidator.xml +573 -193
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLDataTypes.xsd +2 -28
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/HPXMLvalidator.xml +114 -22
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/airflow.rb +107 -176
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constants.rb +12 -180
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/constructions.rb +481 -94
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/generator.rb +2 -6
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/geometry.rb +23 -11
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hotwater_appliances.rb +27 -25
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +735 -453
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +417 -105
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac.rb +1377 -1335
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +1393 -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 +64 -3
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/misc_loads.rb +2 -22
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/pv.rb +1 -3
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/schedules.rb +15 -6
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/simcontrols.rb +7 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/unit_conversions.rb +2 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/version.rb +1 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/waterheater.rb +3 -4
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/resources/xmlhelper.rb +31 -30
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_airflow.rb +4 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_constructions.rb +62 -16
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +507 -628
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_generator.rb +3 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hotwater_appliance.rb +4 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +321 -6
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_lighting.rb +3 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_location.rb +3 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_miscloads.rb +3 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_pv.rb +3 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_simcontrols.rb +3 -0
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +25 -1
- data/example_files/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_water_heater.rb +3 -0
- data/example_files/resources/hpxml-measures/README.md +4 -4
- data/example_files/resources/hpxml-measures/SimulationOutputReport/measure.rb +111 -37
- data/example_files/resources/hpxml-measures/SimulationOutputReport/measure.xml +318 -490
- data/example_files/resources/hpxml-measures/SimulationOutputReport/tests/output_report_test.rb +237 -183
- data/example_files/resources/hpxml-measures/docs/source/conf.py +4 -1
- data/example_files/resources/hpxml-measures/docs/source/getting_started.rst +2 -2
- data/example_files/resources/hpxml-measures/docs/source/intro.rst +3 -105
- data/example_files/resources/hpxml-measures/docs/source/workflow_inputs.rst +476 -351
- data/example_files/resources/hpxml-measures/docs/source/workflow_outputs.rst +154 -130
- data/example_files/resources/hpxml-measures/tasks.rb +1287 -511
- 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_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 +23 -5
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-50percent.xml +2 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +2 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +2 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +534 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +2 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-none.xml +1 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +3 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-multiple.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-heated-space.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml +1 -1
- 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 +20 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml +27 -18
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml +27 -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 +20 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml +20 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml +22 -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 +20 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml +22 -12
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml +22 -12
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-generator.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml +2 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-laundry-room.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml +2 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-preconditioning.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-pv.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater-recirc.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily-shared-water-heater.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-multifamily.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-bldgtype-single-family-attached.xml +14 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +563 -564
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-none.xml +1 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +2 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +6 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml +600 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-split-surfaces2.xml +2474 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/{base-enclosure-windows-interior-shading.xml → base-enclosure-windows-shading.xml} +576 -561
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml +643 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-interior-insulation.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +3 -3
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +2 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +2 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +2 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +555 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +561 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml +552 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml +557 -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} +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/{hvac_autosizing/base-hvac-air-to-air-heat-pump-1-speed-autosize.xml → base-hvac-autosize-air-to-air-heat-pump-1-speed.xml} +1 -4
- 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} +559 -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} +556 -556
- 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-manual-s-oversize-allowances.xml} +559 -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.xml} +556 -559
- 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} +568 -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} +1 -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} +546 -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} +546 -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} +1 -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} +1 -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} +1 -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} +552 -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} +546 -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} +559 -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} +559 -559
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-furnace-gas-only.xml +547 -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} +557 -557
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml +554 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml +559 -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} +561 -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} +558 -559
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml +546 -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} +1 -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} +1 -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} +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-autosize-mini-split-heat-pump-ducted.xml +556 -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} +559 -559
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +1 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +1 -7
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +2 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +10 -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 +563 -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 +547 -547
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +547 -550
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +556 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +562 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +561 -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} +567 -561
- data/example_files/resources/hpxml-measures/workflow/sample_files/{invalid_files/heat-pump-mixed-fixed-and-autosize-capacities2.xml → base-hvac-install-quality-all-air-to-air-heat-pump-1-speed.xml} +565 -562
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-2-speed.xml +566 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-air-to-air-heat-pump-var-speed.xml +566 -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} +570 -564
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-2-speed.xml +571 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-furnace-gas-central-ac-var-speed.xml +571 -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} +551 -549
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-all-ground-to-air-heat-pump.xml +565 -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} +551 -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} +564 -558
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-blower-efficiency-furnace-gas-central-ac-1-speed.xml +568 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-charge-defect-furnace-gas-central-ac-1-speed.xml +565 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-none-furnace-gas-central-ac-1-speed.xml +569 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +0 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +0 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +916 -913
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-multiple2.xml +837 -834
- 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 +563 -563
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat-detailed.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-programmable-thermostat.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +1 -1
- 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 +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +1 -1
- 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 +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-detailed.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-lighting-none.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +34 -23
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +34 -23
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml +562 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml +516 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml +516 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-location-portland-or.xml +576 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +10 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +2 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-defaults.xml +1 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-generators.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon.xml +5 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-large-uncommon2.xml +9 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml +563 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +5 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-multiple-buildings.xml +1654 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-pv.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic-vacant.xml +563 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-stochastic.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-schedules-user-specified.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/base.xml +1 -1
- 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 +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-dryer-location.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/clothes-washer-location.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/cooking-range-location.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dehumidifier-fraction-served.xml +534 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dehumidifier-setpoints.xml +534 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-frac-load-served.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-ef-tank.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dhw-invalid-uef-tank-heat-pump.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/dishwasher-location.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-cfm25.xml +562 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-leakage-percent.xml +562 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location-unconditioned-space.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duct-location.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/duplicate-id.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-attic-missing-roof.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-exterior-foundation-wall.xml +2 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-basement-missing-slab.xml +2 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa.xml +4 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-floor-area-exceeds-cfa2.xml +447 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-exterior-wall.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-roof-ceiling.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-garage-missing-slab.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-ceiling-roof.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-exterior-wall.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/enclosure-living-missing-floor-slab.xml +11 -58
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-fuel-load.xml +759 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-sensible-plug-load.xml +758 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-fuel-load.xml +760 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/frac-total-plug-load.xml +758 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/furnace-invalid-afue.xml +562 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/generator-number-of-bedrooms-served.xml +459 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/generator-output-greater-than-consumption.xml +578 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/heat-pump-mixed-fixed-and-autosize-capacities.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-cooling.xml +916 -913
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-multiple-attached-heating.xml +916 -913
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-distribution-return-duct-leakage-missing.xml +2 -7
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-cooling.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-dse-multiple-attached-heating.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-frac-load-served.xml +916 -913
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-inconsistent-fan-powers.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/hvac-invalid-distribution-system-type.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-assembly-effective-rvalue.xml +562 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-boolean.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-float.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-datatype-integer.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-daylight-saving.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-distribution-cfa-served.xml +2 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-epw-filepath.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-facility-type-equipment.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-facility-type-surfaces.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-foundation-wall-properties.xml +573 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-id.xml +590 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-id2.xml +590 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-infiltration-volume.xml +562 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-input-parameters.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-neighbor-shading-azimuth.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-bedrooms-served.xml +464 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-conditioned-floors.xml +562 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-number-of-units-served.xml +450 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-relatedhvac-desuperheater.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-relatedhvac-dhw-indirect.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-runperiod.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-schema-version.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-shared-vent-in-unit-flowrate.xml +472 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-timestep.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/invalid-window-height.xml +6 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/lighting-fractions.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-duct-location.xml +912 -909
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/missing-elements.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-appliance.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-duct.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-surface.xml +12 -2
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multifamily-reference-water-heater.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-without-building-id.xml +1654 -0
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/multiple-buildings-wrong-building-id.xml +1654 -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 +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/net-area-negative-wall.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/num-bedrooms-exceeds-limit.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/orphaned-hvac-distribution.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerator-location.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-multiple-primary.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/refrigerators-no-primary.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-desuperheater.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/repeated-relatedhvac-dhw-indirect.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-combi-tankless.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-desuperheater.xml +1 -4
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/solar-thermal-system-with-dhw-indirect.xml +0 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-cfis.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-door.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-hvac-distribution.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-clothes-washer-water-heater.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-shared-dishwasher-water-heater.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-skylight.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-solar-thermal-system.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/unattached-window.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location-other.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/sample_files/invalid_files/water-heater-location.xml +1 -1
- data/example_files/resources/hpxml-measures/workflow/template.osw +4 -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/hpxml_translator_test.rb +232 -360
- 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/lib/uo_cli.rb +187 -44
- data/lib/uo_cli/version.rb +17 -7
- data/requirements.txt +2 -0
- data/uo_cli.gemspec +2 -2
- metadata +248 -64
- 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/tests/extra-hvac-programmable-thermostat.osw +0 -369
@@ -90,7 +90,10 @@ html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
|
|
90
90
|
html_static_path = ['nstatic/']
|
91
91
|
|
92
92
|
def setup(app):
|
93
|
-
|
93
|
+
try:
|
94
|
+
app.add_css_file("stylesheet.css")
|
95
|
+
except:
|
96
|
+
app.add_stylesheet("stylesheet.css")
|
94
97
|
|
95
98
|
# Custom sidebar templates, must be a dictionary that maps document names
|
96
99
|
# to template names.
|
@@ -49,9 +49,9 @@ By default it will be found at the same location as the OSW file.
|
|
49
49
|
Outputs
|
50
50
|
~~~~~~~
|
51
51
|
|
52
|
-
In addition to the standard EnergyPlus outputs found in the run directory, a variety of high-level annual outputs are conveniently reported in the resulting ``run/results_annual.csv`` file.
|
52
|
+
In addition to the standard EnergyPlus outputs found in the run directory, a variety of high-level annual outputs are conveniently reported in the resulting ``run/results_annual.csv`` (or ``run/results_annual.json``) file.
|
53
53
|
|
54
54
|
Timeseries outputs can also be requested using either the Basic or Advanced approaches.
|
55
|
-
When requested, timeseries outputs will be found in the ``run/results_timeseries.csv`` file.
|
55
|
+
When requested, timeseries outputs will be found in the ``run/results_timeseries.csv`` (or ``run/results_timeseries.json``) file.
|
56
56
|
|
57
57
|
See :ref:`workflow_outputs` for a description of all available outputs available.
|
@@ -10,109 +10,6 @@ The three OpenStudio measures used by the workflow are:
|
|
10
10
|
#. ``HPXMLtoOpenStudio``: A measure that translates an HPXML file to an OpenStudio model.
|
11
11
|
#. ``SimulationOutputReport``: A reporting measure that generates a variety of annual/timeseries outputs for a residential HPXML-based model.
|
12
12
|
|
13
|
-
Modeling Capabilities
|
14
|
-
---------------------
|
15
|
-
The OpenStudio-HPXML workflow can accommodate the following building features/technologies:
|
16
|
-
|
17
|
-
- Enclosure
|
18
|
-
|
19
|
-
- Attics
|
20
|
-
|
21
|
-
- Vented
|
22
|
-
- Unvented
|
23
|
-
- Conditioned
|
24
|
-
- Radiant Barriers
|
25
|
-
|
26
|
-
- Foundations
|
27
|
-
|
28
|
-
- Slab
|
29
|
-
- Unconditioned Basement
|
30
|
-
- Conditioned Basement
|
31
|
-
- Vented Crawlspace
|
32
|
-
- Unvented Crawlspace
|
33
|
-
- Ambient
|
34
|
-
|
35
|
-
- Garages
|
36
|
-
- Windows & Overhangs
|
37
|
-
- Skylights
|
38
|
-
- Doors
|
39
|
-
|
40
|
-
- HVAC
|
41
|
-
|
42
|
-
- Heating Systems
|
43
|
-
|
44
|
-
- Electric Resistance
|
45
|
-
- Central/Wall/Floor Furnaces
|
46
|
-
- Stoves, Portable/Fixed Heaters
|
47
|
-
- Boilers
|
48
|
-
- Fireplaces
|
49
|
-
|
50
|
-
- Cooling Systems
|
51
|
-
|
52
|
-
- Central/Room Air Conditioners
|
53
|
-
- Evaporative Coolers
|
54
|
-
- Mini Split Air Conditioners
|
55
|
-
- Chillers
|
56
|
-
- Cooling Towers
|
57
|
-
|
58
|
-
- Heat Pumps
|
59
|
-
|
60
|
-
- Air Source Heat Pumps
|
61
|
-
- Mini Split Heat Pumps
|
62
|
-
- Ground Source Heat Pumps
|
63
|
-
- Dual-Fuel Heat Pumps
|
64
|
-
- Water Loop Heat Pumps
|
65
|
-
|
66
|
-
- Thermostat Setpoints
|
67
|
-
- Ducts
|
68
|
-
|
69
|
-
- Water Heating
|
70
|
-
|
71
|
-
- Water Heaters
|
72
|
-
|
73
|
-
- Storage Tank
|
74
|
-
- Instantaneous Tankless
|
75
|
-
- Heat Pump Water Heater
|
76
|
-
- Indirect Water Heater (Combination Boiler)
|
77
|
-
- Tankless Coil (Combination Boiler)
|
78
|
-
|
79
|
-
- Solar Hot Water
|
80
|
-
- Desuperheaters
|
81
|
-
- Hot Water Distribution
|
82
|
-
|
83
|
-
- Recirculation
|
84
|
-
|
85
|
-
- Drain Water Heat Recovery
|
86
|
-
- Hot Water Fixtures
|
87
|
-
|
88
|
-
- Mechanical Ventilation
|
89
|
-
|
90
|
-
- Exhaust Only
|
91
|
-
- Supply Only
|
92
|
-
- Balanced
|
93
|
-
- Energy Recovery Ventilator
|
94
|
-
- Heat Recovery Ventilator
|
95
|
-
- Central Fan Integrated Supply
|
96
|
-
- Shared Systems w/ Recirculation and/or Preconditioning
|
97
|
-
|
98
|
-
- Kitchen/Bath Fans
|
99
|
-
- Whole House Fan
|
100
|
-
- Photovoltaics
|
101
|
-
- Generators
|
102
|
-
- Appliances
|
103
|
-
|
104
|
-
- Clothes Washer
|
105
|
-
- Clothes Dryer
|
106
|
-
- Dishwasher
|
107
|
-
- Refrigerator
|
108
|
-
- Cooking Range/Oven
|
109
|
-
|
110
|
-
- Dehumidifiers
|
111
|
-
- Lighting
|
112
|
-
- Ceiling Fans
|
113
|
-
- Pool/Hot Tub
|
114
|
-
- Plug/Fuel Loads
|
115
|
-
|
116
13
|
Scope (Dwelling Units)
|
117
14
|
----------------------
|
118
15
|
|
@@ -147,9 +44,10 @@ End-to-end simulations typically run in 3-10 seconds, depending on complexity, c
|
|
147
44
|
|
148
45
|
There are additional ways that software developers using this workflow can reduce runtime:
|
149
46
|
|
150
|
-
- Run on Linux/Mac platform, which is significantly faster
|
151
|
-
- Do not use the ``--hourly`` flag unless hourly output is required. If required, limit requests to hourly variables of interest.
|
47
|
+
- Run on Linux/Mac platform, which is significantly faster than Windows.
|
152
48
|
- Run on computing environments with 1) fast CPUs, 2) sufficient memory, and 3) enough processors to allow all simulations to run in parallel.
|
49
|
+
- Limit requests for timeseries output (e.g., ``--hourly``, ``--daily``, ``--timestep`` arguments) and limit the number of output variables requested.
|
50
|
+
- Use the ``--skip-validation`` argument if the HPXML input file has already been validated against the Schema & Schematron documents.
|
153
51
|
|
154
52
|
License
|
155
53
|
-------
|
@@ -43,11 +43,10 @@ HPXML files submitted to OpenStudio-HPXML should undergo a two step validation p
|
|
43
43
|
Input Defaults
|
44
44
|
**************
|
45
45
|
|
46
|
-
|
46
|
+
A large number of elements in the HPXML file are optional and can be defaulted.
|
47
47
|
Default values, equations, and logic are described throughout this documentation.
|
48
48
|
|
49
|
-
|
50
|
-
This will create a new HPXML file (``in.xml`` in the run directory) where additional fields are populated for inspection.
|
49
|
+
Defaults can also be seen in the ``in.xml`` file generated in the run directory, where additional fields are populated for inspection.
|
51
50
|
|
52
51
|
For example, suppose a HPXML file has a window defined as follows:
|
53
52
|
|
@@ -74,18 +73,18 @@ In the ``in.xml`` file, the window would have additional elements like so:
|
|
74
73
|
<SHGC>0.45</SHGC>
|
75
74
|
<InteriorShading>
|
76
75
|
<SystemIdentifier id='WindowInteriorShading'/>
|
77
|
-
<SummerShadingCoefficient>0.7</SummerShadingCoefficient>
|
78
|
-
<WinterShadingCoefficient>0.85</WinterShadingCoefficient>
|
76
|
+
<SummerShadingCoefficient dataSource='software'>0.7</SummerShadingCoefficient>
|
77
|
+
<WinterShadingCoefficient dataSource='software'>0.85</WinterShadingCoefficient>
|
79
78
|
</InteriorShading>
|
80
|
-
<FractionOperable>0.67</FractionOperable>
|
79
|
+
<FractionOperable dataSource='software'>0.67</FractionOperable>
|
81
80
|
<AttachedToWall idref='Wall'/>
|
82
81
|
</Window>
|
83
82
|
|
84
83
|
.. note::
|
85
84
|
|
86
|
-
The OpenStudio-HPXML workflow generally treats missing
|
87
|
-
For example, if there is a ``Window`` with no ``Overhangs``
|
88
|
-
On the other hand, if there is a ``Window``
|
85
|
+
The OpenStudio-HPXML workflow generally treats missing elements differently than missing values.
|
86
|
+
For example, if there is a ``Window`` with no ``Overhangs`` element defined, the window will be interpreted as having no overhangs and modeled this way.
|
87
|
+
On the other hand, if there is a ``Window`` with no ``FractionOperable`` value defined, it is assumed that the operable property of the window is unknown and will be defaulted in the model according to :ref:`windowinputs`.
|
89
88
|
|
90
89
|
HPXML Software Info
|
91
90
|
-------------------
|
@@ -101,10 +100,10 @@ EnergyPlus simulation controls are entered in ``/HPXML/SoftwareInfo/extension/Si
|
|
101
100
|
Element Type Units Constraints Required Default Description
|
102
101
|
================================== ======== ======= ============= ======== =========================== =====================================
|
103
102
|
``Timestep`` integer minutes Divisor of 60 No 60 (1 hour) Timestep
|
104
|
-
``BeginMonth`` integer 1-12 [#]_
|
105
|
-
``BeginDayOfMonth`` integer 1-31
|
106
|
-
``EndMonth`` integer 1-12
|
107
|
-
``EndDayOfMonth`` integer 1-31
|
103
|
+
``BeginMonth`` integer 1 - 12 [#]_ No 1 (January) Run period start date
|
104
|
+
``BeginDayOfMonth`` integer 1 - 31 No 1 Run period start date
|
105
|
+
``EndMonth`` integer 1 - 12 No 12 (December) Run period end date
|
106
|
+
``EndDayOfMonth`` integer 1 - 31 No Run period end date
|
108
107
|
``CalendarYear`` integer > 1600 No 2007 (for TMY weather) [#]_ Calendar year (for start day of week)
|
109
108
|
``DaylightSaving/Enabled`` boolean No true Daylight savings enabled?
|
110
109
|
================================== ======== ======= ============= ======== =========================== =====================================
|
@@ -114,12 +113,12 @@ EnergyPlus simulation controls are entered in ``/HPXML/SoftwareInfo/extension/Si
|
|
114
113
|
|
115
114
|
If daylight saving is enabled, additional information is specified in ``DaylightSaving``.
|
116
115
|
|
117
|
-
====================================== ======== =====
|
118
|
-
Element Type Units Constraints
|
119
|
-
====================================== ======== =====
|
120
|
-
``BeginMonth`` and ``BeginDayOfMonth`` integer 1-12 and 1-31 No EPW else 3/12 (March 12) [#]_ Start date
|
121
|
-
``EndMonth`` and ``EndDayOfMonth`` integer 1-12 and 1-31 No EPW else 11/5 (November 5) End date
|
122
|
-
====================================== ======== =====
|
116
|
+
====================================== ======== ===== ================= ======== ============================= ===========
|
117
|
+
Element Type Units Constraints Required Default Description
|
118
|
+
====================================== ======== ===== ================= ======== ============================= ===========
|
119
|
+
``BeginMonth`` and ``BeginDayOfMonth`` integer 1 - 12 and 1 - 31 No EPW else 3/12 (March 12) [#]_ Start date
|
120
|
+
``EndMonth`` and ``EndDayOfMonth`` integer 1 - 12 and 1 - 31 No EPW else 11/5 (November 5) End date
|
121
|
+
====================================== ======== ===== ================= ======== ============================= ===========
|
123
122
|
|
124
123
|
.. [#] Daylight savings dates will be defined according to the EPW weather file header; if not available, fallback default values listed above will be used.
|
125
124
|
|
@@ -152,25 +151,19 @@ Building site information is entered in ``/HPXML/Building/BuildingDetails/Buildi
|
|
152
151
|
Element Type Units Constraints Required Default Notes
|
153
152
|
================================ ======== ===== =========== ======== ======== ============================================================
|
154
153
|
``SiteType`` string See [#]_ No suburban Terrain type for infiltration model
|
155
|
-
``
|
154
|
+
``ShieldingofHome`` string See [#]_ No normal Presence of nearby buildings, trees, obstructions for infiltration model
|
156
155
|
``extension/Neighbors`` element >= 0 No <none> Presence of neighboring buildings for solar shading
|
157
156
|
================================ ======== ===== =========== ======== ======== ============================================================
|
158
157
|
|
159
158
|
.. [#] SiteType choices are "rural", "suburban", or "urban".
|
160
|
-
.. [#]
|
161
|
-
|
162
|
-
- **1.0**: No obstructions or local shielding;
|
163
|
-
- **0.9**: Light local shielding with few obstructions within two building heights;
|
164
|
-
- **0.7**: Local shielding with many large obstructions within two building heights;
|
165
|
-
- **0.5**: Heavily shielded, many large obstructions within one building height;
|
166
|
-
- **0.3**: Complete shielding with large buildings immediately adjacent.
|
159
|
+
.. [#] ShieldingofHome choices are "normal", "exposed", or "well-shielded".
|
167
160
|
|
168
161
|
For each neighboring building defined, additional information is entered in a ``extension/Neighbors/NeighborBuilding``.
|
169
162
|
|
170
163
|
============ ======== ======= =========== ======== ======== =============================================
|
171
164
|
Element Type Units Constraints Required Default Notes
|
172
165
|
============ ======== ======= =========== ======== ======== =============================================
|
173
|
-
``Azimuth`` integer deg 0-359
|
166
|
+
``Azimuth`` integer deg 0 - 359 Yes Direction of neighbors (clockwise from North)
|
174
167
|
``Distance`` double ft > 0 Yes Distance of neighbor from the dwelling unit
|
175
168
|
``Height`` double ft > 0 No See [#]_ Height of neighbor
|
176
169
|
============ ======== ======= =========== ======== ======== =============================================
|
@@ -196,20 +189,21 @@ HPXML Building Construction
|
|
196
189
|
|
197
190
|
Building construction is entered in ``/HPXML/Building/BuildingDetails/BuildingSummary/BuildingConstruction``.
|
198
191
|
|
199
|
-
========================================================= ======== =========
|
200
|
-
Element Type Units Constraints
|
201
|
-
========================================================= ======== =========
|
202
|
-
``ResidentialFacilityType`` string See [#]_
|
203
|
-
``NumberofConditionedFloors`` double > 0
|
204
|
-
``NumberofConditionedFloorsAboveGrade`` double > 0
|
205
|
-
``NumberofBedrooms`` integer > 0
|
206
|
-
``NumberofBathrooms`` integer > 0
|
207
|
-
``ConditionedFloorArea`` double ft2 > 0
|
208
|
-
``ConditionedBuildingVolume`` or ``AverageCeilingHeight`` double ft3 or ft > 0
|
209
|
-
``extension/HasFlueOrChimney`` boolean
|
210
|
-
========================================================= ======== =========
|
192
|
+
========================================================= ======== ========= ================================= ======== ======== =======================================================================
|
193
|
+
Element Type Units Constraints Required Default Notes
|
194
|
+
========================================================= ======== ========= ================================= ======== ======== =======================================================================
|
195
|
+
``ResidentialFacilityType`` string See [#]_ Yes Type of dwelling unit
|
196
|
+
``NumberofConditionedFloors`` double > 0 Yes Number of conditioned floors (including a basement)
|
197
|
+
``NumberofConditionedFloorsAboveGrade`` double > 0, <= NumberofConditionedFloors Yes Number of conditioned floors above grade (including a walkout basement)
|
198
|
+
``NumberofBedrooms`` integer > 0 [#]_ Yes Number of bedrooms [#]_
|
199
|
+
``NumberofBathrooms`` integer > 0 No See [#]_ Number of bathrooms
|
200
|
+
``ConditionedFloorArea`` double ft2 > 0 Yes Floor area within conditioned space boundary
|
201
|
+
``ConditionedBuildingVolume`` or ``AverageCeilingHeight`` double ft3 or ft > 0 No See [#]_ Volume/ceiling height within conditioned space boundary
|
202
|
+
``extension/HasFlueOrChimney`` boolean No See [#]_ Presence of flue or chimney for infiltration model
|
203
|
+
========================================================= ======== ========= ================================= ======== ======== =======================================================================
|
211
204
|
|
212
205
|
.. [#] ResidentialFacilityType choices are "single-family detached", "single-family attached", "apartment unit", or "manufactured home".
|
206
|
+
.. [#] NumberofBedrooms must also be <= (ConditionedFloorArea-120)/70.
|
213
207
|
.. [#] NumberofBedrooms is currently used to determine usage of plug loads, appliances, hot water, etc.
|
214
208
|
.. [#] If NumberofBathrooms not provided, calculated as NumberofBedrooms/2 + 0.5 based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_.
|
215
209
|
.. [#] If neither ConditionedBuildingVolume nor AverageCeilingHeight provided, AverageCeilingHeight defaults to 8.0.
|
@@ -263,18 +257,19 @@ HPXML Air Infiltration
|
|
263
257
|
|
264
258
|
Building air leakage is entered in ``/HPXML/Building/BuildingDetails/Enclosure/AirInfiltration/AirInfiltrationMeasurement``.
|
265
259
|
|
266
|
-
==================================== ====== =====
|
267
|
-
Element Type Units Constraints
|
268
|
-
==================================== ====== =====
|
269
|
-
``SystemIdentifier`` id
|
270
|
-
``BuildingAirLeakage/UnitofMeasure`` string See [#]_
|
271
|
-
``HousePressure`` double Pa > 0
|
272
|
-
``BuildingAirLeakage/AirLeakage`` double > 0
|
273
|
-
``InfiltrationVolume`` double ft3 > 0
|
274
|
-
==================================== ====== =====
|
260
|
+
==================================== ====== ===== ================================= ========= ========================= ===============================================
|
261
|
+
Element Type Units Constraints Required Default Notes
|
262
|
+
==================================== ====== ===== ================================= ========= ========================= ===============================================
|
263
|
+
``SystemIdentifier`` id Yes Unique identifier
|
264
|
+
``BuildingAirLeakage/UnitofMeasure`` string See [#]_ Yes Units for air leakage
|
265
|
+
``HousePressure`` double Pa > 0 See [#]_ House pressure with respect to outside [#]_
|
266
|
+
``BuildingAirLeakage/AirLeakage`` double > 0 Yes Value for air leakage
|
267
|
+
``InfiltrationVolume`` double ft3 > 0, >= ConditionedBuildingVolume No ConditionedBuildingVolume Volume associated with infiltration measurement
|
268
|
+
==================================== ====== ===== ================================= ========= ========================= ===============================================
|
275
269
|
|
276
270
|
.. [#] UnitofMeasure choices are "ACH" (air changes per hour at user-specified pressure), "CFM" (cubic feet per minute at user-specified pressure), or "ACHnatural" (natural air changes per hour).
|
277
271
|
.. [#] HousePressure only required if BuildingAirLeakage/UnitofMeasure is not "ACHnatural".
|
272
|
+
.. [#] HousePressure typical value is 50 Pa.
|
278
273
|
|
279
274
|
HPXML Attics
|
280
275
|
************
|
@@ -313,22 +308,22 @@ Each pitched or flat roof surface that is exposed to ambient conditions is enter
|
|
313
308
|
|
314
309
|
For a multifamily building where the dwelling unit has another dwelling unit above it, the surface between the two dwelling units should be considered a ``FrameFloor`` and not a ``Roof``.
|
315
310
|
|
316
|
-
====================================== ================ ============
|
317
|
-
Element Type Units Constraints
|
318
|
-
====================================== ================ ============
|
319
|
-
``SystemIdentifier`` id
|
320
|
-
``InteriorAdjacentTo`` string See [#]_
|
321
|
-
``Area`` double ft2 > 0
|
322
|
-
``Azimuth`` integer deg 0-359 No See [#]_ Azimuth (clockwise from North)
|
323
|
-
``RoofType`` string See [#]_
|
324
|
-
``SolarAbsorptance`` or ``RoofColor`` double or string 0-1 or See [#]_ Yes See [#]_ Solar absorptance or color
|
325
|
-
``Emittance`` double 0-1 No 0.90 Emittance
|
326
|
-
``Pitch`` integer ?:12 >= 0
|
327
|
-
``RadiantBarrier`` boolean
|
328
|
-
``
|
329
|
-
``Insulation/SystemIdentifier`` id
|
330
|
-
``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0
|
331
|
-
====================================== ================ ============
|
311
|
+
====================================== ================ ============ ================= ========= ============================== ==================================
|
312
|
+
Element Type Units Constraints Required Default Notes
|
313
|
+
====================================== ================ ============ ================= ========= ============================== ==================================
|
314
|
+
``SystemIdentifier`` id Yes Unique identifier
|
315
|
+
``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type
|
316
|
+
``Area`` double ft2 > 0 Yes Gross area (including skylights)
|
317
|
+
``Azimuth`` integer deg 0 - 359 No See [#]_ Azimuth (clockwise from North)
|
318
|
+
``RoofType`` string See [#]_ No asphalt or fiberglass shingles Roof type
|
319
|
+
``SolarAbsorptance`` or ``RoofColor`` double or string 0 - 1 or See [#]_ Yes See [#]_ Solar absorptance or color
|
320
|
+
``Emittance`` double 0 - 1 No 0.90 Emittance
|
321
|
+
``Pitch`` integer ?:12 >= 0 Yes Pitch
|
322
|
+
``RadiantBarrier`` boolean No false Presence of radiant barrier
|
323
|
+
``RadiantBarrierGrade`` integer 1 - 3 See [#]_ Radiant barrier installation grade
|
324
|
+
``Insulation/SystemIdentifier`` id Yes Unique identifier
|
325
|
+
``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_
|
326
|
+
====================================== ================ ============ ================= ========= ============================== ==================================
|
332
327
|
|
333
328
|
.. [#] InteriorAdjacentTo choices are "attic - vented", "attic - unvented", "living space", or "garage".
|
334
329
|
See :ref:`hpxmllocations` for descriptions.
|
@@ -350,20 +345,20 @@ HPXML Rim Joists
|
|
350
345
|
|
351
346
|
Each rim joist surface (i.e., the perimeter of floor joists typically found between stories of a building or on top of a foundation wall) is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/RimJoists/RimJoist``.
|
352
347
|
|
353
|
-
====================================== ================ ============
|
354
|
-
Element Type Units Constraints
|
355
|
-
====================================== ================ ============
|
356
|
-
``SystemIdentifier`` id
|
357
|
-
``ExteriorAdjacentTo`` string See [#]_
|
358
|
-
``InteriorAdjacentTo`` string See [#]_
|
359
|
-
``Area`` double ft2 > 0
|
360
|
-
``Azimuth`` integer deg 0-359 No See [#]_ Azimuth (clockwise from North)
|
361
|
-
``Siding`` string See [#]_
|
362
|
-
``SolarAbsorptance`` or ``Color`` double or string 0-1 or See [#]_ Yes See [#]_ Solar absorptance or color
|
363
|
-
``Emittance`` double 0-1 No 0.90 Emittance
|
364
|
-
``Insulation/SystemIdentifier`` id
|
365
|
-
``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0
|
366
|
-
====================================== ================ ============
|
348
|
+
====================================== ================ ============ ================= ======== =========== ==============================
|
349
|
+
Element Type Units Constraints Required Default Notes
|
350
|
+
====================================== ================ ============ ================= ======== =========== ==============================
|
351
|
+
``SystemIdentifier`` id Yes Unique identifier
|
352
|
+
``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type
|
353
|
+
``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type
|
354
|
+
``Area`` double ft2 > 0 Yes Gross area
|
355
|
+
``Azimuth`` integer deg 0 - 359 No See [#]_ Azimuth (clockwise from North)
|
356
|
+
``Siding`` string See [#]_ No wood siding Siding material
|
357
|
+
``SolarAbsorptance`` or ``Color`` double or string 0 - 1 or See [#]_ Yes See [#]_ Solar absorptance or color
|
358
|
+
``Emittance`` double 0 - 1 No 0.90 Emittance
|
359
|
+
``Insulation/SystemIdentifier`` id Yes Unique identifier
|
360
|
+
``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_
|
361
|
+
====================================== ================ ============ ================= ======== =========== ==============================
|
367
362
|
|
368
363
|
.. [#] ExteriorAdjacentTo choices are "outside", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space".
|
369
364
|
See :ref:`hpxmllocations` for descriptions.
|
@@ -387,21 +382,21 @@ HPXML Walls
|
|
387
382
|
|
388
383
|
Each wall that has no contact with the ground and bounds a space type is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Walls/Wall``.
|
389
384
|
|
390
|
-
====================================== ================ ============
|
391
|
-
Element Type Units Constraints
|
392
|
-
====================================== ================ ============
|
393
|
-
``SystemIdentifier`` id
|
394
|
-
``ExteriorAdjacentTo`` string See [#]_
|
395
|
-
``InteriorAdjacentTo`` string See [#]_
|
396
|
-
``WallType`` element 1 [#]_
|
397
|
-
``Area`` double ft2 > 0
|
398
|
-
``Azimuth`` integer deg 0-359 No See [#]_ Azimuth (clockwise from North)
|
399
|
-
``Siding`` string See [#]_
|
400
|
-
``SolarAbsorptance`` or ``Color`` double or string 0-1 or See [#]_ Yes See [#]_ Solar absorptance or color
|
401
|
-
``Emittance`` double 0-1 No 0.90 Emittance
|
402
|
-
``Insulation/SystemIdentifier`` id
|
403
|
-
``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0
|
404
|
-
====================================== ================ ============
|
385
|
+
====================================== ================ ============ ================= ============= =========== ====================================
|
386
|
+
Element Type Units Constraints Required Default Notes
|
387
|
+
====================================== ================ ============ ================= ============= =========== ====================================
|
388
|
+
``SystemIdentifier`` id Yes Unique identifier
|
389
|
+
``ExteriorAdjacentTo`` string See [#]_ Yes Exterior adjacent space type
|
390
|
+
``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type
|
391
|
+
``WallType`` element 1 [#]_ Yes Wall type (for thermal mass)
|
392
|
+
``Area`` double ft2 > 0 Yes Gross area (including doors/windows)
|
393
|
+
``Azimuth`` integer deg 0 - 359 No See [#]_ Azimuth (clockwise from North)
|
394
|
+
``Siding`` string See [#]_ No wood siding Siding material
|
395
|
+
``SolarAbsorptance`` or ``Color`` double or string 0 - 1 or See [#]_ Yes See [#]_ Solar absorptance or color
|
396
|
+
``Emittance`` double 0 - 1 No 0.90 Emittance
|
397
|
+
``Insulation/SystemIdentifier`` id Yes Unique identifier
|
398
|
+
``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 Yes Assembly R-value [#]_
|
399
|
+
====================================== ================ ============ ================= ============= =========== ====================================
|
405
400
|
|
406
401
|
.. [#] ExteriorAdjacentTo choices are "outside", "attic - vented", "attic - unvented", "basement - conditioned", "basement - unconditioned", "crawlspace - vented", "crawlspace - unvented", "garage", "other housing unit", "other heated space", "other multifamily buffer space", or "other non-freezing space".
|
407
402
|
See :ref:`hpxmllocations` for descriptions.
|
@@ -436,12 +431,12 @@ Other walls (e.g., wood framed walls) that are connected to a below-grade space
|
|
436
431
|
``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type
|
437
432
|
``Height`` double ft > 0 Yes Total height
|
438
433
|
``Area`` double ft2 > 0 Yes Gross area (including doors/windows)
|
439
|
-
``Azimuth`` integer deg 0-359
|
434
|
+
``Azimuth`` integer deg 0 - 359 No See [#]_ Azimuth (clockwise from North)
|
440
435
|
``Thickness`` double inches > 0 No 8.0 Thickness excluding interior framing
|
441
|
-
``DepthBelowGrade`` double ft
|
436
|
+
``DepthBelowGrade`` double ft 0 - Height Yes Depth below grade [#]_
|
442
437
|
``Insulation/SystemIdentifier`` id Yes Unique identifier
|
443
|
-
``Insulation/Layer[InstallationType="continuous - interior"]`` element 0-1
|
444
|
-
``Insulation/Layer[InstallationType="continuous - exterior"]`` element 0-1
|
438
|
+
``Insulation/Layer[InstallationType="continuous - interior"]`` element 0 - 1 See [#]_ Interior insulation layer
|
439
|
+
``Insulation/Layer[InstallationType="continuous - exterior"]`` element 0 - 1 See [#]_ Exterior insulation layer
|
445
440
|
``Insulation/AssemblyEffectiveRValue`` double F-ft2-hr/Btu > 0 See [#]_ Assembly R-value [#]_
|
446
441
|
============================================================== ======== ============ =========== ========= ======== ====================================
|
447
442
|
|
@@ -463,13 +458,13 @@ Other walls (e.g., wood framed walls) that are connected to a below-grade space
|
|
463
458
|
|
464
459
|
If insulation layers are provided, additional information is entered in each ``FoundationWall/Insulation/Layer``.
|
465
460
|
|
466
|
-
========================================== ======== ============
|
467
|
-
Element Type Units Constraints
|
468
|
-
========================================== ======== ============
|
469
|
-
``NominalRValue`` double F-ft2-hr/Btu >= 0
|
470
|
-
``extension/DistanceToTopOfInsulation`` double ft >= 0
|
471
|
-
``extension/DistanceToBottomOfInsulation`` double ft
|
472
|
-
========================================== ======== ============
|
461
|
+
========================================== ======== ============ ================================== ======== ======= =====================================================================
|
462
|
+
Element Type Units Constraints Required Default Notes
|
463
|
+
========================================== ======== ============ ================================== ======== ======= =====================================================================
|
464
|
+
``NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of the foundation wall insulation; use zero if no insulation
|
465
|
+
``extension/DistanceToTopOfInsulation`` double ft >= 0 Yes Vertical distance from top of foundation wall to top of insulation
|
466
|
+
``extension/DistanceToBottomOfInsulation`` double ft DistanceToTopOfInsulation - Height Yes Vertical distance from top of foundation wall to bottom of insulation
|
467
|
+
========================================== ======== ============ ================================== ======== ======= =====================================================================
|
473
468
|
|
474
469
|
HPXML Frame Floors
|
475
470
|
******************
|
@@ -515,7 +510,7 @@ Each space type that borders the ground (i.e., basements, crawlspaces, garages,
|
|
515
510
|
``InteriorAdjacentTo`` string See [#]_ Yes Interior adjacent space type
|
516
511
|
``Area`` double ft2 > 0 Yes Gross area
|
517
512
|
``Thickness`` double inches >= 0 No See [#]_ Thickness [#]_
|
518
|
-
``ExposedPerimeter`` double ft
|
513
|
+
``ExposedPerimeter`` double ft >= 0 Yes Perimeter exposed to ambient conditions [#]_
|
519
514
|
``PerimeterInsulationDepth`` double ft >= 0 Yes Depth from grade to bottom of vertical insulation
|
520
515
|
``UnderSlabInsulationWidth`` double ft >= 0 See [#]_ Width from slab edge inward of horizontal insulation
|
521
516
|
``UnderSlabInsulationSpansEntireSlab`` boolean See [#]_ Whether horizontal insulation spans entire slab
|
@@ -524,7 +519,7 @@ Each space type that borders the ground (i.e., basements, crawlspaces, garages,
|
|
524
519
|
``PerimeterInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of vertical insulation
|
525
520
|
``UnderSlabInsulation/SystemIdentifier`` id Yes Unique identifier
|
526
521
|
``UnderSlabInsulation/Layer/NominalRValue`` double F-ft2-hr/Btu >= 0 Yes R-value of horizontal insulation
|
527
|
-
``extension/CarpetFraction`` double frac 0-1
|
522
|
+
``extension/CarpetFraction`` double frac 0 - 1 No See [#]_ Fraction of slab covered by carpet
|
528
523
|
``extension/CarpetRValue`` double F-ft2-hr/Btu >= 0 No See [#]_ Carpet R-value
|
529
524
|
=========================================== ======== ============ =========== ========= ======== ====================================================
|
530
525
|
|
@@ -548,23 +543,25 @@ HPXML Windows
|
|
548
543
|
|
549
544
|
Each window or glass door area is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Windows/Window``.
|
550
545
|
|
551
|
-
============================================ ======== ============ =========== ======== =========
|
546
|
+
============================================ ======== ============ =========== ======== ========= =============================================================
|
552
547
|
Element Type Units Constraints Required Default Notes
|
553
|
-
============================================ ======== ============ =========== ======== =========
|
548
|
+
============================================ ======== ============ =========== ======== ========= =============================================================
|
554
549
|
``SystemIdentifier`` id Yes Unique identifier
|
555
550
|
``Area`` double ft2 > 0 Yes Total area
|
556
|
-
``Azimuth`` integer deg 0-359
|
551
|
+
``Azimuth`` integer deg 0 - 359 Yes Azimuth (clockwise from North)
|
557
552
|
``UFactor`` double Btu/F-ft2-hr > 0 Yes Full-assembly NFRC U-factor
|
558
|
-
``SHGC`` double 0-1
|
559
|
-
``
|
560
|
-
``
|
561
|
-
``
|
562
|
-
``
|
553
|
+
``SHGC`` double 0 - 1 Yes Full-assembly NFRC solar heat gain coefficient
|
554
|
+
``ExteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior summer shading coefficient (1=transparent, 0=opaque)
|
555
|
+
``ExteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior winter shading coefficient (1=transparent, 0=opaque)
|
556
|
+
``InteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 0.70 [#]_ Interior summer shading coefficient (1=transparent, 0=opaque)
|
557
|
+
``InteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 0.85 [#]_ Interior winter shading coefficient (1=transparent, 0=opaque)
|
558
|
+
``Overhangs`` element 0 - 1 No <none> Presence of overhangs (including roof eaves)
|
559
|
+
``FractionOperable`` double frac 0 - 1 No 0.67 Operable fraction [#]_
|
563
560
|
``AttachedToWall`` idref See [#]_ Yes ID of attached wall
|
564
|
-
============================================ ======== ============ =========== ======== =========
|
561
|
+
============================================ ======== ============ =========== ======== ========= =============================================================
|
565
562
|
|
566
|
-
.. [#] SummerShadingCoefficient default value indicates 30% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
|
567
|
-
.. [#] WinterShadingCoefficient default value indicates 15% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
|
563
|
+
.. [#] InteriorShading/SummerShadingCoefficient default value indicates 30% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
|
564
|
+
.. [#] InteriorShading/WinterShadingCoefficient default value indicates 15% reduction in solar heat gain, based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
|
568
565
|
.. [#] FractionOperable reflects whether the windows are operable (can be opened), not how they are used by the occupants.
|
569
566
|
If a ``Window`` represents a single window, the value should be 0 or 1.
|
570
567
|
If a ``Window`` represents multiple windows (e.g., 4), the value should be between 0 and 1 (e.g., 0, 0.25, 0.5, 0.75, or 1).
|
@@ -573,13 +570,13 @@ Each window or glass door area is entered as an ``/HPXML/Building/BuildingDetail
|
|
573
570
|
|
574
571
|
If overhangs are specified, additional information is entered in ``Overhangs``.
|
575
572
|
|
576
|
-
============================ ======== ======
|
577
|
-
Element Type Units Constraints
|
578
|
-
============================ ======== ======
|
579
|
-
``Depth`` double inches
|
580
|
-
``DistanceToTopOfWindow`` double ft >= 0
|
581
|
-
``DistanceToBottomOfWindow`` double ft
|
582
|
-
============================ ======== ======
|
573
|
+
============================ ======== ====== ======================= ======== ======= ========================================================
|
574
|
+
Element Type Units Constraints Required Default Notes
|
575
|
+
============================ ======== ====== ======================= ======== ======= ========================================================
|
576
|
+
``Depth`` double inches >= 0 Yes Depth of overhang
|
577
|
+
``DistanceToTopOfWindow`` double ft >= 0 Yes Vertical distance from overhang to top of window
|
578
|
+
``DistanceToBottomOfWindow`` double ft > DistanceToTopOfWindow Yes Vertical distance from overhang to bottom of window [#]_
|
579
|
+
============================ ======== ====== ======================= ======== ======= ========================================================
|
583
580
|
|
584
581
|
.. [#] The difference between DistanceToBottomOfWindow and DistanceToTopOfWindow defines the height of the window.
|
585
582
|
|
@@ -588,21 +585,21 @@ HPXML Skylights
|
|
588
585
|
|
589
586
|
Each skylight is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Skylights/Skylight``.
|
590
587
|
|
591
|
-
============================================ ======== ============ =========== ========
|
592
|
-
Element Type Units Constraints Required Default
|
593
|
-
============================================ ======== ============ =========== ========
|
594
|
-
``SystemIdentifier`` id Yes
|
595
|
-
``Area`` double ft2 > 0 Yes
|
596
|
-
``Azimuth`` integer deg 0-359
|
597
|
-
``UFactor`` double Btu/F-ft2-hr > 0 Yes
|
598
|
-
``SHGC`` double 0-1
|
599
|
-
``
|
600
|
-
``
|
601
|
-
``
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
588
|
+
============================================ ======== ============ =========== ======== ========== =============================================================
|
589
|
+
Element Type Units Constraints Required Default Notes
|
590
|
+
============================================ ======== ============ =========== ======== ========== =============================================================
|
591
|
+
``SystemIdentifier`` id Yes Unique identifier
|
592
|
+
``Area`` double ft2 > 0 Yes Total area
|
593
|
+
``Azimuth`` integer deg 0 - 359 Yes Azimuth (clockwise from North)
|
594
|
+
``UFactor`` double Btu/F-ft2-hr > 0 Yes Full-assembly NFRC U-factor
|
595
|
+
``SHGC`` double 0 - 1 Yes Full-assembly NFRC solar heat gain coefficient
|
596
|
+
``ExteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior summer shading coefficient (1=transparent, 0=opaque)
|
597
|
+
``ExteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 1.00 Exterior winter shading coefficient (1=transparent, 0=opaque)
|
598
|
+
``InteriorShading/SummerShadingCoefficient`` double frac 0 - 1 No 1.00 Interior summer shading coefficient (1=transparent, 0=opaque)
|
599
|
+
``InteriorShading/WinterShadingCoefficient`` double frac 0 - 1 No 1.00 Interior winter shading coefficient (1=transparent, 0=opaque)
|
600
|
+
``AttachedToRoof`` idref See [#]_ Yes ID of attached roof
|
601
|
+
============================================ ======== ============ =========== ======== ========== =============================================================
|
602
|
+
|
606
603
|
.. [#] AttachedToRoof must reference a ``Roof``.
|
607
604
|
|
608
605
|
HPXML Doors
|
@@ -616,7 +613,7 @@ Each opaque door is entered as an ``/HPXML/Building/BuildingDetails/Enclosure/Do
|
|
616
613
|
``SystemIdentifier`` id Yes Unique identifier
|
617
614
|
``AttachedToWall`` idref See [#]_ Yes ID of attached wall
|
618
615
|
``Area`` double ft2 > 0 Yes Total area
|
619
|
-
``Azimuth`` integer deg 0-359
|
616
|
+
``Azimuth`` integer deg 0 - 359 Yes Azimuth (clockwise from North)
|
620
617
|
``RValue`` double F-ft2-hr/Btu > 0 Yes R-value
|
621
618
|
============================================ ======== ============ =========== ======== ========= ==============================
|
622
619
|
|
@@ -632,21 +629,20 @@ The dwelling unit's systems are entered in ``/HPXML/Building/BuildingDetails/Sys
|
|
632
629
|
HPXML Heating Systems
|
633
630
|
*********************
|
634
631
|
|
635
|
-
Each heating system (other than heat
|
632
|
+
Each heating system (other than a heat pump) is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/HeatingSystem``.
|
636
633
|
|
637
634
|
================================= ======== ====== =========== ======== ========= ===============================
|
638
635
|
Element Type Units Constraints Required Default Notes
|
639
636
|
================================= ======== ====== =========== ======== ========= ===============================
|
640
637
|
``SystemIdentifier`` id Yes Unique identifier
|
641
638
|
``HeatingSystemType`` element 1 [#]_ Yes Type of heating system
|
642
|
-
``FractionHeatLoadServed`` double frac 0-1 [#]_
|
639
|
+
``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
|
643
640
|
``HeatingSystemFuel`` string See [#]_ Yes Fuel type
|
644
641
|
``HeatingCapacity`` double Btu/hr >= 0 No autosized Input heating capacity
|
645
642
|
================================= ======== ====== =========== ======== ========= ===============================
|
646
643
|
|
647
644
|
.. [#] HeatingSystemType child element choices are ``ElectricResistance``, ``Furnace``, ``WallFurnace``, ``FloorFurnace``, ``Boiler``, ``Stove``, ``PortableHeater``, ``FixedHeater``, or ``Fireplace``.
|
648
645
|
.. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1.
|
649
|
-
For example, the dwelling unit could have a boiler heating system and a heat pump with values of 0.4 (40%) and 0.6 (60%), respectively.
|
650
646
|
.. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets".
|
651
647
|
For ``ElectricResistance``, "electricity" is required.
|
652
648
|
|
@@ -658,7 +654,7 @@ If electric resistance heating is specified, additional information is entered i
|
|
658
654
|
================================================== ====== ===== =========== ======== ======= ==========
|
659
655
|
Element Type Units Constraints Required Default Notes
|
660
656
|
================================================== ====== ===== =========== ======== ======= ==========
|
661
|
-
``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0-1
|
657
|
+
``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency
|
662
658
|
================================================== ====== ===== =========== ======== ======= ==========
|
663
659
|
|
664
660
|
Furnace
|
@@ -666,16 +662,20 @@ Furnace
|
|
666
662
|
|
667
663
|
If a furnace is specified, additional information is entered in ``HeatingSystem``.
|
668
664
|
|
669
|
-
=============================================== ====== ===== =========== ======== =========
|
665
|
+
=============================================== ====== ===== =========== ======== ========= ================================================
|
670
666
|
Element Type Units Constraints Required Default Notes
|
671
|
-
=============================================== ====== ===== =========== ======== =========
|
667
|
+
=============================================== ====== ===== =========== ======== ========= ================================================
|
672
668
|
``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
|
673
|
-
``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0-1
|
674
|
-
``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_
|
675
|
-
|
669
|
+
``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency
|
670
|
+
``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Fan power [#]_
|
671
|
+
``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_
|
672
|
+
=============================================== ====== ===== =========== ======== ========= ================================================
|
676
673
|
|
677
674
|
.. [#] HVACDistribution type must be AirDistribution or DSE.
|
678
675
|
.. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.5 W/cfm if AFUE <= 0.9, else 0.375 W/cfm.
|
676
|
+
.. [#] If there is a cooling system attached to the DistributionSystem, the heating and cooling systems cannot have different values for FanPowerWattsPerCFM.
|
677
|
+
.. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
|
678
|
+
See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
|
679
679
|
|
680
680
|
Wall/Floor Furnace
|
681
681
|
~~~~~~~~~~~~~~~~~~
|
@@ -685,10 +685,12 @@ If a wall furnace or floor furnace is specified, additional information is enter
|
|
685
685
|
=============================================== ====== ===== =========== ======== ======= ===================
|
686
686
|
Element Type Units Constraints Required Default Notes
|
687
687
|
=============================================== ====== ===== =========== ======== ======= ===================
|
688
|
-
``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0-1
|
689
|
-
``extension/FanPowerWatts`` double W >= 0 No 0
|
688
|
+
``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency
|
689
|
+
``extension/FanPowerWatts`` double W >= 0 No 0 Fan power
|
690
690
|
=============================================== ====== ===== =========== ======== ======= ===================
|
691
691
|
|
692
|
+
.. _hvac_heating_boiler:
|
693
|
+
|
692
694
|
Boiler
|
693
695
|
~~~~~~
|
694
696
|
|
@@ -699,12 +701,13 @@ If a boiler is specified, additional information is entered in ``HeatingSystem``
|
|
699
701
|
========================================================================== ======== ====== =========== ======== ======== =========================================
|
700
702
|
``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units
|
701
703
|
``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
|
702
|
-
``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0-1
|
704
|
+
``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac 0 - 1 Yes Rated efficiency
|
703
705
|
``ElectricAuxiliaryEnergy`` double kWh/yr >= 0 No [#]_ See [#]_ Electric auxiliary energy
|
704
|
-
``extension/WaterLoopHeatPump/AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 See [#]_ COP of the attached water loop heat pump
|
705
706
|
========================================================================== ======== ====== =========== ======== ======== =========================================
|
706
707
|
|
707
|
-
.. [#] HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor",
|
708
|
+
.. [#] For in-unit boilers, HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop") or DSE.
|
709
|
+
For shared boilers, HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop") or AirDistribution (type: "fan coil").
|
710
|
+
If the shared boiler has "water loop" distribution, a :ref:`hvac_heatpump_wlhp` must also be specified.
|
708
711
|
.. [#] | For shared boilers, ElectricAuxiliaryEnergy can alternatively be calculated as follows per `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_:
|
709
712
|
| EAE = (SP / N_dweq + aux_in) * HLH
|
710
713
|
| where
|
@@ -720,8 +723,6 @@ If a boiler is specified, additional information is entered in ``HeatingSystem``
|
|
720
723
|
- **Gas boiler (shared, w/ water loop heat pump)**: 265
|
721
724
|
- **Gas boiler (shared, w/ fan coil)**: 438
|
722
725
|
|
723
|
-
.. [#] Water loop heat pump (WLHP) heating COP only required if a shared boiler connected to a water loop heat pump.
|
724
|
-
|
725
726
|
Stove
|
726
727
|
~~~~~
|
727
728
|
|
@@ -730,8 +731,8 @@ If a stove is specified, additional information is entered in ``HeatingSystem``.
|
|
730
731
|
================================================== ====== ===== =========== ======== ========= ===================
|
731
732
|
Element Type Units Constraints Required Default Notes
|
732
733
|
================================================== ====== ===== =========== ======== ========= ===================
|
733
|
-
``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0-1
|
734
|
-
``extension/FanPowerWatts`` double W >= 0 No 40
|
734
|
+
``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency
|
735
|
+
``extension/FanPowerWatts`` double W >= 0 No 40 Fan power
|
735
736
|
================================================== ====== ===== =========== ======== ========= ===================
|
736
737
|
|
737
738
|
Portable/Fixed Heater
|
@@ -742,8 +743,8 @@ If a portable heater or fixed heater is specified, additional information is ent
|
|
742
743
|
================================================== ====== ===== =========== ======== ========= ===================
|
743
744
|
Element Type Units Constraints Required Default Notes
|
744
745
|
================================================== ====== ===== =========== ======== ========= ===================
|
745
|
-
``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0-1
|
746
|
-
``extension/FanPowerWatts`` double W >= 0 No 0
|
746
|
+
``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency
|
747
|
+
``extension/FanPowerWatts`` double W >= 0 No 0 Fan power
|
747
748
|
================================================== ====== ===== =========== ======== ========= ===================
|
748
749
|
|
749
750
|
Fireplace
|
@@ -754,8 +755,8 @@ If a fireplace is specified, additional information is entered in ``HeatingSyste
|
|
754
755
|
================================================== ====== ===== =========== ======== ========= ===================
|
755
756
|
Element Type Units Constraints Required Default Notes
|
756
757
|
================================================== ====== ===== =========== ======== ========= ===================
|
757
|
-
``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0-1
|
758
|
-
``extension/FanPowerWatts`` double W >= 0 No 0
|
758
|
+
``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac 0 - 1 Yes Efficiency
|
759
|
+
``extension/FanPowerWatts`` double W >= 0 No 0 Fan power
|
759
760
|
================================================== ====== ===== =========== ======== ========= ===================
|
760
761
|
|
761
762
|
.. _hvac_cooling:
|
@@ -763,7 +764,7 @@ If a fireplace is specified, additional information is entered in ``HeatingSyste
|
|
763
764
|
HPXML Cooling Systems
|
764
765
|
*********************
|
765
766
|
|
766
|
-
Each cooling system (other than heat
|
767
|
+
Each cooling system (other than a heat pump) is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPlant/CoolingSystem``.
|
767
768
|
|
768
769
|
========================== ======== ====== =========== ======== ======= ===============================
|
769
770
|
Element Type Units Constraints Required Default Notes
|
@@ -771,34 +772,40 @@ Each cooling system (other than heat pumps) is entered as an ``/HPXML/Building/B
|
|
771
772
|
``SystemIdentifier`` id Yes Unique identifier
|
772
773
|
``CoolingSystemType`` string See [#]_ Yes Type of cooling system
|
773
774
|
``CoolingSystemFuel`` string See [#]_ Yes Fuel type
|
774
|
-
``FractionCoolLoadServed`` double frac 0-1 [#]_
|
775
|
+
``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
|
775
776
|
========================== ======== ====== =========== ======== ======= ===============================
|
776
777
|
|
777
778
|
.. [#] CoolingSystemType choices are "central air conditioner", "room air conditioner", "evaporative cooler", "mini-split", "chiller", or "cooling tower".
|
778
779
|
.. [#] CoolingSystemFuel only choice is "electricity".
|
779
780
|
.. [#] The sum of all ``FractionCoolLoadServed`` (across both CoolingSystems and HeatPumps) must be less than or equal to 1.
|
780
|
-
For example, the dwelling unit could have two room air conditioners with values of 0.1 (10%) and 0.2 (20%), respectively, with the rest of the home (70%) uncooled.
|
781
781
|
|
782
782
|
Central Air Conditioner
|
783
783
|
~~~~~~~~~~~~~~~~~~~~~~~
|
784
784
|
|
785
785
|
If a central air conditioner is specified, additional information is entered in ``CoolingSystem``.
|
786
786
|
|
787
|
-
=============================================== ======== ====== =========== ======== =========
|
787
|
+
=============================================== ======== ====== =========== ======== ========= ================================================
|
788
788
|
Element Type Units Constraints Required Default Notes
|
789
|
-
=============================================== ======== ====== =========== ======== =========
|
789
|
+
=============================================== ======== ====== =========== ======== ========= ================================================
|
790
790
|
``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
|
791
791
|
``AnnualCoolingEfficiency[Units="SEER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency
|
792
792
|
``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
|
793
|
-
``SensibleHeatFraction`` double frac 0-1
|
793
|
+
``SensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction
|
794
794
|
``CompressorType`` string See [#]_ No See [#]_ Type of compressor
|
795
|
-
``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_
|
796
|
-
|
795
|
+
``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Fan power [#]_
|
796
|
+
``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_
|
797
|
+
``extension/ChargeDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed charges [#]_
|
798
|
+
=============================================== ======== ====== =========== ======== ========= ================================================
|
797
799
|
|
798
800
|
.. [#] HVACDistribution type must be AirDistribution or DSE.
|
799
801
|
.. [#] CompressorType choices are "single stage", "two stage", or "variable speed".
|
800
802
|
.. [#] If CompressorType not provided, defaults to "single stage" if SEER <= 15, else "two stage" if SEER <= 21, else "variable speed".
|
801
803
|
.. [#] If FanPowerWattsPerCFM not provided, defaults to using attached furnace W/cfm if available, else 0.5 W/cfm if SEER <= 13.5, else 0.375 W/cfm.
|
804
|
+
.. [#] If there is a heating system attached to the DistributionSystem, the heating and cooling systems cannot have different values for FanPowerWattsPerCFM.
|
805
|
+
.. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
|
806
|
+
See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
|
807
|
+
.. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect.
|
808
|
+
See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
|
802
809
|
|
803
810
|
Room Air Conditioner
|
804
811
|
~~~~~~~~~~~~~~~~~~~~
|
@@ -810,7 +817,7 @@ If a room air conditioner is specified, additional information is entered in ``C
|
|
810
817
|
============================================== ======== ====== =========== ======== ========= ======================
|
811
818
|
``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 Yes Rated efficiency
|
812
819
|
``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
|
813
|
-
``SensibleHeatFraction`` double frac 0-1
|
820
|
+
``SensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction
|
814
821
|
============================================== ======== ====== =========== ======== ========= ======================
|
815
822
|
|
816
823
|
Evaporative Cooler
|
@@ -822,28 +829,43 @@ If an evaporative cooler is specified, additional information is entered in ``Co
|
|
822
829
|
Element Type Units Constraints Required Default Notes
|
823
830
|
================================= ======== ====== =========== ======== ========= ==================================
|
824
831
|
``DistributionSystem`` idref See [#]_ No ID of attached distribution system
|
825
|
-
``
|
832
|
+
``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
|
826
833
|
================================= ======== ====== =========== ======== ========= ==================================
|
827
834
|
|
828
|
-
.. [#] HVACDistribution type must be AirDistribution or DSE.
|
829
|
-
.. [#] If FanPowerWattsPerCFM not provided, defaults to MIN(2.79 * cfm^-0.29, 0.6) W/cfm.
|
835
|
+
.. [#] If provided, HVACDistribution type must be AirDistribution or DSE.
|
830
836
|
|
831
837
|
Mini-Split
|
832
838
|
~~~~~~~~~~
|
833
839
|
|
834
840
|
If a mini-split is specified, additional information is entered in ``CoolingSystem``.
|
835
841
|
|
836
|
-
|
842
|
+
=============================================== ======== ====== =========== ======== ========= ===============================================
|
843
|
+
Element Type Units Constraints Required Default Notes
|
844
|
+
=============================================== ======== ====== =========== ======== ========= ===============================================
|
845
|
+
``DistributionSystem`` idref See [#]_ No ID of attached distribution system
|
846
|
+
``AnnualCoolingEfficiency[Units="SEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency
|
847
|
+
``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
|
848
|
+
``SensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction
|
849
|
+
``extension/ChargeDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed charges [#]_
|
850
|
+
=============================================== ======== ====== =========== ======== ========= ===============================================
|
851
|
+
|
852
|
+
.. [#] If provided, HVACDistribution type must be AirDistribution or DSE.
|
853
|
+
.. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect.
|
854
|
+
See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
|
855
|
+
|
856
|
+
If a ducted mini-split is specified (i.e., a ``DistributionSystem`` has been entered), additional information is entered in ``CoolingSystem``.
|
857
|
+
|
858
|
+
================================= ======== ====== =========== ======== ========= ===============================================
|
837
859
|
Element Type Units Constraints Required Default Notes
|
838
|
-
================================= ======== ====== =========== ======== =========
|
839
|
-
``
|
840
|
-
``
|
841
|
-
|
842
|
-
``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency
|
843
|
-
================================= ======== ====== =========== ======== ========= ==================================
|
860
|
+
================================= ======== ====== =========== ======== ========= ===============================================
|
861
|
+
``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No 0.18 Fan power
|
862
|
+
``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_
|
863
|
+
================================= ======== ====== =========== ======== ========= ===============================================
|
844
864
|
|
845
|
-
.. [#]
|
846
|
-
|
865
|
+
.. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
|
866
|
+
See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
|
867
|
+
|
868
|
+
.. _hvac_cooling_chiller:
|
847
869
|
|
848
870
|
Chiller
|
849
871
|
~~~~~~~
|
@@ -860,23 +882,22 @@ If a chiller is specified, additional information is entered in ``CoolingSystem`
|
|
860
882
|
``AnnualCoolingEfficiency[Units="kW/ton"]/Value`` double kW/ton > 0 Yes Rated efficiency
|
861
883
|
``extension/SharedLoopWatts`` double W >= 0 Yes Pumping and fan power serving the system
|
862
884
|
``extension/FanCoilWatts`` double W >= 0 See [#]_ Fan coil power
|
863
|
-
``extension/WaterLoopHeatPump/CoolingCapacity`` double Btu/hr > 0 See [#]_ Water loop heat pump cooling capacity
|
864
|
-
``extension/WaterLoopHeatPump/AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 See [#]_ Water loop heat pump efficiency
|
865
885
|
========================================================================== ======== ====== =========== ======== ========= =========================================
|
866
886
|
|
867
|
-
.. [#] HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor",
|
887
|
+
.. [#] HVACDistribution type must be HydronicDistribution (type: "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop") or AirDistribution (type: "fan coil").
|
888
|
+
If the chiller has "water loop" distribution, a :ref:`hvac_heatpump_wlhp` must also be specified.
|
868
889
|
.. [#] FanCoilWatts only required if chiller connected to a fan coil.
|
869
|
-
.. [#] WLHP CoolingCapacity only required if chiller connected to a water loop heat pump.
|
870
|
-
.. [#] WLHP Cooling EER only required if chiller connected to a water loop heat pump.
|
871
890
|
|
872
|
-
|
873
|
-
|
874
|
-
Chillers are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
|
891
|
+
.. note::
|
875
892
|
|
876
|
-
|
877
|
-
~~~~~~~~~~~~~~~~~~~~~
|
893
|
+
Chillers are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
|
878
894
|
|
879
|
-
|
895
|
+
.. _hvac_cooling_tower:
|
896
|
+
|
897
|
+
Cooling Tower
|
898
|
+
~~~~~~~~~~~~~
|
899
|
+
|
900
|
+
If a cooling tower is specified, additional information is entered in ``CoolingSystem``.
|
880
901
|
|
881
902
|
========================================================================== ======== ====== =========== ======== ========= =========================================
|
882
903
|
Element Type Units Constraints Required Default Notes
|
@@ -885,15 +906,14 @@ If a cooling tower w/ water loop heat pump (WLHP) is specified, additional infor
|
|
885
906
|
``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
|
886
907
|
``NumberofUnitsServed`` integer > 1 Yes Number of dwelling units served
|
887
908
|
``extension/SharedLoopWatts`` double W >= 0 Yes Pumping and fan power serving the system
|
888
|
-
``extension/WaterLoopHeatPump/CoolingCapacity`` double Btu/hr > 0 Yes Water loop heat pump cooling capacity
|
889
|
-
``extension/WaterLoopHeatPump/AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 Yes Water loop heat pump efficiency
|
890
909
|
========================================================================== ======== ====== =========== ======== ========= =========================================
|
891
910
|
|
892
|
-
.. [#] HVACDistribution type must be
|
893
|
-
|
894
|
-
.. note::
|
911
|
+
.. [#] HVACDistribution type must be HydronicDistribution (type: "water loop").
|
912
|
+
A :ref:`hvac_heatpump_wlhp` must also be specified.
|
895
913
|
|
896
|
-
|
914
|
+
.. note::
|
915
|
+
|
916
|
+
Cooling towers w/ water loop heat pumps are modeled as central air conditioners with a SEER equivalent using the equation from `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
|
897
917
|
|
898
918
|
.. _hvac_heatpump:
|
899
919
|
|
@@ -908,28 +928,19 @@ Each heat pump is entered as an ``/HPXML/Building/BuildingDetails/Systems/HVAC/H
|
|
908
928
|
``SystemIdentifier`` id Yes Unique identifier
|
909
929
|
``HeatPumpType`` string See [#]_ Yes Type of heat pump
|
910
930
|
``HeatPumpFuel`` string See [#]_ Yes Fuel type
|
911
|
-
``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating capacity (excluding any backup heating)
|
912
|
-
``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
|
913
|
-
``CoolingSensibleHeatFraction`` double frac 0-1 No Sensible heat fraction
|
914
931
|
``BackupSystemFuel`` string See [#]_ No Fuel type of backup heating, if present
|
915
|
-
``FractionHeatLoadServed`` double frac 0-1 [#]_ Yes Fraction of heating load served
|
916
|
-
``FractionCoolLoadServed`` double frac 0-1 [#]_ Yes Fraction of cooling load served
|
917
932
|
================================= ======== ====== =========== ======== ========= ===============================================
|
918
933
|
|
919
|
-
.. [#] HeatPumpType choices are "air-to-air", "mini-split", or "
|
934
|
+
.. [#] HeatPumpType choices are "air-to-air", "mini-split", "ground-to-air", or "water-loop-to-air".
|
920
935
|
.. [#] HeatPumpFuel only choice is "electricity".
|
921
936
|
.. [#] BackupSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets".
|
922
|
-
.. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1.
|
923
|
-
For example, the dwelling unit could have a heat pump and a boiler heating system with values of 0.4 (40%) and 0.6 (60%), respectively.
|
924
|
-
.. [#] The sum of all ``FractionCoolLoadServed`` (across both CoolingSystems and HeatPumps) must be less than or equal to 1.
|
925
|
-
For example, the dwelling unit could have two mini-split heat pumps with values of 0.1 (10%) and 0.2 (20%), respectively, with the rest of the home (70%) uncooled.
|
926
937
|
|
927
938
|
If a backup system fuel is provided, additional information is entered in ``HeatPump``.
|
928
939
|
|
929
940
|
======================================================================== ======== ====== =========== ======== ========= ==========================================
|
930
941
|
Element Type Units Constraints Required Default Notes
|
931
942
|
======================================================================== ======== ====== =========== ======== ========= ==========================================
|
932
|
-
``BackupAnnualHeatingEfficiency[Units="Percent" or Units="AFUE"]/Value`` double frac 0-1
|
943
|
+
``BackupAnnualHeatingEfficiency[Units="Percent" or Units="AFUE"]/Value`` double frac 0 - 1 Yes Backup heating efficiency
|
933
944
|
``BackupHeatingCapacity`` double Btu/hr >= 0 No autosized Backup heating capacity
|
934
945
|
``BackupHeatingSwitchoverTemperature`` double F No <none> Backup heating switchover temperature [#]_
|
935
946
|
======================================================================== ======== ====== =========== ======== ========= ==========================================
|
@@ -937,31 +948,39 @@ If a backup system fuel is provided, additional information is entered in ``Heat
|
|
937
948
|
.. [#] Provide BackupHeatingSwitchoverTemperature for, e.g., a dual-fuel heat pump, in which there is a discrete outdoor temperature when the heat pump stops operating and the backup heating system starts operating.
|
938
949
|
If not provided, the backup heating system will operate as needed when the heat pump has insufficient capacity.
|
939
950
|
|
940
|
-
.. note::
|
941
|
-
|
942
|
-
Water loop heat pumps in multifamily buildings should not be entered as a HeatPump.
|
943
|
-
Rather, enter them as a :ref:`hvac_heating` (shared boiler) and/or :ref:`hvac_cooling` (shared chiller or cooling tower).
|
944
|
-
|
945
951
|
Air-to-Air Heat Pump
|
946
952
|
~~~~~~~~~~~~~~~~~~~~
|
947
953
|
|
948
954
|
If an air-to-air heat pump is specified, additional information is entered in ``HeatPump``.
|
949
955
|
|
950
|
-
=============================================== ======== ====== =========== ======== =========
|
956
|
+
=============================================== ======== ====== =========== ======== ========= ================================================
|
951
957
|
Element Type Units Constraints Required Default Notes
|
952
|
-
=============================================== ======== ====== =========== ======== =========
|
958
|
+
=============================================== ======== ====== =========== ======== ========= ================================================
|
953
959
|
``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
|
954
960
|
``CompressorType`` string See [#]_ No See [#]_ Type of compressor
|
961
|
+
``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating capacity (excluding any backup heating)
|
962
|
+
``HeatingCapacity17F`` double Btu/hr >= 0 No Heating capacity at 17F, if available
|
963
|
+
``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
|
964
|
+
``CoolingSensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction
|
965
|
+
``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
|
966
|
+
``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
|
955
967
|
``AnnualCoolingEfficiency[Units="SEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency
|
956
968
|
``AnnualHeatingEfficiency[Units="HSPF"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency
|
957
|
-
``
|
958
|
-
``extension/
|
959
|
-
|
969
|
+
``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Fan power
|
970
|
+
``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_
|
971
|
+
``extension/ChargeDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed charges [#]_
|
972
|
+
=============================================== ======== ====== =========== ======== ========= ================================================
|
960
973
|
|
961
974
|
.. [#] HVACDistribution type must be AirDistribution or DSE.
|
962
975
|
.. [#] CompressorType choices are "single stage", "two stage", or "variable speed".
|
963
976
|
.. [#] If CompressorType not provided, defaults to "single stage" if SEER <= 15, else "two stage" if SEER <= 21, else "variable speed".
|
977
|
+
.. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1.
|
978
|
+
.. [#] The sum of all ``FractionCoolLoadServed`` (across both CoolingSystems and HeatPumps) must be less than or equal to 1.
|
964
979
|
.. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.5 W/cfm if HSPF <= 8.75, else 0.375 W/cfm.
|
980
|
+
.. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
|
981
|
+
See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
|
982
|
+
.. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect.
|
983
|
+
See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
|
965
984
|
|
966
985
|
Mini-Split Heat Pump
|
967
986
|
~~~~~~~~~~~~~~~~~~~~
|
@@ -972,14 +991,34 @@ If a mini-split heat pump is specified, additional information is entered in ``H
|
|
972
991
|
Element Type Units Constraints Required Default Notes
|
973
992
|
=============================================== ======== ====== =========== ======== ========= ==============================================
|
974
993
|
``DistributionSystem`` idref See [#]_ No ID of attached distribution system, if present
|
994
|
+
``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating capacity (excluding any backup heating)
|
995
|
+
``HeatingCapacity17F`` double Btu/hr >= 0 No Heating capacity at 17F, if available
|
996
|
+
``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
|
997
|
+
``CoolingSensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction
|
998
|
+
``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
|
999
|
+
``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
|
975
1000
|
``AnnualCoolingEfficiency[Units="SEER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency
|
976
1001
|
``AnnualHeatingEfficiency[Units="HSPF"]/Value`` double Btu/Wh > 0 Yes Rated heating efficiency
|
977
|
-
``
|
978
|
-
``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Installed fan efficiency
|
1002
|
+
``extension/ChargeDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed charges [#]_
|
979
1003
|
=============================================== ======== ====== =========== ======== ========= ==============================================
|
980
1004
|
|
981
|
-
.. [#] HVACDistribution type must be AirDistribution or DSE.
|
982
|
-
.. [#]
|
1005
|
+
.. [#] If provided, HVACDistribution type must be AirDistribution or DSE.
|
1006
|
+
.. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1.
|
1007
|
+
.. [#] The sum of all ``FractionCoolLoadServed`` (across both CoolingSystems and HeatPumps) must be less than or equal to 1.
|
1008
|
+
.. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect.
|
1009
|
+
See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
|
1010
|
+
|
1011
|
+
If a ducted mini-split is specified (i.e., a ``DistributionSystem`` has been entered), additional information is entered in ``HeatPump``.
|
1012
|
+
|
1013
|
+
================================= ======== ====== =========== ======== ========= ===============================================
|
1014
|
+
Element Type Units Constraints Required Default Notes
|
1015
|
+
================================= ======== ====== =========== ======== ========= ===============================================
|
1016
|
+
``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No 0.18 Fan power
|
1017
|
+
``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_
|
1018
|
+
================================= ======== ====== =========== ======== ========= ===============================================
|
1019
|
+
|
1020
|
+
.. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
|
1021
|
+
See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
|
983
1022
|
|
984
1023
|
Ground-to-Air Heat Pump
|
985
1024
|
~~~~~~~~~~~~~~~~~~~~~~~
|
@@ -991,21 +1030,63 @@ If a ground-to-air heat pump is specified, additional information is entered in
|
|
991
1030
|
=============================================== ======== ====== =========== ======== ========= ==============================================
|
992
1031
|
``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units [#]_
|
993
1032
|
``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
|
1033
|
+
``HeatingCapacity`` double Btu/hr >= 0 No autosized Heating capacity (excluding any backup heating)
|
1034
|
+
``CoolingCapacity`` double Btu/hr >= 0 No autosized Cooling capacity
|
1035
|
+
``CoolingSensibleHeatFraction`` double frac 0 - 1 No Sensible heat fraction
|
1036
|
+
``FractionHeatLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of heating load served
|
1037
|
+
``FractionCoolLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of cooling load served
|
994
1038
|
``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 Yes Rated cooling efficiency
|
995
1039
|
``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency
|
996
|
-
``
|
997
|
-
``extension/
|
998
|
-
``NumberofUnitsServed`` integer > 1 See [#]_ Number of dwelling units served
|
1040
|
+
``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served
|
1041
|
+
``extension/PumpPowerWattsPerTon`` double W/ton >= 0 No See [#]_ Pump power [#]_
|
999
1042
|
``extension/SharedLoopWatts`` double W >= 0 See [#]_ Shared pump power [#]_
|
1043
|
+
``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Fan power
|
1044
|
+
``extension/AirflowDefectRatio`` double frac > -1 No 0.0 Deviation between design/installed airflows [#]_
|
1045
|
+
``extension/ChargeDefectRatio`` double frac 0.0 [#]_ No 0.0 Deviation between design/installed charges [#]_
|
1000
1046
|
=============================================== ======== ====== =========== ======== ========= ==============================================
|
1001
1047
|
|
1002
1048
|
.. [#] IsSharedSystem should be true if the SFA/MF building has multiple ground source heat pumps connected to a shared hydronic circulation loop.
|
1003
1049
|
.. [#] HVACDistribution type must be AirDistribution or DSE.
|
1004
|
-
.. [#]
|
1005
|
-
.. [#]
|
1006
|
-
.. [#] NumberofUnitsServed only required if IsSharedSystem is true.
|
1050
|
+
.. [#] The sum of all ``FractionHeatLoadServed`` (across both HeatingSystems and HeatPumps) must be less than or equal to 1.
|
1051
|
+
.. [#] The sum of all ``FractionCoolLoadServed`` (across both CoolingSystems and HeatPumps) must be less than or equal to 1.
|
1052
|
+
.. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1.
|
1053
|
+
.. [#] If PumpPowerWattsPerTon not provided, defaults to 30 W/ton per `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_ for a closed loop system.
|
1054
|
+
.. [#] Pump power is calculated using PumpPowerWattsPerTon and the cooling capacity in tons, unless the system only provides heating, in which case the heating capacity in tons is used instead.
|
1055
|
+
Any pump power that is shared by multiple dwelling units should be included in SharedLoopWatts, *not* PumpPowerWattsPerTon, so that shared loop pump power attributed to the dwelling unit is calculated.
|
1007
1056
|
.. [#] SharedLoopWatts only required if IsSharedSystem is true.
|
1008
1057
|
.. [#] Shared loop pump power attributed to the dwelling unit is calculated as SharedLoopWatts / NumberofUnitsServed.
|
1058
|
+
.. [#] If FanPowerWattsPerCFM not provided, defaulted to 0.5 W/cfm if COP <= 8.75/3.2, else 0.375 W/cfm.
|
1059
|
+
.. [#] AirflowDefectRatio is defined as (InstalledAirflow - DesignAirflow) / DesignAirflow; a value of zero means no airflow defect.
|
1060
|
+
See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
|
1061
|
+
.. [#] ChargeDefectRatio currently constrained to zero for ground-to-air heat pumps due to an EnergyPlus limitation; this constraint will be relaxed in the future.
|
1062
|
+
.. [#] ChargeDefectRatio is defined as (InstalledCharge - DesignCharge) / DesignCharge; a value of zero means no refrigerant charge defect.
|
1063
|
+
See ANSI/RESNET/ACCA 310-2020 Standard for Grading the Installation of HVAC Systems for more information.
|
1064
|
+
|
1065
|
+
.. _hvac_heatpump_wlhp:
|
1066
|
+
|
1067
|
+
Water-Loop-to-Air Heat Pump
|
1068
|
+
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
1069
|
+
|
1070
|
+
If a water-loop-to-air heat pump is specified, additional information is entered in ``HeatPump``.
|
1071
|
+
|
1072
|
+
=============================================== ======== ====== =========== ======== ========= ==============================================
|
1073
|
+
Element Type Units Constraints Required Default Notes
|
1074
|
+
=============================================== ======== ====== =========== ======== ========= ==============================================
|
1075
|
+
``DistributionSystem`` idref See [#]_ Yes ID of attached distribution system
|
1076
|
+
``HeatingCapacity`` double Btu/hr > 0 No autosized Heating capacity
|
1077
|
+
``CoolingCapacity`` double Btu/hr > 0 See [#]_ Cooling capacity
|
1078
|
+
``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 See [#]_ Rated cooling efficiency
|
1079
|
+
``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 See [#]_ Rated heating efficiency
|
1080
|
+
=============================================== ======== ====== =========== ======== ========= ==============================================
|
1081
|
+
|
1082
|
+
.. [#] HVACDistribution type must be AirDistribution or DSE.
|
1083
|
+
.. [#] CoolingCapacity required if there is a shared chiller or cooling tower with water loop distribution.
|
1084
|
+
.. [#] AnnualCoolingEfficiency required if there is a shared chiller or cooling tower with water loop distribution.
|
1085
|
+
.. [#] AnnualHeatingEfficiency required if there is a shared boiler with water loop distribution.
|
1086
|
+
|
1087
|
+
.. note::
|
1088
|
+
|
1089
|
+
If a water loop heat pump is specified, there must be at least one shared heating system (i.e., :ref:`hvac_heating_boiler`) and/or one shared cooling system (i.e., :ref:`hvac_cooling_chiller` or :ref:`hvac_cooling_tower`) specified with water loop distribution.
|
1009
1090
|
|
1010
1091
|
.. _hvac_control:
|
1011
1092
|
|
@@ -1044,7 +1125,7 @@ If there is a heating temperature setback, additional information is entered in
|
|
1044
1125
|
===================================== ======== ======== =========== ======== ========= =========================================
|
1045
1126
|
``SetbackTempHeatingSeason`` double F Yes Heating setback temperature
|
1046
1127
|
``TotalSetbackHoursperWeekHeating`` integer hrs/week > 0 Yes Hours/week of heating temperature setback
|
1047
|
-
``extension/SetbackStartHourHeating`` integer 0-23
|
1128
|
+
``extension/SetbackStartHourHeating`` integer 0 - 23 No 23 (11pm) Daily setback start hour
|
1048
1129
|
===================================== ======== ======== =========== ======== ========= =========================================
|
1049
1130
|
|
1050
1131
|
If there is a cooling temperature setup, additional information is entered in ``HVACControl``.
|
@@ -1054,7 +1135,7 @@ If there is a cooling temperature setup, additional information is entered in ``
|
|
1054
1135
|
===================================== ======== ======== =========== ======== ========= =========================================
|
1055
1136
|
``SetupTempCoolingSeason`` double F Yes Cooling setup temperature
|
1056
1137
|
``TotalSetupHoursperWeekCooling`` integer hrs/week > 0 Yes Hours/week of cooling temperature setup
|
1057
|
-
``extension/SetupStartHourCooling`` integer 0-23
|
1138
|
+
``extension/SetupStartHourCooling`` integer 0 - 23 No 9 (9am) Daily setup start hour
|
1058
1139
|
===================================== ======== ======== =========== ======== ========= =========================================
|
1059
1140
|
|
1060
1141
|
Detailed Inputs
|
@@ -1084,8 +1165,8 @@ Each separate HVAC distribution system is entered as a ``/HPXML/Building/Buildin
|
|
1084
1165
|
``ConditionedFloorAreaServed`` double ft2 > 0 See [#]_ Conditioned floor area served
|
1085
1166
|
============================== ======= ======= =========== ======== ========= =============================
|
1086
1167
|
|
1087
|
-
.. [#] DistributionSystemType child element choices are ``AirDistribution``, ``HydronicDistribution``,
|
1088
|
-
.. [#] ConditionedFloorAreaServed is required for AirDistribution
|
1168
|
+
.. [#] DistributionSystemType child element choices are ``AirDistribution``, ``HydronicDistribution``, or ``Other=DSE``.
|
1169
|
+
.. [#] ConditionedFloorAreaServed is required for AirDistribution type.
|
1089
1170
|
|
1090
1171
|
.. note::
|
1091
1172
|
|
@@ -1100,34 +1181,37 @@ Air Distribution
|
|
1100
1181
|
|
1101
1182
|
To define an air distribution system, additional information is entered in ``HVACDistribution/DistributionSystemType/AirDistribution``.
|
1102
1183
|
|
1103
|
-
|
1104
|
-
Element
|
1105
|
-
|
1106
|
-
``
|
1107
|
-
``
|
1108
|
-
``
|
1109
|
-
|
1184
|
+
============================================= ======= ======= =========== ======== ========= ==========================
|
1185
|
+
Element Type Units Constraints Required Default Notes
|
1186
|
+
============================================= ======= ======= =========== ======== ========= ==========================
|
1187
|
+
``AirDistributionType`` string See [#]_ See [#]_ Type of air distribution
|
1188
|
+
``DuctLeakageMeasurement[DuctType="supply"]`` element 1 Yes Supply duct leakage value
|
1189
|
+
``DuctLeakageMeasurement[DuctType="return"]`` element 1 Yes Return duct leakage value
|
1190
|
+
``Ducts`` element >= 0 No Supply/return ducts [#]_
|
1191
|
+
``NumberofReturnRegisters`` integer >= 0 No See [#]_ Number of return registers
|
1192
|
+
============================================= ======= ======= =========== ======== ========= ==========================
|
1110
1193
|
|
1111
|
-
.. [#]
|
1112
|
-
.. [#]
|
1194
|
+
.. [#] AirDistributionType choices are "gravity", "high velocity", "regular velocity", or "fan coil".
|
1195
|
+
.. [#] AirDistributionType only required if the distribution system is for shared boilers/chillers with fan coils, in which case value must be "fan coil".
|
1196
|
+
.. [#] Provide a Ducts element for each supply duct and each return duct.
|
1113
1197
|
.. [#] If NumberofReturnRegisters not provided, defaults to one return register per conditioned floor per `ASHRAE Standard 152 <https://www.energy.gov/eere/buildings/downloads/ashrae-standard-152-spreadsheet>`_, rounded up to the nearest integer if needed.
|
1114
1198
|
|
1115
|
-
|
1199
|
+
Additional information is entered in each ``DuctLeakageMeasurement``.
|
1116
1200
|
|
1117
1201
|
================================ ======= ======= =========== ======== ========= =========================================================
|
1118
1202
|
Element Type Units Constraints Required Default Notes
|
1119
1203
|
================================ ======= ======= =========== ======== ========= =========================================================
|
1120
|
-
``DuctType`` string See [#]_ Yes Supply or return ducts
|
1121
1204
|
``DuctLeakage/Units`` string See [#]_ Yes Duct leakage units
|
1122
|
-
``DuctLeakage/Value`` double >= 0
|
1205
|
+
``DuctLeakage/Value`` double >= 0 [#]_ Yes Duct leakage value [#]_
|
1123
1206
|
``DuctLeakage/TotalOrToOutside`` string See [#]_ Yes Type of duct leakage (outside conditioned space vs total)
|
1124
1207
|
================================ ======= ======= =========== ======== ========= =========================================================
|
1125
1208
|
|
1126
|
-
.. [#] DuctType choices are "supply" or "return".
|
1127
1209
|
.. [#] Units choices are "CFM25" or "Percent".
|
1210
|
+
.. [#] Value also must be < 1 if Units is Percent.
|
1211
|
+
.. [#] If the HVAC system has no return ducts (e.g., a ducted evaporative cooler), use zero for the Value.
|
1128
1212
|
.. [#] TotalOrToOutside only choice is "to outside".
|
1129
1213
|
|
1130
|
-
|
1214
|
+
Additional information is entered in each ``Ducts``.
|
1131
1215
|
|
1132
1216
|
======================== ======= ============ =========== ======== ========= ===============================
|
1133
1217
|
Element Type Units Constraints Required Default Notes
|
@@ -1166,21 +1250,6 @@ To define a hydronic distribution system, additional information is entered in `
|
|
1166
1250
|
|
1167
1251
|
.. [#] HydronicDistributionType choices are "radiator", "baseboard", "radiant floor", or "radiant ceiling".
|
1168
1252
|
|
1169
|
-
Hydronic And Air Distribution
|
1170
|
-
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
1171
|
-
|
1172
|
-
To define an air and hydronic distribution system, additional information is entered in ``HVACDistribution/DistributionSystemType/HydronicAndAirDistribution``.
|
1173
|
-
|
1174
|
-
================================== ======= ======= =========== ======== ========= ============================================
|
1175
|
-
Element Type Units Constraints Required Default Notes
|
1176
|
-
================================== ======= ======= =========== ======== ========= ============================================
|
1177
|
-
``HydronicAndAirDistributionType`` string See [#]_ Yes Type of hydronic and air distribution system
|
1178
|
-
================================== ======= ======= =========== ======== ========= ============================================
|
1179
|
-
|
1180
|
-
.. [#] HydronicAndAirDistributionType choices are "fan coil" or "water loop heat pump".
|
1181
|
-
|
1182
|
-
In addition, if the system is ducted, all of the elements from the :ref:`air_distribution` Section can be entered in this ``HydronicAndAirDistribution`` element too (e.g., ``DuctLeakageMeasurement`` and ``Ducts``).
|
1183
|
-
|
1184
1253
|
Distribution System Efficiency (DSE)
|
1185
1254
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
1186
1255
|
|
@@ -1194,8 +1263,8 @@ To define a DSE system, additional information is entered in ``HVACDistribution`
|
|
1194
1263
|
============================================= ======= ======= =========== ======== ========= ===================================================
|
1195
1264
|
Element Type Units Constraints Required Default Notes
|
1196
1265
|
============================================= ======= ======= =========== ======== ========= ===================================================
|
1197
|
-
``AnnualHeatingDistributionSystemEfficiency`` double frac 0-1
|
1198
|
-
``AnnualCoolingDistributionSystemEfficiency`` double frac 0-1
|
1266
|
+
``AnnualHeatingDistributionSystemEfficiency`` double frac 0 - 1 Yes Seasonal distribution system efficiency for heating
|
1267
|
+
``AnnualCoolingDistributionSystemEfficiency`` double frac 0 - 1 Yes Seasonal distribution system efficiency for cooling
|
1199
1268
|
============================================= ======= ======= =========== ======== ========= ===================================================
|
1200
1269
|
|
1201
1270
|
DSE values can be calculated from `ASHRAE Standard 152 <https://www.energy.gov/eere/buildings/downloads/ashrae-standard-152-spreadsheet>`_.
|
@@ -1203,7 +1272,8 @@ To define a DSE system, additional information is entered in ``HVACDistribution`
|
|
1203
1272
|
HPXML Whole Ventilation Fan
|
1204
1273
|
***************************
|
1205
1274
|
|
1206
|
-
Each mechanical ventilation
|
1275
|
+
Each mechanical ventilation system that provides ventilation to the whole dwelling unit is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``.
|
1276
|
+
If not entered, the simulation will not include mechanical ventilation.
|
1207
1277
|
|
1208
1278
|
======================================= ======== ======= =========== ======== ========= =========================================
|
1209
1279
|
Element Type Units Constraints Required Default Notes
|
@@ -1213,7 +1283,7 @@ Each mechanical ventilation systems that provide ventilation to the whole dwelli
|
|
1213
1283
|
``IsSharedSystem`` boolean See [#]_ No false Whether it serves multiple dwelling units
|
1214
1284
|
``FanType`` string See [#]_ Yes Type of ventilation system
|
1215
1285
|
``TestedFlowRate`` or ``RatedFlowRate`` double cfm >= 0 Yes Flow rate [#]_
|
1216
|
-
``HoursInOperation`` double hrs/day 0-24
|
1286
|
+
``HoursInOperation`` double hrs/day 0 - 24 No See [#]_ Hours per day of operation
|
1217
1287
|
``FanPower`` double W >= 0 Yes Fan power
|
1218
1288
|
======================================= ======== ======= =========== ======== ========= =========================================
|
1219
1289
|
|
@@ -1237,23 +1307,23 @@ Heat Recovery Ventilator
|
|
1237
1307
|
|
1238
1308
|
If a heat recovery ventilator system is specified, additional information is entered in ``VentilationFan``.
|
1239
1309
|
|
1240
|
-
======================================================================== ====== ===== =========== ======== =======
|
1310
|
+
======================================================================== ====== ===== =========== ======== ======= =======================================
|
1241
1311
|
Element Type Units Constraints Required Default Notes
|
1242
|
-
======================================================================== ====== ===== =========== ======== =======
|
1243
|
-
``SensibleRecoveryEfficiency`` or ``AdjustedSensibleRecoveryEfficiency`` double frac 0-1
|
1244
|
-
======================================================================== ====== ===== =========== ======== =======
|
1312
|
+
======================================================================== ====== ===== =========== ======== ======= =======================================
|
1313
|
+
``SensibleRecoveryEfficiency`` or ``AdjustedSensibleRecoveryEfficiency`` double frac 0 - 1 Yes (Adjusted) Sensible recovery efficiency
|
1314
|
+
======================================================================== ====== ===== =========== ======== ======= =======================================
|
1245
1315
|
|
1246
1316
|
Energy Recovery Ventilator
|
1247
1317
|
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
1248
1318
|
|
1249
1319
|
If an energy recovery ventilator system is specified, additional information is entered in ``VentilationFan``.
|
1250
1320
|
|
1251
|
-
======================================================================== ====== ===== =========== ======== =======
|
1321
|
+
======================================================================== ====== ===== =========== ======== ======= =======================================
|
1252
1322
|
Element Type Units Constraints Required Default Notes
|
1253
|
-
======================================================================== ====== ===== =========== ======== =======
|
1254
|
-
``TotalRecoveryEfficiency`` or ``AdjustedTotalRecoveryEfficiency`` double frac 0-1
|
1255
|
-
``SensibleRecoveryEfficiency`` or ``AdjustedSensibleRecoveryEfficiency`` double frac 0-1
|
1256
|
-
======================================================================== ====== ===== =========== ======== =======
|
1323
|
+
======================================================================== ====== ===== =========== ======== ======= =======================================
|
1324
|
+
``TotalRecoveryEfficiency`` or ``AdjustedTotalRecoveryEfficiency`` double frac 0 - 1 Yes (Adjusted) Total recovery efficiency
|
1325
|
+
``SensibleRecoveryEfficiency`` or ``AdjustedSensibleRecoveryEfficiency`` double frac 0 - 1 Yes (Adjusted) Sensible recovery efficiency
|
1326
|
+
======================================================================== ====== ===== =========== ======== ======= =======================================
|
1257
1327
|
|
1258
1328
|
Central Fan Integrated Supply
|
1259
1329
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
@@ -1276,14 +1346,15 @@ If the specified system is a shared system (i.e., serving multiple dwelling unit
|
|
1276
1346
|
============================ ======= ===== =========== ======== ======= ====================================================
|
1277
1347
|
Element Type Units Constraints Required Default Notes
|
1278
1348
|
============================ ======= ===== =========== ======== ======= ====================================================
|
1279
|
-
``FractionRecirculation`` double frac 0-1
|
1280
|
-
``extension/InUnitFlowRate`` double cfm >= 0
|
1281
|
-
``extension/PreHeating`` element 0-1
|
1282
|
-
``extension/PreCooling`` element 0-1
|
1349
|
+
``FractionRecirculation`` double frac 0 - 1 Yes Fraction of supply air that is recirculated [#]_
|
1350
|
+
``extension/InUnitFlowRate`` double cfm >= 0 [#]_ Yes Flow rate delivered to the dwelling unit
|
1351
|
+
``extension/PreHeating`` element 0 - 1 No <none> Supply air preconditioned by heating equipment? [#]_
|
1352
|
+
``extension/PreCooling`` element 0 - 1 No <none> Supply air preconditioned by cooling equipment? [#]_
|
1283
1353
|
============================ ======= ===== =========== ======== ======= ====================================================
|
1284
1354
|
|
1285
1355
|
.. [#] 1-FractionRecirculation is assumed to be the fraction of supply air that is provided from outside.
|
1286
1356
|
The value must be 0 for exhaust only systems.
|
1357
|
+
.. [#] InUnitFlowRate must also be < TestedFlowRate (or RatedFlowRate).
|
1287
1358
|
.. [#] PreHeating not allowed for exhaust only systems.
|
1288
1359
|
.. [#] PreCooling not allowed for exhaust only systems.
|
1289
1360
|
|
@@ -1294,7 +1365,7 @@ If pre-heating is specified, additional information is entered in ``extension/Pr
|
|
1294
1365
|
============================================== ======= ===== =========== ======== ======= ====================================================================
|
1295
1366
|
``Fuel`` string See [#]_ Yes Pre-heating equipment fuel type
|
1296
1367
|
``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Pre-heating equipment annual COP
|
1297
|
-
``FractionVentilationHeatLoadServed`` double frac 0-1
|
1368
|
+
``FractionVentilationHeatLoadServed`` double frac 0 - 1 Yes Fraction of ventilation heating load served by pre-heating equipment
|
1298
1369
|
============================================== ======= ===== =========== ======== ======= ====================================================================
|
1299
1370
|
|
1300
1371
|
.. [#] Fuel choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "electricity", "wood", or "wood pellets".
|
@@ -1306,7 +1377,7 @@ If pre-cooling is specified, additional information is entered in ``extension/Pr
|
|
1306
1377
|
============================================== ======= ===== =========== ======== ======= ====================================================================
|
1307
1378
|
``Fuel`` string See [#]_ Yes Pre-cooling equipment fuel type
|
1308
1379
|
``AnnualCoolingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Pre-cooling equipment annual COP
|
1309
|
-
``FractionVentilationCoolLoadServed`` double frac 0-1
|
1380
|
+
``FractionVentilationCoolLoadServed`` double frac 0 - 1 Yes Fraction of ventilation cooling load served by pre-cooling equipment
|
1310
1381
|
============================================== ======= ===== =========== ======== ======= ====================================================================
|
1311
1382
|
|
1312
1383
|
.. [#] Fuel only choice is "electricity".
|
@@ -1315,6 +1386,7 @@ HPXML Local Ventilation Fan
|
|
1315
1386
|
***************************
|
1316
1387
|
|
1317
1388
|
Each kitchen range fan or bathroom fan that provides local ventilation is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``.
|
1389
|
+
If not entered, the simulation will not include kitchen/bathroom fans.
|
1318
1390
|
|
1319
1391
|
=========================== ======= ======= =========== ======== ======== =============================
|
1320
1392
|
Element Type Units Constraints Required Default Notes
|
@@ -1323,10 +1395,10 @@ Each kitchen range fan or bathroom fan that provides local ventilation is entere
|
|
1323
1395
|
``UsedForLocalVentilation`` boolean true Yes Must be set to true
|
1324
1396
|
``Quantity`` integer >= 0 No See [#]_ Number of identical fans
|
1325
1397
|
``RatedFlowRate`` double cfm >= 0 No See [#]_ Flow rate
|
1326
|
-
``HoursInOperation`` double hrs/day 0-24
|
1398
|
+
``HoursInOperation`` double hrs/day 0 - 24 No See [#]_ Hours per day of operation
|
1327
1399
|
``FanLocation`` string See [#]_ Yes Location of the fan
|
1328
1400
|
``FanPower`` double W >= 0 No See [#]_ Fan power
|
1329
|
-
``extension/StartHour`` integer 0-23
|
1401
|
+
``extension/StartHour`` integer 0 - 23 No See [#]_ Daily start hour of operation
|
1330
1402
|
=========================== ======= ======= =========== ======== ======== =============================
|
1331
1403
|
|
1332
1404
|
.. [#] If Quantity not provided, defaults to 1 for kitchen fans and NumberofBathrooms for bath fans based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_.
|
@@ -1339,7 +1411,8 @@ Each kitchen range fan or bathroom fan that provides local ventilation is entere
|
|
1339
1411
|
HPXML Whole House Fan
|
1340
1412
|
*********************
|
1341
1413
|
|
1342
|
-
Each whole house
|
1414
|
+
Each whole house fan that provides cooling load reduction is entered as a ``/HPXML/Building/BuildingDetails/Systems/MechanicalVentilation/VentilationFans/VentilationFan``.
|
1415
|
+
If not entered, the simulation will not include whole house fans.
|
1343
1416
|
|
1344
1417
|
======================================= ======= ======= =========== ======== ======== ==========================
|
1345
1418
|
Element Type Units Constraints Required Default Notes
|
@@ -1358,6 +1431,7 @@ HPXML Water Heating Systems
|
|
1358
1431
|
***************************
|
1359
1432
|
|
1360
1433
|
Each water heater is entered as a ``/HPXML/Building/BuildingDetails/Systems/WaterHeating/WaterHeatingSystem``.
|
1434
|
+
If not entered, the simulation will not include water heating.
|
1361
1435
|
|
1362
1436
|
========================= ======= ======= =========== ======== ======== ================================================================
|
1363
1437
|
Element Type Units Constraints Required Default Notes
|
@@ -1366,10 +1440,10 @@ Each water heater is entered as a ``/HPXML/Building/BuildingDetails/Systems/Wate
|
|
1366
1440
|
``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units or shared laundry room
|
1367
1441
|
``WaterHeaterType`` string See [#]_ Yes Type of water heater
|
1368
1442
|
``Location`` string See [#]_ No See [#]_ Water heater location
|
1369
|
-
``FractionDHWLoadServed`` double frac 0-1 [#]_
|
1443
|
+
``FractionDHWLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of hot water load served [#]_
|
1370
1444
|
``HotWaterTemperature`` double F > 0 No 125 Water heater setpoint
|
1371
1445
|
``UsesDesuperheater`` boolean No false Presence of desuperheater?
|
1372
|
-
``NumberofUnitsServed`` integer >
|
1446
|
+
``NumberofUnitsServed`` integer > 0 See [#]_ Number of dwelling units served directly or indirectly
|
1373
1447
|
========================= ======= ======= =========== ======== ======== ================================================================
|
1374
1448
|
|
1375
1449
|
.. [#] WaterHeaterType choices are "storage water heater", "instantaneous water heater", "heat pump water heater", "space-heating boiler with storage tank", or "space-heating boiler with tankless coil".
|
@@ -1383,7 +1457,7 @@ Each water heater is entered as a ``/HPXML/Building/BuildingDetails/Systems/Wate
|
|
1383
1457
|
.. [#] The sum of all ``FractionDHWLoadServed`` (across all WaterHeatingSystems) must equal to 1.
|
1384
1458
|
.. [#] FractionDHWLoadServed represents only the fraction of the hot water load associated with the hot water **fixtures**.
|
1385
1459
|
Additional hot water load from clothes washers/dishwashers will be automatically assigned to the appropriate water heater(s).
|
1386
|
-
.. [#] NumberofUnitsServed only required if IsSharedSystem is true.
|
1460
|
+
.. [#] NumberofUnitsServed only required if IsSharedSystem is true, in which case it must be > 1.
|
1387
1461
|
|
1388
1462
|
Conventional Storage
|
1389
1463
|
~~~~~~~~~~~~~~~~~~~~
|
@@ -1398,7 +1472,7 @@ If a conventional storage water heater is specified, additional information is e
|
|
1398
1472
|
``HeatingCapacity`` double Btuh > 0 No See [#]_ Heating capacity
|
1399
1473
|
``UniformEnergyFactor`` or ``EnergyFactor`` double frac < 1 Yes EnergyGuide label rated efficiency
|
1400
1474
|
``FirstHourRating`` double gal/hr > 0 See [#]_ EnergyGuide label first hour rating
|
1401
|
-
``RecoveryEfficiency`` double frac 0-1
|
1475
|
+
``RecoveryEfficiency`` double frac 0 - 1 No See [#]_ Recovery efficiency
|
1402
1476
|
``WaterHeaterInsulation/Jacket/JacketRValue`` double F-ft2-hr/Btu >= 0 No 0 R-value of additional tank insulation wrap
|
1403
1477
|
============================================= ======= ============ =========== ======== ======== ==========================================
|
1404
1478
|
|
@@ -1409,8 +1483,8 @@ If a conventional storage water heater is specified, additional information is e
|
|
1409
1483
|
.. [#] If RecoveryEfficiency not provided, defaults as follows based on a regression analysis of `AHRI certified water heaters <https://www.ahridirectory.org/NewSearch?programId=24&searchTypeId=3>`_:
|
1410
1484
|
|
1411
1485
|
- **Electric**: 0.98
|
1412
|
-
- **Non-electric, EnergyFactor
|
1413
|
-
- **Non-electric, EnergyFactor
|
1486
|
+
- **Non-electric, EnergyFactor < 0.75**: 0.252 * EnergyFactor + 0.608
|
1487
|
+
- **Non-electric, EnergyFactor >= 0.75**: 0.561 * EnergyFactor + 0.439
|
1414
1488
|
|
1415
1489
|
Tankless
|
1416
1490
|
~~~~~~~~
|
@@ -1500,8 +1574,8 @@ If any water heating systems are provided, a single hot water distribution syste
|
|
1500
1574
|
``SystemIdentifier`` id Yes Unique identifier
|
1501
1575
|
``SystemType`` element 1 [#]_ Yes Type of in-unit distribution system serving the dwelling unit
|
1502
1576
|
``PipeInsulation/PipeRValue`` double F-ft2-hr/Btu >= 0 No 0.0 Pipe insulation R-value
|
1503
|
-
``DrainWaterHeatRecovery`` element 0-1
|
1504
|
-
``extension/SharedRecirculation`` element 0-1 [#]_
|
1577
|
+
``DrainWaterHeatRecovery`` element 0 - 1 No <none> Presence of drain water heat recovery device
|
1578
|
+
``extension/SharedRecirculation`` element 0 - 1 [#]_ No <none> Presence of shared recirculation system serving multiple dwelling units
|
1505
1579
|
================================= ======= ============ =========== ======== ======== =======================================================================
|
1506
1580
|
|
1507
1581
|
.. [#] SystemType child element choices are ``Standard`` and ``Recirculation``.
|
@@ -1583,7 +1657,7 @@ If a drain water heat recovery (DWHR) device is specified, additional informatio
|
|
1583
1657
|
======================= ======= ===== =========== ======== ======== =========================================
|
1584
1658
|
``FacilitiesConnected`` string See [#]_ Yes Specifies which facilities are connected
|
1585
1659
|
``EqualFlow`` boolean Yes Specifies how the DHWR is configured [#]_
|
1586
|
-
``Efficiency`` double frac 0-1
|
1660
|
+
``Efficiency`` double frac 0 - 1 Yes Efficiency according to CSA 55.1
|
1587
1661
|
======================= ======= ===== =========== ======== ======== =========================================
|
1588
1662
|
|
1589
1663
|
.. [#] FacilitiesConnected choices are "one" or "all".
|
@@ -1614,6 +1688,7 @@ HPXML Solar Thermal
|
|
1614
1688
|
*******************
|
1615
1689
|
|
1616
1690
|
A single solar hot water system can be entered as a ``/HPXML/Building/BuildingDetails/Systems/SolarThermal/SolarThermalSystem``.
|
1691
|
+
If not entered, the simulation will not include solar hot water.
|
1617
1692
|
|
1618
1693
|
==================== ======= ===== =========== ======== ======== ============================
|
1619
1694
|
Element Type Units Constraints Required Default Notes
|
@@ -1634,7 +1709,7 @@ To define a simple solar hot water system, additional information is entered in
|
|
1634
1709
|
================= ======= ===== =========== ======== ======== ======================
|
1635
1710
|
Element Type Units Constraints Required Default Notes
|
1636
1711
|
================= ======= ===== =========== ======== ======== ======================
|
1637
|
-
``SolarFraction`` double frac 0-1
|
1712
|
+
``SolarFraction`` double frac 0 - 1 Yes Solar fraction [#]_
|
1638
1713
|
``ConnectedTo`` idref See [#]_ No [#]_ <none> Connected water heater
|
1639
1714
|
================= ======= ===== =========== ======== ======== ======================
|
1640
1715
|
|
@@ -1655,9 +1730,9 @@ To define a detailed solar hot water system, additional information is entered i
|
|
1655
1730
|
``CollectorArea`` double ft2 > 0 Yes Area
|
1656
1731
|
``CollectorLoopType`` string See [#]_ Yes Loop type
|
1657
1732
|
``CollectorType`` string See [#]_ Yes System type
|
1658
|
-
``CollectorAzimuth`` integer deg 0-359
|
1659
|
-
``CollectorTilt`` double deg 0-90
|
1660
|
-
``CollectorRatedOpticalEfficiency`` double frac 0-1
|
1733
|
+
``CollectorAzimuth`` integer deg 0 - 359 Yes Azimuth (clockwise from North)
|
1734
|
+
``CollectorTilt`` double deg 0 - 90 Yes Tilt relative to horizontal
|
1735
|
+
``CollectorRatedOpticalEfficiency`` double frac 0 - 1 Yes Rated optical efficiency [#]_
|
1661
1736
|
``CollectorRatedThermalLosses`` double Btu/hr-ft2-R > 0 Yes Rated thermal losses [#]_
|
1662
1737
|
``StorageVolume`` double gal > 0 No See [#]_ Hot water storage volume
|
1663
1738
|
``ConnectedTo`` idref See [#]_ Yes Connected water heater
|
@@ -1674,24 +1749,25 @@ HPXML Photovoltaics
|
|
1674
1749
|
*******************
|
1675
1750
|
|
1676
1751
|
Each solar electric photovoltaic (PV) system is entered as a ``/HPXML/Building/BuildingDetails/Systems/Photovoltaics/PVSystem``.
|
1752
|
+
If not entered, the simulation will not include photovoltaics.
|
1677
1753
|
|
1678
1754
|
Many of the inputs are adopted from the `PVWatts model <https://pvwatts.nrel.gov>`_.
|
1679
1755
|
|
1680
|
-
======================================================= ================= =========
|
1681
|
-
Element Type Units Constraints
|
1682
|
-
======================================================= ================= =========
|
1683
|
-
``SystemIdentifier`` id
|
1684
|
-
``IsSharedSystem`` boolean
|
1685
|
-
``Location`` string See [#]_
|
1686
|
-
``ModuleType`` string See [#]_
|
1687
|
-
``Tracking`` string See [#]_
|
1688
|
-
``ArrayAzimuth`` integer deg 0-359 Yes Direction panels face (clockwise from North)
|
1689
|
-
``ArrayTilt`` double deg 0-90 Yes Tilt relative to horizontal
|
1690
|
-
``MaxPowerOutput`` double W >= 0
|
1691
|
-
``InverterEfficiency`` double frac 0-1 No 0.96 Inverter efficiency
|
1692
|
-
``SystemLossesFraction`` or ``YearModulesManufactured`` double or integer frac or # 0-1 or > 1600 No 0.14 System losses [#]_
|
1693
|
-
``extension/NumberofBedroomsServed`` integer > 1
|
1694
|
-
======================================================= ================= =========
|
1756
|
+
======================================================= ================= ========= =============== ======== ======== ============================================
|
1757
|
+
Element Type Units Constraints Required Default Notes
|
1758
|
+
======================================================= ================= ========= =============== ======== ======== ============================================
|
1759
|
+
``SystemIdentifier`` id Yes Unique identifier
|
1760
|
+
``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units
|
1761
|
+
``Location`` string See [#]_ No roof Mounting location
|
1762
|
+
``ModuleType`` string See [#]_ No standard Type of module
|
1763
|
+
``Tracking`` string See [#]_ No fixed Type of tracking
|
1764
|
+
``ArrayAzimuth`` integer deg 0 - 359 Yes Direction panels face (clockwise from North)
|
1765
|
+
``ArrayTilt`` double deg 0 - 90 Yes Tilt relative to horizontal
|
1766
|
+
``MaxPowerOutput`` double W >= 0 Yes Peak power
|
1767
|
+
``InverterEfficiency`` double frac 0 - 1 No 0.96 Inverter efficiency
|
1768
|
+
``SystemLossesFraction`` or ``YearModulesManufactured`` double or integer frac or # 0 - 1 or > 1600 No 0.14 System losses [#]_
|
1769
|
+
``extension/NumberofBedroomsServed`` integer > 1 See [#]_ Number of bedrooms served
|
1770
|
+
======================================================= ================= ========= =============== ======== ======== ============================================
|
1695
1771
|
|
1696
1772
|
.. [#] Location choices are "ground" or "roof" mounted.
|
1697
1773
|
.. [#] ModuleType choices are "standard", "premium", or "thin film".
|
@@ -1699,13 +1775,14 @@ Many of the inputs are adopted from the `PVWatts model <https://pvwatts.nrel.gov
|
|
1699
1775
|
.. [#] System losses due to soiling, shading, snow, mismatch, wiring, degradation, etc.
|
1700
1776
|
If YearModulesManufactured provided but not SystemLossesFraction, system losses calculated as:
|
1701
1777
|
SystemLossesFraction = 1.0 - (1.0 - 0.14) * (1.0 - (1.0 - 0.995^(CurrentYear - YearModulesManufactured))).
|
1702
|
-
.. [#] NumberofBedroomsServed only required if IsSharedSystem is true.
|
1778
|
+
.. [#] NumberofBedroomsServed only required if IsSharedSystem is true, in which case it must be > NumberofBedrooms.
|
1703
1779
|
PV generation will be apportioned to the dwelling unit using its number of bedrooms divided by the total number of bedrooms served by the PV system.
|
1704
1780
|
|
1705
1781
|
HPXML Generators
|
1706
1782
|
****************
|
1707
1783
|
|
1708
1784
|
Each generator that provides on-site power is entered as a ``/HPXML/Building/BuildingDetails/Systems/extension/Generators/Generator``.
|
1785
|
+
If not entered, the simulation will not include generators.
|
1709
1786
|
|
1710
1787
|
========================== ======= ======= =========== ======== ======= ============================================
|
1711
1788
|
Element Type Units Constraints Required Default Notes
|
@@ -1714,12 +1791,13 @@ Each generator that provides on-site power is entered as a ``/HPXML/Building/Bui
|
|
1714
1791
|
``IsSharedSystem`` boolean No false Whether it serves multiple dwelling units
|
1715
1792
|
``FuelType`` string See [#]_ Yes Fuel type
|
1716
1793
|
``AnnualConsumptionkBtu`` double kBtu/yr > 0 Yes Annual fuel consumed
|
1717
|
-
``AnnualOutputkWh`` double kWh/yr > 0
|
1794
|
+
``AnnualOutputkWh`` double kWh/yr > 0 [#]_ Yes Annual electricity produced
|
1718
1795
|
``NumberofBedroomsServed`` integer > 1 See [#]_ Number of bedrooms served
|
1719
1796
|
========================== ======= ======= =========== ======== ======= ============================================
|
1720
1797
|
|
1721
1798
|
.. [#] FuelType choices are "natural gas" or "propane".
|
1722
|
-
.. [#]
|
1799
|
+
.. [#] AnnualOutputkWh must also be < AnnualConsumptionkBtu*3.412 (i.e., the generator must consume more energy than it produces).
|
1800
|
+
.. [#] NumberofBedroomsServed only required if IsSharedSystem is true, in which case it must be > NumberofBedrooms.
|
1723
1801
|
Annual consumption and annual production will be apportioned to the dwelling unit using its number of bedrooms divided by the total number of bedrooms served by the generator.
|
1724
1802
|
|
1725
1803
|
.. note::
|
@@ -1735,6 +1813,7 @@ HPXML Clothes Washer
|
|
1735
1813
|
********************
|
1736
1814
|
|
1737
1815
|
A single clothes washer can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/ClothesWasher``.
|
1816
|
+
If not entered, the simulation will not include a clothes washer.
|
1738
1817
|
|
1739
1818
|
============================================================== ======= =========== =========== ======== ============ ==============================================
|
1740
1819
|
Element Type Units Constraints Required Default Notes
|
@@ -1775,11 +1854,14 @@ If IntegratedModifiedEnergyFactor or ModifiedEnergyFactor is provided, a complet
|
|
1775
1854
|
``LabelUsage`` double cyc/wk > 0 Yes EnergyGuide label number of cycles
|
1776
1855
|
``Capacity`` double ft3 > 0 Yes Clothes dryer volume
|
1777
1856
|
================================ ======= ======= =========== ============ ======= ====================================
|
1778
|
-
|
1857
|
+
|
1858
|
+
Clothes washer energy use and hot water use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 Addendum A <https://www.resnet.us/wp-content/uploads/ANSI_RESNET_ICC-301-2019-Addendum-A-2019_7.16.20-1.pdf>`_.
|
1859
|
+
|
1779
1860
|
HPXML Clothes Dryer
|
1780
1861
|
*******************
|
1781
1862
|
|
1782
1863
|
A single clothes dryer can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/ClothesDryer``.
|
1864
|
+
If not entered, the simulation will not include a clothes dryer.
|
1783
1865
|
|
1784
1866
|
============================================ ======= ====== =========== ======== ============ ==============================================
|
1785
1867
|
Element Type Units Constraints Required Default Notes
|
@@ -1799,27 +1881,19 @@ A single clothes dryer can be entered as a ``/HPXML/Building/BuildingDetails/App
|
|
1799
1881
|
See :ref:`hpxmllocations` for descriptions.
|
1800
1882
|
.. [#] FuelType choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "electricity", "wood", or "wood pellets".
|
1801
1883
|
.. [#] If neither CombinedEnergyFactor nor EnergyFactor provided, the following default values representing a standard clothes dryer from 2006 will be used:
|
1802
|
-
CombinedEnergyFactor = 3.01
|
1803
|
-
ControlType = timer.
|
1884
|
+
CombinedEnergyFactor = 3.01.
|
1804
1885
|
.. [#] If EnergyFactor (EF) provided instead of CombinedEnergyFactor (CEF), it will be converted using the following equation based on the `Interpretation on ANSI/RESNET/ICC 301-2014 Clothes Dryer CEF <https://www.resnet.us/wp-content/uploads/No.-301-2014-10-Section-4.2.2.5.2.8-Clothes-Dryer-CEF-Rating.pdf>`_:
|
1805
1886
|
CEF = EF / 1.15.
|
1806
1887
|
.. [#] VentedFlowRate only required if IsVented is true.
|
1807
1888
|
.. [#] VentedFlowRate default based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_.
|
1808
1889
|
|
1809
|
-
|
1810
|
-
|
1811
|
-
=============== ======= ======= =========== ======== ======= ================
|
1812
|
-
Element Type Units Constraints Required Default Notes
|
1813
|
-
=============== ======= ======= =========== ======== ======= ================
|
1814
|
-
``ControlType`` string See [#]_ Yes Type of controls
|
1815
|
-
=============== ======= ======= =========== ======== ======= ================
|
1816
|
-
|
1817
|
-
.. [#] ControlType choices are "timer" or "moisture".
|
1890
|
+
Clothes dryer energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 Addendum A <https://www.resnet.us/wp-content/uploads/ANSI_RESNET_ICC-301-2019-Addendum-A-2019_7.16.20-1.pdf>`_.
|
1818
1891
|
|
1819
1892
|
HPXML Dishwasher
|
1820
1893
|
****************
|
1821
1894
|
|
1822
1895
|
A single dishwasher can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Dishwasher``.
|
1896
|
+
If not entered, the simulation will not include a dishwasher.
|
1823
1897
|
|
1824
1898
|
============================================ ======= =========== =========== ======== ============ ==============================================
|
1825
1899
|
Element Type Units Constraints Required Default Notes
|
@@ -1859,10 +1933,13 @@ If the RatedAnnualkWh or EnergyFactor is provided, a complete set of EnergyGuide
|
|
1859
1933
|
``PlaceSettingCapacity`` integer # > 0 Yes Number of place settings
|
1860
1934
|
======================== ======= ======= =========== ======== ======= ==================================
|
1861
1935
|
|
1936
|
+
Dishwasher energy use and hot water use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 Addendum A <https://www.resnet.us/wp-content/uploads/ANSI_RESNET_ICC-301-2019-Addendum-A-2019_7.16.20-1.pdf>`_.
|
1937
|
+
|
1862
1938
|
HPXML Refrigerators
|
1863
1939
|
*******************
|
1864
1940
|
|
1865
1941
|
Each refrigerator can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Refrigerator``.
|
1942
|
+
If not entered, the simulation will not include a refrigerator.
|
1866
1943
|
|
1867
1944
|
===================================================== ======= ====== =========== ======== ======== ======================================
|
1868
1945
|
Element Type Units Constraints Required Default Notes
|
@@ -1891,6 +1968,7 @@ HPXML Freezers
|
|
1891
1968
|
**************
|
1892
1969
|
|
1893
1970
|
Each standalone freezer can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Freezer``.
|
1971
|
+
If not entered, the simulation will not include a standalone freezer.
|
1894
1972
|
|
1895
1973
|
===================================================== ====== ====== =========== ======== ========== ======================================
|
1896
1974
|
Element Type Units Constraints Required Default Notes
|
@@ -1914,25 +1992,36 @@ Each standalone freezer can be entered as a ``/HPXML/Building/BuildingDetails/Ap
|
|
1914
1992
|
HPXML Dehumidifier
|
1915
1993
|
******************
|
1916
1994
|
|
1917
|
-
|
1995
|
+
Each dehumidifier can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/Dehumidifier``.
|
1996
|
+
If not entered, the simulation will not include a dehumidifier.
|
1918
1997
|
|
1919
1998
|
============================================== ========== ========== =========== ======== ======= ========================================
|
1920
1999
|
Element Type Units Constraints Required Default Notes
|
1921
2000
|
============================================== ========== ========== =========== ======== ======= ========================================
|
1922
2001
|
``SystemIdentifier`` id Yes Unique identifier
|
1923
2002
|
``Type`` string See [#]_ Yes Type of dehumidifier
|
2003
|
+
``Location`` string See [#]_ Yes Location of dehumidifier
|
1924
2004
|
``Capacity`` double pints/day > 0 Yes Dehumidification capacity
|
1925
2005
|
``IntegratedEnergyFactor`` or ``EnergyFactor`` double liters/kWh > 0 Yes Rated efficiency
|
1926
|
-
``DehumidistatSetpoint`` double frac 0-1
|
1927
|
-
``FractionDehumidificationLoadServed`` double frac 0-1
|
2006
|
+
``DehumidistatSetpoint`` double frac 0 - 1 [#]_ Yes Relative humidity setpoint
|
2007
|
+
``FractionDehumidificationLoadServed`` double frac 0 - 1 [#]_ Yes Fraction of dehumidification load served
|
1928
2008
|
============================================== ========== ========== =========== ======== ======= ========================================
|
1929
2009
|
|
1930
2010
|
.. [#] Type choices are "portable" or "whole-home".
|
2011
|
+
.. [#] Location only choice is "living space".
|
2012
|
+
.. [#] If multiple dehumidifiers are entered, they must all have the same setpoint or an error will be generated.
|
2013
|
+
.. [#] The sum of all ``FractionDehumidificationLoadServed`` (across all Dehumidifiers) must be less than or equal to 1.
|
2014
|
+
|
2015
|
+
.. note::
|
2016
|
+
|
2017
|
+
Dehumidifiers are currently modeled as located within conditioned space; the model is not suited for a dehumidifier in, e.g., a wet unconditioned basement or crawlspace.
|
2018
|
+
Therefore the dehumidifier Location is currently restricted to "living space".
|
1931
2019
|
|
1932
2020
|
HPXML Cooking Range/Oven
|
1933
2021
|
************************
|
1934
2022
|
|
1935
2023
|
A single cooking range can be entered as a ``/HPXML/Building/BuildingDetails/Appliances/CookingRange``.
|
2024
|
+
If not entered, the simulation will not include a cooking range/oven.
|
1936
2025
|
|
1937
2026
|
======================================== ======= ====== =========== ======== ============ ======================================
|
1938
2027
|
Element Type Units Constraints Required Default Notes
|
@@ -1962,6 +2051,8 @@ If a cooking range is specified, a single oven is also entered as a ``/HPXML/Bui
|
|
1962
2051
|
``IsConvection`` boolean No false Convection oven?
|
1963
2052
|
==================== ======= ====== =========== ======== ======= ================
|
1964
2053
|
|
2054
|
+
Cooking range/oven energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
|
2055
|
+
|
1965
2056
|
HPXML Lighting & Ceiling Fans
|
1966
2057
|
-----------------------------
|
1967
2058
|
|
@@ -1970,7 +2061,7 @@ Lighting and ceiling fans are entered in ``/HPXML/Building/BuildingDetails/Light
|
|
1970
2061
|
HPXML Lighting
|
1971
2062
|
**************
|
1972
2063
|
|
1973
|
-
|
2064
|
+
Nine ``/HPXML/Building/BuildingDetails/Lighting/LightingGroup`` elements must be provided, each of which is the combination of:
|
1974
2065
|
|
1975
2066
|
- ``LightingType``: 'LightEmittingDiode', 'CompactFluorescent', and 'FluorescentTube'
|
1976
2067
|
- ``Location``: 'interior', 'garage', and 'exterior'
|
@@ -1983,7 +2074,7 @@ Information is entered in each ``LightingGroup``.
|
|
1983
2074
|
``SystemIdentifier`` id Yes Unique identifier
|
1984
2075
|
``LightingType`` element 1 [#]_ Yes Lighting type
|
1985
2076
|
``Location`` string See [#]_ Yes See [#]_
|
1986
|
-
``FractionofUnitsInLocation`` double frac 0-1 [#]_
|
2077
|
+
``FractionofUnitsInLocation`` double frac 0 - 1 [#]_ Yes Fraction of light fixtures in the location with the specified lighting type
|
1987
2078
|
============================= ======= ====== =========== ======== ======= ===========================================================================
|
1988
2079
|
|
1989
2080
|
.. [#] LightingType child element choices are ``LightEmittingDiode``, ``CompactFluorescent``, or ``FluorescentTube``.
|
@@ -2009,7 +2100,7 @@ Additional information is entered in ``Lighting``.
|
|
2009
2100
|
``extension/ExteriorWeekdayScheduleFractions`` array No See [#]_ 24 comma-separated exterior weekday fractions
|
2010
2101
|
``extension/ExteriorWeekendScheduleFractions`` array No 24 comma-separated exterior weekend fractions
|
2011
2102
|
``extension/ExteriorMonthlyScheduleMultipliers`` array No 12 comma-separated exterior monthly multipliers
|
2012
|
-
``extension/ExteriorHolidayLighting`` element 0-1
|
2103
|
+
``extension/ExteriorHolidayLighting`` element 0 - 1 No <none> Presence of additional holiday lighting?
|
2013
2104
|
================================================ ======= ====== =========== ======== ======== ===============================================
|
2014
2105
|
|
2015
2106
|
.. [#] If *interior* schedule values not provided, they will be calculated using Lighting Calculation Option 2 (location-dependent lighting profile) of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_.
|
@@ -2022,10 +2113,10 @@ If exterior holiday lighting is specified, additional information is entered in
|
|
2022
2113
|
Element Type Units Constraints Required Default Notes
|
2023
2114
|
=============================== ======= ======= =========== ======== ============= ============================================
|
2024
2115
|
``Load[Units="kWh/day"]/Value`` double kWh/day >= 0 No See [#]_ Holiday lighting energy use per day
|
2025
|
-
``PeriodBeginMonth`` integer 1-12
|
2026
|
-
``PeriodBeginDayOfMonth`` integer 1-31
|
2027
|
-
``PeriodEndMonth`` integer 1-12
|
2028
|
-
``PeriodEndDayOfMonth`` integer 1-31
|
2116
|
+
``PeriodBeginMonth`` integer 1 - 12 No 11 (November) Holiday lighting start date
|
2117
|
+
``PeriodBeginDayOfMonth`` integer 1 - 31 No 24 Holiday lighting start date
|
2118
|
+
``PeriodEndMonth`` integer 1 - 12 No 1 (January) Holiday lighting end date
|
2119
|
+
``PeriodEndDayOfMonth`` integer 1 - 31 No 6 Holiday lighting end date
|
2029
2120
|
``WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated holiday weekday fractions
|
2030
2121
|
``WeekendScheduleFractions`` array No 24 comma-separated holiday weekend fractions
|
2031
2122
|
=============================== ======= ======= =========== ======== ============= ============================================
|
@@ -2033,10 +2124,13 @@ If exterior holiday lighting is specified, additional information is entered in
|
|
2033
2124
|
.. [#] If Value not provided, defaults to 1.1 for single-family detached and 0.55 for others.
|
2034
2125
|
.. [#] If WeekdayScheduleFractions not provided, defaults to "0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008, 0.098, 0.168, 0.194, 0.284, 0.192, 0.037, 0.019".
|
2035
2126
|
|
2127
|
+
Interior, exterior, and garage lighting energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
|
2128
|
+
|
2036
2129
|
HPXML Ceiling Fans
|
2037
2130
|
******************
|
2038
2131
|
|
2039
2132
|
Each ceiling fan is entered as a ``/HPXML/Building/BuildingDetails/Lighting/CeilingFan``.
|
2133
|
+
If not entered, the simulation will not include a ceiling fan.
|
2040
2134
|
|
2041
2135
|
========================================= ======= ======= =========== ======== ======== ==============================
|
2042
2136
|
Element Type Units Constraints Required Default Notes
|
@@ -2049,6 +2143,8 @@ Each ceiling fan is entered as a ``/HPXML/Building/BuildingDetails/Lighting/Ceil
|
|
2049
2143
|
.. [#] If Efficiency not provided, defaults to 3000 / 42.6 based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
|
2050
2144
|
.. [#] If Quantity not provided, defaults to NumberofBedrooms + 1 based on `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
|
2051
2145
|
|
2146
|
+
Ceiling fan energy use is calculated per the Energy Rating Rated Home in `ANSI/RESNET/ICC 301-2019 <https://codes.iccsafe.org/content/RESNETICC3012019>`_.
|
2147
|
+
|
2052
2148
|
.. note::
|
2053
2149
|
|
2054
2150
|
A reduced cooling setpoint can be specified for summer months when ceiling fans are operating.
|
@@ -2061,22 +2157,29 @@ HPXML Pools
|
|
2061
2157
|
***********
|
2062
2158
|
|
2063
2159
|
A single pool can be entered as a ``/HPXML/Building/BuildingDetails/Pools/Pool``.
|
2160
|
+
If not entered, the simulation will not include a pool.
|
2064
2161
|
|
2065
2162
|
==================== ======= ====== =========== ======== ============ =================
|
2066
2163
|
Element Type Units Constraints Required Default Notes
|
2067
2164
|
==================== ======= ====== =========== ======== ============ =================
|
2068
2165
|
``SystemIdentifier`` id Yes Unique identifier
|
2166
|
+
``Type`` string See [#]_ Yes Pool type
|
2069
2167
|
==================== ======= ====== =========== ======== ============ =================
|
2070
2168
|
|
2169
|
+
.. [#] Type choices are "in ground", "on ground", "above ground", "other", "unknown", or "none".
|
2170
|
+
If "none" is entered, the simulation will not include a pool.
|
2171
|
+
|
2071
2172
|
Pool Pump
|
2072
2173
|
~~~~~~~~~
|
2073
2174
|
|
2074
|
-
If a pool is specified, a single pool pump
|
2175
|
+
If a pool is specified, a single pool pump can be entered as a ``Pool/PoolPumps/PoolPump``.
|
2176
|
+
If not entered, the simulation will not include a pool heater.
|
2075
2177
|
|
2076
2178
|
======================================== ======= ====== =========== ======== ============ ======================================
|
2077
2179
|
Element Type Units Constraints Required Default Notes
|
2078
2180
|
======================================== ======= ====== =========== ======== ============ ======================================
|
2079
2181
|
``SystemIdentifier`` id Yes Unique identifier
|
2182
|
+
``Type`` string See [#]_ Yes Pool pump type
|
2080
2183
|
``Load[Units="kWh/year"]/Value`` double kWh/yr >= 0 No See [#]_ Pool pump energy use
|
2081
2184
|
``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on pool pump energy use
|
2082
2185
|
``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions
|
@@ -2084,6 +2187,8 @@ If a pool is specified, a single pool pump must be entered as a ``Pool/PoolPumps
|
|
2084
2187
|
``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers
|
2085
2188
|
======================================== ======= ====== =========== ======== ============ ======================================
|
2086
2189
|
|
2190
|
+
.. [#] Type choices are "single speed", "multi speed", "variable speed", "variable flow", "other", "unknown", or "none".
|
2191
|
+
If "none" is entered, the simulation will not include a pool pump.
|
2087
2192
|
.. [#] If Value not provided, defaults based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_: 158.5 / 0.070 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.35 * ConditionedFloorArea / 1920).
|
2088
2193
|
.. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided, default values from Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used: "0.003, 0.003, 0.003, 0.004, 0.008, 0.015, 0.026, 0.044, 0.084, 0.121, 0.127, 0.121, 0.120, 0.090, 0.075, 0.061, 0.037, 0.023, 0.013, 0.008, 0.004, 0.003, 0.003, 0.003".
|
2089
2194
|
.. [#] If MonthlyScheduleMultipliers not provided, default values from Figure 24 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used: "1.154, 1.161, 1.013, 1.010, 1.013, 0.888, 0.883, 0.883, 0.888, 0.978, 0.974, 1.154".
|
@@ -2092,6 +2197,7 @@ Pool Heater
|
|
2092
2197
|
~~~~~~~~~~~
|
2093
2198
|
|
2094
2199
|
If a pool is specified, a pool heater can be entered as a ``Pool/Heater``.
|
2200
|
+
If not entered, the simulation will not include a pool heater.
|
2095
2201
|
|
2096
2202
|
====================================================== ======= ================== =========== ======== ======== ======================================
|
2097
2203
|
Element Type Units Constraints Required Default Notes
|
@@ -2105,7 +2211,8 @@ If a pool is specified, a pool heater can be entered as a ``Pool/Heater``.
|
|
2105
2211
|
``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers
|
2106
2212
|
====================================================== ======= ================== =========== ======== ======== ======================================
|
2107
2213
|
|
2108
|
-
.. [#] Type choices are "gas fired", "electric resistance", or "heat pump".
|
2214
|
+
.. [#] Type choices are "none, "gas fired", "electric resistance", or "heat pump".
|
2215
|
+
If "none" is entered, the simulation will not include a pool heater.
|
2109
2216
|
.. [#] If Value not provided, defaults as follows:
|
2110
2217
|
|
2111
2218
|
- **gas fired**: 3.0 / 0.014 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.35 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
|
@@ -2119,22 +2226,29 @@ HPXML Hot Tubs
|
|
2119
2226
|
**************
|
2120
2227
|
|
2121
2228
|
A single hot tub can be entered as a ``/HPXML/Building/BuildingDetails/HotTubs/HotTub``.
|
2229
|
+
If not entered, the simulation will not include a hot tub.
|
2122
2230
|
|
2123
2231
|
==================== ======= ====== =========== ======== ============ =================
|
2124
2232
|
Element Type Units Constraints Required Default Notes
|
2125
2233
|
==================== ======= ====== =========== ======== ============ =================
|
2126
2234
|
``SystemIdentifier`` id Yes Unique identifier
|
2235
|
+
``Type`` string See [#]_ Yes Hot tub type
|
2127
2236
|
==================== ======= ====== =========== ======== ============ =================
|
2128
2237
|
|
2238
|
+
.. [#] Type choices are "in ground", "on ground", "above ground", "other", "unknown", or "none".
|
2239
|
+
If "none" is entered, the simulation will not include a hot tub.
|
2240
|
+
|
2129
2241
|
Hot Tub Pump
|
2130
2242
|
~~~~~~~~~~~~
|
2131
2243
|
|
2132
|
-
If a hot tub is specified, a single hot tub pump
|
2244
|
+
If a hot tub is specified, a single hot tub pump can be entered as a ``HotTub/HotTubPumps/HotTubPump``.
|
2245
|
+
If not entered, the simulation will not include a hot tub pump.
|
2133
2246
|
|
2134
2247
|
======================================== ======= ====== =========== ======== ============ ======================================
|
2135
2248
|
Element Type Units Constraints Required Default Notes
|
2136
2249
|
======================================== ======= ====== =========== ======== ============ ======================================
|
2137
2250
|
``SystemIdentifier`` id Yes Unique identifier
|
2251
|
+
``Type`` string See [#]_ Yes Hot tub pump type
|
2138
2252
|
``Load[Units="kWh/year"]/Value`` double kWh/yr >= 0 No See [#]_ Hot tub pump energy use
|
2139
2253
|
``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on hot tub pump energy use
|
2140
2254
|
``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions
|
@@ -2142,6 +2256,8 @@ If a hot tub is specified, a single hot tub pump must be entered as a ``HotTub/H
|
|
2142
2256
|
``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers
|
2143
2257
|
======================================== ======= ====== =========== ======== ============ ======================================
|
2144
2258
|
|
2259
|
+
.. [#] Type choices are "single speed", "multi speed", "variable speed", "variable flow", "other", "unknown", or "none".
|
2260
|
+
If "none" is entered, the simulation will not include a hot tub pump.
|
2145
2261
|
.. [#] If Value not provided, defaults based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_: 59.5 / 0.059 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.35 * ConditionedFloorArea / 1920).
|
2146
2262
|
.. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided, default values from Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used: "0.024, 0.029, 0.024, 0.029, 0.047, 0.067, 0.057, 0.024, 0.024, 0.019, 0.015, 0.014, 0.014, 0.014, 0.024, 0.058, 0.126, 0.122, 0.068, 0.061, 0.051, 0.043, 0.024, 0.024".
|
2147
2263
|
.. [#] If MonthlyScheduleMultipliers not provided, default values from Figure 24 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used: "0.921, 0.928, 0.921, 0.915, 0.921, 1.160, 1.158, 1.158, 1.160, 0.921, 0.915, 0.921".
|
@@ -2150,6 +2266,7 @@ Hot Tub Heater
|
|
2150
2266
|
~~~~~~~~~~~~~~
|
2151
2267
|
|
2152
2268
|
If a hot tub is specified, a hot tub heater can be entered as a ``HotTub/Heater``.
|
2269
|
+
If not entered, the simulation will not include a hot tub heater.
|
2153
2270
|
|
2154
2271
|
====================================================== ======= ================== =========== ======== ======== =======================================
|
2155
2272
|
Element Type Units Constraints Required Default Notes
|
@@ -2163,7 +2280,8 @@ If a hot tub is specified, a hot tub heater can be entered as a ``HotTub/Heater`
|
|
2163
2280
|
``extension/MonthlyScheduleMultipliers`` array No See [#]_ 12 comma-separated monthly multipliers
|
2164
2281
|
====================================================== ======= ================== =========== ======== ======== =======================================
|
2165
2282
|
|
2166
|
-
.. [#] Type choices are "gas fired", "electric resistance", or "heat pump".
|
2283
|
+
.. [#] Type choices are "none, "gas fired", "electric resistance", or "heat pump".
|
2284
|
+
If "none" is entered, the simulation will not include a hot tub heater.
|
2167
2285
|
.. [#] If Value not provided, defaults as follows:
|
2168
2286
|
|
2169
2287
|
- **gas fired [therm/year]**: 0.87 / 0.011 * (0.5 + 0.25 * NumberofBedrooms / 3 + 0.35 * ConditionedFloorArea / 1920) (based on the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_)
|
@@ -2182,7 +2300,11 @@ HPXML Plug Loads
|
|
2182
2300
|
****************
|
2183
2301
|
|
2184
2302
|
Each type of plug load can be entered as a ``/HPXML/Building/BuildingDetails/MiscLoads/PlugLoad``.
|
2185
|
-
|
2303
|
+
|
2304
|
+
It is required to include miscellaneous plug loads (PlugLoadType="other"), which represents all residual plug loads not explicitly captured elsewhere.
|
2305
|
+
It is common to include television plug loads (PlugLoadType="TV other"), which represents all television energy use in the home.
|
2306
|
+
It is less common to include the other plug load types, as they are less frequently found in homes.
|
2307
|
+
If not entered, the simulation will not include that type of plug load.
|
2186
2308
|
|
2187
2309
|
======================================== ======= ====== =========== ======== ======== =============================================================
|
2188
2310
|
Element Type Units Constraints Required Default Notes
|
@@ -2190,8 +2312,8 @@ It is required that at least a miscellaneous plug load (PlugLoadType="other") is
|
|
2190
2312
|
``SystemIdentifier`` id Yes Unique identifier
|
2191
2313
|
``PlugLoadType`` string See [#]_ Yes Type of plug load
|
2192
2314
|
``Load[Units="kWh/year"]/Value`` double kWh/yr >= 0 No See [#]_ Annual electricity consumption
|
2193
|
-
``extension/FracSensible`` double 0-1
|
2194
|
-
``extension/FracLatent`` double 0-1
|
2315
|
+
``extension/FracSensible`` double 0 - 1 No See [#]_ Fraction that is sensible heat gain to conditioned space [#]_
|
2316
|
+
``extension/FracLatent`` double 0 - 1 No See [#]_ Fraction that is latent heat gain to conditioned space
|
2195
2317
|
``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on electricity use
|
2196
2318
|
``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions
|
2197
2319
|
``extension/WeekendScheduleFractions`` array No See [#]_ 24 comma-separated weekend fractions
|
@@ -2213,7 +2335,7 @@ It is required that at least a miscellaneous plug load (PlugLoadType="other") is
|
|
2213
2335
|
- **well pump**: 0.0
|
2214
2336
|
- **electric vehicle charging**: 0.0
|
2215
2337
|
|
2216
|
-
.. [#] The remaining fraction (i.e., 1.0 - FracSensible - FracLatent) is assumed to be heat gain outside conditioned space and thus lost.
|
2338
|
+
.. [#] The remaining fraction (i.e., 1.0 - FracSensible - FracLatent) must be > 0 and is assumed to be heat gain outside conditioned space and thus lost.
|
2217
2339
|
.. [#] If FracLatent not provided, defaults as:
|
2218
2340
|
|
2219
2341
|
- **other**: 0.045
|
@@ -2247,6 +2369,9 @@ HPXML Fuel Loads
|
|
2247
2369
|
|
2248
2370
|
Each fuel load can be entered as a ``/HPXML/Building/BuildingDetails/MiscLoads/FuelLoad``.
|
2249
2371
|
|
2372
|
+
It is less common to include fuel load types, as they are less frequently found in homes.
|
2373
|
+
If not entered, the simulation will not include that type of fuel load.
|
2374
|
+
|
2250
2375
|
======================================== ======= ======== =========== ======== ======== =============================================================
|
2251
2376
|
Element Type Units Constraints Required Default Notes
|
2252
2377
|
======================================== ======= ======== =========== ======== ======== =============================================================
|
@@ -2254,8 +2379,8 @@ Each fuel load can be entered as a ``/HPXML/Building/BuildingDetails/MiscLoads/F
|
|
2254
2379
|
``FuelLoadType`` string See [#]_ Yes Type of fuel load
|
2255
2380
|
``Load[Units="therm/year"]/Value`` double therm/yr >= 0 No See [#]_ Annual fuel consumption
|
2256
2381
|
``FuelType`` string See [#]_ Yes Fuel type
|
2257
|
-
``extension/FracSensible`` double 0-1
|
2258
|
-
``extension/FracLatent`` double 0-1
|
2382
|
+
``extension/FracSensible`` double 0 - 1 No See [#]_ Fraction that is sensible heat gain to conditioned space [#]_
|
2383
|
+
``extension/FracLatent`` double 0 - 1 No See [#]_ Fraction that is latent heat gain to conditioned space
|
2259
2384
|
``extension/UsageMultiplier`` double >= 0 No 1.0 Multiplier on fuel use
|
2260
2385
|
``extension/WeekdayScheduleFractions`` array No See [#]_ 24 comma-separated weekday fractions
|
2261
2386
|
``extension/WeekendScheduleFractions`` array No 24 comma-separated weekend fractions
|
@@ -2271,7 +2396,7 @@ Each fuel load can be entered as a ``/HPXML/Building/BuildingDetails/MiscLoads/F
|
|
2271
2396
|
|
2272
2397
|
.. [#] FuelType choices are "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "anthracite coal", "wood", or "wood pellets".
|
2273
2398
|
.. [#] If FracSensible not provided, defaults to 0.5 for fireplace and 0.0 for all other types.
|
2274
|
-
.. [#] The remaining fraction (i.e., 1.0 - FracSensible - FracLatent) is assumed to be heat gain outside conditioned space and thus lost.
|
2399
|
+
.. [#] The remaining fraction (i.e., 1.0 - FracSensible - FracLatent) must be > 0 and is assumed to be heat gain outside conditioned space and thus lost.
|
2275
2400
|
.. [#] If FracLatent not provided, defaults to 0.1 for fireplace and 0.0 for all other types.
|
2276
2401
|
.. [#] If WeekdayScheduleFractions or WeekendScheduleFractions not provided, default values from Figure 23 of the `2010 BAHSP <https://www1.eere.energy.gov/buildings/publications/pdfs/building_america/house_simulation.pdf>`_ are used:
|
2277
2402
|
|