diff --git a/docs/technical_development_guide/source/workflow_inputs/characteristics.rst b/docs/technical_development_guide/source/workflow_inputs/characteristics.rst index a0a74cd8c6..31878c655f 100644 --- a/docs/technical_development_guide/source/workflow_inputs/characteristics.rst +++ b/docs/technical_development_guide/source/workflow_inputs/characteristics.rst @@ -62438,18 +62438,12 @@ Arguments - Type - Choices - Description - * - ``roof_material_type`` + * - ``enclosure_roof_material`` - false - - Choice - - auto, asphalt or fiberglass shingles, concrete, cool roof, slate or tile shingles, expanded polystyrene sheathing, metal surfacing, plastic/rubber/synthetic sheeting, shingles, wood shingles or shakes - - The material type of the roof. If not provided, the OS-HPXML default (see `HPXML Roofs `_) is used. - * - ``roof_color`` - - false - - - - Choice - - auto, dark, light, medium, medium dark, reflective - - The color of the roof. If not provided, the OS-HPXML default (see `HPXML Roofs `_) is used. + - auto, Asphalt/Fiberglass Shingles, Dark, Asphalt/Fiberglass Shingles, Medium Dark, Asphalt/Fiberglass Shingles, Medium, Asphalt/Fiberglass Shingles, Light, Asphalt/Fiberglass Shingles, Reflective, Tile/Slate, Dark, Tile/Slate, Medium Dark, Tile/Slate, Medium, Tile/Slate, Light, Tile/Slate, Reflective, Metal, Dark, Metal, Medium Dark, Metal, Medium, Metal, Light, Metal, Reflective, Wood Shingles/Shakes, Dark, Wood Shingles/Shakes, Medium Dark, Wood Shingles/Shakes, Medium, Wood Shingles/Shakes, Light, Wood Shingles/Shakes, Reflective, Shingles, Dark, Shingles, Medium Dark, Shingles, Medium, Shingles, Light, Shingles, Reflective, Synthetic Sheeting, Dark, Synthetic Sheeting, Medium Dark, Synthetic Sheeting, Medium, Synthetic Sheeting, Light, Synthetic Sheeting, Reflective, EPS Sheathing, Dark, EPS Sheathing, Medium Dark, EPS Sheathing, Medium, EPS Sheathing, Light, EPS Sheathing, Reflective, Concrete, Dark, Concrete, Medium Dark, Concrete, Medium, Concrete, Light, Concrete, Reflective, Cool Roof + - The material type/color of the roof. If not provided, the OS-HPXML default (see `HPXML Roofs `_) is used. Options ******* @@ -62463,37 +62457,29 @@ From ``project_national`` the list of options, option stock sturation, and optio * - Option name - Stock saturation - - ``roof_material_type`` - - ``roof_color`` + - ``enclosure_roof_material`` * - Asphalt Shingles, Medium - 45% - - asphalt or fiberglass shingles - - medium + - Asphalt/Fiberglass Shingles, Medium * - Composition Shingles - 36% - - asphalt or fiberglass shingles - - medium + - Asphalt/Fiberglass Shingles, Medium * - Metal, Dark - 8.4% - - metal surfacing - - dark + - Metal, Dark * - Slate - 1.2% - - slate or tile shingles - - medium + - Tile/Slate, Medium * - Tile, Clay or Ceramic - 3.8% - - slate or tile shingles - - medium + - Tile/Slate, Medium * - Tile, Concrete - 1.7% - - slate or tile shingles - - medium + - Tile/Slate, Medium * - Wood Shingles - 4.2% - - wood shingles or shakes - - medium + - Wood Shingles/Shakes, Medium .. _solar_hot_water: diff --git a/docs/technical_development_guide/source/workflow_outputs/csv_tables/other_outputs.csv b/docs/technical_development_guide/source/workflow_outputs/csv_tables/other_outputs.csv index e5379e0af3..9ecf5a4b31 100644 --- a/docs/technical_development_guide/source/workflow_outputs/csv_tables/other_outputs.csv +++ b/docs/technical_development_guide/source/workflow_outputs/csv_tables/other_outputs.csv @@ -48,7 +48,7 @@ build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,"Utility build_existing_model.utility_bill_pv_monthly_grid_connection_fees,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." -build_existing_model.utility_bill_scenario_names,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list." +build_existing_model.utility_bill_scenario_names,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list." build_existing_model.utility_bill_simple_filepaths,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." build_existing_model.utility_bill_wood_fixed_charges,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." build_existing_model.utility_bill_wood_marginal_rates,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." diff --git a/measures/BuildExistingModel/README.md b/measures/BuildExistingModel/README.md index 481c082b92..7e929c675c 100644 --- a/measures/BuildExistingModel/README.md +++ b/measures/BuildExistingModel/README.md @@ -234,7 +234,7 @@ Wood emissions factors values, specified as an annual factor. If multiple scenar **Utility Bills: Scenario Names** -Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list. +Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. - **Name:** ``utility_bill_scenario_names`` - **Type:** ``String`` diff --git a/measures/BuildExistingModel/measure.rb b/measures/BuildExistingModel/measure.rb index c470e8a4fd..924d7a3fe0 100644 --- a/measures/BuildExistingModel/measure.rb +++ b/measures/BuildExistingModel/measure.rb @@ -132,7 +132,7 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument.makeStringArgument('utility_bill_scenario_names', false) arg.setDisplayName('Utility Bills: Scenario Names') - arg.setDescription('Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list.') + arg.setDescription('Names of utility bill scenarios. If multiple scenarios, use a comma-separated list.') args << arg arg = OpenStudio::Measure::OSArgument.makeStringArgument('utility_bill_simple_filepaths', false) diff --git a/measures/BuildExistingModel/measure.xml b/measures/BuildExistingModel/measure.xml index 5363654c01..8c0180f63f 100644 --- a/measures/BuildExistingModel/measure.xml +++ b/measures/BuildExistingModel/measure.xml @@ -3,8 +3,8 @@ 3.1 build_existing_model dedf59bb-3b88-4f16-8755-2c1ff5519cbf - 4545129e-a6bf-44ce-b091-3db9fad11222 - 2025-01-31T03:46:19Z + 710c690d-1b50-4e26-bc99-916da024961e + 2025-02-18T22:27:51Z 2C38F48B BuildExistingModel Build Existing Model @@ -173,7 +173,7 @@ utility_bill_scenario_names Utility Bills: Scenario Names - Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list. + Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. String false false @@ -340,7 +340,7 @@ README.md md readme - E4A69761 + DA3A75A2 README.md.erb @@ -357,7 +357,7 @@ measure.rb rb script - 2F739BE5 + A8EFD668 diff --git a/measures/ResStockArguments/README.md b/measures/ResStockArguments/README.md index 71b6aa7f0d..6705d6876b 100644 --- a/measures/ResStockArguments/README.md +++ b/measures/ResStockArguments/README.md @@ -811,29 +811,16 @@ Assembly R-value for the ceiling (attic floor).
-**Roof: Material Type** +**Enclosure: Roof Material** -The material type of the roof. If not provided, the OS-HPXML default (see HPXML Roofs) is used. +The material type/color of the roof. If not provided, the OS-HPXML default (see HPXML Roofs) is used. -- **Name:** ``roof_material_type`` +- **Name:** ``enclosure_roof_material`` - **Type:** ``Choice`` - **Required:** ``false`` -- **Choices:** `auto`, `asphalt or fiberglass shingles`, `concrete`, `cool roof`, `slate or tile shingles`, `expanded polystyrene sheathing`, `metal surfacing`, `plastic/rubber/synthetic sheeting`, `shingles`, `wood shingles or shakes` - -
- -**Roof: Color** - -The color of the roof. If not provided, the OS-HPXML default (see HPXML Roofs) is used. - -- **Name:** ``roof_color`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** `auto`, `dark`, `light`, `medium`, `medium dark`, `reflective` +- **Choices:** `auto`, `Asphalt/Fiberglass Shingles, Dark`, `Asphalt/Fiberglass Shingles, Medium Dark`, `Asphalt/Fiberglass Shingles, Medium`, `Asphalt/Fiberglass Shingles, Light`, `Asphalt/Fiberglass Shingles, Reflective`, `Tile/Slate, Dark`, `Tile/Slate, Medium Dark`, `Tile/Slate, Medium`, `Tile/Slate, Light`, `Tile/Slate, Reflective`, `Metal, Dark`, `Metal, Medium Dark`, `Metal, Medium`, `Metal, Light`, `Metal, Reflective`, `Wood Shingles/Shakes, Dark`, `Wood Shingles/Shakes, Medium Dark`, `Wood Shingles/Shakes, Medium`, `Wood Shingles/Shakes, Light`, `Wood Shingles/Shakes, Reflective`, `Shingles, Dark`, `Shingles, Medium Dark`, `Shingles, Medium`, `Shingles, Light`, `Shingles, Reflective`, `Synthetic Sheeting, Dark`, `Synthetic Sheeting, Medium Dark`, `Synthetic Sheeting, Medium`, `Synthetic Sheeting, Light`, `Synthetic Sheeting, Reflective`, `EPS Sheathing, Dark`, `EPS Sheathing, Medium Dark`, `EPS Sheathing, Medium`, `EPS Sheathing, Light`, `EPS Sheathing, Reflective`, `Concrete, Dark`, `Concrete, Medium Dark`, `Concrete, Medium`, `Concrete, Light`, `Concrete, Reflective`, `Cool Roof`
@@ -1530,16 +1517,16 @@ Type of air leakage if providing a numeric air leakage value. If 'unit total', r
-**Heating System: Type** +**Heating System** -The type of heating system. Use 'none' if there is no heating system or if there is a heat pump serving a heating load. +The heating system type/efficiency. Efficiency is Rated AFUE or Percent as a Fraction. Use 'none' if there is no heating system or if there is a heat pump serving a heating load. -- **Name:** ``heating_system_type`` +- **Name:** ``heating_system`` - **Type:** ``Choice`` - **Required:** ``true`` -- **Choices:** `none`, `Furnace`, `WallFurnace`, `FloorFurnace`, `Boiler`, `ElectricResistance`, `Stove`, `SpaceHeater`, `Fireplace`, `Shared Boiler w/ Baseboard`, `Shared Boiler w/ Ductless Fan Coil` +- **Choices:** `Electric Furnace, 98% AFUE`, `Electric Furnace, 100% AFUE`, `Electric Baseboard, 100% Efficiency`, `Electric Boiler, 98% AFUE`, `Electric Boiler, 100% AFUE`, `Electric Wall Furnace, 100% AFUE`, `Fuel Boiler, 72% AFUE`, `Fuel Boiler, 76% AFUE`, `Fuel Boiler, 80% AFUE`, `Fuel Boiler, 82% AFUE`, `Fuel Boiler, 85% AFUE`, `Fuel Boiler, 90% AFUE`, `Fuel Boiler, 92% AFUE`, `Fuel Boiler, 92% AFUE, 600 BTUh Pilot Light`, `Fuel Boiler, 95% AFUE`, `Fuel Boiler, 96% AFUE`, `Fuel Furnace, 60% AFUE`, `Fuel Furnace, 68% AFUE`, `Fuel Furnace, 72% AFUE`, `Fuel Furnace, 76% AFUE`, `Fuel Furnace, 78% AFUE`, `Fuel Furnace, 80% AFUE`, `Fuel Furnace, 85% AFUE`, `Fuel Furnace, 90% AFUE`, `Fuel Furnace, 92% AFUE`, `Fuel Furnace, 92% AFUE, Airflow Defect Ratio`, `Fuel Furnace, 92% AFUE, 600 BTUh Pilot Light`, `Fuel Furnace, 92.5% AFUE`, `Fuel Furnace, 96% AFUE`, `Fuel Wall Furnace, 60% AFUE`, `Fuel Wall Furnace, 68% AFUE`, `Electric Wall Furnace, 98% AFUE`, `Electric Wall Furnace, 100% AFUE`, `None`, `Fuel Boiler w/ Baseboard, 78% AFUE`, `Fuel Boiler w/ Baseboard, 92% AFUE`, `Electric Boiler w/ Baseboard, 100% AFUE`, `Fuel Fan Coil Heating, 78% AFUE`, `Fuel Fan Coil Heating, 92% AFUE`, `Electric Fan Coil Heating, 100% AFUE`, `Fireplace, 80% Efficiency`, `Stove, 80% Efficiency`, `Fuel Floor Furnace, 80% AFUE, 600 BTUh Pilot Light`, `Space Heater, 100% Efficiency`
@@ -1556,19 +1543,6 @@ The fuel type of the heating system. Ignored for ElectricResistance.
-**Heating System: Rated AFUE or Percent** - -The rated heating efficiency value of the heating system. - -- **Name:** ``heating_system_heating_efficiency`` -- **Type:** ``Double`` - -- **Units:** ``Frac`` - -- **Required:** ``true`` - -
- **Heating System: Heating Capacity** The output heating capacity of the heating system. If not provided, the OS-HPXML autosized default (see HPXML Heating Systems) is used. @@ -1615,17 +1589,6 @@ The heating load served by the heating system.
-**Heating System: Pilot Light** - -The fuel usage of the pilot light. Applies only to Furnace, WallFurnace, FloorFurnace, Stove, Boiler, and Fireplace with non-electric fuel type. If not provided, assumes no pilot light. - -- **Name:** ``heating_system_pilot_light`` -- **Type:** ``String`` - -- **Required:** ``false`` - -
- **Cooling System: Type** The type of cooling system. Use 'none' if there is no cooling system or if there is a heat pump serving a cooling load. diff --git a/measures/ResStockArguments/measure.xml b/measures/ResStockArguments/measure.xml index 10229e7b25..99882d7d24 100644 --- a/measures/ResStockArguments/measure.xml +++ b/measures/ResStockArguments/measure.xml @@ -1274,9 +1274,9 @@ 31.6
- roof_material_type - Roof: Material Type - The material type of the roof. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-roofs'>HPXML Roofs</a>) is used. + enclosure_roof_material + Enclosure: Roof Material + The material type/color of the roof. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-roofs'>HPXML Roofs</a>) is used. Choice false @@ -1287,75 +1287,168 @@ auto - asphalt or fiberglass shingles - asphalt or fiberglass shingles + Asphalt/Fiberglass Shingles, Dark + Asphalt/Fiberglass Shingles, Dark - concrete - concrete + Asphalt/Fiberglass Shingles, Medium Dark + Asphalt/Fiberglass Shingles, Medium Dark - cool roof - cool roof + Asphalt/Fiberglass Shingles, Medium + Asphalt/Fiberglass Shingles, Medium - slate or tile shingles - slate or tile shingles + Asphalt/Fiberglass Shingles, Light + Asphalt/Fiberglass Shingles, Light - expanded polystyrene sheathing - expanded polystyrene sheathing + Asphalt/Fiberglass Shingles, Reflective + Asphalt/Fiberglass Shingles, Reflective - metal surfacing - metal surfacing + Tile/Slate, Dark + Tile/Slate, Dark - plastic/rubber/synthetic sheeting - plastic/rubber/synthetic sheeting + Tile/Slate, Medium Dark + Tile/Slate, Medium Dark - shingles - shingles + Tile/Slate, Medium + Tile/Slate, Medium - wood shingles or shakes - wood shingles or shakes + Tile/Slate, Light + Tile/Slate, Light - - - - roof_color - Roof: Color - The color of the roof. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-roofs'>HPXML Roofs</a>) is used. - Choice - - false - false - - auto - auto + Tile/Slate, Reflective + Tile/Slate, Reflective - dark - dark + Metal, Dark + Metal, Dark - light - light + Metal, Medium Dark + Metal, Medium Dark - medium - medium + Metal, Medium + Metal, Medium - medium dark - medium dark + Metal, Light + Metal, Light - reflective - reflective + Metal, Reflective + Metal, Reflective + + + Wood Shingles/Shakes, Dark + Wood Shingles/Shakes, Dark + + + Wood Shingles/Shakes, Medium Dark + Wood Shingles/Shakes, Medium Dark + + + Wood Shingles/Shakes, Medium + Wood Shingles/Shakes, Medium + + + Wood Shingles/Shakes, Light + Wood Shingles/Shakes, Light + + + Wood Shingles/Shakes, Reflective + Wood Shingles/Shakes, Reflective + + + Shingles, Dark + Shingles, Dark + + + Shingles, Medium Dark + Shingles, Medium Dark + + + Shingles, Medium + Shingles, Medium + + + Shingles, Light + Shingles, Light + + + Shingles, Reflective + Shingles, Reflective + + + Synthetic Sheeting, Dark + Synthetic Sheeting, Dark + + + Synthetic Sheeting, Medium Dark + Synthetic Sheeting, Medium Dark + + + Synthetic Sheeting, Medium + Synthetic Sheeting, Medium + + + Synthetic Sheeting, Light + Synthetic Sheeting, Light + + + Synthetic Sheeting, Reflective + Synthetic Sheeting, Reflective + + + EPS Sheathing, Dark + EPS Sheathing, Dark + + + EPS Sheathing, Medium Dark + EPS Sheathing, Medium Dark + + + EPS Sheathing, Medium + EPS Sheathing, Medium + + + EPS Sheathing, Light + EPS Sheathing, Light + + + EPS Sheathing, Reflective + EPS Sheathing, Reflective + + + Concrete, Dark + Concrete, Dark + + + Concrete, Medium Dark + Concrete, Medium Dark + + + Concrete, Medium + Concrete, Medium + + + Concrete, Light + Concrete, Light + + + Concrete, Reflective + Concrete, Reflective + + + Cool Roof + Cool Roof @@ -2224,57 +2317,189 @@ - heating_system_type - Heating System: Type - The type of heating system. Use 'none' if there is no heating system or if there is a heat pump serving a heating load. + heating_system + Heating System + The heating system type/efficiency. Efficiency is Rated AFUE or Percent as a Fraction. Use 'none' if there is no heating system or if there is a heat pump serving a heating load. Choice true false - Furnace + Fuel Furnace, 78% AFUE - none - none + Electric Furnace, 98% AFUE + Electric Furnace, 98% AFUE - Furnace - Furnace + Electric Furnace, 100% AFUE + Electric Furnace, 100% AFUE - WallFurnace - WallFurnace + Electric Baseboard, 100% Efficiency + Electric Baseboard, 100% Efficiency - FloorFurnace - FloorFurnace + Electric Boiler, 98% AFUE + Electric Boiler, 98% AFUE - Boiler - Boiler + Electric Boiler, 100% AFUE + Electric Boiler, 100% AFUE - ElectricResistance - ElectricResistance + Electric Wall Furnace, 100% AFUE + Electric Wall Furnace, 100% AFUE - Stove - Stove + Fuel Boiler, 72% AFUE + Fuel Boiler, 72% AFUE - SpaceHeater - SpaceHeater + Fuel Boiler, 76% AFUE + Fuel Boiler, 76% AFUE - Fireplace - Fireplace + Fuel Boiler, 80% AFUE + Fuel Boiler, 80% AFUE + + + Fuel Boiler, 82% AFUE + Fuel Boiler, 82% AFUE + + + Fuel Boiler, 85% AFUE + Fuel Boiler, 85% AFUE + + + Fuel Boiler, 90% AFUE + Fuel Boiler, 90% AFUE + + + Fuel Boiler, 92% AFUE + Fuel Boiler, 92% AFUE + + + Fuel Boiler, 92% AFUE, 600 BTUh Pilot Light + Fuel Boiler, 92% AFUE, 600 BTUh Pilot Light + + + Fuel Boiler, 95% AFUE + Fuel Boiler, 95% AFUE + + + Fuel Boiler, 96% AFUE + Fuel Boiler, 96% AFUE + + + Fuel Furnace, 60% AFUE + Fuel Furnace, 60% AFUE + + + Fuel Furnace, 68% AFUE + Fuel Furnace, 68% AFUE + + + Fuel Furnace, 72% AFUE + Fuel Furnace, 72% AFUE + + + Fuel Furnace, 76% AFUE + Fuel Furnace, 76% AFUE + + + Fuel Furnace, 78% AFUE + Fuel Furnace, 78% AFUE + + + Fuel Furnace, 80% AFUE + Fuel Furnace, 80% AFUE + + + Fuel Furnace, 85% AFUE + Fuel Furnace, 85% AFUE + + + Fuel Furnace, 90% AFUE + Fuel Furnace, 90% AFUE + + + Fuel Furnace, 92% AFUE + Fuel Furnace, 92% AFUE + + + Fuel Furnace, 92% AFUE, Airflow Defect Ratio + Fuel Furnace, 92% AFUE, Airflow Defect Ratio + + + Fuel Furnace, 92% AFUE, 600 BTUh Pilot Light + Fuel Furnace, 92% AFUE, 600 BTUh Pilot Light + + + Fuel Furnace, 92.5% AFUE + Fuel Furnace, 92.5% AFUE + + + Fuel Furnace, 96% AFUE + Fuel Furnace, 96% AFUE + + + Fuel Wall Furnace, 60% AFUE + Fuel Wall Furnace, 60% AFUE + + + Fuel Wall Furnace, 68% AFUE + Fuel Wall Furnace, 68% AFUE + + + Electric Wall Furnace, 98% AFUE + Electric Wall Furnace, 98% AFUE + + + Electric Wall Furnace, 100% AFUE + Electric Wall Furnace, 100% AFUE + + + None + None + + + Fuel Boiler w/ Baseboard, 78% AFUE + Fuel Boiler w/ Baseboard, 78% AFUE + + + Fuel Boiler w/ Baseboard, 92% AFUE + Fuel Boiler w/ Baseboard, 92% AFUE + + + Electric Boiler w/ Baseboard, 100% AFUE + Electric Boiler w/ Baseboard, 100% AFUE - Shared Boiler w/ Baseboard - Shared Boiler w/ Baseboard + Fuel Fan Coil Heating, 78% AFUE + Fuel Fan Coil Heating, 78% AFUE - Shared Boiler w/ Ductless Fan Coil - Shared Boiler w/ Ductless Fan Coil + Fuel Fan Coil Heating, 92% AFUE + Fuel Fan Coil Heating, 92% AFUE + + + Electric Fan Coil Heating, 100% AFUE + Electric Fan Coil Heating, 100% AFUE + + + Fireplace, 80% Efficiency + Fireplace, 80% Efficiency + + + Stove, 80% Efficiency + Stove, 80% Efficiency + + + Fuel Floor Furnace, 80% AFUE, 600 BTUh Pilot Light + Fuel Floor Furnace, 80% AFUE, 600 BTUh Pilot Light + + + Space Heater, 100% Efficiency + Space Heater, 100% Efficiency @@ -2317,16 +2542,6 @@ - - heating_system_heating_efficiency - Heating System: Rated AFUE or Percent - The rated heating efficiency value of the heating system. - Double - Frac - true - false - 0.78 - heating_system_heating_capacity Heating System: Heating Capacity @@ -2364,15 +2579,6 @@ false 1 - - heating_system_pilot_light - Heating System: Pilot Light - The fuel usage of the pilot light. Applies only to Furnace, WallFurnace, FloorFurnace, Stove, Boiler, and Fireplace with non-electric fuel type. If not provided, assumes no pilot light. - String - Btuh - false - false - cooling_system_type Cooling System: Type @@ -7787,7 +7993,7 @@ README.md md readme - 50C43737 + 1D28718F README.md.erb @@ -7816,7 +8022,7 @@ measure.txt txt resource - 0AF10F44 + 3CB381EC resstock_arguments_test.rb diff --git a/measures/ResStockArguments/resources/measure.txt b/measures/ResStockArguments/resources/measure.txt index 4a1cddf70b..6e4e8d2c6c 100644 --- a/measures/ResStockArguments/resources/measure.txt +++ b/measures/ResStockArguments/resources/measure.txt @@ -1 +1 @@ -2158c2d3bef50134a9b51c454418b943 \ No newline at end of file +4094069f4d843715fa032680dbf9a332 \ No newline at end of file diff --git a/measures/UpgradeCosts/measure.xml b/measures/UpgradeCosts/measure.xml index df36566ac8..c1affc2451 100644 --- a/measures/UpgradeCosts/measure.xml +++ b/measures/UpgradeCosts/measure.xml @@ -87,133 +87,133 @@ MF_1story_UB_Furnace_AC1_FuelTankWH.osw osw test - 4D23653F + 08CB7B7D MF_2story_UB_ASHP2_HPWH.osw osw test - A9A39855 + BF99536A MF_2story_UB_FuelBoiler_AC1_FuelTankWH.osw osw test - C844B41B + 4BD758EF MF_2story_UB_Furnace_AC1_FuelTankWH.osw osw test - 19BAF12E + 302C3BC8 SFA_2story_FB_FuelBoiler_RoomAC_FuelTankWH.osw osw test - CB8119CB + D17709D7 SFA_2story_UB_ASHP2_HPWH.osw osw test - 9AC617F6 + C0FA387B SFA_2story_UB_FuelBoiler_RoomAC_FuelTankWH.osw osw test - DD445E5E + 282220D8 SFA_2story_UB_Furnace_RoomAC_FuelTankWH.osw osw test - 0915FD7B + 846607D9 SFD_1story_FB_UA_GRG_MSHP_FuelTanklessWH.osw osw test - F6EDB94F + 477E9631 SFD_1story_FB_UA_GRG_RoomAC_ElecBoiler_FuelTanklessWH.osw osw test - C93BAD45 + 2CE8797C SFD_1story_UB_UA_ASHP2_HPWH.osw osw test - F289A5AE + A0F27D07 SFD_1story_UB_UA_GRG_ACV_FuelFurnace_HPWH.osw osw test - AFEA9CBE + 4C609D10 SFD_1story_UB_UA_GRG_ACV_FuelFurnace_PortableHeater_HPWH.osw osw test - D2426054 + 9EF0C4A5 SFD_2story_CS_UA_AC2_FuelBoiler_FuelTankWH.osw osw test - A32DA75D + BFE7F2AA SFD_2story_CS_UA_GRG_ASHPV_FuelTanklessWH.osw osw test - 1A13D1BF + 338A4FC5 SFD_2story_FB_UA_GRG_AC1_ElecBaseboard_FuelTankWH.osw osw test - DB92211A + 220B91CB SFD_2story_FB_UA_GRG_AC1_UnitHeater_FuelTankWH.osw osw test - 3C8F6BBB + F4A30ED8 SFD_2story_FB_UA_GRG_GSHP_ElecTanklessWH.osw osw test - 2C0DAA1C + B0AF91EB SFD_2story_PB_UA_ElecFurnace_ElecTankWH.osw osw test - 3FC0BBCE + 5BCCF154 SFD_2story_S_UA_GRG_ASHP1_Fireplace_FuelTanklessWH.osw osw test - 3A1AFA91 + 78309914 SFD_2story_S_UA_GRG_ASHP1_Fireplace_FuelTanklessWH_ERV.osw osw test - C70E0F5F + B4B0D055 SFD_2story_S_UA_GRG_ASHP1_FuelTanklessWH.osw osw test - 083B023F + 10E84CFA upgrade_costs_test.rb diff --git a/measures/UpgradeCosts/tests/MF_1story_UB_Furnace_AC1_FuelTankWH.osw b/measures/UpgradeCosts/tests/MF_1story_UB_Furnace_AC1_FuelTankWH.osw index 2d6a182e46..d9dab39575 100644 --- a/measures/UpgradeCosts/tests/MF_1story_UB_Furnace_AC1_FuelTankWH.osw +++ b/measures/UpgradeCosts/tests/MF_1story_UB_Furnace_AC1_FuelTankWH.osw @@ -128,7 +128,6 @@ "geometry_building_num_units": 8, "heat_pump_backup_fuel": "electricity", "heat_pump_backup_type": "integrated", - "heat_pump_backup_type": "none", "heat_pump_backup_heating_capacity": 34121.0, "heat_pump_backup_heating_efficiency": 1, "heat_pump_cooling_capacity": 48000.0, @@ -235,8 +234,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/MF_2story_UB_ASHP2_HPWH.osw b/measures/UpgradeCosts/tests/MF_2story_UB_ASHP2_HPWH.osw index 65839488d2..38ad81c4ae 100644 --- a/measures/UpgradeCosts/tests/MF_2story_UB_ASHP2_HPWH.osw +++ b/measures/UpgradeCosts/tests/MF_2story_UB_ASHP2_HPWH.osw @@ -234,8 +234,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/MF_2story_UB_FuelBoiler_AC1_FuelTankWH.osw b/measures/UpgradeCosts/tests/MF_2story_UB_FuelBoiler_AC1_FuelTankWH.osw index 5cd91f7ae3..033c0b43dd 100644 --- a/measures/UpgradeCosts/tests/MF_2story_UB_FuelBoiler_AC1_FuelTankWH.osw +++ b/measures/UpgradeCosts/tests/MF_2story_UB_FuelBoiler_AC1_FuelTankWH.osw @@ -234,8 +234,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/MF_2story_UB_Furnace_AC1_FuelTankWH.osw b/measures/UpgradeCosts/tests/MF_2story_UB_Furnace_AC1_FuelTankWH.osw index 19e47c9d90..334b2a1a47 100644 --- a/measures/UpgradeCosts/tests/MF_2story_UB_Furnace_AC1_FuelTankWH.osw +++ b/measures/UpgradeCosts/tests/MF_2story_UB_Furnace_AC1_FuelTankWH.osw @@ -234,8 +234,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFA_2story_FB_FuelBoiler_RoomAC_FuelTankWH.osw b/measures/UpgradeCosts/tests/SFA_2story_FB_FuelBoiler_RoomAC_FuelTankWH.osw index 539d7bb29f..bb23833839 100644 --- a/measures/UpgradeCosts/tests/SFA_2story_FB_FuelBoiler_RoomAC_FuelTankWH.osw +++ b/measures/UpgradeCosts/tests/SFA_2story_FB_FuelBoiler_RoomAC_FuelTankWH.osw @@ -234,8 +234,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFA_2story_UB_ASHP2_HPWH.osw b/measures/UpgradeCosts/tests/SFA_2story_UB_ASHP2_HPWH.osw index c4f48dc10e..29dd7a852e 100644 --- a/measures/UpgradeCosts/tests/SFA_2story_UB_ASHP2_HPWH.osw +++ b/measures/UpgradeCosts/tests/SFA_2story_UB_ASHP2_HPWH.osw @@ -234,8 +234,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFA_2story_UB_FuelBoiler_RoomAC_FuelTankWH.osw b/measures/UpgradeCosts/tests/SFA_2story_UB_FuelBoiler_RoomAC_FuelTankWH.osw index 80631df038..e0ff42791b 100644 --- a/measures/UpgradeCosts/tests/SFA_2story_UB_FuelBoiler_RoomAC_FuelTankWH.osw +++ b/measures/UpgradeCosts/tests/SFA_2story_UB_FuelBoiler_RoomAC_FuelTankWH.osw @@ -234,8 +234,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFA_2story_UB_Furnace_RoomAC_FuelTankWH.osw b/measures/UpgradeCosts/tests/SFA_2story_UB_Furnace_RoomAC_FuelTankWH.osw index c8e4ab1aa5..e1c88de8af 100644 --- a/measures/UpgradeCosts/tests/SFA_2story_UB_Furnace_RoomAC_FuelTankWH.osw +++ b/measures/UpgradeCosts/tests/SFA_2story_UB_Furnace_RoomAC_FuelTankWH.osw @@ -234,8 +234,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFD_1story_FB_UA_GRG_MSHP_FuelTanklessWH.osw b/measures/UpgradeCosts/tests/SFD_1story_FB_UA_GRG_MSHP_FuelTanklessWH.osw index e2f39efa3a..f91b6e3b66 100644 --- a/measures/UpgradeCosts/tests/SFD_1story_FB_UA_GRG_MSHP_FuelTanklessWH.osw +++ b/measures/UpgradeCosts/tests/SFD_1story_FB_UA_GRG_MSHP_FuelTanklessWH.osw @@ -234,8 +234,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFD_1story_FB_UA_GRG_RoomAC_ElecBoiler_FuelTanklessWH.osw b/measures/UpgradeCosts/tests/SFD_1story_FB_UA_GRG_RoomAC_ElecBoiler_FuelTanklessWH.osw index a06fec2eee..9300e7c592 100644 --- a/measures/UpgradeCosts/tests/SFD_1story_FB_UA_GRG_RoomAC_ElecBoiler_FuelTanklessWH.osw +++ b/measures/UpgradeCosts/tests/SFD_1story_FB_UA_GRG_RoomAC_ElecBoiler_FuelTanklessWH.osw @@ -232,8 +232,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFD_1story_UB_UA_ASHP2_HPWH.osw b/measures/UpgradeCosts/tests/SFD_1story_UB_UA_ASHP2_HPWH.osw index a4f830d9d9..d887b94ed7 100644 --- a/measures/UpgradeCosts/tests/SFD_1story_UB_UA_ASHP2_HPWH.osw +++ b/measures/UpgradeCosts/tests/SFD_1story_UB_UA_ASHP2_HPWH.osw @@ -232,8 +232,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFD_1story_UB_UA_GRG_ACV_FuelFurnace_HPWH.osw b/measures/UpgradeCosts/tests/SFD_1story_UB_UA_GRG_ACV_FuelFurnace_HPWH.osw index 90ad6873ca..8151a94335 100644 --- a/measures/UpgradeCosts/tests/SFD_1story_UB_UA_GRG_ACV_FuelFurnace_HPWH.osw +++ b/measures/UpgradeCosts/tests/SFD_1story_UB_UA_GRG_ACV_FuelFurnace_HPWH.osw @@ -232,8 +232,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFD_1story_UB_UA_GRG_ACV_FuelFurnace_PortableHeater_HPWH.osw b/measures/UpgradeCosts/tests/SFD_1story_UB_UA_GRG_ACV_FuelFurnace_PortableHeater_HPWH.osw index a873cc1740..4cf7d40c3e 100644 --- a/measures/UpgradeCosts/tests/SFD_1story_UB_UA_GRG_ACV_FuelFurnace_PortableHeater_HPWH.osw +++ b/measures/UpgradeCosts/tests/SFD_1story_UB_UA_GRG_ACV_FuelFurnace_PortableHeater_HPWH.osw @@ -233,8 +233,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFD_2story_CS_UA_AC2_FuelBoiler_FuelTankWH.osw b/measures/UpgradeCosts/tests/SFD_2story_CS_UA_AC2_FuelBoiler_FuelTankWH.osw index b429078728..1aa6d84f74 100644 --- a/measures/UpgradeCosts/tests/SFD_2story_CS_UA_AC2_FuelBoiler_FuelTankWH.osw +++ b/measures/UpgradeCosts/tests/SFD_2story_CS_UA_AC2_FuelBoiler_FuelTankWH.osw @@ -232,8 +232,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFD_2story_CS_UA_GRG_ASHPV_FuelTanklessWH.osw b/measures/UpgradeCosts/tests/SFD_2story_CS_UA_GRG_ASHPV_FuelTanklessWH.osw index a68888d3c0..8268f53dcd 100644 --- a/measures/UpgradeCosts/tests/SFD_2story_CS_UA_GRG_ASHPV_FuelTanklessWH.osw +++ b/measures/UpgradeCosts/tests/SFD_2story_CS_UA_GRG_ASHPV_FuelTanklessWH.osw @@ -232,8 +232,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFD_2story_FB_UA_GRG_AC1_ElecBaseboard_FuelTankWH.osw b/measures/UpgradeCosts/tests/SFD_2story_FB_UA_GRG_AC1_ElecBaseboard_FuelTankWH.osw index f557826283..280c47eefb 100644 --- a/measures/UpgradeCosts/tests/SFD_2story_FB_UA_GRG_AC1_ElecBaseboard_FuelTankWH.osw +++ b/measures/UpgradeCosts/tests/SFD_2story_FB_UA_GRG_AC1_ElecBaseboard_FuelTankWH.osw @@ -232,8 +232,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFD_2story_FB_UA_GRG_AC1_UnitHeater_FuelTankWH.osw b/measures/UpgradeCosts/tests/SFD_2story_FB_UA_GRG_AC1_UnitHeater_FuelTankWH.osw index 041c38d0b9..5fb8b856f1 100644 --- a/measures/UpgradeCosts/tests/SFD_2story_FB_UA_GRG_AC1_UnitHeater_FuelTankWH.osw +++ b/measures/UpgradeCosts/tests/SFD_2story_FB_UA_GRG_AC1_UnitHeater_FuelTankWH.osw @@ -232,8 +232,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFD_2story_FB_UA_GRG_GSHP_ElecTanklessWH.osw b/measures/UpgradeCosts/tests/SFD_2story_FB_UA_GRG_GSHP_ElecTanklessWH.osw index 1af08799f2..b528739853 100644 --- a/measures/UpgradeCosts/tests/SFD_2story_FB_UA_GRG_GSHP_ElecTanklessWH.osw +++ b/measures/UpgradeCosts/tests/SFD_2story_FB_UA_GRG_GSHP_ElecTanklessWH.osw @@ -232,8 +232,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFD_2story_PB_UA_ElecFurnace_ElecTankWH.osw b/measures/UpgradeCosts/tests/SFD_2story_PB_UA_ElecFurnace_ElecTankWH.osw index 1a11a20466..29b9657ca2 100644 --- a/measures/UpgradeCosts/tests/SFD_2story_PB_UA_ElecFurnace_ElecTankWH.osw +++ b/measures/UpgradeCosts/tests/SFD_2story_PB_UA_ElecFurnace_ElecTankWH.osw @@ -232,8 +232,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFD_2story_S_UA_GRG_ASHP1_Fireplace_FuelTanklessWH.osw b/measures/UpgradeCosts/tests/SFD_2story_S_UA_GRG_ASHP1_Fireplace_FuelTanklessWH.osw index c713ad89d2..382703d0c0 100644 --- a/measures/UpgradeCosts/tests/SFD_2story_S_UA_GRG_ASHP1_Fireplace_FuelTanklessWH.osw +++ b/measures/UpgradeCosts/tests/SFD_2story_S_UA_GRG_ASHP1_Fireplace_FuelTanklessWH.osw @@ -233,8 +233,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFD_2story_S_UA_GRG_ASHP1_Fireplace_FuelTanklessWH_ERV.osw b/measures/UpgradeCosts/tests/SFD_2story_S_UA_GRG_ASHP1_Fireplace_FuelTanklessWH_ERV.osw index 52a81870c0..d00946e74f 100644 --- a/measures/UpgradeCosts/tests/SFD_2story_S_UA_GRG_ASHP1_Fireplace_FuelTanklessWH_ERV.osw +++ b/measures/UpgradeCosts/tests/SFD_2story_S_UA_GRG_ASHP1_Fireplace_FuelTanklessWH_ERV.osw @@ -233,8 +233,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/measures/UpgradeCosts/tests/SFD_2story_S_UA_GRG_ASHP1_FuelTanklessWH.osw b/measures/UpgradeCosts/tests/SFD_2story_S_UA_GRG_ASHP1_FuelTanklessWH.osw index 6f977ee4e3..8cfa64cc22 100644 --- a/measures/UpgradeCosts/tests/SFD_2story_S_UA_GRG_ASHP1_FuelTanklessWH.osw +++ b/measures/UpgradeCosts/tests/SFD_2story_S_UA_GRG_ASHP1_FuelTanklessWH.osw @@ -232,8 +232,7 @@ "refrigerator_usage_multiplier": 1.0, "rim_joist_assembly_r": 23.0, "roof_assembly_r": 2.3, - "roof_color": "medium", - "roof_material_type": "asphalt or fiberglass shingles", + "enclosure_roof_material":"Asphalt/Fiberglass Shingles, Medium", "radiant_barrier_attic_location": "none", "radiant_barrier_grade": "1", "hvac_control_cooling_weekday_setpoint": "78", diff --git a/resources/data/dictionary/inputs.csv b/resources/data/dictionary/inputs.csv index 6b49e255ff..5a78624599 100644 --- a/resources/data/dictionary/inputs.csv +++ b/resources/data/dictionary/inputs.csv @@ -204,7 +204,7 @@ build_existing_model.utility_bill_pv_monthly_grid_connection_fee_units,"Utility build_existing_model.utility_bill_pv_monthly_grid_connection_fees,"Utility bill PV monthly grid connection fees. If multiple scenarios, use a comma-separated list." build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rate_types,"Utility bill PV net metering annual excess sellback rate types. Only applies if the PV compensation type is 'NetMetering'. If multiple scenarios, use a comma-separated list." build_existing_model.utility_bill_pv_net_metering_annual_excess_sellback_rates,"Utility bill PV net metering annual excess sellback rates. Only applies if the PV compensation type is 'NetMetering' and the PV annual excess sellback rate type is 'User-Specified'. If multiple scenarios, use a comma-separated list." -build_existing_model.utility_bill_scenario_names,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list. If multiple scenarios, use a comma-separated list." +build_existing_model.utility_bill_scenario_names,"Names of utility bill scenarios. If multiple scenarios, use a comma-separated list." build_existing_model.utility_bill_simple_filepaths,"Relative paths of simple utility rates. Paths are relative to the resources folder. If multiple scenarios, use a comma-separated list. Files must contain the name of the Parameter as the column header." build_existing_model.utility_bill_wood_fixed_charges,"Wood utility bill monthly fixed charges. If multiple scenarios, use a comma-separated list." build_existing_model.utility_bill_wood_marginal_rates,"Wood utility bill marginal rates. If multiple scenarios, use a comma-separated list." diff --git a/resources/hpxml-measures/BuildResidentialHPXML/README.md b/resources/hpxml-measures/BuildResidentialHPXML/README.md index 0c470bdac2..9e28655a01 100644 --- a/resources/hpxml-measures/BuildResidentialHPXML/README.md +++ b/resources/hpxml-measures/BuildResidentialHPXML/README.md @@ -1150,29 +1150,16 @@ Assembly R-value for the ceiling (attic floor).
-**Roof: Material Type** +**Enclosure: Roof Material** -The material type of the roof. If not provided, the OS-HPXML default (see HPXML Roofs) is used. +The material type/color of the roof. If not provided, the OS-HPXML default (see HPXML Roofs) is used. -- **Name:** ``roof_material_type`` +- **Name:** ``enclosure_roof_material`` - **Type:** ``Choice`` - **Required:** ``false`` -- **Choices:** `asphalt or fiberglass shingles`, `concrete`, `cool roof`, `slate or tile shingles`, `expanded polystyrene sheathing`, `metal surfacing`, `plastic/rubber/synthetic sheeting`, `shingles`, `wood shingles or shakes` - -
- -**Roof: Color** - -The color of the roof. If not provided, the OS-HPXML default (see HPXML Roofs) is used. - -- **Name:** ``roof_color`` -- **Type:** ``Choice`` - -- **Required:** ``false`` - -- **Choices:** `dark`, `light`, `medium`, `medium dark`, `reflective` +- **Choices:** `Asphalt/Fiberglass Shingles, Dark`, `Asphalt/Fiberglass Shingles, Medium Dark`, `Asphalt/Fiberglass Shingles, Medium`, `Asphalt/Fiberglass Shingles, Light`, `Asphalt/Fiberglass Shingles, Reflective`, `Tile/Slate, Dark`, `Tile/Slate, Medium Dark`, `Tile/Slate, Medium`, `Tile/Slate, Light`, `Tile/Slate, Reflective`, `Metal, Dark`, `Metal, Medium Dark`, `Metal, Medium`, `Metal, Light`, `Metal, Reflective`, `Wood Shingles/Shakes, Dark`, `Wood Shingles/Shakes, Medium Dark`, `Wood Shingles/Shakes, Medium`, `Wood Shingles/Shakes, Light`, `Wood Shingles/Shakes, Reflective`, `Shingles, Dark`, `Shingles, Medium Dark`, `Shingles, Medium`, `Shingles, Light`, `Shingles, Reflective`, `Synthetic Sheeting, Dark`, `Synthetic Sheeting, Medium Dark`, `Synthetic Sheeting, Medium`, `Synthetic Sheeting, Light`, `Synthetic Sheeting, Reflective`, `EPS Sheathing, Dark`, `EPS Sheathing, Medium Dark`, `EPS Sheathing, Medium`, `EPS Sheathing, Light`, `EPS Sheathing, Reflective`, `Concrete, Dark`, `Concrete, Medium Dark`, `Concrete, Medium`, `Concrete, Light`, `Concrete, Reflective`, `Cool Roof`
@@ -1894,16 +1881,16 @@ Presence of flue or chimney with combustion air from conditioned space; used for
-**Heating System: Type** +**Heating System** -The type of heating system. Use 'none' if there is no heating system or if there is a heat pump serving a heating load. +The heating system type/efficiency. Efficiency is Rated AFUE or Percent as a Fraction. Use 'none' if there is no heating system or if there is a heat pump serving a heating load. -- **Name:** ``heating_system_type`` +- **Name:** ``heating_system`` - **Type:** ``Choice`` - **Required:** ``true`` -- **Choices:** `none`, `Furnace`, `WallFurnace`, `FloorFurnace`, `Boiler`, `ElectricResistance`, `Stove`, `SpaceHeater`, `Fireplace`, `Shared Boiler w/ Baseboard`, `Shared Boiler w/ Ductless Fan Coil` +- **Choices:** `Electric Furnace, 98% AFUE`, `Electric Furnace, 100% AFUE`, `Electric Baseboard, 100% Efficiency`, `Electric Boiler, 98% AFUE`, `Electric Boiler, 100% AFUE`, `Electric Wall Furnace, 100% AFUE`, `Fuel Boiler, 72% AFUE`, `Fuel Boiler, 76% AFUE`, `Fuel Boiler, 80% AFUE`, `Fuel Boiler, 82% AFUE`, `Fuel Boiler, 85% AFUE`, `Fuel Boiler, 90% AFUE`, `Fuel Boiler, 92% AFUE`, `Fuel Boiler, 92% AFUE, 600 BTUh Pilot Light`, `Fuel Boiler, 95% AFUE`, `Fuel Boiler, 96% AFUE`, `Fuel Furnace, 60% AFUE`, `Fuel Furnace, 68% AFUE`, `Fuel Furnace, 72% AFUE`, `Fuel Furnace, 76% AFUE`, `Fuel Furnace, 78% AFUE`, `Fuel Furnace, 80% AFUE`, `Fuel Furnace, 85% AFUE`, `Fuel Furnace, 90% AFUE`, `Fuel Furnace, 92% AFUE`, `Fuel Furnace, 92% AFUE, Airflow Defect Ratio`, `Fuel Furnace, 92% AFUE, 600 BTUh Pilot Light`, `Fuel Furnace, 92.5% AFUE`, `Fuel Furnace, 96% AFUE`, `Fuel Wall Furnace, 60% AFUE`, `Fuel Wall Furnace, 68% AFUE`, `Electric Wall Furnace, 98% AFUE`, `Electric Wall Furnace, 100% AFUE`, `None`, `Fuel Boiler w/ Baseboard, 78% AFUE`, `Fuel Boiler w/ Baseboard, 92% AFUE`, `Electric Boiler w/ Baseboard, 100% AFUE`, `Fuel Fan Coil Heating, 78% AFUE`, `Fuel Fan Coil Heating, 92% AFUE`, `Electric Fan Coil Heating, 100% AFUE`, `Fireplace, 80% Efficiency`, `Stove, 80% Efficiency`, `Fuel Floor Furnace, 80% AFUE, 600 BTUh Pilot Light`, `Space Heater, 100% Efficiency`
@@ -1920,19 +1907,6 @@ The fuel type of the heating system. Ignored for ElectricResistance.
-**Heating System: Rated AFUE or Percent** - -The rated heating efficiency value of the heating system. - -- **Name:** ``heating_system_heating_efficiency`` -- **Type:** ``Double`` - -- **Units:** ``Frac`` - -- **Required:** ``true`` - -
- **Heating System: Heating Capacity** The output heating capacity of the heating system. If not provided, the OS-HPXML autosized default (see HPXML Heating Systems) is used. @@ -1983,32 +1957,6 @@ The heating load served by the heating system.
-**Heating System: Pilot Light** - -The fuel usage of the pilot light. Applies only to Furnace, WallFurnace, FloorFurnace, Stove, Boiler, and Fireplace with non-electric fuel type. If not provided, assumes no pilot light. - -- **Name:** ``heating_system_pilot_light`` -- **Type:** ``Double`` - -- **Units:** ``Btuh`` - -- **Required:** ``false`` - -
- -**Heating System: Airflow Defect Ratio** - -The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the heating system per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to Furnace. If not provided, assumes no defect. - -- **Name:** ``heating_system_airflow_defect_ratio`` -- **Type:** ``Double`` - -- **Units:** ``Frac`` - -- **Required:** ``false`` - -
- **Cooling System: Type** The type of cooling system. Use 'none' if there is no cooling system or if there is a heat pump serving a cooling load. diff --git a/resources/hpxml-measures/BuildResidentialHPXML/measure.rb b/resources/hpxml-measures/BuildResidentialHPXML/measure.rb index e12de93c8d..10d54ed8f6 100644 --- a/resources/hpxml-measures/BuildResidentialHPXML/measure.rb +++ b/resources/hpxml-measures/BuildResidentialHPXML/measure.rb @@ -696,32 +696,11 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDefaultValue(31.6) args << arg - roof_material_type_choices = OpenStudio::StringVector.new - roof_material_type_choices << HPXML::RoofTypeAsphaltShingles - roof_material_type_choices << HPXML::RoofTypeConcrete - roof_material_type_choices << HPXML::RoofTypeCool - roof_material_type_choices << HPXML::RoofTypeClayTile - roof_material_type_choices << HPXML::RoofTypeEPS - roof_material_type_choices << HPXML::RoofTypeMetal - roof_material_type_choices << HPXML::RoofTypePlasticRubber - roof_material_type_choices << HPXML::RoofTypeShingles - roof_material_type_choices << HPXML::RoofTypeWoodShingles - - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('roof_material_type', roof_material_type_choices, false) - arg.setDisplayName('Roof: Material Type') - arg.setDescription("The material type of the roof. If not provided, the OS-HPXML default (see HPXML Roofs) is used.") - args << arg - - color_choices = OpenStudio::StringVector.new - color_choices << HPXML::ColorDark - color_choices << HPXML::ColorLight - color_choices << HPXML::ColorMedium - color_choices << HPXML::ColorMediumDark - color_choices << HPXML::ColorReflective + enclosure_roof_material_choices = get_option_names('roof_material.tsv') - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('roof_color', color_choices, false) - arg.setDisplayName('Roof: Color') - arg.setDescription("The color of the roof. If not provided, the OS-HPXML default (see HPXML Roofs) is used.") + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('enclosure_roof_material', enclosure_roof_material_choices, false) + arg.setDisplayName('Enclosure: Roof Material') + arg.setDescription("The material type/color of the roof. If not provided, the OS-HPXML default (see HPXML Roofs) is used.") args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('roof_assembly_r', true) @@ -771,6 +750,15 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDefaultValue(HPXML::WallTypeWoodStud) args << arg + # TODO: wall color + wall siding type --> enclosure_wall_siding + + # enclosure_wall_siding_choices = get_option_names('wall_siding.tsv') + + # arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('enclosure_wall_siding', enclosure_wall_siding_choices, false) + # arg.setDisplayName('Enclosure: Wall Siding') + # arg.setDescription("The siding type/color of the walls. Also applies to rim joists. If not provided, the OS-HPXML default (see HPXML Walls) is used.") + # args << arg + wall_siding_type_choices = OpenStudio::StringVector.new wall_siding_type_choices << HPXML::SidingTypeAluminum wall_siding_type_choices << HPXML::SidingTypeAsbestos @@ -789,6 +777,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDescription("The siding type of the walls. Also applies to rim joists. If not provided, the OS-HPXML default (see HPXML Walls) is used.") args << arg + color_choices = OpenStudio::StringVector.new + color_choices << HPXML::ColorDark + color_choices << HPXML::ColorLight + color_choices << HPXML::ColorMedium + color_choices << HPXML::ColorMediumDark + color_choices << HPXML::ColorReflective + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('wall_color', color_choices, false) arg.setDisplayName('Wall: Color') arg.setDescription("The color of the walls. Also applies to rim joists. If not provided, the OS-HPXML default (see HPXML Walls) is used.") @@ -1162,19 +1157,6 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDescription("Presence of flue or chimney with combustion air from conditioned space; used for infiltration model. If not provided, the OS-HPXML default (see Flue or Chimney) is used.") args << arg - heating_system_type_choices = OpenStudio::StringVector.new - heating_system_type_choices << Constants::None - heating_system_type_choices << HPXML::HVACTypeFurnace - heating_system_type_choices << HPXML::HVACTypeWallFurnace - heating_system_type_choices << HPXML::HVACTypeFloorFurnace - heating_system_type_choices << HPXML::HVACTypeBoiler - heating_system_type_choices << HPXML::HVACTypeElectricResistance - heating_system_type_choices << HPXML::HVACTypeStove - heating_system_type_choices << HPXML::HVACTypeSpaceHeater - heating_system_type_choices << HPXML::HVACTypeFireplace - heating_system_type_choices << "Shared #{HPXML::HVACTypeBoiler} w/ Baseboard" - heating_system_type_choices << "Shared #{HPXML::HVACTypeBoiler} w/ Ductless Fan Coil" - heating_system_fuel_choices = OpenStudio::StringVector.new heating_system_fuel_choices << HPXML::FuelTypeElectricity heating_system_fuel_choices << HPXML::FuelTypeNaturalGas @@ -1203,10 +1185,12 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument compressor_type_choices << HPXML::HVACCompressorTypeTwoStage compressor_type_choices << HPXML::HVACCompressorTypeVariableSpeed - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heating_system_type', heating_system_type_choices, true) - arg.setDisplayName('Heating System: Type') - arg.setDescription("The type of heating system. Use '#{Constants::None}' if there is no heating system or if there is a heat pump serving a heating load.") - arg.setDefaultValue(HPXML::HVACTypeFurnace) + heating_system_choices = get_option_names('heating_system.tsv') + + arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heating_system', heating_system_choices, true) + arg.setDisplayName('Heating System') + arg.setDescription("The heating system type/efficiency. Efficiency is Rated AFUE or Percent as a Fraction. Use '#{Constants::None}' if there is no heating system or if there is a heat pump serving a heating load.") + arg.setDefaultValue('Fuel Furnace, 78% AFUE') args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heating_system_fuel', heating_system_fuel_choices, true) @@ -1215,13 +1199,6 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDefaultValue(HPXML::FuelTypeNaturalGas) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_heating_efficiency', true) - arg.setDisplayName('Heating System: Rated AFUE or Percent') - arg.setUnits('Frac') - arg.setDescription('The rated heating efficiency value of the heating system.') - arg.setDefaultValue(0.78) - args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_heating_capacity', false) arg.setDisplayName('Heating System: Heating Capacity') arg.setDescription("The output heating capacity of the heating system. If not provided, the OS-HPXML autosized default (see HPXML Heating Systems) is used.") @@ -1246,18 +1223,6 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDefaultValue(1) args << arg - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_pilot_light', false) - arg.setDisplayName('Heating System: Pilot Light') - arg.setDescription("The fuel usage of the pilot light. Applies only to #{HPXML::HVACTypeFurnace}, #{HPXML::HVACTypeWallFurnace}, #{HPXML::HVACTypeFloorFurnace}, #{HPXML::HVACTypeStove}, #{HPXML::HVACTypeBoiler}, and #{HPXML::HVACTypeFireplace} with non-electric fuel type. If not provided, assumes no pilot light.") - arg.setUnits('Btuh') - args << arg - - arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_airflow_defect_ratio', false) - arg.setDisplayName('Heating System: Airflow Defect Ratio') - arg.setDescription("The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the heating system per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to #{HPXML::HVACTypeFurnace}. If not provided, assumes no defect.") - arg.setUnits('Frac') - args << arg - arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('cooling_system_type', cooling_system_type_choices, true) arg.setDisplayName('Cooling System: Type') arg.setDescription("The type of cooling system. Use '#{Constants::None}' if there is no cooling system or if there is a heat pump serving a cooling load.") @@ -3683,7 +3648,7 @@ def run(model, runner, user_arguments) end end - hpxml_doc = HPXMLFile.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) + hpxml_doc = create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) if not hpxml_doc runner.registerError('Unsuccessful creation of HPXML file.') return false @@ -3755,6 +3720,8 @@ def argument_warnings(args) def argument_errors(args) errors = [] + get_option_properties(args, 'heating_system.tsv', args[:heating_system]) + error = (args[:heating_system_type] != Constants::None) && (args[:heat_pump_type] != Constants::None) && (args[:heating_system_fraction_heat_load_served] > 0) && (args[:heat_pump_fraction_heat_load_served] > 0) errors << 'Multiple central heating systems are not currently supported.' if error @@ -3956,10 +3923,7 @@ def argument_errors(args) return errors end -end -# Collection of methods for creating the HPXML file and setting properties based on user arguments -module HPXMLFile # Create the closed-form geometry, and then call individual set_xxx methods # # @param runner [OpenStudio::Measure::OSRunner] Object typically used to display warnings @@ -3969,7 +3933,7 @@ module HPXMLFile # @param hpxml_path [String] Path to the created HPXML file # @param existing_hpxml_path [String] Path to the existing HPXML file # @return [Oga::XML::Element] Root XML element of the updated HPXML document - def self.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) + def create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) if need_weather_based_on_args(args) weather = WeatherFile.new(epw_path: epw_path, runner: nil) end @@ -4076,7 +4040,7 @@ def self.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) # # @param args [Hash] Map of :argument_name => value # @return [Boolean] True if we need to process the weather file - def self.need_weather_based_on_args(args) + def need_weather_based_on_args(args) if (args[:hvac_control_heating_season_period].to_s == Constants::BuildingAmerica) || (args[:hvac_control_cooling_season_period].to_s == Constants::BuildingAmerica) || (args[:solar_thermal_system_type] != Constants::None && args[:solar_thermal_collector_tilt].start_with?('latitude')) || @@ -4096,7 +4060,7 @@ def self.need_weather_based_on_args(args) # @param hpxml_doc [Oga::XML::Element] Root XML element of the HPXML document # @param hpxml_path [String] Path to the created HPXML file # @return [Boolean] True if the HPXML is valid - def self.validate_hpxml(runner, hpxml, hpxml_doc, hpxml_path) + def validate_hpxml(runner, hpxml, hpxml_doc, hpxml_path) # Check for errors in the HPXML object errors = [] hpxml.buildings.each do |hpxml_bldg| @@ -4136,7 +4100,7 @@ def self.validate_hpxml(runner, hpxml, hpxml_doc, hpxml_path) # @param model [OpenStudio::Model::Model] OpenStudio Model object # @param args [Hash] Map of :argument_name => value # @return [Boolean] True if successful - def self.create_geometry_envelope(runner, model, args) + def create_geometry_envelope(runner, model, args) args[:geometry_roof_pitch] = { '1:12' => 1.0 / 12.0, '2:12' => 2.0 / 12.0, '3:12' => 3.0 / 12.0, @@ -4198,7 +4162,7 @@ def self.create_geometry_envelope(runner, model, args) # @param end_hour [Integer] Unavailable period end hour # @param natvent_availability [String] Natural ventilation availability (HXPML::ScheduleXXX) # @return [Boolean] True if the unavailability period already exists - def self.unavailable_period_exists(hpxml, column_name, begin_month, begin_day, begin_hour, end_month, end_day, end_hour, natvent_availability = nil) + def unavailable_period_exists(hpxml, column_name, begin_month, begin_day, begin_hour, end_month, end_day, end_hour, natvent_availability = nil) natvent_availability = HPXML::ScheduleUnavailable if natvent_availability.nil? hpxml.header.unavailable_periods.each do |unavailable_period| @@ -4231,7 +4195,7 @@ def self.unavailable_period_exists(hpxml, column_name, begin_month, begin_day, b # @param hpxml [HPXML] HPXML object # @param args [Hash] Map of :argument_name => value # @return [Boolean] true if no errors, otherwise false - def self.set_header(runner, hpxml, args) + def set_header(runner, hpxml, args) errors = [] hpxml.header.xml_type = 'HPXML' @@ -4644,7 +4608,7 @@ def self.set_header(runner, hpxml, args) # @param hpxml [HPXML] HPXML object # @param args [Hash] Map of :argument_name => value # @return [HPXML::Building] HPXML Building object representing an individual dwelling unit - def self.add_building(hpxml, args) + def add_building(hpxml, args) if not args[:simulation_control_daylight_saving_period].nil? begin_month, begin_day, _begin_hour, end_month, end_day, _end_hour = Calendar.parse_date_time_range(args[:simulation_control_daylight_saving_period]) dst_begin_month = begin_month @@ -4681,7 +4645,7 @@ def self.add_building(hpxml, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_site(hpxml_bldg, args) + def set_site(hpxml_bldg, args) hpxml_bldg.site.shielding_of_home = args[:site_shielding_of_home] hpxml_bldg.site.ground_conductivity = args[:site_ground_conductivity] hpxml_bldg.site.ground_diffusivity = args[:site_ground_diffusivity] @@ -4737,7 +4701,7 @@ def self.set_site(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_neighbor_buildings(hpxml_bldg, args) + def set_neighbor_buildings(hpxml_bldg, args) nbr_map = { Constants::FacadeFront => [args[:neighbor_front_distance], args[:neighbor_front_height]], Constants::FacadeBack => [args[:neighbor_back_distance], args[:neighbor_back_height]], Constants::FacadeLeft => [args[:neighbor_left_distance], args[:neighbor_left_height]], @@ -4766,7 +4730,7 @@ def self.set_neighbor_buildings(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_building_occupancy(hpxml_bldg, args) + def set_building_occupancy(hpxml_bldg, args) hpxml_bldg.building_occupancy.number_of_residents = args[:geometry_unit_num_occupants] hpxml_bldg.building_occupancy.general_water_use_usage_multiplier = args[:general_water_use_usage_multiplier] end @@ -4784,7 +4748,7 @@ def self.set_building_occupancy(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_building_construction(hpxml_bldg, args) + def set_building_construction(hpxml_bldg, args) if args[:geometry_unit_type] == HPXML::ResidentialTypeApartment args[:geometry_unit_num_floors_above_grade] = 1 end @@ -4818,7 +4782,7 @@ def self.set_building_construction(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_building_header(hpxml_bldg, args) + def set_building_header(hpxml_bldg, args) if not args[:schedules_filepaths].nil? hpxml_bldg.header.schedules_filepaths = args[:schedules_filepaths].split(',').map(&:strip) end @@ -4851,7 +4815,7 @@ def self.set_building_header(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_climate_and_risk_zones(hpxml_bldg, args) + def set_climate_and_risk_zones(hpxml_bldg, args) if not args[:site_iecc_zone].nil? hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs.add(zone: args[:site_iecc_zone], year: 2006) @@ -4873,7 +4837,7 @@ def self.set_climate_and_risk_zones(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_air_infiltration_measurements(hpxml_bldg, args) + def set_air_infiltration_measurements(hpxml_bldg, args) if args[:air_leakage_value] if args[:air_leakage_units] == HPXML::UnitsELA effective_leakage_area = args[:air_leakage_value] @@ -4919,7 +4883,7 @@ def self.set_air_infiltration_measurements(hpxml_bldg, args) # @param args [Hash] Map of :argument_name => value # @param sorted_surfaces [Array] surfaces sorted by deterministically assigned Index # @return [nil] - def self.set_roofs(hpxml_bldg, args, sorted_surfaces) + def set_roofs(hpxml_bldg, args, sorted_surfaces) args[:geometry_roof_pitch] *= 12.0 if (args[:geometry_attic_type] == HPXML::AtticTypeFlatRoof) || (args[:geometry_attic_type] == HPXML::AtticTypeBelowApartment) args[:geometry_roof_pitch] = 0.0 @@ -4938,6 +4902,8 @@ def self.set_roofs(hpxml_bldg, args, sorted_surfaces) azimuth = Geometry.get_surface_azimuth(surface, args[:geometry_unit_orientation]) end + get_option_properties(args, 'roof_material.tsv', args[:enclosure_roof_material]) + hpxml_bldg.roofs.add(id: "Roof#{hpxml_bldg.roofs.size + 1}", interior_adjacent_to: Geometry.get_surface_adjacent_to(surface), azimuth: azimuth, @@ -4968,7 +4934,7 @@ def self.set_roofs(hpxml_bldg, args, sorted_surfaces) # @param args [Hash] Map of :argument_name => value # @param sorted_surfaces [Array] surfaces sorted by deterministically assigned Index # @return [nil] - def self.set_rim_joists(hpxml_bldg, model, args, sorted_surfaces) + def set_rim_joists(hpxml_bldg, model, args, sorted_surfaces) sorted_surfaces.each do |surface| next if surface.surfaceType != EPlus::SurfaceTypeWall next unless [EPlus::BoundaryConditionOutdoors, EPlus::BoundaryConditionAdiabatic].include? surface.outsideBoundaryCondition @@ -4996,6 +4962,9 @@ def self.set_rim_joists(hpxml_bldg, model, args, sorted_surfaces) end end + # TODO: wall color + wall siding type --> enclosure_wall_siding + # get_option_properties(args, 'wall_siding.tsv', args[:enclosure_wall_siding]) + if exterior_adjacent_to == HPXML::LocationOutside siding = args[:wall_siding_type] end @@ -5031,7 +5000,7 @@ def self.set_rim_joists(hpxml_bldg, model, args, sorted_surfaces) # @param args [Hash] Map of :argument_name => value # @param sorted_surfaces [Array] surfaces sorted by deterministically assigned Index # @return [nil] - def self.set_walls(hpxml_bldg, model, args, sorted_surfaces) + def set_walls(hpxml_bldg, model, args, sorted_surfaces) sorted_surfaces.each do |surface| next if surface.surfaceType != EPlus::SurfaceTypeWall next if Geometry.surface_is_rim_joist(surface, args[:geometry_rim_joist_height]) @@ -5067,6 +5036,9 @@ def self.set_walls(hpxml_bldg, model, args, sorted_surfaces) wall_type = HPXML::WallTypeWoodStud end + # wall color + wall siding type --> enclosure_wall_siding + # get_option_properties(args, 'wall_siding.tsv', args[:enclosure_wall_siding]) + if exterior_adjacent_to == HPXML::LocationOutside && (not args[:wall_siding_type].nil?) if (attic_locations.include? interior_adjacent_to) && (args[:wall_siding_type] == HPXML::SidingTypeNone) siding = nil @@ -5125,7 +5097,7 @@ def self.set_walls(hpxml_bldg, model, args, sorted_surfaces) # @param args [Hash] Map of :argument_name => value # @param sorted_surfaces [Array] surfaces sorted by deterministically assigned Index # @return [nil] - def self.set_foundation_walls(hpxml_bldg, model, args, sorted_surfaces) + def set_foundation_walls(hpxml_bldg, model, args, sorted_surfaces) sorted_surfaces.each do |surface| next if surface.surfaceType != EPlus::SurfaceTypeWall next unless [EPlus::BoundaryConditionFoundation, EPlus::BoundaryConditionAdiabatic].include? surface.outsideBoundaryCondition @@ -5212,7 +5184,7 @@ def self.set_foundation_walls(hpxml_bldg, model, args, sorted_surfaces) # @param args [Hash] Map of :argument_name => value # @param sorted_surfaces [Array] surfaces sorted by deterministically assigned Index # @return [nil] - def self.set_floors(hpxml_bldg, args, sorted_surfaces) + def set_floors(hpxml_bldg, args, sorted_surfaces) if [HPXML::FoundationTypeBasementConditioned, HPXML::FoundationTypeCrawlspaceConditioned].include?(args[:geometry_foundation_type]) && (args[:floor_over_foundation_assembly_r] > 2.1) args[:floor_over_foundation_assembly_r] = 2.1 # Uninsulated @@ -5296,7 +5268,7 @@ def self.set_floors(hpxml_bldg, args, sorted_surfaces) # @param args [Hash] Map of :argument_name => value # @param sorted_surfaces [Array] surfaces sorted by deterministically assigned Index # @return [nil] - def self.set_slabs(hpxml_bldg, model, args, sorted_surfaces) + def set_slabs(hpxml_bldg, model, args, sorted_surfaces) sorted_surfaces.each do |surface| next unless [EPlus::BoundaryConditionFoundation].include? surface.outsideBoundaryCondition next if surface.surfaceType != EPlus::SurfaceTypeFloor @@ -5366,7 +5338,7 @@ def self.set_slabs(hpxml_bldg, model, args, sorted_surfaces) # @param args [Hash] Map of :argument_name => value # @param sorted_subsurfaces [Array] subsurfaces sorted by deterministically assigned Index # @return [nil] - def self.set_windows(hpxml_bldg, model, args, sorted_subsurfaces) + def set_windows(hpxml_bldg, model, args, sorted_subsurfaces) sorted_subsurfaces.each do |sub_surface| next if sub_surface.subSurfaceType != EPlus::SubSurfaceTypeWindow @@ -5452,7 +5424,7 @@ def self.set_windows(hpxml_bldg, model, args, sorted_subsurfaces) # @param args [Hash] Map of :argument_name => value # @param sorted_subsurfaces [Array] subsurfaces sorted by deterministically assigned Index # @return [nil] - def self.set_skylights(hpxml_bldg, args, sorted_subsurfaces) + def set_skylights(hpxml_bldg, args, sorted_subsurfaces) sorted_subsurfaces.each do |sub_surface| next if sub_surface.subSurfaceType != 'Skylight' @@ -5493,7 +5465,7 @@ def self.set_skylights(hpxml_bldg, args, sorted_subsurfaces) # @param args [Hash] Map of :argument_name => value # @param sorted_subsurfaces [Array] subsurfaces sorted by deterministically assigned Index # @return [nil] - def self.set_doors(hpxml_bldg, model, args, sorted_subsurfaces) + def set_doors(hpxml_bldg, model, args, sorted_subsurfaces) sorted_subsurfaces.each do |sub_surface| next if sub_surface.subSurfaceType != EPlus::SubSurfaceTypeDoor @@ -5524,7 +5496,7 @@ def self.set_doors(hpxml_bldg, model, args, sorted_subsurfaces) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_attics(hpxml_bldg, args) + def set_attics(hpxml_bldg, args) surf_ids = { 'roofs' => { 'surfaces' => hpxml_bldg.roofs, 'ids' => [] }, 'walls' => { 'surfaces' => hpxml_bldg.walls, 'ids' => [] }, 'floors' => { 'surfaces' => hpxml_bldg.floors, 'ids' => [] } } @@ -5562,7 +5534,7 @@ def self.set_attics(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_foundations(hpxml_bldg, args) + def set_foundations(hpxml_bldg, args) surf_ids = { 'slabs' => { 'surfaces' => hpxml_bldg.slabs, 'ids' => [] }, 'floors' => { 'surfaces' => hpxml_bldg.floors, 'ids' => [] }, 'foundation_walls' => { 'surfaces' => hpxml_bldg.foundation_walls, 'ids' => [] }, @@ -5621,7 +5593,7 @@ def self.set_foundations(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_heating_systems(hpxml_bldg, args) + def set_heating_systems(hpxml_bldg, args) heating_system_type = args[:heating_system_type] return if heating_system_type == Constants::None @@ -5695,7 +5667,7 @@ def self.set_heating_systems(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_cooling_systems(hpxml_bldg, args) + def set_cooling_systems(hpxml_bldg, args) cooling_system_type = args[:cooling_system_type] return if cooling_system_type == Constants::None @@ -5816,7 +5788,7 @@ def self.set_cooling_systems(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_heat_pumps(hpxml_bldg, args) + def set_heat_pumps(hpxml_bldg, args) heat_pump_type = args[:heat_pump_type] return if heat_pump_type == Constants::None @@ -6010,7 +5982,7 @@ def self.set_heat_pumps(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_geothermal_loop(hpxml_bldg, args) + def set_geothermal_loop(hpxml_bldg, args) return if hpxml_bldg.heat_pumps.count { |hp| hp.heat_pump_type == HPXML::HVACTypeHeatPumpGroundToAir } == 0 return if args[:geothermal_loop_configuration].nil? || args[:geothermal_loop_configuration] == Constants::None @@ -6049,7 +6021,7 @@ def self.set_geothermal_loop(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_secondary_heating_systems(hpxml_bldg, args) + def set_secondary_heating_systems(hpxml_bldg, args) heating_system_type = args[:heating_system_2_type] heating_system_is_heatpump_backup = (args[:heat_pump_type] != Constants::None && args[:heat_pump_backup_type] == HPXML::HeatPumpBackupTypeSeparate) @@ -6092,7 +6064,7 @@ def self.set_secondary_heating_systems(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_hvac_distribution(hpxml_bldg, args) + def set_hvac_distribution(hpxml_bldg, args) # HydronicDistribution? hpxml_bldg.heating_systems.each do |heating_system| next unless [heating_system.heating_system_type].include?(HPXML::HVACTypeBoiler) @@ -6176,7 +6148,7 @@ def self.set_hvac_distribution(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_hvac_blower(hpxml_bldg, args) + def set_hvac_blower(hpxml_bldg, args) # Blower fan W/cfm hpxml_bldg.hvac_systems.each do |hvac_system| next unless (!hvac_system.distribution_system.nil? && hvac_system.distribution_system.distribution_system_type == HPXML::HVACDistributionTypeAir) || @@ -6210,7 +6182,7 @@ def self.set_hvac_blower(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_duct_leakages(args, hvac_distribution) + def set_duct_leakages(args, hvac_distribution) hvac_distribution.duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, duct_leakage_units: args[:ducts_leakage_units], duct_leakage_value: args[:ducts_supply_leakage_to_outside_value], @@ -6228,7 +6200,7 @@ def self.set_duct_leakages(args, hvac_distribution) # @param foundation_type [String] the specific HPXML foundation type (unvented crawlspace, vented crawlspace, conditioned crawlspace) # @param attic_type [String] the specific HPXML attic type (unvented attic, vented attic, conditioned attic) # @return [nil] - def self.get_location(location, foundation_type, attic_type) + def get_location(location, foundation_type, attic_type) return if location.nil? if location == HPXML::LocationCrawlspace @@ -6267,7 +6239,7 @@ def self.get_location(location, foundation_type, attic_type) # @param args [Hash] Map of :argument_name => value # @param hvac_distribution [HPXML::HVACDistribution] HPXML HVAC Distribution object # @return [nil] - def self.set_ducts(hpxml_bldg, args, hvac_distribution) + def set_ducts(hpxml_bldg, args, hvac_distribution) ducts_supply_location = get_location(args[:ducts_supply_location], hpxml_bldg.foundations[-1].foundation_type, hpxml_bldg.attics[-1].attic_type) ducts_return_location = get_location(args[:ducts_return_location], hpxml_bldg.foundations[-1].foundation_type, hpxml_bldg.attics[-1].attic_type) @@ -6385,7 +6357,7 @@ def self.set_ducts(hpxml_bldg, args, hvac_distribution) # @param args [Hash] Map of :argument_name => value # @param weather [WeatherFile] Weather object containing EPW information # @return [nil] - def self.set_hvac_control(hpxml, hpxml_bldg, args, weather) + def set_hvac_control(hpxml, hpxml_bldg, args, weather) return if (args[:heating_system_type] == Constants::None) && (args[:cooling_system_type] == Constants::None) && (args[:heat_pump_type] == Constants::None) latitude = Defaults.get_latitude(args[:site_latitude], weather) unless weather.nil? @@ -6486,7 +6458,7 @@ def self.set_hvac_control(hpxml, hpxml_bldg, args, weather) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_ventilation_fans(hpxml_bldg, args) + def set_ventilation_fans(hpxml_bldg, args) if args[:mech_vent_fan_type] != Constants::None distribution_system_idref = nil @@ -6649,7 +6621,7 @@ def self.set_ventilation_fans(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_water_heating_systems(hpxml_bldg, args) + def set_water_heating_systems(hpxml_bldg, args) water_heater_type = args[:water_heater_type] return if water_heater_type == Constants::None @@ -6771,7 +6743,7 @@ def self.set_water_heating_systems(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_hot_water_distribution(hpxml_bldg, args) + def set_hot_water_distribution(hpxml_bldg, args) return if args[:water_heater_type] == Constants::None if args[:dwhr_facilities_connected] != Constants::None @@ -6809,7 +6781,7 @@ def self.set_hot_water_distribution(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_water_fixtures(hpxml_bldg, args) + def set_water_fixtures(hpxml_bldg, args) return if args[:water_heater_type] == Constants::None hpxml_bldg.water_fixtures.add(id: "WaterFixture#{hpxml_bldg.water_fixtures.size + 1}", @@ -6833,7 +6805,7 @@ def self.set_water_fixtures(hpxml_bldg, args) # @param args [Hash] Map of :argument_name => value # @param weather [WeatherFile] Weather object containing EPW information # @return [nil] - def self.set_solar_thermal(hpxml_bldg, args, weather) + def set_solar_thermal(hpxml_bldg, args, weather) return if args[:solar_thermal_system_type] == Constants::None if args[:solar_thermal_solar_fraction] > 0 @@ -6883,7 +6855,7 @@ def self.set_solar_thermal(hpxml_bldg, args, weather) # @param args [Hash] Map of :argument_name => value # @param weather [WeatherFile] Weather object containing EPW information # @return [nil] - def self.set_pv_systems(hpxml_bldg, args, weather) + def set_pv_systems(hpxml_bldg, args, weather) return unless args[:pv_system_present] if [HPXML::ResidentialTypeSFA, HPXML::ResidentialTypeApartment].include? args[:geometry_unit_type] @@ -6937,7 +6909,7 @@ def self.set_pv_systems(hpxml_bldg, args, weather) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_battery(hpxml_bldg, args) + def set_battery(hpxml_bldg, args) return unless args[:battery_present] location = get_location(args[:battery_location], hpxml_bldg.foundations[-1].foundation_type, hpxml_bldg.attics[-1].attic_type) @@ -6974,7 +6946,7 @@ def self.set_battery(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_vehicle(hpxml_bldg, args) + def set_vehicle(hpxml_bldg, args) return unless args[:vehicle_type] || args[:ev_charger_present] charger_id = nil @@ -7008,7 +6980,7 @@ def self.set_vehicle(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_lighting(hpxml_bldg, args) + def set_lighting(hpxml_bldg, args) if args[:lighting_present] has_garage = (args[:geometry_garage_width] * args[:geometry_garage_depth] > 0) @@ -7093,7 +7065,7 @@ def self.set_lighting(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_dehumidifier(hpxml_bldg, args) + def set_dehumidifier(hpxml_bldg, args) return if args[:dehumidifier_type] == Constants::None case args[:dehumidifier_efficiency_type] @@ -7125,7 +7097,7 @@ def self.set_dehumidifier(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_clothes_washer(hpxml_bldg, args) + def set_clothes_washer(hpxml_bldg, args) return if args[:water_heater_type] == Constants::None return unless args[:clothes_washer_present] @@ -7159,7 +7131,7 @@ def self.set_clothes_washer(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_clothes_dryer(hpxml_bldg, args) + def set_clothes_dryer(hpxml_bldg, args) return if args[:water_heater_type] == Constants::None return unless args[:clothes_washer_present] return unless args[:clothes_dryer_present] @@ -7201,7 +7173,7 @@ def self.set_clothes_dryer(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_dishwasher(hpxml_bldg, args) + def set_dishwasher(hpxml_bldg, args) return if args[:water_heater_type] == Constants::None return unless args[:dishwasher_present] @@ -7232,7 +7204,7 @@ def self.set_dishwasher(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_refrigerator(hpxml_bldg, args) + def set_refrigerator(hpxml_bldg, args) return unless args[:refrigerator_present] hpxml_bldg.refrigerators.add(id: "Refrigerator#{hpxml_bldg.refrigerators.size + 1}", @@ -7249,7 +7221,7 @@ def self.set_refrigerator(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_extra_refrigerator(hpxml_bldg, args) + def set_extra_refrigerator(hpxml_bldg, args) return unless args[:extra_refrigerator_present] hpxml_bldg.refrigerators.add(id: "Refrigerator#{hpxml_bldg.refrigerators.size + 1}", @@ -7268,7 +7240,7 @@ def self.set_extra_refrigerator(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_freezer(hpxml_bldg, args) + def set_freezer(hpxml_bldg, args) return unless args[:freezer_present] hpxml_bldg.freezers.add(id: "Freezer#{hpxml_bldg.freezers.size + 1}", @@ -7285,7 +7257,7 @@ def self.set_freezer(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_cooking_range_oven(hpxml_bldg, args) + def set_cooking_range_oven(hpxml_bldg, args) return unless args[:cooking_range_oven_present] hpxml_bldg.cooking_ranges.add(id: "CookingRange#{hpxml_bldg.cooking_ranges.size + 1}", @@ -7306,7 +7278,7 @@ def self.set_cooking_range_oven(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_ceiling_fans(hpxml_bldg, args) + def set_ceiling_fans(hpxml_bldg, args) return unless args[:ceiling_fan_present] hpxml_bldg.ceiling_fans.add(id: "CeilingFan#{hpxml_bldg.ceiling_fans.size + 1}", @@ -7322,7 +7294,7 @@ def self.set_ceiling_fans(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_misc_plug_loads_television(hpxml_bldg, args) + def set_misc_plug_loads_television(hpxml_bldg, args) return unless args[:misc_plug_loads_television_present] hpxml_bldg.plug_loads.add(id: "PlugLoad#{hpxml_bldg.plug_loads.size + 1}", @@ -7339,7 +7311,7 @@ def self.set_misc_plug_loads_television(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_misc_plug_loads_other(hpxml_bldg, args) + def set_misc_plug_loads_other(hpxml_bldg, args) hpxml_bldg.plug_loads.add(id: "PlugLoad#{hpxml_bldg.plug_loads.size + 1}", plug_load_type: HPXML::PlugLoadTypeOther, kwh_per_year: args[:misc_plug_loads_other_annual_kwh], @@ -7355,7 +7327,7 @@ def self.set_misc_plug_loads_other(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_misc_plug_loads_well_pump(hpxml_bldg, args) + def set_misc_plug_loads_well_pump(hpxml_bldg, args) return unless args[:misc_plug_loads_well_pump_present] hpxml_bldg.plug_loads.add(id: "PlugLoad#{hpxml_bldg.plug_loads.size + 1}", @@ -7371,7 +7343,7 @@ def self.set_misc_plug_loads_well_pump(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_misc_plug_loads_vehicle(hpxml_bldg, args) + def set_misc_plug_loads_vehicle(hpxml_bldg, args) return unless args[:misc_plug_loads_vehicle_present] hpxml_bldg.plug_loads.add(id: "PlugLoad#{hpxml_bldg.plug_loads.size + 1}", @@ -7388,7 +7360,7 @@ def self.set_misc_plug_loads_vehicle(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_misc_fuel_loads_grill(hpxml_bldg, args) + def set_misc_fuel_loads_grill(hpxml_bldg, args) return unless args[:misc_fuel_loads_grill_present] hpxml_bldg.fuel_loads.add(id: "FuelLoad#{hpxml_bldg.fuel_loads.size + 1}", @@ -7406,7 +7378,7 @@ def self.set_misc_fuel_loads_grill(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_misc_fuel_loads_lighting(hpxml_bldg, args) + def set_misc_fuel_loads_lighting(hpxml_bldg, args) return unless args[:misc_fuel_loads_lighting_present] hpxml_bldg.fuel_loads.add(id: "FuelLoad#{hpxml_bldg.fuel_loads.size + 1}", @@ -7425,7 +7397,7 @@ def self.set_misc_fuel_loads_lighting(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_misc_fuel_loads_fireplace(hpxml_bldg, args) + def set_misc_fuel_loads_fireplace(hpxml_bldg, args) return unless args[:misc_fuel_loads_fireplace_present] hpxml_bldg.fuel_loads.add(id: "FuelLoad#{hpxml_bldg.fuel_loads.size + 1}", @@ -7447,7 +7419,7 @@ def self.set_misc_fuel_loads_fireplace(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_pool(hpxml_bldg, args) + def set_pool(hpxml_bldg, args) return unless args[:pool_present] case args[:pool_heater_type] @@ -7484,7 +7456,7 @@ def self.set_pool(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.set_permanent_spa(hpxml_bldg, args) + def set_permanent_spa(hpxml_bldg, args) return unless args[:permanent_spa_present] case args[:permanent_spa_heater_type] @@ -7516,7 +7488,7 @@ def self.set_permanent_spa(hpxml_bldg, args) # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @param args [Hash] Map of :argument_name => value # @return [nil] - def self.collapse_surfaces(hpxml_bldg, args) + def collapse_surfaces(hpxml_bldg, args) if args[:combine_like_surfaces] # Collapse some surfaces whose azimuth is a minor effect to simplify HPXMLs. (hpxml_bldg.roofs + hpxml_bldg.rim_joists + hpxml_bldg.walls + hpxml_bldg.foundation_walls).each do |surface| @@ -7541,7 +7513,7 @@ def self.collapse_surfaces(hpxml_bldg, args) # # @param hpxml_bldg [HPXML::Building] HPXML Building object representing an individual dwelling unit # @return [nil] - def self.renumber_hpxml_ids(hpxml_bldg) + def renumber_hpxml_ids(hpxml_bldg) # Renumber surfaces indexes = {} (hpxml_bldg.surfaces + hpxml_bldg.subsurfaces).each do |surf| @@ -7593,6 +7565,110 @@ def self.renumber_hpxml_ids(hpxml_bldg) end end end + + # Reads the data (or retrieves the cached data) from the given TSV resource file. + # Uses a global variable so the data is only read once. + # + # @return [CSV::Table] CSV data for the TSV file + def get_csv_data_for_tsv_file(tsv_file_name) + if $csv_data.nil? + $csv_data = {} + end + + if $csv_data[tsv_file_name].nil? + tsv_dir = File.join(File.dirname(__FILE__), 'resources', 'options') + $csv_data[tsv_file_name] = CSV.read(File.join(tsv_dir, tsv_file_name), col_sep: "\t", headers: true) + + # Automatically determine column data types from values + column_datatype = {} + $csv_data[tsv_file_name][0].headers.each do |key| + datatypes = [] + $csv_data[tsv_file_name].each do |row| + next if row[key].nil? || row[key].empty? + + begin + val = Float(row[key]) + if val % 1 == 0 + datatypes << 'integer' + else + datatypes << 'float' + end + rescue + if ['TRUE', 'FALSE'].include? row[key].upcase + datatypes << 'boolean' + else + datatypes << 'string' + end + end + end + if datatypes.uniq.sort == ['float', 'integer'] + column_datatype[key] = 'float' + elsif datatypes.uniq.size != 1 + column_datatype[key] = 'string' + else + column_datatype[key] = datatypes.uniq[0] + end + end + + # Convert data to appropriate data Types + $csv_data[tsv_file_name].each do |row| + row.each do |key, value| + next if row[key].nil? || row[key].empty? + + case column_datatype[key] + when 'integer' + row[key] = Integer(Float(value)) + when 'float' + row[key] = Float(value) + when 'boolean' + row[key] = { 'TRUE' => true, 'FALSE' => false }[value.upcase] + end + end + end + end + + return $csv_data[tsv_file_name] + end + + # Returns the list of option names specified in the given TSV resource file. + # + # @param tsv_file_name [String] Name of the TSV resource file + # @return [OpenStudio::StringVector] List of option names + def get_option_names(tsv_file_name) + csv_data = get_csv_data_for_tsv_file(tsv_file_name) + option_names = OpenStudio::StringVector.new + csv_data.map { |row| row['Option Name'] }.each do |option_name| + option_names << option_name + end + return option_names + end + + # Updates the args hash with key-value detailed properties for the + # given option name and TSV resource file. + # + # @param args [Hash] Map of :argument_name => value + # @param tsv_file_name [String] Name of the TSV resource file + # @param option_name [String] Name of the option in the TSV resource file + # @return [nil] + def get_option_properties(args, tsv_file_name, option_name) + return if option_name.nil? + + csv_data = get_csv_data_for_tsv_file(tsv_file_name) + + csv_data.each do |row| + next if row['Option Name'] != option_name + + # Match, add detailed properties to args hash + row.each do |key, value| + next if key == 'Option Name' + + args[key.to_sym] = value + end + return + end + + fail "Unexpected error: Could not look up #{option_name} in #{tsv_file_name}." + end end # register the measure to be used by the application diff --git a/resources/hpxml-measures/BuildResidentialHPXML/measure.xml b/resources/hpxml-measures/BuildResidentialHPXML/measure.xml index 1e5bc00f10..a96b83d54e 100644 --- a/resources/hpxml-measures/BuildResidentialHPXML/measure.xml +++ b/resources/hpxml-measures/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - ff0d59bb-d91a-4541-b946-afe4c5d3ab43 - 2025-02-17T19:20:53Z + 442ceee2-315b-4fc0-b673-40d40ac7eb29 + 2025-02-26T16:16:52Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -1505,78 +1505,176 @@ 31.6
- roof_material_type - Roof: Material Type - The material type of the roof. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-roofs'>HPXML Roofs</a>) is used. + enclosure_roof_material + Enclosure: Roof Material + The material type/color of the roof. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-roofs'>HPXML Roofs</a>) is used. Choice false false - asphalt or fiberglass shingles - asphalt or fiberglass shingles + Asphalt/Fiberglass Shingles, Dark + Asphalt/Fiberglass Shingles, Dark - concrete - concrete + Asphalt/Fiberglass Shingles, Medium Dark + Asphalt/Fiberglass Shingles, Medium Dark - cool roof - cool roof + Asphalt/Fiberglass Shingles, Medium + Asphalt/Fiberglass Shingles, Medium - slate or tile shingles - slate or tile shingles + Asphalt/Fiberglass Shingles, Light + Asphalt/Fiberglass Shingles, Light - expanded polystyrene sheathing - expanded polystyrene sheathing + Asphalt/Fiberglass Shingles, Reflective + Asphalt/Fiberglass Shingles, Reflective - metal surfacing - metal surfacing + Tile/Slate, Dark + Tile/Slate, Dark - plastic/rubber/synthetic sheeting - plastic/rubber/synthetic sheeting + Tile/Slate, Medium Dark + Tile/Slate, Medium Dark - shingles - shingles + Tile/Slate, Medium + Tile/Slate, Medium - wood shingles or shakes - wood shingles or shakes + Tile/Slate, Light + Tile/Slate, Light - - - - roof_color - Roof: Color - The color of the roof. If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.10.0/workflow_inputs.html#hpxml-roofs'>HPXML Roofs</a>) is used. - Choice - false - false - - dark - dark + Tile/Slate, Reflective + Tile/Slate, Reflective - light - light + Metal, Dark + Metal, Dark - medium - medium + Metal, Medium Dark + Metal, Medium Dark - medium dark - medium dark + Metal, Medium + Metal, Medium - reflective - reflective + Metal, Light + Metal, Light + + + Metal, Reflective + Metal, Reflective + + + Wood Shingles/Shakes, Dark + Wood Shingles/Shakes, Dark + + + Wood Shingles/Shakes, Medium Dark + Wood Shingles/Shakes, Medium Dark + + + Wood Shingles/Shakes, Medium + Wood Shingles/Shakes, Medium + + + Wood Shingles/Shakes, Light + Wood Shingles/Shakes, Light + + + Wood Shingles/Shakes, Reflective + Wood Shingles/Shakes, Reflective + + + Shingles, Dark + Shingles, Dark + + + Shingles, Medium Dark + Shingles, Medium Dark + + + Shingles, Medium + Shingles, Medium + + + Shingles, Light + Shingles, Light + + + Shingles, Reflective + Shingles, Reflective + + + Synthetic Sheeting, Dark + Synthetic Sheeting, Dark + + + Synthetic Sheeting, Medium Dark + Synthetic Sheeting, Medium Dark + + + Synthetic Sheeting, Medium + Synthetic Sheeting, Medium + + + Synthetic Sheeting, Light + Synthetic Sheeting, Light + + + Synthetic Sheeting, Reflective + Synthetic Sheeting, Reflective + + + EPS Sheathing, Dark + EPS Sheathing, Dark + + + EPS Sheathing, Medium Dark + EPS Sheathing, Medium Dark + + + EPS Sheathing, Medium + EPS Sheathing, Medium + + + EPS Sheathing, Light + EPS Sheathing, Light + + + EPS Sheathing, Reflective + EPS Sheathing, Reflective + + + Concrete, Dark + Concrete, Dark + + + Concrete, Medium Dark + Concrete, Medium Dark + + + Concrete, Medium + Concrete, Medium + + + Concrete, Light + Concrete, Light + + + Concrete, Reflective + Concrete, Reflective + + + Cool Roof + Cool Roof @@ -2402,57 +2500,189 @@ - heating_system_type - Heating System: Type - The type of heating system. Use 'none' if there is no heating system or if there is a heat pump serving a heating load. + heating_system + Heating System + The heating system type/efficiency. Efficiency is Rated AFUE or Percent as a Fraction. Use 'none' if there is no heating system or if there is a heat pump serving a heating load. Choice true false - Furnace + Fuel Furnace, 78% AFUE - none - none + Electric Furnace, 98% AFUE + Electric Furnace, 98% AFUE - Furnace - Furnace + Electric Furnace, 100% AFUE + Electric Furnace, 100% AFUE - WallFurnace - WallFurnace + Electric Baseboard, 100% Efficiency + Electric Baseboard, 100% Efficiency - FloorFurnace - FloorFurnace + Electric Boiler, 98% AFUE + Electric Boiler, 98% AFUE - Boiler - Boiler + Electric Boiler, 100% AFUE + Electric Boiler, 100% AFUE - ElectricResistance - ElectricResistance + Electric Wall Furnace, 100% AFUE + Electric Wall Furnace, 100% AFUE - Stove - Stove + Fuel Boiler, 72% AFUE + Fuel Boiler, 72% AFUE - SpaceHeater - SpaceHeater + Fuel Boiler, 76% AFUE + Fuel Boiler, 76% AFUE - Fireplace - Fireplace + Fuel Boiler, 80% AFUE + Fuel Boiler, 80% AFUE + + + Fuel Boiler, 82% AFUE + Fuel Boiler, 82% AFUE - Shared Boiler w/ Baseboard - Shared Boiler w/ Baseboard + Fuel Boiler, 85% AFUE + Fuel Boiler, 85% AFUE - Shared Boiler w/ Ductless Fan Coil - Shared Boiler w/ Ductless Fan Coil + Fuel Boiler, 90% AFUE + Fuel Boiler, 90% AFUE + + + Fuel Boiler, 92% AFUE + Fuel Boiler, 92% AFUE + + + Fuel Boiler, 92% AFUE, 600 BTUh Pilot Light + Fuel Boiler, 92% AFUE, 600 BTUh Pilot Light + + + Fuel Boiler, 95% AFUE + Fuel Boiler, 95% AFUE + + + Fuel Boiler, 96% AFUE + Fuel Boiler, 96% AFUE + + + Fuel Furnace, 60% AFUE + Fuel Furnace, 60% AFUE + + + Fuel Furnace, 68% AFUE + Fuel Furnace, 68% AFUE + + + Fuel Furnace, 72% AFUE + Fuel Furnace, 72% AFUE + + + Fuel Furnace, 76% AFUE + Fuel Furnace, 76% AFUE + + + Fuel Furnace, 78% AFUE + Fuel Furnace, 78% AFUE + + + Fuel Furnace, 80% AFUE + Fuel Furnace, 80% AFUE + + + Fuel Furnace, 85% AFUE + Fuel Furnace, 85% AFUE + + + Fuel Furnace, 90% AFUE + Fuel Furnace, 90% AFUE + + + Fuel Furnace, 92% AFUE + Fuel Furnace, 92% AFUE + + + Fuel Furnace, 92% AFUE, Airflow Defect Ratio + Fuel Furnace, 92% AFUE, Airflow Defect Ratio + + + Fuel Furnace, 92% AFUE, 600 BTUh Pilot Light + Fuel Furnace, 92% AFUE, 600 BTUh Pilot Light + + + Fuel Furnace, 92.5% AFUE + Fuel Furnace, 92.5% AFUE + + + Fuel Furnace, 96% AFUE + Fuel Furnace, 96% AFUE + + + Fuel Wall Furnace, 60% AFUE + Fuel Wall Furnace, 60% AFUE + + + Fuel Wall Furnace, 68% AFUE + Fuel Wall Furnace, 68% AFUE + + + Electric Wall Furnace, 98% AFUE + Electric Wall Furnace, 98% AFUE + + + Electric Wall Furnace, 100% AFUE + Electric Wall Furnace, 100% AFUE + + + None + None + + + Fuel Boiler w/ Baseboard, 78% AFUE + Fuel Boiler w/ Baseboard, 78% AFUE + + + Fuel Boiler w/ Baseboard, 92% AFUE + Fuel Boiler w/ Baseboard, 92% AFUE + + + Electric Boiler w/ Baseboard, 100% AFUE + Electric Boiler w/ Baseboard, 100% AFUE + + + Fuel Fan Coil Heating, 78% AFUE + Fuel Fan Coil Heating, 78% AFUE + + + Fuel Fan Coil Heating, 92% AFUE + Fuel Fan Coil Heating, 92% AFUE + + + Electric Fan Coil Heating, 100% AFUE + Electric Fan Coil Heating, 100% AFUE + + + Fireplace, 80% Efficiency + Fireplace, 80% Efficiency + + + Stove, 80% Efficiency + Stove, 80% Efficiency + + + Fuel Floor Furnace, 80% AFUE, 600 BTUh Pilot Light + Fuel Floor Furnace, 80% AFUE, 600 BTUh Pilot Light + + + Space Heater, 100% Efficiency + Space Heater, 100% Efficiency @@ -2495,16 +2725,6 @@ - - heating_system_heating_efficiency - Heating System: Rated AFUE or Percent - The rated heating efficiency value of the heating system. - Double - Frac - true - false - 0.78 - heating_system_heating_capacity Heating System: Heating Capacity @@ -2541,24 +2761,6 @@ false 1 - - heating_system_pilot_light - Heating System: Pilot Light - The fuel usage of the pilot light. Applies only to Furnace, WallFurnace, FloorFurnace, Stove, Boiler, and Fireplace with non-electric fuel type. If not provided, assumes no pilot light. - Double - Btuh - false - false - - - heating_system_airflow_defect_ratio - Heating System: Airflow Defect Ratio - The airflow defect ratio, defined as (InstalledAirflow - DesignAirflow) / DesignAirflow, of the heating system per ANSI/RESNET/ACCA Standard 310. A value of zero means no airflow defect. Applies only to Furnace. If not provided, assumes no defect. - Double - Frac - false - false - cooling_system_type Cooling System: Type @@ -7682,7 +7884,7 @@ README.md md readme - 4D1FBA76 + 56D42768 README.md.erb @@ -7699,7 +7901,7 @@ measure.rb rb script - 88B90FC6 + 01022DB1 constants.rb @@ -7713,6 +7915,24 @@ resource C905753A + + options/heating_system.tsv + tsv + resource + 6BFE58F1 + + + options/roof_material.tsv + tsv + resource + 1DE7CA79 + + + options/wall_siding.tsv + tsv + resource + B1730110 + version.txt txt @@ -7723,7 +7943,7 @@ test_build_residential_hpxml.rb rb test - BAC58C3D + 80DD6DF8 diff --git a/resources/hpxml-measures/BuildResidentialHPXML/resources/options/heating_system.tsv b/resources/hpxml-measures/BuildResidentialHPXML/resources/options/heating_system.tsv new file mode 100644 index 0000000000..a1723ce148 --- /dev/null +++ b/resources/hpxml-measures/BuildResidentialHPXML/resources/options/heating_system.tsv @@ -0,0 +1,45 @@ +Option Name heating_system_type heating_system_heating_efficiency heating_system_pilot_light heating_system_airflow_defect_ratio +"Electric Furnace, 98% AFUE" Furnace 0.98 +"Electric Furnace, 100% AFUE" Furnace 1 +"Electric Baseboard, 100% Efficiency" ElectricResistance 1 +"Electric Boiler, 98% AFUE" Boiler 0.98 +"Electric Boiler, 100% AFUE" Boiler 1 +"Electric Wall Furnace, 100% AFUE" WallFurnace 1 +"Fuel Boiler, 72% AFUE" Boiler 0.72 +"Fuel Boiler, 76% AFUE" Boiler 0.76 +"Fuel Boiler, 80% AFUE" Boiler 0.8 +"Fuel Boiler, 82% AFUE" Boiler 0.82 +"Fuel Boiler, 85% AFUE" Boiler 0.85 +"Fuel Boiler, 90% AFUE" Boiler 0.9 +"Fuel Boiler, 92% AFUE" Boiler 0.92 +"Fuel Boiler, 92% AFUE, 600 BTUh Pilot Light" Boiler 0.92 600 +"Fuel Boiler, 95% AFUE" Boiler 0.95 +"Fuel Boiler, 96% AFUE" Boiler 0.96 +"Fuel Furnace, 60% AFUE" Furnace 0.6 +"Fuel Furnace, 68% AFUE" Furnace 0.68 +"Fuel Furnace, 72% AFUE" Furnace 0.72 +"Fuel Furnace, 76% AFUE" Furnace 0.76 +"Fuel Furnace, 78% AFUE" Furnace 0.78 +"Fuel Furnace, 80% AFUE" Furnace 0.8 +"Fuel Furnace, 85% AFUE" Furnace 0.85 +"Fuel Furnace, 90% AFUE" Furnace 0.9 +"Fuel Furnace, 92% AFUE" Furnace 0.92 +"Fuel Furnace, 92% AFUE, Airflow Defect Ratio" Furnace 0.92 -0.25 +"Fuel Furnace, 92% AFUE, 600 BTUh Pilot Light" Furnace 0.92 600 +"Fuel Furnace, 92.5% AFUE" Furnace 0.925 +"Fuel Furnace, 96% AFUE" Furnace 0.96 +"Fuel Wall Furnace, 60% AFUE" WallFurnace 0.6 +"Fuel Wall Furnace, 68% AFUE" WallFurnace 0.68 +"Electric Wall Furnace, 98% AFUE" WallFurnace 0.98 +"Electric Wall Furnace, 100% AFUE" WallFurnace 1 +None none +"Fuel Boiler w/ Baseboard, 78% AFUE" Shared Boiler w/ Baseboard 0.78 +"Fuel Boiler w/ Baseboard, 92% AFUE" Shared Boiler w/ Baseboard 0.92 +"Electric Boiler w/ Baseboard, 100% AFUE" Shared Boiler w/ Baseboard 1 +"Fuel Fan Coil Heating, 78% AFUE" Shared Boiler w/ Ductless Fan Coil 0.78 +"Fuel Fan Coil Heating, 92% AFUE" Shared Boiler w/ Ductless Fan Coil 0.92 +"Electric Fan Coil Heating, 100% AFUE" Shared Boiler w/ Ductless Fan Coil 1 +"Fireplace, 80% Efficiency" Fireplace 0.8 +"Stove, 80% Efficiency" Stove 0.8 +"Fuel Floor Furnace, 80% AFUE, 600 BTUh Pilot Light" FloorFurnace 0.8 600 +"Space Heater, 100% Efficiency" SpaceHeater 1 diff --git a/resources/hpxml-measures/BuildResidentialHPXML/resources/options/roof_material.tsv b/resources/hpxml-measures/BuildResidentialHPXML/resources/options/roof_material.tsv new file mode 100644 index 0000000000..f83aa80fdc --- /dev/null +++ b/resources/hpxml-measures/BuildResidentialHPXML/resources/options/roof_material.tsv @@ -0,0 +1,42 @@ +Option Name roof_material_type roof_color +"Asphalt/Fiberglass Shingles, Dark" asphalt or fiberglass shingles dark +"Asphalt/Fiberglass Shingles, Medium Dark" asphalt or fiberglass shingles medium dark +"Asphalt/Fiberglass Shingles, Medium" asphalt or fiberglass shingles medium +"Asphalt/Fiberglass Shingles, Light" asphalt or fiberglass shingles light +"Asphalt/Fiberglass Shingles, Reflective" asphalt or fiberglass shingles reflective +"Tile/Slate, Dark" slate or tile shingles dark +"Tile/Slate, Medium Dark" slate or tile shingles medium dark +"Tile/Slate, Medium" slate or tile shingles medium +"Tile/Slate, Light" slate or tile shingles light +"Tile/Slate, Reflective" slate or tile shingles reflective +"Metal, Dark" metal surfacing dark +"Metal, Medium Dark" metal surfacing medium dark +"Metal, Medium" metal surfacing medium +"Metal, Light" metal surfacing light +"Metal, Reflective" metal surfacing reflective +"Wood Shingles/Shakes, Dark" wood shingles or shakes dark +"Wood Shingles/Shakes, Medium Dark" wood shingles or shakes medium dark +"Wood Shingles/Shakes, Medium" wood shingles or shakes medium +"Wood Shingles/Shakes, Light" wood shingles or shakes light +"Wood Shingles/Shakes, Reflective" wood shingles or shakes reflective +"Shingles, Dark" shingles dark +"Shingles, Medium Dark" shingles medium dark +"Shingles, Medium" shingles medium +"Shingles, Light" shingles light +"Shingles, Reflective" shingles reflective +"Synthetic Sheeting, Dark" plastic/rubber/synthetic sheeting dark +"Synthetic Sheeting, Medium Dark" plastic/rubber/synthetic sheeting medium dark +"Synthetic Sheeting, Medium" plastic/rubber/synthetic sheeting medium +"Synthetic Sheeting, Light" plastic/rubber/synthetic sheeting light +"Synthetic Sheeting, Reflective" plastic/rubber/synthetic sheeting reflective +"EPS Sheathing, Dark" expanded polystyrene sheathing dark +"EPS Sheathing, Medium Dark" expanded polystyrene sheathing medium dark +"EPS Sheathing, Medium" expanded polystyrene sheathing medium +"EPS Sheathing, Light" expanded polystyrene sheathing light +"EPS Sheathing, Reflective" expanded polystyrene sheathing reflective +"Concrete, Dark" concrete dark +"Concrete, Medium Dark" concrete medium dark +"Concrete, Medium" concrete medium +"Concrete, Light" concrete light +"Concrete, Reflective" concrete reflective +Cool Roof cool roof reflective diff --git a/resources/hpxml-measures/BuildResidentialHPXML/resources/options/wall_siding.tsv b/resources/hpxml-measures/BuildResidentialHPXML/resources/options/wall_siding.tsv new file mode 100644 index 0000000000..bfa35a8dce --- /dev/null +++ b/resources/hpxml-measures/BuildResidentialHPXML/resources/options/wall_siding.tsv @@ -0,0 +1,52 @@ +Option Name wall_siding_type wall_color +"Aluminum, Dark" aluminum siding dark +"Aluminum, Medium" aluminum siding medium +"Aluminum, Medium Dark" aluminum siding medium dark +"Aluminum, Light" aluminum siding light +"Aluminum, Reflective" aluminum siding reflective +"Brick, Dark" brick veneer dark +"Brick, Medium" brick veneer medium +"Brick, Medium Dark" brick veneer medium dark +"Brick, Light" brick veneer light +"Brick, Reflective" brick veneer reflective +"Fiber-Cement, Dark" fiber cement siding dark +"Fiber-Cement, Medium" fiber cement siding medium +"Fiber-Cement, Medium Dark" fiber cement siding medium dark +"Fiber-Cement, Light" fiber cement siding light +"Fiber-Cement, Reflective" fiber cement siding reflective +"Shingle, Asbestos, Dark" asbestos siding dark +"Shingle, Asbestos, Medium" asbestos siding medium +"Shingle, Asbestos, Medium Dark" asbestos siding medium dark +"Shingle, Asbestos, Light" asbestos siding light +"Shingle, Asbestos, Reflective" asbestos siding reflective +"Shingle, Composition, Dark" composite shingle siding dark +"Shingle, Composition, Medium" composite shingle siding medium +"Shingle, Composition, Medium Dark" composite shingle siding medium dark +"Shingle, Composition, Light" composite shingle siding light +"Shingle, Composition, Reflective" composite shingle siding reflective +"Stucco, Dark" stucco dark +"Stucco, Medium" stucco medium +"Stucco, Medium Dark" stucco medium dark +"Stucco, Light" stucco light +"Stucco, Reflective" stucco reflective +"Vinyl, Dark" vinyl siding dark +"Vinyl, Medium" vinyl siding medium +"Vinyl, Medium Dark" vinyl siding medium dark +"Vinyl, Light" vinyl siding light +"Vinyl, Reflective" vinyl siding reflective +"Wood, Dark" wood siding dark +"Wood, Medium" wood siding medium +"Wood, Medium Dark" wood siding medium dark +"Wood, Light" wood siding light +"Wood, Reflective" wood siding reflective +"Synthetic Stucco, Dark" synthetic stucco dark +"Synthetic Stucco, Medium" synthetic stucco medium +"Synthetic Stucco, Medium Dark" synthetic stucco medium dark +"Synthetic Stucco, Light" synthetic stucco light +"Synthetic Stucco, Reflective" synthetic stucco reflective +"Masonite, Dark" masonite siding dark +"Masonite, Medium" masonite siding medium +"Masonite, Medium Dark" masonite siding medium dark +"Masonite, Light" masonite siding light +"Masonite, Reflective" masonite siding reflective +None none medium diff --git a/resources/hpxml-measures/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb b/resources/hpxml-measures/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb index 866602fc4e..1eed7c30af 100644 --- a/resources/hpxml-measures/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb +++ b/resources/hpxml-measures/BuildResidentialHPXML/tests/test_build_residential_hpxml.rb @@ -445,8 +445,7 @@ def _set_measure_argument_values(hpxml_file, args) args['slab_carpet_fraction'] = 0.0 args['slab_carpet_r'] = 0.0 args['ceiling_assembly_r'] = 39.3 - args['roof_material_type'] = HPXML::RoofTypeAsphaltShingles - args['roof_color'] = HPXML::ColorMedium + args['enclosure_roof_material'] = 'Asphalt/Fiberglass Shingles, Medium' args['roof_assembly_r'] = 2.3 args['radiant_barrier_attic_location'] = Constants::None args['radiant_barrier_grade'] = 1 @@ -495,9 +494,8 @@ def _set_measure_argument_values(hpxml_file, args) args['air_leakage_units'] = HPXML::UnitsACH args['air_leakage_house_pressure'] = 50 args['air_leakage_value'] = 3 - args['heating_system_type'] = HPXML::HVACTypeFurnace args['heating_system_fuel'] = HPXML::FuelTypeNaturalGas - args['heating_system_heating_efficiency'] = 0.92 + args['heating_system'] = 'Fuel Furnace, 92% AFUE' args['heating_system_heating_capacity'] = 36000.0 args['heating_system_fraction_heat_load_served'] = 1 args['cooling_system_type'] = HPXML::HVACTypeCentralAirConditioner @@ -788,20 +786,19 @@ def _set_measure_argument_values(hpxml_file, args) args['heating_system_2_type'] = HPXML::HVACTypeSpaceHeater args['heating_system_2_heating_capacity'] = 16000.0 when 'extra-second-heating-system-fireplace-to-heating-system.xml' - args['heating_system_type'] = HPXML::HVACTypeElectricResistance args['heating_system_fuel'] = HPXML::FuelTypeElectricity - args['heating_system_heating_efficiency'] = 1.0 + args['heating_system'] = 'Electric Baseboard, 100% Efficiency' args['heating_system_heating_capacity'] = 48000.0 args['heating_system_fraction_heat_load_served'] = 0.75 args['cooling_system_type'] = Constants::None args['heating_system_2_type'] = HPXML::HVACTypeFireplace args['heating_system_2_heating_capacity'] = 16000.0 when 'extra-second-heating-system-boiler-to-heating-system.xml' - args['heating_system_type'] = HPXML::HVACTypeBoiler + args['heating_system'] = 'Fuel Boiler, 92% AFUE' args['heating_system_fraction_heat_load_served'] = 0.75 args['heating_system_2_type'] = HPXML::HVACTypeBoiler when 'extra-second-heating-system-portable-heater-to-heat-pump.xml' - args['heating_system_type'] = Constants::None + args['heating_system'] = 'None' args['cooling_system_type'] = Constants::None args['heat_pump_type'] = HPXML::HVACTypeHeatPumpAirToAir args['heat_pump_backup_type'] = HPXML::HeatPumpBackupTypeIntegrated @@ -815,7 +812,7 @@ def _set_measure_argument_values(hpxml_file, args) args['heating_system_2_type'] = HPXML::HVACTypeSpaceHeater args['heating_system_2_heating_capacity'] = 16000.0 when 'extra-second-heating-system-fireplace-to-heat-pump.xml' - args['heating_system_type'] = Constants::None + args['heating_system'] = 'None' args['cooling_system_type'] = Constants::None args['heat_pump_type'] = HPXML::HVACTypeHeatPumpMiniSplit args.delete('heat_pump_cooling_compressor_type') @@ -827,7 +824,7 @@ def _set_measure_argument_values(hpxml_file, args) args['heating_system_2_type'] = HPXML::HVACTypeFireplace args['heating_system_2_heating_capacity'] = 16000.0 when 'extra-second-heating-system-boiler-to-heat-pump.xml' - args['heating_system_type'] = Constants::None + args['heating_system'] = 'None' args['cooling_system_type'] = Constants::None args['heat_pump_type'] = HPXML::HVACTypeHeatPumpGroundToAir args['heat_pump_heating_efficiency_type'] = HPXML::UnitsCOP @@ -950,7 +947,7 @@ def _set_measure_argument_values(hpxml_file, args) args['battery_present'] = true args['battery_location'] = HPXML::LocationAttic when 'extra-detailed-performance-autosize.xml' - args['heating_system_type'] = Constants::None + args['heating_system'] = 'None' args['cooling_system_type'] = Constants::None args['heat_pump_type'] = HPXML::HVACTypeHeatPumpAirToAir args['heat_pump_heating_efficiency'] = 10.0 @@ -1146,7 +1143,7 @@ def _set_measure_argument_values(hpxml_file, args) args['cooling_system_type'] = Constants::None args['heat_pump_type'] = HPXML::HVACTypeHeatPumpAirToAir when 'error-cooling-system-and-heat-pump.xml' - args['heating_system_type'] = Constants::None + args['heating_system'] = 'None' args['heat_pump_type'] = HPXML::HVACTypeHeatPumpAirToAir when 'error-sfd-conditioned-basement-zero-foundation-height.xml' args['geometry_foundation_height'] = 0.0 @@ -1163,10 +1160,10 @@ def _set_measure_argument_values(hpxml_file, args) args['geometry_attic_type'] = HPXML::AtticTypeBelowApartment args.delete('foundation_wall_insulation_distance_to_bottom') when 'error-second-heating-system-but-no-primary-heating.xml' - args['heating_system_type'] = Constants::None + args['heating_system'] = 'None' args['heating_system_2_type'] = HPXML::HVACTypeFireplace when 'error-second-heating-system-ducted-with-ducted-primary-heating.xml' - args['heating_system_type'] = Constants::None + args['heating_system'] = 'None' args['cooling_system_type'] = Constants::None args['heat_pump_type'] = HPXML::HVACTypeHeatPumpMiniSplit args.delete('heat_pump_cooling_compressor_type') @@ -1201,7 +1198,7 @@ def _set_measure_argument_values(hpxml_file, args) args['geometry_attic_type'] = HPXML::AtticTypeConditioned args['ceiling_assembly_r'] = 0.0 when 'error-sfd-with-shared-system.xml' - args['heating_system_type'] = "Shared #{HPXML::HVACTypeBoiler} w/ Baseboard" + args['heating_system'] = 'Fuel Boiler w/ Baseboard, 92% AFUE' when 'error-rim-joist-height-but-no-assembly-r.xml' args.delete('rim_joist_assembly_r') when 'error-rim-joist-assembly-r-but-no-height.xml' diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml b/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml index e6a652c80d..222c286f4f 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 9cdacdbb-7289-4d0f-a517-3922cf3a30fa - 2025-02-18T17:48:09Z + d92a5185-cd4e-4a2e-bf62-4c999fa35bde + 2025-02-20T18:38:37Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -723,7 +723,7 @@ test_hvac.rb rb test - 088B98CB + E30F0328 test_hvac_sizing.rb diff --git a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb index 5eae1c5262..019d621e03 100644 --- a/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb +++ b/resources/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac.rb @@ -697,10 +697,10 @@ def test_air_to_air_heat_pump_var_speed_detailed_performance assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) clg_coil = model.getCoilCoolingDXMultiSpeeds[0] assert_equal(2, clg_coil.stages.size) - [4.61, 2.88].each_with_index do |cop, i| + [4.51, 2.80].each_with_index do |cop, i| assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) end - [3435, 10726].each_with_index do |clg_capacity, i| + [3494, 10721].each_with_index do |clg_capacity, i| assert_in_epsilon(clg_capacity, clg_coil.stages[i].grossRatedTotalCoolingCapacity.get, 0.01) end @@ -708,10 +708,10 @@ def test_air_to_air_heat_pump_var_speed_detailed_performance assert_equal(1, model.getCoilHeatingDXMultiSpeeds.size) htg_coil = model.getCoilHeatingDXMultiSpeeds[0] assert_equal(2, htg_coil.stages.size) - [4.75, 3.59].each_with_index do |cop, i| + [4.70, 3.54].each_with_index do |cop, i| assert_in_epsilon(cop, htg_coil.stages[i].grossRatedHeatingCOP, 0.01) end - [2927, 10376].each_with_index do |htg_capacity, i| + [2898, 10324].each_with_index do |htg_capacity, i| assert_in_epsilon(htg_capacity, htg_coil.stages[i].grossRatedHeatingCapacity.get, 0.01) end @@ -965,10 +965,10 @@ def test_mini_split_heat_pump_detailed_performance assert_equal(1, model.getCoilCoolingDXMultiSpeeds.size) clg_coil = model.getCoilCoolingDXMultiSpeeds[0] assert_equal(2, clg_coil.stages.size) - [4.06, 3.33].each_with_index do |cop, i| + [3.77, 2.49].each_with_index do |cop, i| assert_in_epsilon(cop, clg_coil.stages[i].grossRatedCoolingCOP, 0.01) end - [3041, 12557].each_with_index do |clg_capacity, i| + [2668, 10720].each_with_index do |clg_capacity, i| assert_in_epsilon(clg_capacity, clg_coil.stages[i].grossRatedTotalCoolingCapacity.get, 0.01) end @@ -976,10 +976,10 @@ def test_mini_split_heat_pump_detailed_performance assert_equal(1, model.getCoilHeatingDXMultiSpeeds.size) htg_coil = model.getCoilHeatingDXMultiSpeeds[0] assert_equal(2, htg_coil.stages.size) - [4.82, 3.23].each_with_index do |cop, i| + [3.48, 2.79].each_with_index do |cop, i| assert_in_epsilon(cop, htg_coil.stages[i].grossRatedHeatingCOP, 0.01) end - [3557, 16426].each_with_index do |htg_capacity, i| + [3339, 13519].each_with_index do |htg_capacity, i| assert_in_epsilon(htg_capacity, htg_coil.stages[i].grossRatedHeatingCapacity.get, 0.01) end diff --git a/resources/hpxml-measures/docs/source/workflow_inputs.rst b/resources/hpxml-measures/docs/source/workflow_inputs.rst index 5c4a53d8af..4298d84882 100644 --- a/resources/hpxml-measures/docs/source/workflow_inputs.rst +++ b/resources/hpxml-measures/docs/source/workflow_inputs.rst @@ -4504,7 +4504,7 @@ A detailed solar hot water system is entered as a ``/HPXML/Building/BuildingDeta ``CollectorAzimuth`` or ``CollectorOrientation`` integer or string deg or direction >= 0, <= 359 or See [#]_ Yes Direction panels face (clockwise from North) ``CollectorTilt`` double deg >= 0, <= 90 Yes Tilt relative to horizontal ``CollectorRatedOpticalEfficiency`` double frac > 0, < 1 Yes Rated optical efficiency [#]_ - ``CollectorRatedThermalLosses`` double Btu/hr-ft2-R > 0 Yes Rated thermal losses [#]_ + ``CollectorRatedThermalLosses`` double Btu/hr-ft2-F > 0 Yes Rated thermal losses [#]_ ``StorageVolume`` double gal > 0 No See [#]_ Hot water storage volume ``ConnectedTo`` idref See [#]_ Yes Connected water heater ================================================ ================= ================ ======================== ======== ======== ============================== diff --git a/resources/hpxml-measures/tasks.rb b/resources/hpxml-measures/tasks.rb index a814de9394..04cabb3651 100644 --- a/resources/hpxml-measures/tasks.rb +++ b/resources/hpxml-measures/tasks.rb @@ -11,10 +11,10 @@ def create_hpxmls this_dir = File.dirname(__FILE__) workflow_dir = File.join(this_dir, 'workflow') - hpxml_inputs_tsv_path = File.join(workflow_dir, 'hpxml_inputs.json') + hpxml_inputs_json_path = File.join(workflow_dir, 'hpxml_inputs.json') require 'json' - json_inputs = JSON.parse(File.read(hpxml_inputs_tsv_path)) + json_inputs = JSON.parse(File.read(hpxml_inputs_json_path)) abs_hpxml_files = [] dirs = json_inputs.keys.map { |file_path| File.dirname(file_path) }.uniq diff --git a/resources/hpxml-measures/workflow/hpxml_inputs.json b/resources/hpxml-measures/workflow/hpxml_inputs.json index 0d5fad23bb..e760917d4f 100644 --- a/resources/hpxml-measures/workflow/hpxml_inputs.json +++ b/resources/hpxml-measures/workflow/hpxml_inputs.json @@ -42,8 +42,7 @@ "slab_carpet_fraction": 0, "slab_carpet_r": 0, "ceiling_assembly_r": 18.45, - "roof_material_type": "asphalt or fiberglass shingles", - "roof_color": "medium", + "enclosure_roof_material": "Asphalt/Fiberglass Shingles, Medium", "roof_assembly_r": 1.99, "radiant_barrier_grade": 2, "radiant_barrier_attic_location": "none", @@ -88,9 +87,8 @@ "air_leakage_units": "ACHnatural", "air_leakage_house_pressure": 50, "air_leakage_value": 0.67, - "heating_system_type": "none", + "heating_system": "None", "heating_system_fuel": "natural gas", - "heating_system_heating_efficiency": 0, "heating_system_fraction_heat_load_served": 0, "cooling_system_type": "none", "cooling_system_cooling_efficiency_type": "SEER", @@ -268,7 +266,7 @@ }, "tests/ASHRAE_Standard_140/L202AC.xml": { "parent_hpxml": "tests/ASHRAE_Standard_140/L200AC.xml", - "roof_color": "reflective", + "enclosure_roof_material": "Asphalt/Fiberglass Shingles, Reflective", "wall_color": "reflective" }, "tests/ASHRAE_Standard_140/L302XC.xml": { @@ -357,15 +355,14 @@ }, "tests/ASHRAE_Standard_140/L202AL.xml": { "parent_hpxml": "tests/ASHRAE_Standard_140/L200AL.xml", - "roof_color": "reflective", + "enclosure_roof_material": "Asphalt/Fiberglass Shingles, Reflective", "wall_color": "reflective" }, "tests/HERS_HVAC/HVAC1a.xml": { "parent_hpxml": "tests/ASHRAE_Standard_140/L100AL.xml", - "heating_system_type": "Furnace", + "heating_system": "Fuel Furnace, 78% AFUE", "heating_system_fuel": "natural gas", "heating_system_heating_capacity": 56100, - "heating_system_heating_efficiency": 0.78, "heating_system_fraction_heat_load_served": 1.0, "cooling_system_type": "central air conditioner", "cooling_system_cooling_capacity": 38300, @@ -384,11 +381,11 @@ }, "tests/HERS_HVAC/HVAC2b.xml": { "parent_hpxml": "tests/HERS_HVAC/HVAC2a.xml", - "heating_system_heating_efficiency": 0.9 + "heating_system": "Fuel Furnace, 90% AFUE" }, "tests/HERS_HVAC/HVAC2c.xml": { "parent_hpxml": "tests/HERS_HVAC/HVAC2a.xml", - "heating_system_type": "none", + "heating_system": "None", "cooling_system_type": "none", "heat_pump_type": "air-to-air", "heat_pump_cooling_capacity": 56100, @@ -412,7 +409,7 @@ "tests/HERS_HVAC/HVAC2e.xml": { "parent_hpxml": "tests/HERS_HVAC/HVAC2a.xml", "heating_system_fuel": "electricity", - "heating_system_heating_efficiency": 1.0 + "heating_system": "Electric Furnace, 100% AFUE" }, "tests/HERS_DSE/HVAC3a.xml": { "parent_hpxml": "tests/ASHRAE_Standard_140/L322XC.xml", @@ -420,10 +417,9 @@ "geometry_unit_cfa": 1539, "air_leakage_value": 0.67, "floor_over_foundation_assembly_r": 13.85, - "heating_system_type": "Furnace", "heating_system_fuel": "natural gas", "heating_system_heating_capacity": 46600, - "heating_system_heating_efficiency": 0.78, + "heating_system": "Fuel Furnace, 78% AFUE", "heating_system_fraction_heat_load_served": 1.0, "cooling_system_type": "central air conditioner", "cooling_system_cooling_capacity": 38400, @@ -458,10 +454,9 @@ }, "tests/HERS_DSE/HVAC3e.xml": { "parent_hpxml": "tests/ASHRAE_Standard_140/L100AL.xml", - "heating_system_type": "Furnace", "heating_system_fuel": "natural gas", "heating_system_heating_capacity": 46600, - "heating_system_heating_efficiency": 0.78, + "heating_system": "Fuel Furnace, 78% AFUE", "heating_system_fraction_heat_load_served": 1.0, "cooling_system_type": "central air conditioner", "cooling_system_cooling_capacity": 38400, @@ -509,9 +504,8 @@ "window_ufactor": 0.35, "window_interior_shading_winter": null, "window_interior_shading_summer": null, - "heating_system_type": "Furnace", "heating_system_fuel": "natural gas", - "heating_system_heating_efficiency": 0.78, + "heating_system":"Fuel Furnace, 78% AFUE", "heating_system_fraction_heat_load_served": 1.0, "cooling_system_type": "central air conditioner", "cooling_system_cooling_efficiency": 13, @@ -648,8 +642,7 @@ "slab_carpet_fraction": 0, "slab_carpet_r": 0, "ceiling_assembly_r": 39.3, - "roof_material_type": "asphalt or fiberglass shingles", - "roof_color": "medium", + "enclosure_roof_material": "Asphalt/Fiberglass Shingles, Medium", "roof_assembly_r": 2.3, "radiant_barrier_grade": 2, "radiant_barrier_attic_location": "none", @@ -694,9 +687,8 @@ "air_leakage_units": "ACH", "air_leakage_house_pressure": 50, "air_leakage_value": 3, - "heating_system_type": "Furnace", "heating_system_fuel": "natural gas", - "heating_system_heating_efficiency": 0.92, + "heating_system": "Fuel Furnace, 92% AFUE", "heating_system_heating_capacity": 36000, "heating_system_fraction_heat_load_served": 1, "cooling_system_type": "central air conditioner", @@ -1154,7 +1146,7 @@ }, "sample_files/base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml": { "parent_hpxml": "sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml", - "heating_system_type": "none", + "heating_system": "None", "cooling_system_type": "none" }, "sample_files/base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml": { @@ -1186,14 +1178,14 @@ }, "sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml": { "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml", - "heating_system_type": "Shared Boiler w/ Baseboard", + "heating_system": "Fuel Boiler w/ Baseboard, 92% AFUE", "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, "cooling_system_fraction_cool_load_served": 0 }, "sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml": { "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml", - "heating_system_type": "Shared Boiler w/ Ductless Fan Coil" + "heating_system": "Fuel Fan Coil Heating, 92% AFUE" }, "sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml": { "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml" @@ -1206,14 +1198,14 @@ }, "sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml": { "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml", - "heating_system_type": "Shared Boiler w/ Baseboard", + "heating_system": "Fuel Boiler w/ Baseboard, 92% AFUE", "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, "cooling_system_fraction_cool_load_served": 0 }, "sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml": { "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml", - "heating_system_type": "Shared Boiler w/ Ductless Fan Coil" + "heating_system": "Fuel Fan Coil Heating, 92% AFUE" }, "sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml": { "parent_hpxml": "sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml", @@ -1233,8 +1225,7 @@ }, "sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml": { "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml", - "heating_system_type": "none", - "heating_system_heating_efficiency": 0, + "heating_system": "None", "heating_system_fraction_heat_load_served": 0, "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, @@ -1257,8 +1248,7 @@ }, "sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml": { "parent_hpxml": "sample_files/base-bldgtype-mf-unit.xml", - "heating_system_type": "none", - "heating_system_heating_efficiency": 0, + "heating_system": "None", "heating_system_fraction_heat_load_served": 0, "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, @@ -2055,8 +2045,7 @@ }, "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml": { "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "none", - "heating_system_heating_efficiency": 0, + "heating_system": "None", "heating_system_fraction_heat_load_served": 0, "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, @@ -2221,20 +2210,20 @@ "heat_pump_cooling_compressor_type": "variable speed", "heat_pump_heating_capacity_retention_fraction": null, "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_efficiency": 17.25, - "heat_pump_heating_efficiency": 10.0, + "heat_pump_cooling_efficiency": 17.5, + "heat_pump_heating_efficiency": 9.5, "hvac_perf_data_capacity_type": "Absolute capacities", "hvac_perf_data_heating_outdoor_temperatures": "47.0, 17.0, 5.0", - "hvac_perf_data_heating_min_speed_capacities": "10000, 4200, 1900", - "hvac_perf_data_heating_max_speed_capacities": "36000, 24800, 19900", - "hvac_perf_data_heating_min_speed_cops": "4.73, 1.84, 0.81", - "hvac_perf_data_heating_max_speed_cops": "3.44, 2.66, 2.28", + "hvac_perf_data_heating_min_speed_capacities": "9900, 3600, 1100", + "hvac_perf_data_heating_max_speed_capacities": "35800, 24600, 19700", + "hvac_perf_data_heating_min_speed_cops": "4.68, 1.57, 0.47", + "hvac_perf_data_heating_max_speed_cops": "3.4, 2.58, 2.63", "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 82.0", - "hvac_perf_data_cooling_min_speed_capacities": "11700, 13200", - "hvac_perf_data_cooling_max_speed_capacities": "36000, 40000", - "hvac_perf_data_cooling_min_speed_cops": "4.57, 6.34", - "hvac_perf_data_cooling_max_speed_cops": "2.71, 3.53", - "additional_properties": "HeatPump=YORK HMH7|HeatPumpAHRICert#=208613158" + "hvac_perf_data_cooling_min_speed_capacities": "11900, 13400", + "hvac_perf_data_cooling_max_speed_capacities": "36000, 40500", + "hvac_perf_data_cooling_min_speed_cops": "4.47, 6.33", + "hvac_perf_data_cooling_max_speed_cops": "2.64, 3.46", + "additional_properties": "HeatPump=YORK HMH7|HeatPumpAHRICert#=206921308" }, "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml", @@ -2247,10 +2236,10 @@ "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml", "hvac_perf_data_capacity_type": "Normalized capacity fractions", - "hvac_perf_data_heating_min_speed_capacities": "0.28, 0.12, 0.05", - "hvac_perf_data_heating_max_speed_capacities": "1.0, 0.69, 0.55", - "hvac_perf_data_cooling_min_speed_capacities": "0.325, 0.37", - "hvac_perf_data_cooling_max_speed_capacities": "1.0, 1.11" + "hvac_perf_data_heating_min_speed_capacities": "0.28, 0.10, 0.03", + "hvac_perf_data_heating_max_speed_capacities": "0.99, 0.68, 0.55", + "hvac_perf_data_cooling_min_speed_capacities": "0.33, 0.37", + "hvac_perf_data_cooling_max_speed_capacities": "1.0, 1.13" }, "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml", @@ -2276,27 +2265,26 @@ }, "sample_files/base-hvac-boiler-elec-only.xml": { "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "Boiler", "heating_system_fuel": "electricity", - "heating_system_heating_efficiency": 0.98, + "heating_system": "Electric Boiler, 98% AFUE", "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, "cooling_system_fraction_cool_load_served": 0 }, "sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml": { "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "Boiler" + "heating_system": "Fuel Boiler, 92% AFUE" }, "sample_files/base-hvac-boiler-gas-only.xml": { "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "Boiler", + "heating_system":"Fuel Boiler, 92% AFUE", "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, "cooling_system_fraction_cool_load_served": 0 }, "sample_files/base-hvac-boiler-gas-only-pilot.xml": { "parent_hpxml": "sample_files/base-hvac-boiler-gas-only.xml", - "heating_system_pilot_light": 600 + "heating_system": "Fuel Boiler, 92% AFUE, 600 BTUh Pilot Light" }, "sample_files/base-hvac-boiler-oil-only.xml": { "parent_hpxml": "sample_files/base-hvac-boiler-gas-only.xml", @@ -2312,8 +2300,7 @@ }, "sample_files/base-hvac-central-ac-only-1-speed.xml": { "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "none", - "heating_system_heating_efficiency": 0, + "heating_system": "None", "heating_system_fraction_heat_load_served": 0 }, "sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml": { @@ -2345,15 +2332,15 @@ "sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml": { "parent_hpxml": "sample_files/base-hvac-central-ac-only-var-speed.xml", "cooling_system_cooling_compressor_type": "variable speed", - "cooling_system_cooling_efficiency": 17.25, + "cooling_system_cooling_efficiency": 17.5, "cooling_system_cooling_capacity": 36000, "hvac_perf_data_capacity_type": "Absolute capacities", "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 82.0", - "hvac_perf_data_cooling_min_speed_capacities": "11700, 13200", - "hvac_perf_data_cooling_max_speed_capacities": "36000, 40000", - "hvac_perf_data_cooling_min_speed_cops": "4.57, 6.34", - "hvac_perf_data_cooling_max_speed_cops": "2.71, 3.53", - "additional_properties": "HeatPump=YORK HMH7|HeatPumpAHRICert#=208613158" + "hvac_perf_data_cooling_min_speed_capacities": "11900, 13400", + "hvac_perf_data_cooling_max_speed_capacities": "36000, 40500", + "hvac_perf_data_cooling_min_speed_cops": "4.47, 6.33", + "hvac_perf_data_cooling_max_speed_cops": "2.64, 3.46", + "additional_properties": "HeatPump=YORK HMH7|HeatPumpAHRICert#=206921308" }, "sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml": { "parent_hpxml": "sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml", @@ -2477,9 +2464,8 @@ }, "sample_files/base-hvac-elec-resistance-only.xml": { "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "ElectricResistance", "heating_system_fuel": "electricity", - "heating_system_heating_efficiency": 1, + "heating_system": "Electric Baseboard, 100% Efficiency", "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, "cooling_system_fraction_cool_load_served": 0 @@ -2491,8 +2477,7 @@ }, "sample_files/base-hvac-evap-cooler-only.xml": { "parent_hpxml": "sample_files/base-hvac-evap-cooler-furnace-gas.xml", - "heating_system_type": "none", - "heating_system_heating_efficiency": 0, + "heating_system": "None", "heating_system_fraction_heat_load_served": 0 }, "sample_files/base-hvac-evap-cooler-only-ducted.xml": { @@ -2502,14 +2487,13 @@ }, "sample_files/base-hvac-fireplace-wood-only.xml": { "parent_hpxml": "sample_files/base-hvac-stove-oil-only.xml", - "heating_system_type": "Fireplace", + "heating_system": "Fireplace, 80% Efficiency", "heating_system_fuel": "wood" }, "sample_files/base-hvac-floor-furnace-propane-only.xml": { "parent_hpxml": "sample_files/base-hvac-stove-oil-only.xml", - "heating_system_type": "FloorFurnace", "heating_system_fuel": "propane", - "heating_system_pilot_light": 600 + "heating_system": "Fuel Floor Furnace, 80% AFUE, 600 BTUh Pilot Light" }, "sample_files/base-hvac-furnace-coal-only.xml": { "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml", @@ -2518,12 +2502,12 @@ "sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_fuel": "electricity", - "heating_system_heating_efficiency": 1 + "heating_system": "Electric Furnace, 100% AFUE" }, "sample_files/base-hvac-furnace-elec-only.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_fuel": "electricity", - "heating_system_heating_efficiency": 0.98, + "heating_system": "Electric Furnace, 98% AFUE", "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, "cooling_system_fraction_cool_load_served": 0 @@ -2557,7 +2541,7 @@ }, "sample_files/base-hvac-furnace-gas-only-pilot.xml": { "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml", - "heating_system_pilot_light": 600 + "heating_system": "Fuel Furnace, 92% AFUE, 600 BTUh Pilot Light" }, "sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml": { "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml", @@ -2602,8 +2586,7 @@ }, "sample_files/base-hvac-ground-to-air-heat-pump.xml": { "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "none", - "heating_system_heating_efficiency": 0, + "heating_system": "None", "heating_system_fraction_heat_load_served": 0, "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, @@ -2687,28 +2670,28 @@ }, "sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml": { "parent_hpxml": "sample_files/base.xml", - "heating_system_airflow_defect_ratio": -0.25, + "heating_system": "Fuel Furnace, 92% AFUE, Airflow Defect Ratio", "cooling_system_airflow_defect_ratio": -0.25, "cooling_system_charge_defect_ratio": -0.25, "hvac_blower_fan_watts_per_cfm": 0.365 }, "sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml": { "parent_hpxml": "sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml", - "heating_system_airflow_defect_ratio": -0.25, + "heating_system": "Fuel Furnace, 92% AFUE, Airflow Defect Ratio", "cooling_system_airflow_defect_ratio": -0.25, "cooling_system_charge_defect_ratio": -0.25, "hvac_blower_fan_watts_per_cfm": 0.365 }, "sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml": { "parent_hpxml": "sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml", - "heating_system_airflow_defect_ratio": -0.25, + "heating_system": "Fuel Furnace, 92% AFUE, Airflow Defect Ratio", "cooling_system_airflow_defect_ratio": -0.25, "cooling_system_charge_defect_ratio": -0.25, "hvac_blower_fan_watts_per_cfm": 0.365 }, "sample_files/base-hvac-install-quality-furnace-gas-only.xml": { "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml", - "heating_system_airflow_defect_ratio": -0.25, + "heating_system": "Fuel Furnace, 92% AFUE, Airflow Defect Ratio", "hvac_blower_fan_watts_per_cfm": 0.365 }, "sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml": { @@ -2731,8 +2714,7 @@ }, "sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml": { "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "none", - "heating_system_heating_efficiency": 0, + "heating_system": "None", "heating_system_fraction_heat_load_served": 0, "cooling_system_type": "mini-split", "cooling_system_cooling_compressor_type": null, @@ -2751,27 +2733,26 @@ "sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml", "cooling_system_cooling_compressor_type": "variable speed", - "cooling_system_cooling_efficiency": 21.5, + "cooling_system_cooling_efficiency": 17.0, "cooling_system_cooling_capacity": 36000, "hvac_perf_data_capacity_type": "Absolute capacities", "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 82.0", - "hvac_perf_data_cooling_min_speed_capacities": "10372, 19456", - "hvac_perf_data_cooling_max_speed_capacities": "42653, 40093", - "hvac_perf_data_cooling_min_speed_cops": "4.05, 8.03", - "hvac_perf_data_cooling_max_speed_cops": "3.27, 5.52", - "additional_properties": "HeatPump=Bosch Climate 5000|HeatPumpAHRICert#=203991186" + "hvac_perf_data_cooling_min_speed_capacities": "9100, 9900", + "hvac_perf_data_cooling_max_speed_capacities": "36400, 43300", + "hvac_perf_data_cooling_min_speed_cops": "3.76, 4.61", + "hvac_perf_data_cooling_max_speed_cops": "2.45, 3.51", + "additional_properties": "HeatPump=Midea|HeatPumpAHRICert#=207683365" }, "sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml", "cooling_system_cooling_capacity": null, "hvac_perf_data_capacity_type": "Normalized capacity fractions", - "hvac_perf_data_cooling_min_speed_capacities": "0.255, 0.28", - "hvac_perf_data_cooling_max_speed_capacities": "1.0, 1.033" + "hvac_perf_data_cooling_min_speed_capacities": "0.25, 0.28", + "hvac_perf_data_cooling_max_speed_capacities": "1.01, 1.20" }, "sample_files/base-hvac-mini-split-heat-pump-ducted.xml": { "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "none", - "heating_system_heating_efficiency": 0, + "heating_system": "None", "heating_system_fraction_heat_load_served": 0, "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, @@ -2870,30 +2851,30 @@ "heat_pump_cooling_compressor_type": "variable speed", "heat_pump_heating_capacity_retention_fraction": null, "heat_pump_heating_capacity_retention_temp": null, - "heat_pump_cooling_efficiency": 21.5, - "heat_pump_heating_efficiency": 10.5, + "heat_pump_cooling_efficiency": 17.0, + "heat_pump_heating_efficiency": 10.0, "hvac_perf_data_capacity_type": "Absolute capacities", - "hvac_perf_data_heating_outdoor_temperatures": "47.0, 17.0, 5.0", - "hvac_perf_data_heating_min_speed_capacities": "12143, 7414, 8130", - "hvac_perf_data_heating_max_speed_capacities": "56499, 43387, 36037", - "hvac_perf_data_heating_min_speed_cops": "4.81, 1.96, 1.71", - "hvac_perf_data_heating_max_speed_cops": "3.17, 2.31, 1.96", + "hvac_perf_data_heating_outdoor_temperatures": "47.0, 17.0, 5.0, -13.0", + "hvac_perf_data_heating_min_speed_capacities": "11400, 5600, 3600, 2600", + "hvac_perf_data_heating_max_speed_capacities": "46500, 25000, 22000, 16000", + "hvac_perf_data_heating_min_speed_cops": "3.48, 2.78, 1.88, 1.52", + "hvac_perf_data_heating_max_speed_cops": "2.75, 2.11, 1.8, 1.31", "hvac_perf_data_cooling_outdoor_temperatures": "95.0, 82.0", - "hvac_perf_data_cooling_min_speed_capacities": "10372, 19456", - "hvac_perf_data_cooling_max_speed_capacities": "42653, 40093", - "hvac_perf_data_cooling_min_speed_cops": "4.05, 8.03", - "hvac_perf_data_cooling_max_speed_cops": "3.27, 5.52", - "additional_properties": "HeatPump=Bosch Climate 5000|HeatPumpAHRICert#=203991186" + "hvac_perf_data_cooling_min_speed_capacities": "9100, 9900", + "hvac_perf_data_cooling_max_speed_capacities": "36400, 43300", + "hvac_perf_data_cooling_min_speed_cops": "3.76, 4.61", + "hvac_perf_data_cooling_max_speed_cops": "2.45, 3.51", + "additional_properties": "HeatPump=Midea|HeatPumpAHRICert#=207683365" }, "sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml", "heat_pump_heating_capacity": null, "heat_pump_cooling_capacity": null, "hvac_perf_data_capacity_type": "Normalized capacity fractions", - "hvac_perf_data_heating_min_speed_capacities": "0.34, 0.21, 0.23", - "hvac_perf_data_heating_max_speed_capacities": "1.57, 1.21, 1.00", - "hvac_perf_data_cooling_min_speed_capacities": "0.29, 0.54", - "hvac_perf_data_cooling_max_speed_capacities": "1.18, 1.11" + "hvac_perf_data_heating_min_speed_capacities": "0.30, 0.15, 0.09, 0.07", + "hvac_perf_data_heating_max_speed_capacities": "1.22, 0.66, 0.58, 0.42", + "hvac_perf_data_cooling_min_speed_capacities": "0.25, 0.28", + "hvac_perf_data_cooling_max_speed_capacities": "1.01, 1.20" }, "sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless.xml" @@ -2940,8 +2921,7 @@ }, "sample_files/base-hvac-none.xml": { "parent_hpxml": "sample_files/base-location-honolulu-hi.xml", - "heating_system_type": "none", - "heating_system_heating_efficiency": 0, + "heating_system": "None", "heating_system_fraction_heat_load_served": 0, "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, @@ -2949,8 +2929,7 @@ }, "sample_files/base-hvac-ptac.xml": { "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "none", - "heating_system_heating_efficiency": 0, + "heating_system": "None", "heating_system_fraction_heat_load_served": 0, "cooling_system_type": "packaged terminal air conditioner", "cooling_system_cooling_efficiency_type": "EER", @@ -3007,8 +2986,7 @@ }, "sample_files/base-hvac-room-ac-only.xml": { "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "none", - "heating_system_heating_efficiency": 0, + "heating_system": "None", "heating_system_fraction_heat_load_served": 0, "cooling_system_type": "room air conditioner", "cooling_system_cooling_efficiency_type": "EER", @@ -3073,17 +3051,15 @@ }, "sample_files/base-hvac-space-heater-gas-only.xml": { "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "SpaceHeater", - "heating_system_heating_efficiency": 1, + "heating_system": "Space Heater, 100% Efficiency", "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, "cooling_system_fraction_cool_load_served": 0 }, "sample_files/base-hvac-stove-oil-only.xml": { "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "Stove", "heating_system_fuel": "fuel oil", - "heating_system_heating_efficiency": 0.8, + "heating_system": "Stove, 80% Efficiency", "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, "cooling_system_fraction_cool_load_served": 0 @@ -3101,9 +3077,8 @@ }, "sample_files/base-hvac-wall-furnace-elec-only.xml": { "parent_hpxml": "sample_files/base.xml", - "heating_system_type": "WallFurnace", "heating_system_fuel": "electricity", - "heating_system_heating_efficiency": 0.98, + "heating_system": "Electric Wall Furnace, 98% AFUE", "cooling_system_type": "none", "cooling_system_cooling_efficiency": 0, "cooling_system_fraction_cool_load_served": 0 @@ -3423,8 +3398,7 @@ "foundation_wall_insulation_distance_to_bottom": null, "slab_thickness": null, "slab_carpet_fraction": null, - "roof_material_type": null, - "roof_color": "light", + "enclosure_roof_material": null, "wall_siding_type": null, "window_fraction_operable": null, "window_interior_shading_winter": null, @@ -3654,9 +3628,8 @@ "cooling_system_cooling_efficiency_type": "EER", "cooling_system_cooling_efficiency": 8.5, "cooling_system_cooling_capacity": 12000, - "heating_system_type": "ElectricResistance", "heating_system_fuel": "electricity", - "heating_system_heating_efficiency": 1, + "heating_system": "Electric Baseboard, 100% Efficiency", "heating_system_heating_capacity": 12000, "clothes_dryer_present": false }, diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml index 61e733dd98..369cc75adf 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml @@ -54,7 +54,7 @@ YORK HMH7 - 208613158 + 206921308 @@ -344,20 +344,20 @@ 1.0 SEER - 17.25 + 17.5 HSPF - 10.0 + 9.5 95.0 - 0.325 + 0.33 minimum COP - 4.57 + 4.47 @@ -366,7 +366,7 @@ maximum COP - 2.71 + 2.64 @@ -375,16 +375,16 @@ minimum COP - 6.34 + 6.33 82.0 - 1.11 + 1.13 maximum COP - 3.53 + 3.46 @@ -395,43 +395,43 @@ minimum COP - 4.73 + 4.68 47.0 - 1.0 + 0.99 maximum COP - 3.44 + 3.4 17.0 - 0.12 + 0.1 minimum COP - 1.84 + 1.57 17.0 - 0.69 + 0.68 maximum COP - 2.66 + 2.58 5.0 - 0.05 + 0.03 minimum COP - 0.81 + 0.47 @@ -440,7 +440,7 @@ maximum COP - 2.28 + 2.63 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml index d60926bc47..500ac27470 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml @@ -54,7 +54,7 @@ YORK HMH7 - 208613158 + 206921308 @@ -346,65 +346,65 @@ 1.0 SEER - 17.25 + 17.5 HSPF - 10.0 + 9.5 47.0 - 10000.0 + 9900.0 minimum COP - 4.73 + 4.68 47.0 - 36000.0 + 35800.0 maximum COP - 3.44 + 3.4 17.0 - 4200.0 + 3600.0 minimum COP - 1.84 + 1.57 17.0 - 24800.0 + 24600.0 maximum COP - 2.66 + 2.58 5.0 - 1900.0 + 1100.0 minimum COP - 0.81 + 0.47 5.0 - 19900.0 + 19700.0 maximum COP - 2.28 + 2.63 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml index 643f6b070d..e0712e4df8 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml @@ -54,7 +54,7 @@ YORK HMH7 - 208613158 + 206921308 @@ -346,20 +346,20 @@ 1.0 SEER - 17.25 + 17.5 HSPF - 10.0 + 9.5 95.0 - 0.325 + 0.33 minimum COP - 4.57 + 4.47 @@ -368,7 +368,7 @@ maximum COP - 2.71 + 2.64 @@ -377,16 +377,16 @@ minimum COP - 6.34 + 6.33 82.0 - 1.11 + 1.13 maximum COP - 3.53 + 3.46 @@ -397,43 +397,43 @@ minimum COP - 4.73 + 4.68 47.0 - 1.0 + 0.99 maximum COP - 3.44 + 3.4 17.0 - 0.12 + 0.1 minimum COP - 1.84 + 1.57 17.0 - 0.69 + 0.68 maximum COP - 2.66 + 2.58 5.0 - 0.05 + 0.03 minimum COP - 0.81 + 0.47 @@ -442,7 +442,7 @@ maximum COP - 2.28 + 2.63 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml index 8bd4150994..4fdd3bf4bd 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -54,7 +54,7 @@ YORK HMH7 - 208613158 + 206921308 @@ -346,20 +346,20 @@ 1.0 SEER - 17.25 + 17.5 HSPF - 10.0 + 9.5 95.0 - 11700.0 + 11900.0 minimum COP - 4.57 + 4.47 @@ -368,81 +368,81 @@ maximum COP - 2.71 + 2.64 82.0 - 13200.0 + 13400.0 minimum COP - 6.34 + 6.33 82.0 - 40000.0 + 40500.0 maximum COP - 3.53 + 3.46 47.0 - 10000.0 + 9900.0 minimum COP - 4.73 + 4.68 47.0 - 36000.0 + 35800.0 maximum COP - 3.44 + 3.4 17.0 - 4200.0 + 3600.0 minimum COP - 1.84 + 1.57 17.0 - 24800.0 + 24600.0 maximum COP - 2.66 + 2.58 5.0 - 1900.0 + 1100.0 minimum COP - 0.81 + 0.47 5.0 - 19900.0 + 19700.0 maximum COP - 2.28 + 2.63 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml index 64061bc4b8..994329cc6c 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml @@ -54,7 +54,7 @@ YORK HMH7 - 208613158 + 206921308 @@ -334,7 +334,7 @@ 1.0 SEER - 17.25 + 17.5 0.78 @@ -344,7 +344,7 @@ minimum COP - 4.57 + 4.47 @@ -353,7 +353,7 @@ maximum COP - 2.71 + 2.64 @@ -362,7 +362,7 @@ minimum COP - 6.34 + 6.33 @@ -371,7 +371,7 @@ maximum COP - 3.53 + 3.46 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml index 2f78b33346..e0e4908ce7 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml @@ -54,7 +54,7 @@ YORK HMH7 - 208613158 + 206921308 @@ -335,17 +335,17 @@ 1.0 SEER - 17.25 + 17.5 0.78 95.0 - 11700.0 + 11900.0 minimum COP - 4.57 + 4.47 @@ -354,25 +354,25 @@ maximum COP - 2.71 + 2.64 82.0 - 13200.0 + 13400.0 minimum COP - 6.34 + 6.33 82.0 - 40000.0 + 40500.0 maximum COP - 3.53 + 3.46 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml index a47d877bf5..8e573d1eb6 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -54,7 +54,7 @@ YORK HMH7 - 208613158 + 206921308 @@ -346,20 +346,20 @@ 1.0 SEER - 17.25 + 17.5 HSPF - 10.0 + 9.5 95.0 - 11700.0 + 11900.0 minimum COP - 4.57 + 4.47 @@ -368,81 +368,81 @@ maximum COP - 2.71 + 2.64 82.0 - 13200.0 + 13400.0 minimum COP - 6.34 + 6.33 82.0 - 40000.0 + 40500.0 maximum COP - 3.53 + 3.46 47.0 - 10000.0 + 9900.0 minimum COP - 4.73 + 4.68 47.0 - 36000.0 + 35800.0 maximum COP - 3.44 + 3.4 17.0 - 4200.0 + 3600.0 minimum COP - 1.84 + 1.57 17.0 - 24800.0 + 24600.0 maximum COP - 2.66 + 2.58 5.0 - 1900.0 + 1100.0 minimum COP - 0.81 + 0.47 5.0 - 19900.0 + 19700.0 maximum COP - 2.28 + 2.63 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml index bce3c5abb6..fb481f924d 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml @@ -53,8 +53,8 @@ - Bosch Climate 5000 - 203991186 + Midea + 207683365 @@ -333,26 +333,26 @@ 1.0 SEER - 21.5 + 17.0 0.73 95.0 - 0.255 + 0.25 minimum COP - 4.05 + 3.76 95.0 - 1.0 + 1.01 maximum COP - 3.27 + 2.45 @@ -361,16 +361,16 @@ minimum COP - 8.03 + 4.61 82.0 - 1.033 + 1.2 maximum COP - 5.52 + 3.51 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml index 593f8514e3..629c2cb414 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml @@ -53,8 +53,8 @@ - Bosch Climate 5000 - 203991186 + Midea + 207683365 @@ -334,44 +334,44 @@ 1.0 SEER - 21.5 + 17.0 0.73 95.0 - 10372.0 + 9100.0 minimum COP - 4.05 + 3.76 95.0 - 42653.0 + 36400.0 maximum COP - 3.27 + 2.45 82.0 - 19456.0 + 9900.0 minimum COP - 8.03 + 4.61 82.0 - 40093.0 + 43300.0 maximum COP - 5.52 + 3.51 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml index de876dc6b8..6f04b9ec76 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml @@ -53,8 +53,8 @@ - Bosch Climate 5000 - 203991186 + Midea + 207683365 @@ -336,103 +336,121 @@ 1.0 SEER - 21.5 + 17.0 HSPF - 10.5 + 10.0 95.0 - 0.29 + 0.25 minimum COP - 4.05 + 3.76 95.0 - 1.18 + 1.01 maximum COP - 3.27 + 2.45 82.0 - 0.54 + 0.28 minimum COP - 8.03 + 4.61 82.0 - 1.11 + 1.2 maximum COP - 5.52 + 3.51 47.0 - 0.34 + 0.3 minimum COP - 4.81 + 3.48 47.0 - 1.57 + 1.22 maximum COP - 3.17 + 2.75 17.0 - 0.21 + 0.15 minimum COP - 1.96 + 2.78 17.0 - 1.21 + 0.66 maximum COP - 2.31 + 2.11 5.0 - 0.23 + 0.09 minimum COP - 1.71 + 1.88 5.0 - 1.0 + 0.58 maximum COP - 1.96 + 1.8 + + + + -13.0 + 0.07 + minimum + + COP + 1.52 + + + + -13.0 + 0.42 + maximum + + COP + 1.31 diff --git a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml index 8e92cef618..5b660148e3 100644 --- a/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml +++ b/resources/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml @@ -53,8 +53,8 @@ - Bosch Climate 5000 - 203991186 + Midea + 207683365 @@ -338,103 +338,121 @@ 1.0 SEER - 21.5 + 17.0 HSPF - 10.5 + 10.0 95.0 - 10372.0 + 9100.0 minimum COP - 4.05 + 3.76 95.0 - 42653.0 + 36400.0 maximum COP - 3.27 + 2.45 82.0 - 19456.0 + 9900.0 minimum COP - 8.03 + 4.61 82.0 - 40093.0 + 43300.0 maximum COP - 5.52 + 3.51 47.0 - 12143.0 + 11400.0 minimum COP - 4.81 + 3.48 47.0 - 56499.0 + 46500.0 maximum COP - 3.17 + 2.75 17.0 - 7414.0 + 5600.0 minimum COP - 1.96 + 2.78 17.0 - 43387.0 + 25000.0 maximum COP - 2.31 + 2.11 5.0 - 8130.0 + 3600.0 minimum COP - 1.71 + 1.88 5.0 - 36037.0 + 22000.0 maximum COP - 1.96 + 1.8 + + + + -13.0 + 2600.0 + minimum + + COP + 1.52 + + + + -13.0 + 16000.0 + maximum + + COP + 1.31 diff --git a/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw b/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw index ef48e709fb..06430d5b90 100644 --- a/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw +++ b/resources/hpxml-measures/workflow/template-build-and-run-hpxml-with-stochastic-occupancy.osw @@ -50,8 +50,7 @@ "geometry_unit_back_wall_is_adiabatic": false, "heating_system_fuel": "natural gas", "heating_system_heating_capacity": 36000.0, - "heating_system_heating_efficiency": 0.92, - "heating_system_type": "Furnace", + "heating_system": "Fuel Furnace, 92% AFUE", "hpxml_path": "../built.xml", "hvac_control_cooling_weekday_setpoint": "78", "hvac_control_cooling_weekend_setpoint": "78", diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_simulations_bills.csv b/resources/hpxml-measures/workflow/tests/base_results/results_simulations_bills.csv index 0894e24929..20ddad94cb 100644 --- a/resources/hpxml-measures/workflow/tests/base_results/results_simulations_bills.csv +++ b/resources/hpxml-measures/workflow/tests/base_results/results_simulations_bills.csv @@ -211,10 +211,10 @@ base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xm base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1871.49,144.0,1423.34,0.0,1567.34,144.0,160.15,304.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,1833.07,144.0,1364.66,0.0,1508.66,144.0,180.41,324.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1877.12,144.0,1429.09,0.0,1573.09,144.0,160.03,304.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,1724.6,144.0,1580.6,0.0,1724.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,1707.5,144.0,1563.5,0.0,1707.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,1705.2,144.0,1561.2,0.0,1705.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,1704.72,144.0,1560.72,0.0,1704.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,1732.74,144.0,1588.74,0.0,1732.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,1716.15,144.0,1572.15,0.0,1716.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,1713.83,144.0,1569.83,0.0,1713.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,1714.94,144.0,1570.94,0.0,1714.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,1654.67,144.0,1510.67,0.0,1654.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,1691.96,144.0,1547.96,0.0,1691.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-air-to-air-heat-pump-var-speed-research-features.xml,1706.6,144.0,1562.6,0.0,1706.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, @@ -233,8 +233,8 @@ base-hvac-central-ac-only-1-speed-autosize-factor.xml,1417.34,144.0,1273.34,0.0, base-hvac-central-ac-only-1-speed-seer2.xml,1428.27,144.0,1284.27,0.0,1428.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-central-ac-only-1-speed.xml,1428.74,144.0,1284.74,0.0,1428.74,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-central-ac-only-2-speed.xml,1368.6,144.0,1224.6,0.0,1368.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,1383.91,144.0,1239.91,0.0,1383.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-hvac-central-ac-only-var-speed-detailed-performance.xml,1359.2,144.0,1215.2,0.0,1359.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,1385.14,144.0,1241.14,0.0,1385.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-central-ac-only-var-speed-detailed-performance.xml,1359.44,144.0,1215.44,0.0,1359.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,1345.03,144.0,1201.03,0.0,1345.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-central-ac-only-var-speed.xml,1344.67,144.0,1200.67,0.0,1344.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1874.58,144.0,1730.58,0.0,1874.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, @@ -285,7 +285,7 @@ base-hvac-ground-to-air-heat-pump-heating-only.xml,1482.9,144.0,1338.9,0.0,1482. base-hvac-ground-to-air-heat-pump.xml,1602.25,144.0,1458.25,0.0,1602.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1952.54,144.0,1808.54,0.0,1952.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1770.1,144.0,1626.1,0.0,1770.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1837.51,144.0,1693.51,0.0,1837.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1847.55,144.0,1703.55,0.0,1847.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1772.98,144.0,1628.98,0.0,1772.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1886.25,144.0,1332.86,0.0,1476.86,144.0,265.39,409.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1829.05,144.0,1275.66,0.0,1419.66,144.0,265.39,409.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -295,8 +295,8 @@ base-hvac-install-quality-ground-to-air-heat-pump.xml,1687.58,144.0,1543.58,0.0, base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1365.03,144.0,1221.03,0.0,1365.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1663.55,144.0,1519.55,0.0,1663.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,1340.97,144.0,1196.97,0.0,1340.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,1329.71,144.0,1185.71,0.0,1329.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,1329.01,144.0,1185.01,0.0,1329.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,1373.16,144.0,1229.16,0.0,1373.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,1357.07,144.0,1213.07,0.0,1357.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ductless.xml,1341.22,144.0,1197.22,0.0,1341.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1314.01,144.0,1170.01,0.0,1314.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,1646.05,144.0,1502.05,0.0,1646.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -312,8 +312,8 @@ base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1565.72,144.0,1421. base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1714.01,144.0,1327.91,0.0,1471.91,144.0,98.1,242.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1705.44,144.0,1320.66,0.0,1464.66,144.0,96.78,240.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1821.81,144.0,1318.24,0.0,1462.24,0.0,0.0,0.0,0.0,359.57,359.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,1558.28,144.0,1414.28,0.0,1558.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1567.21,144.0,1423.21,0.0,1567.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,1616.03,144.0,1472.03,0.0,1616.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1604.49,144.0,1460.49,0.0,1604.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1537.55,144.0,1393.55,0.0,1537.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,1537.55,144.0,1393.55,0.0,1537.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-multiple.xml,2584.95,144.0,1977.0,0.0,2121.0,144.0,86.69,230.69,0.0,118.75,118.75,0.0,114.51,114.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_simulations_energy.csv b/resources/hpxml-measures/workflow/tests/base_results/results_simulations_energy.csv index e0a82f8fc2..fbb43fce9b 100644 --- a/resources/hpxml-measures/workflow/tests/base_results/results_simulations_energy.csv +++ b/resources/hpxml-measures/workflow/tests/base_results/results_simulations_energy.csv @@ -211,10 +211,10 @@ base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xm base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,54.402,54.402,39.103,39.103,15.299,0.0,0.0,0.0,0.0,0.0,5.458,0.588,0.0,0.058,2.452,0.398,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,54.725,54.725,37.491,37.491,17.234,0.0,0.0,0.0,0.0,0.0,4.624,0.052,0.0,0.513,2.067,0.084,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.548,54.548,39.261,39.261,15.287,0.0,0.0,0.0,0.0,0.0,5.239,0.556,0.0,0.455,2.462,0.398,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,43.424,43.424,43.424,43.424,0.0,0.0,0.0,0.0,0.0,0.0,9.163,0.893,0.294,0.016,2.769,0.139,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,42.954,42.954,42.954,42.954,0.0,0.0,0.0,0.0,0.0,0.0,9.102,0.814,0.09,0.005,2.695,0.098,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,42.891,42.891,42.891,42.891,0.0,0.0,0.0,0.0,0.0,0.0,9.133,0.806,0.092,0.006,2.608,0.095,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,42.878,42.878,42.878,42.878,0.0,0.0,0.0,0.0,0.0,0.0,9.12,0.812,0.089,0.005,2.604,0.097,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,43.647,43.647,43.647,43.647,0.0,0.0,0.0,0.0,0.0,0.0,9.363,0.903,0.302,0.016,2.774,0.139,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,43.191,43.191,43.191,43.191,0.0,0.0,0.0,0.0,0.0,0.0,9.347,0.838,0.098,0.006,2.655,0.098,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,43.128,43.128,43.128,43.128,0.0,0.0,0.0,0.0,0.0,0.0,9.351,0.825,0.094,0.005,2.606,0.096,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,43.158,43.158,43.158,43.158,0.0,0.0,0.0,0.0,0.0,0.0,9.368,0.836,0.097,0.006,2.606,0.095,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,41.503,41.503,41.503,41.503,0.0,0.0,0.0,0.0,0.0,0.0,8.21,0.478,0.37,0.018,2.17,0.105,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,42.527,42.527,42.527,42.527,0.0,0.0,0.0,0.0,0.0,0.0,9.74,0.25,0.033,0.003,2.26,0.091,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-air-to-air-heat-pump-var-speed-research-features.xml,42.929,42.929,42.929,42.929,0.0,0.0,0.0,0.0,0.0,0.0,8.341,0.464,1.761,0.016,2.1,0.098,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -233,8 +233,8 @@ base-hvac-central-ac-only-1-speed-autosize-factor.xml,34.982,34.982,34.982,34.98 base-hvac-central-ac-only-1-speed-seer2.xml,35.283,35.283,35.283,35.283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.346,0.908,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-1-speed.xml,35.296,35.296,35.296,35.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.359,0.908,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-2-speed.xml,33.643,33.643,33.643,33.643,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.06,0.554,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,34.064,34.064,34.064,34.064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.793,0.242,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed-detailed-performance.xml,33.385,33.385,33.385,33.385,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.259,0.097,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,34.098,34.098,34.098,34.098,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.827,0.242,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,33.392,33.392,33.392,33.392,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.266,0.097,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,32.996,32.996,32.996,32.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.735,0.232,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-only-var-speed.xml,32.986,32.986,32.986,32.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.73,0.227,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.544,47.544,47.544,47.544,0.0,0.0,0.0,0.0,0.0,0.0,9.877,1.784,0.302,0.03,4.466,0.936,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -285,7 +285,7 @@ base-hvac-ground-to-air-heat-pump-heating-only.xml,36.783,36.783,36.783,36.783,0 base-hvac-ground-to-air-heat-pump.xml,40.063,40.063,40.063,40.063,0.0,0.0,0.0,0.0,0.0,0.0,5.348,1.273,0.0,0.0,2.358,0.934,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,49.686,49.686,49.686,49.686,0.0,0.0,0.0,0.0,0.0,0.0,12.812,1.151,0.685,0.032,4.288,0.568,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,44.674,44.674,44.674,44.674,0.0,0.0,0.0,0.0,0.0,0.0,9.701,0.873,0.614,0.029,2.841,0.465,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,46.526,46.526,46.526,46.526,0.0,0.0,0.0,0.0,0.0,0.0,11.539,0.839,0.305,0.014,3.525,0.155,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,46.802,46.802,46.802,46.802,0.0,0.0,0.0,0.0,0.0,0.0,11.78,0.849,0.321,0.014,3.536,0.152,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,44.753,44.753,44.753,44.753,0.0,0.0,0.0,0.0,0.0,0.0,10.559,0.575,0.632,0.032,2.666,0.139,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,61.97,61.97,36.618,36.618,25.352,0.0,0.0,0.0,0.0,0.0,0.0,0.458,0.0,0.0,5.382,0.627,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,60.398,60.398,35.046,35.046,25.352,0.0,0.0,0.0,0.0,0.0,0.0,0.458,0.0,0.0,3.886,0.552,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -295,8 +295,8 @@ base-hvac-install-quality-ground-to-air-heat-pump.xml,42.407,42.407,42.407,42.40 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.545,33.545,33.545,33.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.341,0.175,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,41.746,41.746,41.746,41.746,0.0,0.0,0.0,0.0,0.0,0.0,8.463,0.329,0.12,0.007,2.595,0.082,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,32.884,32.884,32.884,32.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.795,0.06,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,32.575,32.575,32.575,32.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.495,0.051,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,32.556,32.556,32.556,32.556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.523,0.004,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,33.769,33.769,33.769,33.769,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.692,0.048,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,33.327,33.327,33.327,33.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.29,0.008,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-air-conditioner-only-ductless.xml,32.891,32.891,32.891,32.891,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.838,0.024,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.144,32.144,32.144,32.144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.078,0.036,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.903,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,41.266,41.266,41.266,41.266,0.0,0.0,0.0,0.0,0.0,0.0,7.658,0.273,0.0,0.0,3.125,0.059,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -312,8 +312,8 @@ base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,39.059,39.059,39.05 base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,45.853,45.853,36.482,36.482,9.371,0.0,0.0,0.0,0.0,0.0,3.631,0.05,0.0,0.279,2.345,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,45.528,45.528,36.283,36.283,9.245,0.0,0.0,0.0,0.0,0.0,3.431,0.045,0.0,0.275,2.354,0.028,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,48.953,48.953,36.216,36.216,0.0,12.737,0.0,0.0,0.0,0.0,3.627,0.067,0.0,0.0,2.345,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,38.854,38.854,38.854,38.854,0.0,0.0,0.0,0.0,0.0,0.0,6.792,0.076,0.0,0.0,1.83,0.006,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,39.1,39.1,39.1,39.1,0.0,0.0,0.0,0.0,0.0,0.0,7.037,0.04,0.0,0.0,1.87,0.003,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,40.441,40.441,40.441,40.441,0.0,0.0,0.0,0.0,0.0,0.0,7.332,0.134,0.0,0.0,2.808,0.017,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,40.124,40.124,40.124,40.124,0.0,0.0,0.0,0.0,0.0,0.0,7.228,0.084,0.0,0.0,2.657,0.005,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,38.285,38.285,38.285,38.285,0.0,0.0,0.0,0.0,0.0,0.0,5.974,0.057,0.0,0.0,2.098,0.006,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless.xml,38.285,38.285,38.285,38.285,0.0,0.0,0.0,0.0,0.0,0.0,5.974,0.057,0.0,0.0,2.098,0.006,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-multiple.xml,71.101,71.101,54.314,54.314,8.282,4.206,4.298,0.0,0.0,0.0,15.692,1.216,0.444,0.024,6.24,0.549,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.282,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_simulations_hvac.csv b/resources/hpxml-measures/workflow/tests/base_results/results_simulations_hvac.csv index efddea06a7..2dc1f387c3 100644 --- a/resources/hpxml-measures/workflow/tests/base_results/results_simulations_hvac.csv +++ b/resources/hpxml-measures/workflow/tests/base_results/results_simulations_hvac.csv @@ -295,7 +295,7 @@ base-hvac-install-quality-ground-to-air-heat-pump.xml,6.8,91.76,36000.0,36000.0, base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,6.8,91.76,0.0,24000.0,0.0,23530.0,0.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16010.0,2083.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,6.8,91.76,36000.0,36000.0,36000.0,26082.0,2552.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16010.0,2083.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,6.8,91.76,0.0,24000.0,0.0,23530.0,0.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16010.0,2083.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 -base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,6.8,91.76,0.0,15084.0,0.0,23530.0,0.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,13927.0,0.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,6.8,91.76,0.0,14383.0,0.0,23530.0,0.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,13927.0,0.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,6.8,91.76,0.0,36000.0,0.0,23530.0,0.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,13927.0,0.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-hvac-mini-split-air-conditioner-only-ductless.xml,6.8,91.76,0.0,24000.0,0.0,23530.0,0.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,13927.0,0.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,6.8,91.76,0.0,36000.0,0.0,23530.0,0.0,7508.0,0.0,575.0,6918.0,0.0,0.0,1738.0,2171.0,4620.0,0.0,0.0,16010.0,2083.0,7037.0,0.0,207.0,448.0,0.0,0.0,0.0,2293.0,622.0,0.0,3320.0,0.0,0.0,139.0,0.0,-661.0,0.0,800.0 diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_simulations_loads.csv b/resources/hpxml-measures/workflow/tests/base_results/results_simulations_loads.csv index 2259d1f3f3..4bd680df65 100644 --- a/resources/hpxml-measures/workflow/tests/base_results/results_simulations_loads.csv +++ b/resources/hpxml-measures/workflow/tests/base_results/results_simulations_loads.csv @@ -211,10 +211,10 @@ base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xm base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,29.603,11.42,15.796,9.07,0.616,0.0,0.0,0.0,3.54,3.9,0.548,7.558,0.686,10.822,-13.633,0.0,0.0,0.0,8.343,-0.128,6.992,0.0,0.772,0.0,11.05,-8.533,-2.68,0.0,-0.031,-0.163,-0.011,2.841,0.041,-0.546,10.775,0.0,0.0,0.0,-6.131,-0.124,-1.013,-3.829,-0.111,0.0,5.324,7.047,1.827 base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,27.706,14.301,12.803,9.07,0.615,0.0,0.0,0.0,3.608,3.884,0.546,7.575,0.683,10.761,-13.571,0.0,0.0,0.0,8.373,-0.114,5.841,0.0,0.769,0.0,10.117,-8.472,-2.661,0.0,0.067,-0.188,-0.014,2.825,0.035,-0.638,10.837,0.0,0.0,0.0,-6.14,-0.11,-0.861,-3.882,-0.117,0.0,2.158,7.109,1.846 base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,30.017,12.685,15.905,9.07,0.615,0.0,0.0,0.0,3.476,3.885,0.546,7.577,0.683,10.763,-13.571,0.0,0.0,0.0,8.377,-0.114,6.056,0.0,0.769,0.0,12.331,-8.472,-2.661,0.0,-0.057,-0.188,-0.014,2.826,0.035,-0.636,10.837,0.0,0.0,0.0,-6.137,-0.11,-0.84,-3.896,-0.117,0.0,5.347,7.109,1.846 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,27.557,0.309,14.607,9.07,0.615,0.0,0.0,0.0,3.574,3.884,0.546,7.577,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.54,0.0,0.77,0.0,10.31,-8.475,-2.662,0.0,0.004,-0.188,-0.014,2.828,0.035,-0.632,10.837,0.0,0.0,0.0,-6.136,-0.112,-0.852,-3.888,-0.117,0.0,4.013,7.106,1.845 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,26.71,0.095,13.884,9.07,0.615,0.0,0.0,0.0,3.615,3.884,0.546,7.576,0.683,10.766,-13.571,0.0,0.0,0.0,8.375,-0.116,5.463,0.0,0.77,0.0,9.502,-8.475,-2.662,0.0,0.031,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.855,-3.885,-0.117,0.0,3.266,7.106,1.845 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,26.744,0.098,14.21,9.07,0.615,0.0,0.0,0.0,3.612,3.884,0.546,7.576,0.683,10.766,-13.571,0.0,0.0,0.0,8.375,-0.116,5.462,0.0,0.77,0.0,9.54,-8.475,-2.662,0.0,0.02,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.854,-3.886,-0.117,0.0,3.603,7.106,1.845 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,26.709,0.094,14.214,9.07,0.615,0.0,0.0,0.0,3.615,3.884,0.546,7.576,0.683,10.766,-13.571,0.0,0.0,0.0,8.375,-0.116,5.463,0.0,0.77,0.0,9.501,-8.475,-2.662,0.0,0.02,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.854,-3.886,-0.117,0.0,3.607,7.106,1.845 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,27.586,0.318,14.591,9.07,0.615,0.0,0.0,0.0,3.573,3.884,0.546,7.577,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.548,0.0,0.77,0.0,10.332,-8.475,-2.662,0.0,0.004,-0.188,-0.014,2.828,0.035,-0.632,10.837,0.0,0.0,0.0,-6.136,-0.112,-0.852,-3.888,-0.117,0.0,3.995,7.106,1.845 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,26.908,0.103,13.884,9.07,0.615,0.0,0.0,0.0,3.604,3.884,0.546,7.576,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.472,0.0,0.77,0.0,9.703,-8.475,-2.662,0.0,0.031,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.855,-3.885,-0.117,0.0,3.266,7.106,1.845 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,26.787,0.099,14.192,9.07,0.615,0.0,0.0,0.0,3.61,3.884,0.546,7.576,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.472,0.0,0.77,0.0,9.575,-8.475,-2.662,0.0,0.021,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.854,-3.886,-0.117,0.0,3.584,7.106,1.845 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,26.907,0.103,14.187,9.07,0.615,0.0,0.0,0.0,3.604,3.884,0.546,7.576,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.472,0.0,0.77,0.0,9.702,-8.475,-2.662,0.0,0.021,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.854,-3.886,-0.117,0.0,3.579,7.106,1.845 base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,25.757,0.388,14.285,9.07,0.615,0.0,0.0,0.0,3.696,3.912,0.55,7.6,0.696,10.866,-13.518,0.0,0.0,0.0,8.321,-0.108,5.358,0.0,0.778,0.0,8.442,-8.492,-2.669,0.0,0.057,-0.2,-0.017,2.828,0.032,-0.621,10.83,0.0,0.0,0.0,-6.156,-0.103,-0.82,-3.714,-0.119,0.0,3.485,7.089,1.838 base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,26.02,0.036,13.905,9.07,0.615,0.0,0.0,0.0,3.659,3.884,0.546,7.577,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.351,0.0,0.77,0.0,8.888,-8.475,-2.662,0.0,0.031,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.855,-3.885,-0.117,0.0,3.291,7.106,1.845 base-hvac-air-to-air-heat-pump-var-speed-research-features.xml,25.283,0.252,13.882,9.07,0.615,0.0,0.0,0.0,3.671,3.876,0.544,7.553,0.681,10.741,-13.571,0.0,0.0,0.0,8.339,-0.116,5.353,0.0,0.768,0.0,8.245,-8.475,-2.662,0.0,0.031,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.14,-0.112,-0.855,-3.884,-0.117,0.0,3.266,7.106,1.845 @@ -234,7 +234,7 @@ base-hvac-central-ac-only-1-speed-seer2.xml,0.0,0.0,13.399,9.07,0.666,0.0,0.0,0. base-hvac-central-ac-only-1-speed.xml,0.0,0.0,13.399,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.069,-0.15,-0.009,2.771,0.045,-0.539,10.589,0.0,0.0,0.0,-6.35,-0.119,-0.809,-3.758,-0.11,0.0,3.105,6.958,1.811 base-hvac-central-ac-only-2-speed.xml,0.0,0.0,13.763,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.056,-0.15,-0.009,2.771,0.045,-0.538,10.589,0.0,0.0,0.0,-6.349,-0.119,-0.806,-3.758,-0.11,0.0,3.475,6.958,1.811 base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,0.0,0.0,14.886,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.016,-0.15,-0.009,2.771,0.045,-0.538,10.589,0.0,0.0,0.0,-6.349,-0.119,-0.809,-3.766,-0.11,0.0,4.653,6.958,1.811 -base-hvac-central-ac-only-var-speed-detailed-performance.xml,0.0,0.0,13.904,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.058,-0.15,-0.009,2.771,0.045,-0.539,10.589,0.0,0.0,0.0,-6.35,-0.119,-0.817,-3.76,-0.11,0.0,3.64,6.958,1.811 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,0.0,0.0,13.906,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.058,-0.15,-0.009,2.771,0.045,-0.539,10.589,0.0,0.0,0.0,-6.35,-0.119,-0.817,-3.76,-0.11,0.0,3.643,6.958,1.811 base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,0.0,0.0,14.723,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.02,-0.151,-0.009,2.77,0.044,-0.548,10.577,0.0,0.0,0.0,-6.341,-0.114,-0.811,-3.766,-0.111,0.0,4.484,6.955,1.81 base-hvac-central-ac-only-var-speed.xml,0.0,0.0,14.74,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.022,-0.15,-0.009,2.771,0.045,-0.538,10.589,0.0,0.0,0.0,-6.349,-0.119,-0.809,-3.764,-0.11,0.0,4.497,6.958,1.811 base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,23.106,0.332,13.821,9.07,0.615,0.0,0.0,0.0,3.792,3.883,0.545,7.571,0.683,10.761,-13.571,0.0,0.0,0.0,8.365,-0.116,5.423,0.0,0.77,0.0,5.778,-8.475,-2.662,0.0,0.026,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.847,-3.884,-0.117,0.0,3.188,7.106,1.845 @@ -285,7 +285,7 @@ base-hvac-ground-to-air-heat-pump-heating-only.xml,21.108,0.0,0.0,9.07,0.592,0.0 base-hvac-ground-to-air-heat-pump.xml,21.281,0.0,12.868,9.07,0.615,0.0,0.0,0.0,3.88,3.882,0.545,7.569,0.682,10.759,-13.571,0.0,0.0,0.0,8.36,-0.116,5.226,0.0,0.77,0.0,4.08,-8.475,-2.662,0.0,0.06,-0.188,-0.014,2.826,0.035,-0.633,10.837,0.0,0.0,0.0,-6.139,-0.112,-0.856,-3.882,-0.117,0.0,2.224,7.106,1.845 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,24.751,0.717,13.255,9.07,0.615,0.0,0.0,0.0,3.716,3.883,0.546,7.574,0.683,10.763,-13.571,0.0,0.0,0.0,8.369,-0.116,5.518,0.0,0.77,0.0,7.398,-8.475,-2.662,0.0,0.047,-0.188,-0.014,2.827,0.035,-0.633,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.852,-3.884,-0.117,0.0,2.617,7.106,1.845 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,25.721,0.642,13.573,9.07,0.615,0.0,0.0,0.0,3.671,3.884,0.546,7.575,0.683,10.764,-13.571,0.0,0.0,0.0,8.372,-0.116,5.575,0.0,0.77,0.0,8.346,-8.475,-2.662,0.0,0.037,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.849,-3.884,-0.117,0.0,2.937,7.106,1.845 -base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,28.206,0.318,14.983,9.07,0.615,0.0,0.0,0.0,3.545,3.885,0.546,7.577,0.683,10.766,-13.571,0.0,0.0,0.0,8.377,-0.116,5.577,0.0,0.769,0.0,10.948,-8.475,-2.662,0.0,-0.011,-0.188,-0.014,2.828,0.035,-0.632,10.837,0.0,0.0,0.0,-6.136,-0.112,-0.851,-3.891,-0.117,0.0,4.403,7.106,1.845 +base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,28.235,0.335,14.964,9.07,0.615,0.0,0.0,0.0,3.544,3.885,0.546,7.577,0.683,10.766,-13.571,0.0,0.0,0.0,8.377,-0.116,5.584,0.0,0.769,0.0,10.972,-8.475,-2.662,0.0,-0.011,-0.188,-0.014,2.828,0.035,-0.632,10.837,0.0,0.0,0.0,-6.136,-0.112,-0.851,-3.89,-0.117,0.0,4.383,7.106,1.845 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,27.431,0.664,14.726,9.07,0.615,0.0,0.0,0.0,3.585,3.884,0.546,7.576,0.683,10.766,-13.571,0.0,0.0,0.0,8.376,-0.116,5.496,0.0,0.77,0.0,10.215,-8.475,-2.662,0.0,-0.002,-0.188,-0.014,2.828,0.035,-0.632,10.837,0.0,0.0,0.0,-6.136,-0.112,-0.851,-3.888,-0.117,0.0,4.134,7.106,1.845 base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,23.78,0.0,14.745,9.07,0.615,0.0,0.0,0.0,3.757,3.883,0.545,7.572,0.683,10.762,-13.571,0.0,0.0,0.0,8.367,-0.116,5.282,0.0,0.77,0.0,6.632,-8.475,-2.662,0.0,-0.011,-0.188,-0.014,2.827,0.035,-0.632,10.837,0.0,0.0,0.0,-6.138,-0.112,-0.841,-3.888,-0.117,0.0,4.142,7.106,1.845 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,23.78,0.0,15.197,9.07,0.615,0.0,0.0,0.0,3.757,3.883,0.545,7.572,0.683,10.762,-13.571,0.0,0.0,0.0,8.367,-0.116,5.282,0.0,0.77,0.0,6.632,-8.475,-2.662,0.0,-0.029,-0.188,-0.014,2.828,0.035,-0.632,10.837,0.0,0.0,0.0,-6.137,-0.112,-0.838,-3.888,-0.117,0.0,4.604,7.106,1.845 @@ -295,7 +295,7 @@ base-hvac-install-quality-ground-to-air-heat-pump.xml,22.578,0.0,13.532,9.07,0.6 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,0.0,12.159,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.111,-0.151,-0.009,2.77,0.045,-0.54,10.589,0.0,0.0,0.0,-6.351,-0.119,-0.825,-3.757,-0.11,0.0,1.859,6.958,1.811 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,20.652,0.128,12.079,9.07,0.615,0.0,0.0,0.0,3.915,3.882,0.545,7.568,0.682,10.758,-13.571,0.0,0.0,0.0,8.359,-0.116,5.115,0.0,0.77,0.0,3.534,-8.475,-2.662,0.0,0.096,-0.188,-0.014,2.825,0.035,-0.634,10.837,0.0,0.0,0.0,-6.141,-0.112,-0.863,-3.881,-0.116,0.0,1.416,7.106,1.845 base-hvac-mini-split-air-conditioner-only-ducted.xml,0.0,0.0,11.907,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.125,-0.151,-0.009,2.77,0.045,-0.54,10.589,0.0,0.0,0.0,-6.352,-0.119,-0.825,-3.756,-0.11,0.0,1.594,6.958,1.811 -base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,0.0,0.0,10.397,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.219,-0.152,-0.009,2.767,0.045,-0.542,10.589,0.0,0.0,0.0,-6.355,-0.119,-0.828,-3.753,-0.11,0.0,0.0,6.958,1.811 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,0.0,0.0,10.398,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.219,-0.152,-0.009,2.767,0.045,-0.542,10.589,0.0,0.0,0.0,-6.355,-0.119,-0.828,-3.753,-0.11,0.0,0.0,6.958,1.811 base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,0.0,0.0,10.397,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.219,-0.152,-0.009,2.767,0.045,-0.542,10.589,0.0,0.0,0.0,-6.355,-0.119,-0.828,-3.753,-0.11,0.0,0.0,6.958,1.811 base-hvac-mini-split-air-conditioner-only-ductless.xml,0.0,0.0,10.397,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.219,-0.152,-0.009,2.767,0.045,-0.542,10.589,0.0,0.0,0.0,-6.355,-0.119,-0.828,-3.753,-0.11,0.0,0.0,6.958,1.811 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,0.0,0.0,11.407,9.07,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.155,-0.151,-0.009,2.769,0.045,-0.541,10.589,0.0,0.0,0.0,-6.353,-0.119,-0.826,-3.754,-0.11,0.0,1.067,6.958,1.811 @@ -312,8 +312,8 @@ base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,17.258,0.394,10.74, base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,18.44,7.776,10.655,9.07,0.616,0.0,0.0,0.0,4.123,3.895,0.547,7.546,0.685,10.814,-13.633,0.0,0.0,0.0,8.316,-0.13,6.258,0.0,0.773,0.0,0.116,-8.536,-2.682,0.0,0.205,-0.164,-0.011,2.839,0.041,-0.545,10.775,0.0,0.0,0.0,-6.138,-0.126,-1.035,-3.812,-0.111,0.0,0.0,7.044,1.825 base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,17.64,7.671,10.74,9.07,0.615,0.0,0.0,0.0,4.089,3.88,0.545,7.563,0.682,10.754,-13.571,0.0,0.0,0.0,8.35,-0.116,5.085,0.0,0.77,0.0,0.395,-8.475,-2.662,0.0,0.18,-0.189,-0.014,2.824,0.035,-0.635,10.837,0.0,0.0,0.0,-6.144,-0.112,-0.865,-3.88,-0.117,0.0,0.0,7.106,1.845 base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,18.315,7.642,10.655,9.07,0.616,0.0,0.0,0.0,4.123,3.895,0.547,7.546,0.685,10.814,-13.633,0.0,0.0,0.0,8.316,-0.13,6.248,0.0,0.773,0.0,0.0,-8.536,-2.682,0.0,0.205,-0.164,-0.011,2.839,0.041,-0.545,10.775,0.0,0.0,0.0,-6.138,-0.126,-1.035,-3.812,-0.111,0.0,0.0,7.044,1.825 -base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,17.258,0.0,10.739,9.07,0.615,0.0,0.0,0.0,4.108,3.88,0.545,7.563,0.682,10.754,-13.571,0.0,0.0,0.0,8.349,-0.116,5.08,0.0,0.77,0.0,0.0,-8.475,-2.662,0.0,0.18,-0.189,-0.014,2.823,0.035,-0.635,10.837,0.0,0.0,0.0,-6.145,-0.112,-0.865,-3.88,-0.116,0.0,0.0,7.106,1.845 -base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,17.258,0.0,10.739,9.07,0.615,0.0,0.0,0.0,4.108,3.88,0.545,7.563,0.682,10.754,-13.571,0.0,0.0,0.0,8.349,-0.116,5.08,0.0,0.77,0.0,0.0,-8.475,-2.662,0.0,0.18,-0.189,-0.014,2.823,0.035,-0.635,10.837,0.0,0.0,0.0,-6.145,-0.112,-0.865,-3.88,-0.116,0.0,0.0,7.106,1.845 +base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,17.241,0.0,10.74,9.07,0.615,0.0,0.0,0.0,4.106,3.879,0.545,7.56,0.682,10.751,-13.571,0.0,0.0,0.0,8.344,-0.116,5.077,0.0,0.77,0.0,0.0,-8.475,-2.662,0.0,0.18,-0.189,-0.014,2.823,0.035,-0.635,10.837,0.0,0.0,0.0,-6.145,-0.112,-0.865,-3.879,-0.116,0.0,0.0,7.106,1.845 +base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,17.258,0.0,10.74,9.07,0.615,0.0,0.0,0.0,4.108,3.88,0.545,7.563,0.682,10.754,-13.571,0.0,0.0,0.0,8.349,-0.116,5.08,0.0,0.77,0.0,0.0,-8.475,-2.662,0.0,0.18,-0.189,-0.014,2.824,0.035,-0.635,10.837,0.0,0.0,0.0,-6.144,-0.112,-0.865,-3.88,-0.117,0.0,0.0,7.106,1.845 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,17.258,0.0,10.74,9.07,0.615,0.0,0.0,0.0,4.108,3.88,0.545,7.563,0.682,10.754,-13.571,0.0,0.0,0.0,8.349,-0.116,5.08,0.0,0.77,0.0,0.0,-8.475,-2.662,0.0,0.18,-0.189,-0.014,2.824,0.035,-0.635,10.837,0.0,0.0,0.0,-6.144,-0.112,-0.865,-3.88,-0.117,0.0,0.0,7.106,1.845 base-hvac-mini-split-heat-pump-ductless.xml,17.258,0.0,10.74,9.07,0.615,0.0,0.0,0.0,4.108,3.88,0.545,7.563,0.682,10.754,-13.571,0.0,0.0,0.0,8.349,-0.116,5.08,0.0,0.77,0.0,0.0,-8.475,-2.662,0.0,0.18,-0.189,-0.014,2.824,0.035,-0.635,10.837,0.0,0.0,0.0,-6.144,-0.112,-0.865,-3.88,-0.117,0.0,0.0,7.106,1.845 base-hvac-multiple.xml,38.426,0.468,18.669,9.07,0.616,0.0,0.0,0.0,3.658,3.898,0.548,7.556,0.686,10.823,-13.633,0.0,0.0,0.0,8.337,-0.13,9.461,0.0,0.772,0.0,17.313,-8.536,-2.682,0.0,-0.015,-0.164,-0.011,2.84,0.041,-0.543,10.774,0.0,0.0,0.0,-6.134,-0.126,-0.924,-3.844,-0.111,0.0,8.123,7.044,1.825 diff --git a/resources/hpxml-measures/workflow/tests/base_results/results_simulations_misc.csv b/resources/hpxml-measures/workflow/tests/base_results/results_simulations_misc.csv index 9e7f8839b4..4ee9e5afb4 100644 --- a/resources/hpxml-measures/workflow/tests/base_results/results_simulations_misc.csv +++ b/resources/hpxml-measures/workflow/tests/base_results/results_simulations_misc.csv @@ -211,10 +211,10 @@ base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xm base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1.0,4.0,0.0,1354.7,998.0,11171.5,2563.5,3164.7,3089.1,3164.7,3164.7,3089.1,3164.7,22.934,17.734,0.0 base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,1.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,3337.2,2749.5,3337.2,3337.2,2749.5,3337.2,30.329,16.793,0.0 base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1.0,4.0,0.0,1354.7,998.0,11171.5,2563.5,3213.8,3145.5,3213.8,3213.8,3145.5,3213.8,26.606,17.718,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,5657.5,3709.7,5657.5,5657.5,3709.7,5657.5,24.971,18.341,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,5192.8,3203.1,5192.8,5192.8,3203.1,5192.8,24.671,18.051,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,5209.5,3515.9,5209.5,5209.5,3515.9,5209.5,24.671,18.025,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,5192.9,3511.7,5192.9,5192.9,3511.7,5192.9,24.671,18.025,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,5410.0,3798.4,5410.0,5410.0,3798.4,5410.0,24.951,18.345,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,4896.4,3178.6,4896.4,4896.4,3178.6,4896.4,24.659,18.051,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,4885.4,3591.2,4885.4,4885.4,3591.2,4885.4,24.65,18.028,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,4896.4,3588.6,4896.4,4896.4,3588.6,4896.4,24.659,18.028,0.0 base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,164.167,0.0,0.0,1354.7,998.0,11171.7,2563.6,15866.2,4519.9,15866.2,15866.2,4519.9,15866.2,61.922,18.014,0.0 base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,29.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,5368.2,2912.0,5368.2,5368.2,2912.0,5368.2,26.988,19.45,0.0 base-hvac-air-to-air-heat-pump-var-speed-research-features.xml,158.0,0.0,0.0,1354.7,998.0,11171.5,2563.5,7758.5,2892.1,7758.5,7758.5,2892.1,7758.5,27.266,18.049,0.0 @@ -233,8 +233,8 @@ base-hvac-central-ac-only-1-speed-autosize-factor.xml,0.0,0.0,0.0,1354.7,998.0,1 base-hvac-central-ac-only-1-speed-seer2.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,3584.2,3584.2,1975.2,3584.2,3584.2,0.0,18.55,0.0 base-hvac-central-ac-only-1-speed.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,3590.7,3590.7,1975.2,3590.7,3590.7,0.0,18.55,0.0 base-hvac-central-ac-only-2-speed.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,3109.1,3109.1,1975.2,3109.1,3109.1,0.0,19.007,0.0 -base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,3991.0,3991.0,1975.2,3991.0,3991.0,0.0,18.808,0.0 -base-hvac-central-ac-only-var-speed-detailed-performance.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,3465.0,3465.0,1975.2,3465.0,3465.0,0.0,17.772,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,4076.4,4076.4,1975.2,4076.4,4076.4,0.0,18.808,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,3539.9,3539.9,1975.2,3539.9,3539.9,0.0,17.774,0.0 base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,0.0,9.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,3308.1,3308.1,1975.2,3308.1,3308.1,0.0,22.921,0.0 base-hvac-central-ac-only-var-speed.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,2898.7,2898.7,1975.2,2898.7,2898.7,0.0,18.792,0.0 base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,7225.2,3740.2,7225.2,7225.2,3740.2,7225.2,24.96,18.873,0.0 @@ -285,7 +285,7 @@ base-hvac-ground-to-air-heat-pump-heating-only.xml,0.0,0.0,0.0,1354.7,998.0,1117 base-hvac-ground-to-air-heat-pump.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,3480.4,2854.9,3480.4,3480.4,2854.9,3480.4,22.798,16.315,0.0 base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,7224.8,3762.6,7224.8,7224.8,3762.6,7224.8,25.334,17.381,0.0 base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,7211.6,3322.9,7211.6,7211.6,3322.9,7211.6,25.331,18.691,0.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,5994.9,4167.6,5994.9,5994.9,4167.6,5994.9,25.329,18.649,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,5785.3,4273.6,5785.3,5785.3,4273.6,5785.3,25.318,18.653,0.0 base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,6566.0,3195.2,6566.0,6566.0,3195.2,6566.0,25.383,18.653,0.0 base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,0.0,3.0,0.0,1354.7,998.0,11171.5,2563.5,2051.9,3862.3,3862.3,2051.9,3862.3,3862.3,25.045,17.829,0.0 base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,0.0,4.0,0.0,1354.7,998.0,11171.5,2563.5,2051.9,3522.3,3522.3,2051.9,3522.3,3522.3,25.045,17.916,0.0 @@ -295,8 +295,8 @@ base-hvac-install-quality-ground-to-air-heat-pump.xml,0.0,0.0,0.0,1354.7,998.0,1 base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,3070.1,3070.1,1975.2,3070.1,3070.1,0.0,14.273,0.0 base-hvac-install-quality-mini-split-heat-pump-ducted.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,4924.5,2976.3,4924.5,4924.5,2976.3,4924.5,19.461,14.289,0.0 base-hvac-mini-split-air-conditioner-only-ducted.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,2697.5,2697.5,1975.2,2697.5,2697.5,0.0,14.091,0.0 -base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,3298.3,3298.3,1975.2,3298.3,3298.3,0.0,11.827,0.0 -base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,3344.4,3344.4,1975.2,3344.4,3344.4,0.0,11.827,0.0 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,3247.4,3247.4,1975.2,3247.4,3247.4,0.0,11.827,0.0 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,2749.7,2749.7,1975.2,2749.7,2749.7,0.0,11.824,0.0 base-hvac-mini-split-air-conditioner-only-ductless.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.2,2662.0,2662.0,1975.2,2662.0,2662.0,0.0,11.825,0.0 base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,1925.2,2511.0,2511.0,1925.2,2511.0,2511.0,0.0,13.977,0.0 base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,4131.7,3110.9,4131.7,4131.7,3110.9,4131.7,19.337,14.173,0.0 @@ -312,8 +312,8 @@ base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,0.0,0.0,0.0,1354.7, base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,2934.3,2870.4,2934.3,2934.3,2870.4,2934.3,17.597,12.207,0.0 base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,2852.5,2900.3,2900.3,2852.5,2900.3,2900.3,17.821,12.045,0.0 base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,2934.3,2870.4,2934.3,2934.3,2870.4,2934.3,17.303,12.207,0.0 -base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,3884.6,3290.9,3884.6,3884.6,3290.9,3884.6,16.748,12.044,0.0 -base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,3946.1,3373.3,3946.1,3946.1,3373.3,3946.1,16.748,12.043,0.0 +base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,31.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,3979.5,3130.0,3979.5,3979.5,3130.0,3979.5,14.729,12.044,0.0 +base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,4014.8,2882.8,4014.8,4014.8,2882.8,4014.8,16.748,12.043,0.0 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,3629.4,2679.8,3629.4,3629.4,2679.8,3629.4,16.748,12.043,0.0 base-hvac-mini-split-heat-pump-ductless.xml,0.0,0.0,0.0,1354.7,998.0,11171.6,2563.5,3629.4,2679.8,3629.4,3629.4,2679.8,3629.4,16.748,12.043,0.0 base-hvac-multiple.xml,0.0,9.0,0.0,1354.7,998.0,11171.6,2563.5,7910.3,4290.6,7910.3,7910.3,4290.6,7910.3,46.212,23.117,0.0 diff --git a/resources/options_lookup.tsv b/resources/options_lookup.tsv index 9db8b4687d..a9f64afc80 100644 --- a/resources/options_lookup.tsv +++ b/resources/options_lookup.tsv @@ -9737,79 +9737,79 @@ HVAC Has Zonal Electric Heating No HVAC Has Zonal Electric Heating Yes HVAC Heating Autosizing Factor 40% Oversized ResStockArguments heating_system_heating_autosizing_factor=1.4 heating_system_2_heating_autosizing_factor=auto heat_pump_heating_autosizing_factor=auto heat_pump_backup_heating_autosizing_factor=auto HVAC Heating Autosizing Factor None -HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 16, 9.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=single stage -HVAC Heating Efficiency "ASHP, SEER 16, 9.2 HSPF, Separate Backup" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=single stage -HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 20, 11 HSPF, CCHP, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_cooling_compressor_type=variable speed -HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "ASHP, SEER 24, 13 HSPF, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=24 heat_pump_sizing_methodology=MaxLoad heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_cooling_compressor_type=variable speed -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 60% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 60% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 60% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 76% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 76% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 76% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 80% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 80% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 80% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 92.5% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 92.5% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage -HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 92.5% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage -HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system_type=ElectricResistance heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.82 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.95 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system_type=Boiler heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.72 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.76 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.8 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.85 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.9 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.925 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system_type=Furnace heating_system_heating_efficiency=0.96 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.6 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system_type=WallFurnace heating_system_heating_efficiency=0.68 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heating_system_pilot_light=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "GSHP, EER 20.5, COP 4.0" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.0 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.5 heat_pump_sizing_methodology=MaxLoad heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 16, 9.2 HSPF, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=MaxLoad heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false -HVAC Heating Efficiency "MSHP, SEER 16, 9.2 HSPF, Separate Backup, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=MaxLoad heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false heat_pump_compressor_lockout_temp=-20 -HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 20, 11 HSPF, CCHP, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false -HVAC Heating Efficiency "MSHP, SEER 24, 13 HSPF, Max Load" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=24 heat_pump_sizing_methodology=MaxLoad heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false -HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF, Ducted" ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Heating Efficiency None ResStockArguments heating_system_type=none heating_system_heating_efficiency=0 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 10, 6.2 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 10.3, 7.0 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 11.5, 7.5 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=11.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 13, 7.7 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=7.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 13, 8.0 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=13 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 14.3, 8.5 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 15, 8.5 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 15, 9.0 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=15 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 16, 9.0 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 16, 9.2 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=single stage +HVAC Heating Efficiency "ASHP, SEER 16, 9.2 HSPF, Separate Backup" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_compressor_lockout_temp=-20 heat_pump_cooling_compressor_type=single stage +HVAC Heating Efficiency "ASHP, SEER 17, 8.7 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 18, 9.3 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 20, 11 HSPF, CCHP, Max Load" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_cooling_compressor_type=variable speed +HVAC Heating Efficiency "ASHP, SEER 22, 10 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=10 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=22 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "ASHP, SEER 24, 13 HSPF, Max Load" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=24 heat_pump_sizing_methodology=MaxLoad heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_cooling_compressor_type=variable speed +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 14, 8.2 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=auto heat_pump_heating_capacity_retention_temp=auto heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 60% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 60% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 60% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.60 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 76% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 76% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 76% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.76 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 80% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 80% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 80% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.80 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 92.5% AFUE Fuel Oil, 5F-40F switchover band" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=fuel oil heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 92.5% AFUE NG, 5F-40F switchover band" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=natural gas heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage +HVAC Heating Efficiency "Dual-Fuel ASHP, SEER 16, 9.2 HSPF, Integrated Backup, 92.5% AFUE Propane, 5F-40F switchover band" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=air-to-air heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=propane heat_pump_backup_heating_efficiency=0.925 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=40 heat_pump_compressor_lockout_temp=5 heat_pump_cooling_compressor_type=single stage +HVAC Heating Efficiency "Electric Baseboard, 100% Efficiency" ResStockArguments heating_system=Electric Baseboard, 100% Efficiency heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Boiler, 100% AFUE" ResStockArguments heating_system=Electric Boiler, 100% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Furnace, 100% AFUE" ResStockArguments heating_system=Electric Furnace, 100% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Electric Wall Furnace, 100% AFUE" ResStockArguments heating_system=Electric Wall Furnace, 100% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 72% AFUE" ResStockArguments heating_system=Fuel Boiler, 72% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 76% AFUE" ResStockArguments heating_system=Fuel Boiler, 76% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 80% AFUE" ResStockArguments heating_system=Fuel Boiler, 80% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 82% AFUE" ResStockArguments heating_system=Fuel Boiler, 82% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 85% AFUE" ResStockArguments heating_system=Fuel Boiler, 85% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 90% AFUE" ResStockArguments heating_system=Fuel Boiler, 90% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 95% AFUE, OAT Reset" ResStockArguments heating_system=Fuel Boiler, 95% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Boiler, 96% AFUE" ResStockArguments heating_system=Fuel Boiler, 96% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 60% AFUE" ResStockArguments heating_system=Fuel Furnace, 60% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 68% AFUE" ResStockArguments heating_system=Fuel Furnace, 68% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 72% AFUE" ResStockArguments heating_system=Fuel Furnace, 72% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 76% AFUE" ResStockArguments heating_system=Fuel Furnace, 76% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 80% AFUE" ResStockArguments heating_system=Fuel Furnace, 80% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 85% AFUE" ResStockArguments heating_system=Fuel Furnace, 85% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 90% AFUE" ResStockArguments heating_system=Fuel Furnace, 90% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 92.5% AFUE" ResStockArguments heating_system=Fuel Furnace, 92.5% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Furnace, 96% AFUE" ResStockArguments heating_system=Fuel Furnace, 96% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 60% AFUE" ResStockArguments heating_system=Fuel Wall Furnace, 60% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "Fuel Wall/Floor Furnace, 68% AFUE" ResStockArguments heating_system=Fuel Wall Furnace, 68% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "GSHP, EER 16.6, COP 3.6" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=3.6 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=16.6 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "GSHP, EER 20.2, COP 4.2" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.2 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.2 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "GSHP, EER 20.5, COP 4.0" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=ground-to-air heat_pump_heating_efficiency_type=COP heat_pump_heating_efficiency=4.0 heat_pump_cooling_efficiency_type=EER heat_pump_cooling_efficiency=20.5 heat_pump_sizing_methodology=MaxLoad heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=vertical geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 14.5, 8.2 HSPF, Ducted" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=8.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=14.5 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 16, 9.2 HSPF, Max Load" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=MaxLoad heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false +HVAC Heating Efficiency "MSHP, SEER 16, 9.2 HSPF, Separate Backup, Max Load" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=16 heat_pump_sizing_methodology=MaxLoad heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=separate heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false heat_pump_compressor_lockout_temp=-20 +HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 17, 9.5 HSPF, Ducted" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.5 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=17.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 18.0, 9.6 HSPF, 60% Conditioned, Ducted" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=9.6 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=18.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=0.6 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=0.6 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.25 heat_pump_heating_capacity_retention_temp=-5 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 20, 11 HSPF, CCHP, Max Load" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=11 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=20 heat_pump_sizing_methodology=MaxLoad heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false +HVAC Heating Efficiency "MSHP, SEER 24, 13 HSPF, Max Load" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=24 heat_pump_sizing_methodology=MaxLoad heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.9 heat_pump_heating_capacity_retention_temp=5 heat_pump_is_ducted=false +HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 25, 12.7 HSPF, Ducted" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=12.7 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=25.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 29.3, 14 HSPF, Ducted" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=14 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=29.3 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=false heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency "MSHP, SEER 33, 13.3 HSPF, Ducted" ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=mini-split heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=13.3 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=33.0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=integrated heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto heat_pump_heating_capacity_retention_fraction=0.5 heat_pump_heating_capacity_retention_temp=-15 heat_pump_is_ducted=true heat_pump_backup_heating_lockout_temp=auto heat_pump_compressor_lockout_temp=auto heat_pump_cooling_compressor_type=auto heat_pump_cooling_sensible_heat_fraction=auto heat_pump_crankcase_heater_watts=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Heating Efficiency None ResStockArguments heating_system=None heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=6.2 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=10 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto HVAC Heating Efficiency Shared Heating HVAC Heating Efficiency Void HVAC Heating Type Ducted Heat Pump @@ -9878,10 +9878,10 @@ HVAC Secondary Heating Partial Space Conditioning Void HVAC Secondary Heating Type Ducted Heating HVAC Secondary Heating Type Non-Ducted Heating HVAC Secondary Heating Type None -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Baseboard heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=1 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto -HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system_type=Shared Boiler w/ Ductless Fan Coil heating_system_heating_efficiency=0.78 heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Electricity" ResStockArguments heating_system=Electric Boiler w/ Baseboard, 100% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Boiler Baseboards Heating Only, Fuel" ResStockArguments heating_system=Fuel Boiler w/ Baseboard, 78% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Electricity" ResStockArguments heating_system=Electric Fan Coil Heating, 100% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto +HVAC Shared Efficiencies "Fan Coil Heating and Cooling, Fuel" ResStockArguments heating_system=Fuel Fan Coil Heating, 78% AFUE heating_system_heating_capacity=auto heating_system_heating_autosizing_limit=auto heating_system_fraction_heat_load_served=1 heating_system_has_flue_or_chimney=auto heat_pump_type=none heat_pump_heating_efficiency_type=HSPF heat_pump_heating_efficiency=0 heat_pump_cooling_efficiency_type=SEER heat_pump_cooling_efficiency=0 heat_pump_sizing_methodology=ACCA heat_pump_backup_sizing_methodology=auto heat_pump_heating_capacity=auto heat_pump_heating_autosizing_limit=auto heat_pump_fraction_heat_load_served=1 heat_pump_cooling_capacity=auto heat_pump_cooling_autosizing_limit=auto heat_pump_fraction_cool_load_served=1 heat_pump_backup_type=none heat_pump_backup_fuel=electricity heat_pump_backup_heating_efficiency=1 heat_pump_backup_heating_capacity=auto heat_pump_backup_heating_autosizing_limit=auto cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_is_ducted=false geothermal_loop_configuration=none geothermal_loop_borefield_configuration=auto geothermal_loop_loop_flow=auto geothermal_loop_boreholes_count=auto geothermal_loop_boreholes_length=auto geothermal_loop_boreholes_spacing=auto geothermal_loop_boreholes_diameter=auto geothermal_loop_grout_type=auto geothermal_loop_pipe_type=auto geothermal_loop_pipe_diameter=auto HVAC Shared Efficiencies Fan Coil Cooling Only ResStockArguments cooling_system_type=mini-split cooling_system_cooling_efficiency_type=SEER cooling_system_cooling_efficiency=13 cooling_system_cooling_capacity=auto cooling_system_cooling_autosizing_limit=auto cooling_system_is_ducted=false HVAC Shared Efficiencies None HVAC Shared Efficiencies Void @@ -13851,28 +13851,28 @@ Refrigerator Void Refrigerator Usage Level 100% Usage ResStockArguments refrigerator_usage_multiplier=1.0 Refrigerator Usage Level 105% Usage ResStockArguments refrigerator_usage_multiplier=1.05 Refrigerator Usage Level 95% Usage ResStockArguments refrigerator_usage_multiplier=0.95 -Roof Material "Asphalt Shingles, Dark" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=dark -Roof Material "Asphalt Shingles, Light" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=light -Roof Material "Asphalt Shingles, Medium" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material "Asphalt Shingles, White or cool colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=reflective -Roof Material "Metal, Cool Colors" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Metal, Dark" ResStockArguments roof_material_type=metal surfacing roof_color=dark -Roof Material "Metal, Light" ResStockArguments roof_material_type=metal surfacing roof_color=light -Roof Material "Metal, Medium" ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material "Metal, White" ResStockArguments roof_material_type=metal surfacing roof_color=reflective -Roof Material "Tile, Clay or Ceramic" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Concrete" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material "Tile, Dark" ResStockArguments roof_material_type=slate or tile shingles roof_color=dark -Roof Material "Tile, Light" ResStockArguments roof_material_type=slate or tile shingles roof_color=light -Roof Material "Tile, Medium" ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material "Tile, White" ResStockArguments roof_material_type=slate or tile shingles roof_color=reflective -Roof Material Composition Shingles ResStockArguments roof_material_type=asphalt or fiberglass shingles roof_color=medium -Roof Material Galvanized Steel ResStockArguments roof_material_type=metal surfacing roof_color=medium -Roof Material Slate ResStockArguments roof_material_type=slate or tile shingles roof_color=medium -Roof Material Wood Shingles ResStockArguments roof_material_type=wood shingles or shakes roof_color=medium +Roof Material "Asphalt Shingles, Dark" ResStockArguments "enclosure_roof_material=Asphalt/Fiberglass Shingles, Dark" +Roof Material "Asphalt Shingles, Light" ResStockArguments "enclosure_roof_material=Asphalt/Fiberglass Shingles, Light" +Roof Material "Asphalt Shingles, Medium" ResStockArguments "enclosure_roof_material=Asphalt/Fiberglass Shingles, Medium" +Roof Material "Asphalt Shingles, White or Cool Colors" ResStockArguments "enclosure_roof_material=Asphalt/Fiberglass Shingles, Reflective" +Roof Material "Composition Shingles, White or Cool Colors" ResStockArguments "enclosure_roof_material=Asphalt/Fiberglass Shingles, Reflective" +Roof Material "Metal, Cool Colors" ResStockArguments "enclosure_roof_material=Metal, Reflective" +Roof Material "Metal, Dark" ResStockArguments "enclosure_roof_material=Metal, Dark" +Roof Material "Metal, Light" ResStockArguments "enclosure_roof_material=Metal, Light" +Roof Material "Metal, Medium" ResStockArguments "enclosure_roof_material=Metal, Medium" +Roof Material "Metal, White" ResStockArguments "enclosure_roof_material=Metal, Reflective" +Roof Material "Tile, Clay or Ceramic" ResStockArguments "enclosure_roof_material=Tile/Slate, Medium" +Roof Material "Tile, Clay or Ceramic, White or Cool Colors" ResStockArguments "enclosure_roof_material=Tile/Slate, Reflective" +Roof Material "Tile, Concrete" ResStockArguments "enclosure_roof_material=Tile/Slate, Medium" +Roof Material "Tile, Concrete, White or Cool Colors" ResStockArguments "enclosure_roof_material=Tile/Slate, Reflective" +Roof Material "Tile, Dark" ResStockArguments "enclosure_roof_material=Tile/Slate, Dark" +Roof Material "Tile, Light" ResStockArguments "enclosure_roof_material=Tile/Slate, Light" +Roof Material "Tile, Medium" ResStockArguments "enclosure_roof_material=Tile/Slate, Medium" +Roof Material "Tile, White" ResStockArguments "enclosure_roof_material=Tile/Slate, Reflective" +Roof Material Composition Shingles ResStockArguments "enclosure_roof_material=Asphalt/Fiberglass Shingles, Medium" +Roof Material Galvanized Steel ResStockArguments "enclosure_roof_material=Metal, Medium" +Roof Material Slate ResStockArguments "enclosure_roof_material=Tile/Slate, Medium" +Roof Material Wood Shingles ResStockArguments "enclosure_roof_material=Wood Shingles/Shakes, Medium" Solar Hot Water "40 sqft, South, 10 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=10 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 Solar Hot Water "40 sqft, South, Latitude - 15 degrees" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=latitude-15 solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0 Solar Hot Water "40 sqft, South, Roof Pitch" ResStockArguments solar_thermal_system_type=hot water solar_thermal_collector_area=40 solar_thermal_collector_loop_type=liquid indirect solar_thermal_collector_type=single glazing black solar_thermal_collector_azimuth=180 solar_thermal_collector_tilt=roofpitch solar_thermal_collector_rated_optical_efficiency=0.77 solar_thermal_collector_rated_thermal_losses=0.793 solar_thermal_storage_volume=auto solar_thermal_solar_fraction=0