diff --git a/Changelog.md b/Changelog.md index 2a668d9ee..08dc8e538 100644 --- a/Changelog.md +++ b/Changelog.md @@ -5,9 +5,10 @@ __New Features__ - Updates to HPXML v5.0-rc1. - **Breaking change**: HPXML namespace changed from http://hpxmlonline.com/2023/09 to http://hpxmlonline.com/2025/12. - Updated DX heat pump and air conditioner models per HERS Addendum 103. + - Compressor lockout temperatures for Rated Home defaults and Reference Home updated from 0F (single/two stage) and -20F (variable speed) to 5F and -10F, respectively. - Dual-fuel heat pumps now have the HP sized using the greater of the heating design temperature and 25F. - Pan heaters no longer operate when the outdoor temperature is below the compressor lockout temperature. -- The `NominalCapacity` input for batteries is no longer used. +- The `Battery/NominalCapacity` input is no longer used. ## OpenStudio-ERI v1.11.2 diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 4f86ed02d..29a6d868b 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -1324,7 +1324,7 @@ Each air-to-air heat pump is entered as a ``/HPXML/Building/BuildingDetails/Syst .. [#] HeatingCapacity=-1 and CoolingCapacity=-1 can be used to autosize the equipment for research purposes or to run tests (it should *not* be used for a real home). .. [#] CompressorType choices are "single stage", "two stage", or "variable speed". .. [#] CompressorLockoutTemperature input is only allowed if ``BackupSystemFuel`` is "electricity" or not provided (i.e., it is not allowed for dual-fuel heat pumps). - If not provided, CompressorLockoutTemperature defaults to -20F if CompressorType is "variable speed" otherwise 0F. + If not provided, CompressorLockoutTemperature defaults to -10F if CompressorType is "variable speed" otherwise 5F. .. [#] Additional backup inputs are described in :ref:`hvac_hp_backup`. .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. @@ -1391,7 +1391,7 @@ Each ``HeatPump`` should represent a single outdoor unit, whether connected to o .. [#] If DistributionSystem provided, HVACDistribution type must be :ref:`hvac_distribution_air` (type: "regular velocity") or :ref:`hvac_distribution_dse`. .. [#] HeatingCapacity=-1 and CoolingCapacity=-1 can be used to autosize the equipment for research purposes or to run tests (it should *not* be used for a real home). .. [#] CompressorLockoutTemperature input is only allowed if ``BackupSystemFuel`` is "electricity" or not provided (i.e., it is not allowed for dual-fuel heat pumps). - If not provided, CompressorLockoutTemperature defaults to -20F. + If not provided, CompressorLockoutTemperature defaults to -10F. .. [#] Additional backup inputs are described in :ref:`hvac_hp_backup`. .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. @@ -1445,7 +1445,7 @@ Each packaged terminal heat pump is entered as a ``/HPXML/Building/BuildingDetai .. [#] HeatingCapacity=-1 and CoolingCapacity=-1 can be used to autosize the equipment for research purposes or to run tests (it should *not* be used for a real home). .. [#] CompressorLockoutTemperature input is only allowed if ``BackupSystemFuel`` is "electricity" or not provided (i.e., it is not allowed for dual-fuel heat pumps). - If not provided, CompressorLockoutTemperature defaults to 0F. + If not provided, CompressorLockoutTemperature defaults to 5F. .. [#] Additional backup inputs are described in :ref:`hvac_hp_backup`. .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. @@ -1476,7 +1476,7 @@ Each room air conditioner with reverse cycle is entered as a ``/HPXML/Building/B .. [#] HeatingCapacity=-1 and CoolingCapacity=-1 can be used to autosize the equipment for research purposes or to run tests (it should *not* be used for a real home). .. [#] CompressorLockoutTemperature input is only allowed if ``BackupSystemFuel`` is "electricity" or not provided (i.e., it is not allowed for dual-fuel heat pumps). - If not provided, CompressorLockoutTemperature defaults to 0F. + If not provided, CompressorLockoutTemperature defaults to 5F. .. [#] Additional backup inputs are described in :ref:`hvac_hp_backup`. .. [#] The sum of all ``FractionHeatLoadServed`` (across all HVAC systems) must be less than or equal to 1. .. [#] The sum of all ``FractionCoolLoadServed`` (across all HVAC systems) must be less than or equal to 1. diff --git a/rulesets/resources/301ruleset.rb b/rulesets/resources/301ruleset.rb index 979abb00d..56b9b6ae6 100644 --- a/rulesets/resources/301ruleset.rb +++ b/rulesets/resources/301ruleset.rb @@ -3174,12 +3174,12 @@ def self.get_hp_compressor_lockout_temp(heat_pump_type, backup_heating_fuel, com # No user input, default if compressor_type == HPXML::HVACCompressorTypeVariableSpeed - return -20.0 # F + return -10.0 # F, Addendum 103 AC/HP Supplement else - return 0.0 # F + return 5.0 # F, Addendum 103 AC/HP Supplement end else # Fossil fuel - # Use RESNET prescribed value + # Always use RESNET prescribed value return 40.0 # F end end diff --git a/rulesets/tests/test_hvac.rb b/rulesets/tests/test_hvac.rb index f335d2bff..0f5ecd012 100644 --- a/rulesets/tests/test_hvac.rb +++ b/rulesets/tests/test_hvac.rb @@ -60,7 +60,7 @@ def test_none _test_ruleset(hpxml_name, eri_version).each do |(run_type, calc_type), hpxml_bldg| hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) if run_type == RunType::CO2e # All-electric - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeFurnace, fuel: HPXML::FuelTypeNaturalGas, eff: 0.78, frac_load: 1.0, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) end @@ -80,7 +80,7 @@ def test_none_with_no_fuel_access _eri_versions.each do |eri_version| _test_ruleset(hpxml_name, eri_version).each do |(_run_type, calc_type), hpxml_bldg| hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) _check_cooling_system(hpxml_bldg, [{ systype: HPXML::HVACTypeCentralAirConditioner, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, seer2: 12.35, eer2: 10.7, frac_load: 1.0, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) end end @@ -95,7 +95,7 @@ def test_boiler_elec if [CalcType::RatedHome].include? calc_type _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeBoiler, fuel: HPXML::FuelTypeElectricity, eff: 0.98, frac_load: 1.0, eae: 170 }]) else - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) end end end @@ -110,7 +110,7 @@ def test_boiler_gas if [CalcType::RatedHome].include? calc_type _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeBoiler, fuel: HPXML::FuelTypeNaturalGas, eff: 0.92, frac_load: 1.0, eae: 170 }]) elsif run_type == RunType::CO2e # All-electric - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeBoiler, fuel: HPXML::FuelTypeNaturalGas, eff: 0.80, frac_load: 1.0, dse: _dse(calc_type), eae: 170 }]) end @@ -128,7 +128,7 @@ def test_furnace_elec _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeFurnace, fuel: HPXML::FuelTypeElectricity, eff: 0.98, frac_load: 1.0, fan_motor_type: HPXML::HVACFanMotorTypeBPM, **hvac_iq_values }]) else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) end end end @@ -144,7 +144,7 @@ def test_furnace_gas _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeFurnace, fuel: HPXML::FuelTypeNaturalGas, eff: 0.92, frac_load: 1.0, fan_motor_type: HPXML::HVACFanMotorTypeBPM, **hvac_iq_values }]) elsif run_type == RunType::CO2e # All-electric hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeFurnace, fuel: HPXML::FuelTypeNaturalGas, eff: 0.78, frac_load: 1.0, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) @@ -162,7 +162,7 @@ def test_stove_wood_pellets if [CalcType::RatedHome].include? calc_type _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeStove, fuel: HPXML::FuelTypeWoodPellets, frac_load: 1.0, eff: 0.8 }]) elsif run_type == RunType::CO2e # All-electric - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeFurnace, fuel: HPXML::FuelTypeNaturalGas, eff: 0.78, frac_load: 1.0, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) end @@ -179,7 +179,7 @@ def test_wall_furnace_elec _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeWallFurnace, fuel: HPXML::FuelTypeElectricity, eff: 0.98, frac_load: 1.0 }]) else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) end end end @@ -194,7 +194,7 @@ def test_elec_resistance _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeElectricResistance, fuel: HPXML::FuelTypeElectricity, eff: 1.0, frac_load: 1.0 }]) else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) end end end @@ -207,9 +207,9 @@ def test_air_source_heat_pump hpxml_names.each do |hpxml_name| if hpxml_name == 'base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml' - compressor_temp = 5.0 + compressor_temp = 10.0 else - compressor_temp = 0.0 + compressor_temp = 5.0 end _eri_versions.each do |eri_version| _test_ruleset(hpxml_name, eri_version).each do |(_run_type, calc_type), hpxml_bldg| @@ -221,7 +221,7 @@ def test_air_source_heat_pump _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 7.0, seer2: 13.4, eer2: 11.3, frac_load_heat: 1.0, frac_load_cool: 1.0, compressor_temp: compressor_temp, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) end end end @@ -240,10 +240,10 @@ def test_mini_split_heat_pump_ducted if hpxml_name.include?('install-quality') && eri_version == 'latest' hvac_iq_values[:fan_watts_per_cfm] = 0.365 end - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpMiniSplit, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeVariableSpeed, hspf2: 8.5, seer2: 18.05, eer2: 12.1, frac_load_heat: 1.0, frac_load_cool: 1.0, compressor_temp: -20.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypeBPM, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpMiniSplit, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeVariableSpeed, hspf2: 8.5, seer2: 18.05, eer2: 12.1, frac_load_heat: 1.0, frac_load_cool: 1.0, compressor_temp: -10.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypeBPM, **hvac_iq_values }]) else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) end end end @@ -258,10 +258,10 @@ def test_mini_split_heat_pump_ductless if [CalcType::RatedHome].include? calc_type hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.07) hvac_iq_values[:airflow_defect_ratio] = 0.0 - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpMiniSplit, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeVariableSpeed, hspf2: 9, seer2: 19, eer2: 12.3, frac_load_heat: 1.0, frac_load_cool: 1.0, compressor_temp: -20.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: false, fan_motor_type: HPXML::HVACFanMotorTypeBPM, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpMiniSplit, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeVariableSpeed, hspf2: 9, seer2: 19, eer2: 12.3, frac_load_heat: 1.0, frac_load_cool: 1.0, compressor_temp: -10.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: false, fan_motor_type: HPXML::HVACFanMotorTypeBPM, **hvac_iq_values }]) else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) end end end @@ -281,7 +281,7 @@ def test_ground_to_air_heat_pump end _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpGroundToAir, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, eer: 16.6, cop: 3.6, frac_load_heat: 1.0, frac_load_cool: 1.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, pump_w_per_ton: 100, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) end end end @@ -299,7 +299,7 @@ def test_dual_fuel_heat_pump else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) if run_type == RunType::CO2e # All-electric - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 40.0, backup_fuel: HPXML::FuelTypeNaturalGas, backup_eff: 0.78, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) end @@ -372,7 +372,7 @@ def test_room_air_conditioner_and_ptac_with_heating integrated_htg_fuel: HPXML::FuelTypeElectricity, integrated_htg_eff: 1.0, integrated_htg_frac_load: 1.0 }]) else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) end end end @@ -390,7 +390,7 @@ def test_room_air_conditioner_and_ptac_with_heating_gas else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) if run_type == RunType::CO2e # All-electric - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeFurnace, fuel: HPXML::FuelTypeNaturalGas, eff: 0.78, frac_load: 1.0, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) _check_cooling_system(hpxml_bldg, [{ systype: HPXML::HVACTypeCentralAirConditioner, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, seer2: 12.35, eer2: 10.7, frac_load: 1.0, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) @@ -413,10 +413,10 @@ def test_room_air_conditioner_with_reverse_cycle_and_pthp _eri_versions.each do |eri_version| _test_ruleset(hpxml_name, eri_version).each do |(_run_type, calc_type), hpxml_bldg| if [CalcType::RatedHome].include? calc_type - _check_heat_pump(hpxml_bldg, [{ systype: systype, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, cop: 3.6, ceer: 11.8, frac_load_heat: 1.0, frac_load_cool: 1.0, compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true }]) + _check_heat_pump(hpxml_bldg, [{ systype: systype, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, cop: 3.6, ceer: 11.8, frac_load_heat: 1.0, frac_load_cool: 1.0, compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true }]) else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) end end end @@ -501,7 +501,7 @@ def test_furnace_gas_central_air_conditioner else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) if run_type == RunType::CO2e # All-electric - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeFurnace, fuel: HPXML::FuelTypeNaturalGas, eff: 0.78, frac_load: 1.0, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) _check_cooling_system(hpxml_bldg, [{ systype: HPXML::HVACTypeCentralAirConditioner, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, seer2: 12.35, eer2: 10.7, frac_load: 1.0, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) @@ -532,22 +532,22 @@ def test_multiple_hvac { systype: HPXML::HVACTypeElectricResistance, fuel: HPXML::FuelTypeElectricity, eff: 1.0, frac_load: 0.1 }, { systype: HPXML::HVACTypeStove, fuel: HPXML::FuelTypeOil, eff: 0.8, frac_load: 0.1 }, { systype: HPXML::HVACTypeWallFurnace, fuel: HPXML::FuelTypePropane, eff: 0.8, frac_load: 0.1 }]) - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 7.0, seer2: 13.4, eer2: 11.3, frac_load_heat: 0.1, frac_load_cool: 0.2, compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 7.0, seer2: 13.4, eer2: 11.3, frac_load_heat: 0.1, frac_load_cool: 0.2, compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, { systype: HPXML::HVACTypeHeatPumpGroundToAir, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, eer: 16.6, cop: 3.6, frac_load_heat: 0.1, frac_load_cool: 0.2, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, pump_w_per_ton: 100, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpMiniSplit, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeVariableSpeed, hspf2: 9, seer2: 19, eer2: 12.3, frac_load_heat: 0.1, frac_load_cool: 0.2, compressor_temp: -20.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypeBPM, **mshp_hvac_iq_values }]) + { systype: HPXML::HVACTypeHeatPumpMiniSplit, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeVariableSpeed, hspf2: 9, seer2: 19, eer2: 12.3, frac_load_heat: 0.1, frac_load_cool: 0.2, compressor_temp: -10.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypeBPM, **mshp_hvac_iq_values }]) else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) if run_type == RunType::CO2e # All-electric - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.1333, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.2, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.2, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.2, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.1333, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.2, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.2, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.2, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) _check_cooling_system(hpxml_bldg, [{ systype: HPXML::HVACTypeCentralAirConditioner, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, seer2: 12.35, eer2: 10.7, frac_load: 0.1333, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, { systype: HPXML::HVACTypeCentralAirConditioner, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, seer2: 12.35, eer2: 10.7, frac_load: 0.1333, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else @@ -555,12 +555,12 @@ def test_multiple_hvac { systype: HPXML::HVACTypeBoiler, fuel: HPXML::FuelTypeNaturalGas, eff: 0.8, frac_load: 0.1, dse: _dse(calc_type), eae: 170 }, { systype: HPXML::HVACTypeFurnace, fuel: HPXML::FuelTypeNaturalGas, eff: 0.78, frac_load: 0.1, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, { systype: HPXML::HVACTypeFurnace, fuel: HPXML::FuelTypeNaturalGas, eff: 0.78, frac_load: 0.1, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.2, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.2, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.2, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.2, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.2, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.1, frac_load_cool: 0.2, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) _check_cooling_system(hpxml_bldg, [{ systype: HPXML::HVACTypeCentralAirConditioner, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, seer2: 12.35, eer2: 10.7, frac_load: 0.1333, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, { systype: HPXML::HVACTypeCentralAirConditioner, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, seer2: 12.35, eer2: 10.7, frac_load: 0.1333, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, { systype: HPXML::HVACTypeCentralAirConditioner, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, seer2: 12.35, eer2: 10.7, frac_load: 0.1333, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) @@ -591,8 +591,8 @@ def test_partial_hvac else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) if run_type == RunType::CO2e # All-electric - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.2, frac_load_cool: 0.3, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, - { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.8, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.2, frac_load_cool: 0.3, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, + { systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 0.8, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) _check_cooling_system(hpxml_bldg, [{ systype: HPXML::HVACTypeCentralAirConditioner, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, seer2: 12.35, eer2: 10.7, frac_load: 0.7, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeFurnace, fuel: HPXML::FuelTypeNaturalGas, eff: 0.78, frac_load: 0.2, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }, @@ -615,7 +615,7 @@ def test_shared_boiler_baseboard else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) if run_type == RunType::CO2e # All-electric - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeBoiler, fuel: HPXML::FuelTypeNaturalGas, eff: 0.80, frac_load: 1.0, dse: _dse(calc_type), eae: 170 }]) end @@ -634,7 +634,7 @@ def test_shared_boiler_fan_coil else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) if run_type == RunType::CO2e # All-electric - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeBoiler, fuel: HPXML::FuelTypeNaturalGas, eff: 0.80, frac_load: 1.0, dse: _dse(calc_type), eae: 170 }]) end @@ -653,7 +653,7 @@ def test_shared_boiler_fan_coil_ducted else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) if run_type == RunType::CO2e # All-electric - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeBoiler, fuel: HPXML::FuelTypeNaturalGas, eff: 0.80, frac_load: 1.0, dse: _dse(calc_type), eae: 170 }]) end @@ -672,7 +672,7 @@ def test_shared_boiler_water_loop_heat_pump else hvac_iq_values = _get_default_hvac_iq_values(eri_version, 0.5) if run_type == RunType::CO2e # All-electric - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 0.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeBoiler, fuel: HPXML::FuelTypeNaturalGas, eff: 0.80, frac_load: 1 - 1 / 4.4, dse: _dse(calc_type), eae: 170 }]) end @@ -765,7 +765,7 @@ def test_shared_ground_loop_ground_source_heat_pump if [CalcType::RatedHome].include? calc_type _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpGroundToAir, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, eer: 16.6, cop: 3.6, frac_load_heat: 1.0, frac_load_cool: 1.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, pump_w_per_ton: 0, num_units_served: 6, shared_loop_watts: 600, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) end end end @@ -874,7 +874,7 @@ def test_dse else hvac_iq_values = _get_default_hvac_iq_values('latest', 0.5) if run_type == RunType::CO2e # All-electric - _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 0.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) + _check_heat_pump(hpxml_bldg, [{ systype: HPXML::HVACTypeHeatPumpAirToAir, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, hspf2: 6.55, seer2: 12.35, eer2: 10.7, frac_load_heat: 1.0, frac_load_cool: 1.0, dse: _dse(calc_type), compressor_temp: 5.0, backup_fuel: HPXML::FuelTypeElectricity, backup_eff: 1.0, backup_during_defrost: true, fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) else _check_heating_system(hpxml_bldg, [{ systype: HPXML::HVACTypeFurnace, fuel: HPXML::FuelTypeNaturalGas, eff: 0.78, frac_load: 1.0, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) _check_cooling_system(hpxml_bldg, [{ systype: HPXML::HVACTypeCentralAirConditioner, equiptype: HPXML::HVACEquipmentTypeSplit, fuel: HPXML::FuelTypeElectricity, comptype: HPXML::HVACCompressorTypeSingleStage, seer2: 12.35, eer2: 10.7, frac_load: 1.0, dse: _dse(calc_type), fan_motor_type: HPXML::HVACFanMotorTypePSC, **hvac_iq_values }]) diff --git a/tasks.rb b/tasks.rb index 4dc377466..90b6abb87 100644 --- a/tasks.rb +++ b/tasks.rb @@ -2698,6 +2698,10 @@ def create_sample_hpxmls heat_pump.backup_heating_lockout_temp = nil heat_pump.backup_heating_switchover_temp = nil + if hpxml_path.include? 'base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml' + heat_pump.compressor_lockout_temp = 10.0 # Change from the OS-ERI default of 5F + end + if heat_pump.heating_capacity_17F.nil? if [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit, diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml index 7e34da8a6..235046be0 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml @@ -285,7 +285,7 @@ 21600.0 36000.0 single stage - 5.0 + 10.0 integrated electricity diff --git a/workflow/tests/base_results/EPA_Tests.csv b/workflow/tests/base_results/EPA_Tests.csv index 67e120585..9b141cc1e 100644 --- a/workflow/tests/base_results/EPA_Tests.csv +++ b/workflow/tests/base_results/EPA_Tests.csv @@ -1,25 +1,25 @@ [Version] XML,Reference Home ERI,Rated Home ERI [MF_National_1.0] MFNCv1_CZ2_FL_gas_ground_corner_slab.xml,65.99,65.99 [MF_National_1.0] MFNCv1_CZ4_MO_gas_top_corner.xml,76.64,76.64 -[MF_National_1.0] MFNCv1_CZ6_VT_elec_middle_interior.xml,71.12,71.12 +[MF_National_1.0] MFNCv1_CZ6_VT_elec_middle_interior.xml,71.61,71.61 [MF_National_1.1] MFNCv11_CZ2_FL_elec_top_corner.xml,60.07,60.07 -[MF_National_1.1] MFNCv11_CZ4_MO_elec_ground_corner_vented_crawl.xml,63.76,63.76 +[MF_National_1.1] MFNCv11_CZ4_MO_elec_ground_corner_vented_crawl.xml,63.81,63.81 [MF_National_1.1] MFNCv11_CZ6_VT_gas_ground_corner_cond_bsmt.xml,62.48,62.48 [MF_National_1.2] MFNCv12_CZ2_FL_gas_ground_corner_slab.xml,52.4,52.4 [MF_National_1.2] MFNCv12_CZ4_MO_gas_top_corner.xml,49.28,49.28 -[MF_National_1.2] MFNCv12_CZ6_VT_elec_middle_interior.xml,57.14,57.14 +[MF_National_1.2] MFNCv12_CZ6_VT_elec_middle_interior.xml,57.35,57.35 [MF_National_1.3] MFNCv13_CZ2_FL_gas_ground_corner_slab.xml,50.94,50.94 [MF_National_1.3] MFNCv13_CZ4_MO_gas_top_corner.xml,46.63,46.63 -[MF_National_1.3] MFNCv13_CZ6_VT_elec_middle_interior.xml,45.74,45.74 +[MF_National_1.3] MFNCv13_CZ6_VT_elec_middle_interior.xml,45.97,45.97 [SF_National_3.0] SFNHv3_CZ2_FL_gas_slab.xml,72.12,72.12 [SF_National_3.0] SFNHv3_CZ4_MO_gas_vented_crawl.xml,82.14,82.14 -[SF_National_3.0] SFNHv3_CZ6_VT_elec_cond_bsmt.xml,72.62,72.62 +[SF_National_3.0] SFNHv3_CZ6_VT_elec_cond_bsmt.xml,73.91,73.91 [SF_National_3.1] SFNHv31_CZ2_FL_elec_slab.xml,62.41,62.41 -[SF_National_3.1] SFNHv31_CZ4_MO_elec_vented_crawl.xml,63.62,63.62 +[SF_National_3.1] SFNHv31_CZ4_MO_elec_vented_crawl.xml,63.67,63.67 [SF_National_3.1] SFNHv31_CZ6_VT_gas_cond_bsmt.xml,58.19,58.19 [SF_National_3.2] SFNHv32_CZ2_FL_gas_slab.xml,53.86,53.86 [SF_National_3.2] SFNHv32_CZ4_MO_gas_vented_crawl.xml,51.21,51.21 -[SF_National_3.2] SFNHv32_CZ6_VT_elec_cond_bsmt.xml,54.86,54.86 +[SF_National_3.2] SFNHv32_CZ6_VT_elec_cond_bsmt.xml,55.35,55.35 [SF_National_3.3] SFNHv33_CZ2_FL_gas_slab.xml,53.69,53.69 [SF_National_3.3] SFNHv33_CZ4_MO_gas_vented_crawl.xml,48.78,48.78 -[SF_National_3.3] SFNHv33_CZ6_VT_elec_cond_bsmt.xml,48.5,48.5 +[SF_National_3.3] SFNHv33_CZ6_VT_elec_cond_bsmt.xml,49.03,49.03 diff --git a/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv b/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv index aeda7f9aa..0f4f06cb1 100644 --- a/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv +++ b/workflow/tests/base_results/RESNET_Test_4.3_HERS_Method.csv @@ -1,6 +1,6 @@ Test Case,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),IAD_Save (%) -L100A-01.xml,154.51,22.732,6.439,10.939,21.865,3.308,12.273,46.495,5.313,13.052,20.232,-0.13779 -L100A-02.xml,144.88,21.77,6.906,10.939,21.098,3.532,18.879,47.069,5.239,14.507,22.203,-0.13466 +L100A-01.xml,154.23,22.732,6.439,10.939,21.905,3.308,12.273,46.424,5.313,13.052,20.232,-0.13779 +L100A-02.xml,144.61,21.77,6.906,10.939,21.137,3.532,18.879,46.997,5.239,14.507,22.203,-0.13465 L100A-03.xml,151.08,21.946,6.393,8.744,34.964,3.391,10.076,72.248,5.242,10.856,21.066,-0.16763 -L100A-04.xml,125.74,23.132,6.66,13.066,22.195,3.43,14.4,30.49,5.505,15.178,21.176,-0.13895 +L100A-04.xml,126.23,23.132,6.66,13.066,22.235,3.43,14.4,30.838,5.505,15.178,21.176,-0.13896 L100A-05.xml,128.96,22.306,6.643,10.939,35.539,3.539,12.271,58.218,5.455,13.05,22.207,-0.16836 diff --git a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv index 95d9e5de6..81d755811 100644 --- a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv +++ b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2014_PreAddendumE.csv @@ -1,6 +1,6 @@ Test Case,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),IAD_Save (%) -L100A-01.xml,147.23,22.628,5.475,10.827,18.617,2.445,12.162,38.285,4.149,12.939,21.087, -L100A-02.xml,137.93,21.655,5.922,10.827,17.976,2.632,18.738,38.747,4.088,14.358,23.163, +L100A-01.xml,146.92,22.628,5.475,10.827,18.729,2.445,12.162,38.36,4.149,12.939,21.087, +L100A-02.xml,137.6,21.655,5.922,10.827,18.089,2.632,18.738,38.821,4.088,14.358,23.163, L100A-03.xml,145.85,22.043,5.448,8.649,35.086,2.493,9.982,70.785,4.11,10.761,21.874, -L100A-04.xml,120.23,23.018,5.692,12.937,18.924,2.547,14.273,25.757,4.312,15.048,22.167, +L100A-04.xml,120.73,23.018,5.692,12.937,19.041,2.547,14.273,26.181,4.312,15.048,22.167, L100A-05.xml,123.44,22.195,5.701,10.827,35.328,2.635,12.16,57.06,4.266,12.937,23.166, diff --git a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv index 991ee9f79..f01a431af 100644 --- a/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv +++ b/workflow/tests/base_results/RESNET_Test_Other_HERS_Method_301_2019_PreAddendumA.csv @@ -1,6 +1,6 @@ Test Case,ERI,REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),IAD_Save (%) -L100A-01.xml,151.36,22.628,5.475,10.827,18.617,2.445,12.162,38.285,4.149,12.939,21.087,-0.12685 -L100A-02.xml,141.7,21.655,5.922,10.827,17.976,2.632,18.738,38.747,4.088,14.358,23.163,-0.12374 +L100A-01.xml,151.03,22.628,5.475,10.827,18.729,2.445,12.162,38.36,4.149,12.939,21.087,-0.12662 +L100A-02.xml,141.35,21.655,5.922,10.827,18.089,2.632,18.738,38.821,4.088,14.358,23.163,-0.1234 L100A-03.xml,149.8,21.844,5.46,8.649,34.77,2.513,9.982,70.785,4.11,10.761,21.874,-0.16125 -L100A-04.xml,124.7,23.018,5.692,12.937,18.924,2.547,14.273,25.757,4.312,15.048,22.167,-0.12698 +L100A-04.xml,125.21,23.018,5.692,12.937,19.041,2.547,14.273,26.181,4.312,15.048,22.167,-0.12674 L100A-05.xml,127.88,22.195,5.701,10.827,35.328,2.635,12.16,57.06,4.266,12.937,23.166,-0.16169 diff --git a/workflow/tests/base_results/real_homes.csv b/workflow/tests/base_results/real_homes.csv index 981bea30f..26e047c77 100644 --- a/workflow/tests/base_results/real_homes.csv +++ b/workflow/tests/base_results/real_homes.csv @@ -1,51 +1,51 @@ XML,ERI,Total Loads TRL,Total Loads TnML,Total Loads TRL*IAF,IAD_Save (%),IAF CFA,IAF NBR,IAF NS,IAF RH,PEfrac,TEU (MBtu),OPP (MBtu),BSL (MBtu),REUL Heating (MBtu),REUL Cooling (MBtu),REUL Hot Water (MBtu),EC_r Heating (MBtu),EC_r Cooling (MBtu),EC_r Hot Water (MBtu),EC_r L&A (MBtu),EC_r Vent (MBtu),EC_r Dehumid (MBtu),DSE_r Heating,DSE_r Cooling,DSE_r Hot Water,EEC_r Heating,EEC_r Cooling,EEC_r Hot Water,nMEUL Heating,nMEUL Cooling,nMEUL Hot Water,nMEUL Vent Preheat,nMEUL Vent Precool,nEC_x Heating,nEC_x Cooling,nEC_x Hot Water,EC_x Heating (MBtu),EC_x Cooling (MBtu),EC_x Hot Water (MBtu),EC_x L&A (MBtu),EC_x Vent (MBtu),EC_x Dehumid (MBtu),EEC_x Heating,EEC_x Cooling,EEC_x Hot Water,Coeff Heating a,Coeff Heating b,Coeff Cooling a,Coeff Cooling b,Coeff Hot Water a,Coeff Hot Water b,CO2e Rating Index,CO2e ACO2 (lb CO2e),CO2e ARCO2 (lb CO2e),CO2e IAF RH,ES Reference Home ERI,ES SAF (Size Adjustment Factor),ES SAF Adjusted ERI Target,ES Rated Home ERI,ES Rated Home ERI w/o OPP,ES ENERGY STAR Certification,DENH Reference Home ERI,DENH SAF (Size Adjustment Factor),DENH SAF Adjusted ERI Target,DENH Rated Home ERI,DENH Rated Home ERI w/o OPP,DENH DOE Efficient New Home Certification,IECC ERI,IECC Total Loads TRL,IECC Total Loads TnML,IECC Total Loads TRL*IAF,IECC IAD_Save (%),IECC IAF CFA,IECC IAF NBR,IECC IAF NS,IECC IAF RH,IECC PEfrac,IECC TEU (MBtu),IECC OPP (MBtu),IECC BSL (MBtu),IECC REUL Heating (MBtu),IECC REUL Cooling (MBtu),IECC REUL Hot Water (MBtu),IECC EC_r Heating (MBtu),IECC EC_r Cooling (MBtu),IECC EC_r Hot Water (MBtu),IECC EC_r L&A (MBtu),IECC EC_r Vent (MBtu),IECC EC_r Dehumid (MBtu),IECC DSE_r Heating,IECC DSE_r Cooling,IECC DSE_r Hot Water,IECC EEC_r Heating,IECC EEC_r Cooling,IECC EEC_r Hot Water,IECC nMEUL Heating,IECC nMEUL Cooling,IECC nMEUL Hot Water,IECC nMEUL Vent Preheat,IECC nMEUL Vent Precool,IECC nEC_x Heating,IECC nEC_x Cooling,IECC nEC_x Hot Water,IECC EC_x Heating (MBtu),IECC EC_x Cooling (MBtu),IECC EC_x Hot Water (MBtu),IECC EC_x L&A (MBtu),IECC EC_x Vent (MBtu),IECC EC_x Dehumid (MBtu),IECC EEC_x Heating,IECC EEC_x Cooling,IECC EEC_x Hot Water,IECC Coeff Heating a,IECC Coeff Heating b,IECC Coeff Cooling a,IECC Coeff Cooling b,IECC Coeff Hot Water a,IECC Coeff Hot Water b -house001.xml,62.7,33.847,22.6279,36.0891,0.21295,1.0792,0.9706,1.0179,1.0662,1.0,20.2964,0.0,0.0,9.425,2.328,7.786,15.018,1.442,14.152,13.927,0.381,0.0,0.805,0.424,0.902,1.282,0.263,1.639,5.552,1.269,4.911,0.0,0.0,8.847,0.786,8.925,9.755,0.786,11.376,10.111,0.785,0.0,1.042,0.213,1.429,1.0943,0.403,3.809,0.0,1.1877,1.013,65.95,6007.7,8543.93,1.0662,49.66,1.0,49.66,62.57,62.57,0.0,45.14,1.0,45.14,62.57,62.57,0.0,62.57,32.212,21.4924,34.3492,0.21329,1.0794,0.9706,1.0179,1.0663,1.0,19.4426,0.0,0.0,9.456,2.312,6.487,15.066,1.434,12.475,13.576,0.381,0.0,0.805,0.423,0.852,1.282,0.263,1.639,5.567,1.262,4.004,0.0,0.0,8.869,0.783,7.701,9.779,0.783,9.815,9.874,0.785,0.0,1.042,0.213,1.429,1.0943,0.403,3.809,0.0,1.1877,1.013 -house002.xml,68.64,117.371,79.2203,115.4114,0.1855,0.9833,1.0,1.0,0.9833,1.0,71.61,0.0,0.0,52.286,23.885,9.396,46.561,13.373,10.713,30.615,1.189,0.0,0.497,0.469,0.953,0.443,0.263,1.087,33.329,11.752,8.49,0.0,0.0,29.68,6.58,9.68,29.702,6.58,9.68,23.807,1.842,0.0,0.401,0.235,1.087,2.2561,0.0,3.809,0.0,0.92,0.0,69.78,13115.93,19114.76,0.9833,52.26,1.0,52.26,68.64,68.64,0.0,51.6,1.0,51.6,68.64,68.64,0.0,68.64,117.695,79.4434,115.7369,0.18485,0.9834,1.0,1.0,0.9834,1.0,71.826,0.0,0.0,52.272,23.897,9.53,46.55,13.38,10.848,30.807,1.189,0.0,0.497,0.469,0.955,0.443,0.263,1.087,33.319,11.759,8.559,0.0,0.0,29.672,6.584,9.743,29.694,6.584,9.743,23.964,1.842,0.0,0.401,0.235,1.087,2.2561,0.0,3.809,0.0,0.92,0.0 +house001.xml,62.7,33.847,22.6279,36.0891,0.21295,1.0792,0.9706,1.0179,1.0662,1.0,20.2964,0.0,0.0,9.425,2.328,7.786,15.018,1.442,14.152,13.927,0.381,0.0,0.805,0.424,0.902,1.282,0.263,1.639,5.552,1.269,4.911,0.0,0.0,8.847,0.786,8.925,9.755,0.786,11.376,10.111,0.785,0.0,1.042,0.213,1.429,1.0943,0.403,3.809,0.0,1.1877,1.013,65.95,6007.7,8543.3,1.0662,49.66,1.0,49.66,62.57,62.57,0.0,45.14,1.0,45.14,62.57,62.57,0.0,62.57,32.212,21.4924,34.3492,0.21329,1.0794,0.9706,1.0179,1.0663,1.0,19.4426,0.0,0.0,9.456,2.312,6.487,15.066,1.434,12.475,13.576,0.381,0.0,0.805,0.423,0.852,1.282,0.263,1.639,5.567,1.262,4.004,0.0,0.0,8.869,0.783,7.701,9.779,0.783,9.815,9.874,0.785,0.0,1.042,0.213,1.429,1.0943,0.403,3.809,0.0,1.1877,1.013 +house002.xml,68.71,117.371,79.2968,115.4105,0.18559,0.9833,1.0,1.0,0.9833,1.0,71.729,0.0,0.0,52.286,23.885,9.396,46.642,13.373,10.713,30.615,1.189,0.0,0.497,0.469,0.953,0.443,0.263,1.087,33.405,11.752,8.49,0.0,0.0,29.8,6.58,9.68,29.822,6.58,9.68,23.807,1.842,0.0,0.401,0.235,1.087,2.2561,0.0,3.809,0.0,0.92,0.0,69.86,13142.45,19132.67,0.9833,52.35,1.0,52.35,68.71,68.71,0.0,51.68,1.0,51.68,68.71,68.71,0.0,68.71,117.695,79.5181,115.736,0.18494,0.9834,1.0,1.0,0.9834,1.0,71.945,0.0,0.0,52.272,23.897,9.53,46.632,13.38,10.848,30.807,1.189,0.0,0.496,0.469,0.955,0.443,0.263,1.087,33.394,11.759,8.559,0.0,0.0,29.791,6.584,9.743,29.813,6.584,9.743,23.964,1.842,0.0,0.401,0.235,1.087,2.2561,0.0,3.809,0.0,0.92,0.0 house003.xml,62.49,90.88,56.3598,90.1836,0.24965,0.9923,1.0,1.0,0.9923,1.0,45.5092,0.0,0.0,27.820999999999998,24.552,8.692,38.814,13.779,15.86,28.813,1.002,0.0,1.431,0.468,0.929,1.725,0.263,1.695,18.62,12.758,1.961,0.0,0.0,24.427,7.16,3.578,26.022,7.16,7.205,21.843,1.177,0.0,1.488,0.244,1.132,3.3504,0.403,3.809,0.0,1.1877,1.013,77.89,10314.42,13344.18,0.9923,50.26,1.0,50.26,62.39,62.39,0.0,50.33,1.0,50.33,62.39,62.39,0.0,62.39,91.201,56.4695,90.5048,0.24872,0.9924,1.0,1.0,0.9924,1.0,45.6168,0.0,0.0,27.808999999999997,24.566,8.819,38.801,13.787,16.026,29.005,1.002,0.0,1.431,0.468,0.933,1.725,0.263,1.695,18.615,12.762,1.978,0.0,0.0,24.421,7.162,3.595,26.016,7.162,7.238,21.938,1.177,0.0,1.488,0.244,1.132,3.3504,0.403,3.809,0.0,1.1877,1.013 -house004.xml,59.78,90.443,56.439,94.4157,0.31731,1.0439,1.0,1.0,1.0439,1.0,56.0462,0.0,0.0,50.773,3.147,12.907,54.187,1.619,14.535,21.969,1.647,0.0,0.415,0.51,0.955,0.443,0.263,1.075,32.145,0.743,4.685,0.0,0.0,34.306,0.382,5.276,34.332,0.382,5.333,15.764,3.103,0.0,0.401,0.244,0.5,2.2561,0.0,3.809,0.0,0.92,0.0,64.62,5277.67,7824.11,1.0439,51.29,1.0,51.29,59.76,59.76,0.0,50.54,1.0,50.54,59.76,59.76,0.0,59.76,90.807,56.6415,94.7831,0.31633,1.0438,1.0,1.0,1.0438,1.0,56.2012,0.0,0.0,50.752,3.153,13.078,54.166,1.621,14.706,22.177,1.647,0.0,0.415,0.511,0.956,0.443,0.263,1.075,32.173,0.739,4.758,0.0,0.0,34.337,0.38,5.351,34.363,0.38,5.409,15.868,3.103,0.0,0.401,0.244,0.5,2.2561,0.0,3.809,0.0,0.92,0.0 +house004.xml,59.92,90.443,56.5785,94.4216,0.31778,1.044,1.0,1.0,1.044,1.0,56.3102,0.0,0.0,50.773,3.147,12.907,54.37,1.616,14.535,21.969,1.647,0.0,0.414,0.511,0.955,0.443,0.263,1.075,32.283,0.744,4.685,0.0,0.0,34.57,0.382,5.276,34.596,0.382,5.333,15.764,3.103,0.0,0.401,0.244,0.5,2.2561,0.0,3.809,0.0,0.92,0.0,64.76,5302.61,7843.26,1.044,51.69,1.0,51.69,59.9,59.9,0.0,50.95,1.0,50.95,59.9,59.9,0.0,59.9,90.806,56.779,94.7873,0.31674,1.0438,1.0,1.0,1.0438,1.0,56.4652,0.0,0.0,50.751,3.153,13.078,54.351,1.618,14.706,22.177,1.647,0.0,0.414,0.512,0.956,0.443,0.263,1.075,32.309,0.741,4.758,0.0,0.0,34.601,0.38,5.351,34.627,0.38,5.409,15.868,3.103,0.0,0.401,0.244,0.5,2.2561,0.0,3.809,0.0,0.92,0.0 house005.xml,58.47,29.837,18.8285,32.2042,0.2068,1.0921,0.9715,1.0173,1.0793,1.0,17.3458,0.0,0.0,3.981,5.116,6.94,3.937,2.725,13.584,13.083,0.717,0.0,0.448,0.493,0.866,0.443,0.263,1.695,1.358,3.088,1.129,2.378,0.037,1.343,1.645,2.211,1.344,1.645,4.906,9.045,1.793,0.0,0.303,0.313,1.099,2.2561,0.0,3.809,0.0,1.1877,1.013,81.84,2854.06,3230.9,1.0793,48.39,1.0,48.39,59.99,59.99,0.0,46.08,1.0,46.08,59.99,59.99,0.0,59.99,28.331,18.3491,30.5845,0.20731,1.0923,0.9714,1.0174,1.0795,1.0,16.78,0.0,0.0,3.989,5.109,5.783,3.943,2.72,12.085,12.733,0.717,0.0,0.448,0.493,0.811,0.443,0.263,1.695,1.361,3.084,0.874,2.379,0.037,1.345,1.642,1.826,1.346,1.642,4.053,8.822,1.793,0.0,0.303,0.313,1.099,2.2561,0.0,3.809,0.0,1.1877,1.013 house006.xml,70.85,93.521,67.5156,95.2903,0.24124,1.0022,1.0166,1.0,1.0189,1.0,58.633,0.0,0.0,32.136,23.048,10.29,25.77,13.23,11.864,27.14,0.907,0.0,1.104,0.915,0.953,0.886,0.526,1.099,21.99,13.741,9.378,0.0,0.0,17.633000000000003,7.888,10.813,17.647,7.888,10.695,20.947,1.459,0.0,0.832,0.47,1.087,4.5122,0.0,7.618,0.0,0.92,0.0,72.54,10502.28,14208.16,1.0189,47.27,1.0,47.27,70.83,70.83,0.0,46.05,1.0,46.05,70.83,70.83,0.0,70.83,94.124,67.9274,95.8982,0.24035,1.0022,1.0166,1.0,1.0188,1.0,59.03,0.0,0.0,32.114,23.072,10.531,25.754,13.242,12.106,27.502,0.907,0.0,1.104,0.915,0.956,0.886,0.526,1.099,21.969,13.761,9.514,0.0,0.0,17.618,7.898,10.937,17.632,7.898,10.818,21.225,1.459,0.0,0.832,0.47,1.087,4.5122,0.0,7.618,0.0,0.92,0.0 -house007.xml,85.33,48.18,43.3848,50.8441,0.2286,1.052,0.9842,1.0192,1.0553,1.0,43.862,0.0,0.0,15.695,5.265,9.657,15.706,2.908,10.983,17.153,0.41,0.0,0.443,0.475,0.956,0.443,0.263,1.087,17.235,1.546,8.341,0.0,0.0,17.247,0.854,9.486,17.26,0.854,9.486,14.918,1.345,0.0,0.502,0.103,1.099,2.2561,0.0,3.809,0.0,0.92,0.0,87.89,10757.05,11598.46,1.0553,52.97,1.0,52.97,85.36,85.36,0.0,49.37,1.0,49.37,85.36,85.36,0.0,85.36,47.247,42.564,49.8662,0.22917,1.0521,0.9842,1.0192,1.0554,1.0,43.041,0.0,0.0,15.705,5.26,8.841,15.714,2.905,10.168,17.031,0.41,0.0,0.443,0.475,0.945,0.443,0.263,1.087,17.247,1.543,7.647,0.0,0.0,17.257,0.852,8.795,17.27,0.852,8.795,14.782,1.345,0.0,0.502,0.103,1.099,2.2561,0.0,3.809,0.0,0.92,0.0 -house008.xml,61.96,163.231,98.2801,158.6104,0.20539,0.9677,1.0142,0.9901,0.9717,1.0,79.4762,0.0,0.0,98.722,12.283,12.927,157.239,7.355,21.866,38.074,1.225,0.0,0.805,0.438,1.019,1.282,0.263,1.724,47.548,5.889,7.519,0.0,0.0,75.732,3.526,12.718,83.597,3.526,14.492,36.996,0.329,0.0,1.04,0.228,1.493,1.0943,0.403,3.809,0.0,1.1877,1.013,68.35,24434.16,36791.13,0.9717,50.21,1.0,50.21,61.97,61.97,0.0,46.12,1.0,46.12,61.97,61.97,0.0,61.97,163.856,98.6856,159.2355,0.20459,0.9679,1.0141,0.9901,0.9718,1.0,79.8082,0.0,0.0,98.687,12.296,13.212,157.183,7.363,22.236,38.436,1.225,0.0,0.805,0.438,1.024,1.282,0.263,1.724,47.534,5.893,7.712,0.0,0.0,75.709,3.529,12.98,83.572,3.529,14.791,37.217,0.329,0.0,1.04,0.228,1.493,1.0943,0.403,3.809,0.0,1.1877,1.013 +house007.xml,85.31,48.18,43.3739,50.8448,0.22865,1.052,0.9842,1.0192,1.0553,1.0,43.861,0.0,0.0,15.695,5.265,9.657,15.716,2.908,10.983,17.153,0.41,0.0,0.442,0.475,0.956,0.443,0.263,1.087,17.224,1.546,8.341,0.0,0.0,17.247,0.854,9.486,17.26,0.854,9.486,14.918,1.345,0.0,0.502,0.103,1.099,2.2561,0.0,3.809,0.0,0.92,0.0,87.87,10756.91,11600.5,1.0553,53.03,1.0,53.03,85.33,85.33,0.0,49.41,1.0,49.41,85.33,85.33,0.0,85.33,47.247,42.5532,49.8668,0.22922,1.0522,0.9842,1.0192,1.0554,1.0,43.041,0.0,0.0,15.705,5.26,8.841,15.722,2.905,10.168,17.031,0.41,0.0,0.442,0.475,0.945,0.443,0.263,1.087,17.236,1.543,7.647,0.0,0.0,17.255,0.852,8.795,17.268,0.852,8.795,14.782,1.345,0.0,0.502,0.103,1.099,2.2561,0.0,3.809,0.0,0.92,0.0 +house008.xml,61.96,163.231,98.2801,158.6104,0.20539,0.9677,1.0142,0.9901,0.9717,1.0,79.4762,0.0,0.0,98.722,12.283,12.927,157.239,7.355,21.866,38.074,1.225,0.0,0.805,0.438,1.019,1.282,0.263,1.724,47.548,5.889,7.519,0.0,0.0,75.732,3.526,12.718,83.597,3.526,14.492,36.996,0.329,0.0,1.04,0.228,1.493,1.0943,0.403,3.809,0.0,1.1877,1.013,68.3,24434.16,36818.87,0.9717,50.21,1.0,50.21,61.97,61.97,0.0,46.12,1.0,46.12,61.97,61.97,0.0,61.97,163.856,98.6856,159.2355,0.20459,0.9679,1.0141,0.9901,0.9718,1.0,79.8082,0.0,0.0,98.687,12.296,13.212,157.183,7.363,22.236,38.436,1.225,0.0,0.805,0.438,1.024,1.282,0.263,1.724,47.534,5.893,7.712,0.0,0.0,75.709,3.529,12.98,83.572,3.529,14.791,37.217,0.329,0.0,1.04,0.228,1.493,1.0943,0.403,3.809,0.0,1.1877,1.013 house009.xml,65.96,102.193,69.1173,104.7826,0.29639,1.0048,1.0205,1.0,1.0253,1.0,49.997,0.0,0.0,19.838,45.229,8.758,31.651,25.856,16.054,27.488,0.88,0.0,0.804,0.459,0.941,1.282,0.263,1.724,11.082,28.286,6.21,0.0,0.0,17.681,16.17,11.384,17.867,16.17,12.241,22.906,0.633,0.0,1.25,0.213,1.563,1.0943,0.403,3.809,0.0,1.1877,1.013,87.39,10524.37,11744.79,1.0253,48.46,1.0,48.46,65.97,65.97,0.0,47.59,1.0,47.59,65.97,65.97,0.0,65.97,102.785,69.5143,105.3803,0.29534,1.0048,1.0204,1.0,1.0252,1.0,50.3334,0.0,0.0,19.822,45.259,8.974,31.625,25.874,16.335,27.85,0.88,0.0,0.804,0.459,0.947,1.282,0.263,1.724,11.069,28.311,6.294,0.0,0.0,17.661,16.185,11.456,17.846,16.185,12.319,23.207,0.633,0.0,1.25,0.213,1.563,1.0943,0.403,3.809,0.0,1.1877,1.013 house010.xml,63.5,266.9366,153.0047,240.951,0.29211,0.9027,1.0,1.0,0.9027,0.9999,106.1794,0.006,0.0,51.471000000000004,149.617,6.992,82.08,79.96000000000001,13.392,58.857,0.0,0.0,2.4130000000000003,1.474,1.77,3.846,0.789,3.39,24.298,81.743,1.736,0.0,0.0,38.747,43.686,3.326,42.241,43.686,6.114,42.837,2.391,0.0,3.192,0.639,2.338,3.2829,1.209,11.427,0.0,2.3754,2.026,93.52,17451.87,20674.65,0.9027,52.91,1.0,52.91,63.47,63.47,0.0,49.6,1.0,49.6,63.47,63.47,0.0,63.47,267.2596,153.1708,241.325,0.29113,0.903,1.0,1.0,0.903,0.9999,106.2836,0.006,0.0,51.461,149.633,7.1,82.066,79.969,13.534,59.065,0.0,0.0,2.4130000000000003,1.474,1.778,3.846,0.789,3.39,24.291999999999998,81.75,1.75,0.0,0.0,38.739000000000004,43.69,3.338,42.233000000000004,43.69,6.134,42.987,2.391,0.0,3.192,0.639,2.338,3.2829,1.209,11.427,0.0,2.3754,2.026 house011.xml,61.22,42.016,27.4742,44.8808,0.26602,1.0643,0.9816,1.0224,1.0682,1.0,26.4482,0.0,0.0,8.625,7.319,8.602,13.755,4.131,9.91,16.9,0.57,0.0,0.804,0.465,0.943,1.282,0.263,1.087,4.035,2.654,7.956,0.0,0.0,6.435,1.498,9.166,7.095,1.498,9.166,12.662,0.167,0.0,1.042,0.213,1.075,1.0943,0.403,3.809,0.0,0.92,0.0,76.95,3615.02,4398.01,1.0682,49.33,1.0,49.33,60.62,60.62,0.0,51.65,1.0,51.65,60.62,60.62,0.0,60.62,41.171,26.6654,43.9847,0.26662,1.0645,0.9816,1.0224,1.0683,1.0,25.6384,0.0,0.0,8.633,7.312,7.878,13.767,4.129,9.186,16.778,0.57,0.0,0.804,0.465,0.932,1.282,0.263,1.087,4.04,2.648,7.26,0.0,0.0,6.443,1.495,8.465,7.104,1.495,8.465,12.551,0.167,0.0,1.042,0.213,1.075,1.0943,0.403,3.809,0.0,0.92,0.0 -house012.xml,58.7,70.839,43.5003,74.1119,0.31611,1.0462,1.0,1.0,1.0462,1.0,43.554,0.0,0.0,35.124,3.182,11.468,34.543,1.809,12.821,19.803,1.262,0.0,0.45,0.462,0.972,0.443,0.263,1.087,16.145,1.937,9.709,0.0,0.0,15.878,1.101,10.854,15.89,1.101,10.854,14.425,1.285,0.0,0.502,0.341,1.075,2.2561,0.0,3.809,0.0,0.92,0.0,58.33,6710.97,10997.46,1.0462,47.09,1.0,47.09,58.76,58.76,0.0,46.23,1.0,46.23,58.76,58.76,0.0,58.76,71.174,43.7465,74.4502,0.31497,1.046,1.0,1.0,1.046,1.0,43.798,0.0,0.0,35.105,3.188,11.624,34.527,1.812,12.976,19.995,1.262,0.0,0.45,0.462,0.974,0.443,0.263,1.087,16.137,1.941,9.834,0.0,0.0,15.871,1.103,10.978,15.883,1.103,10.978,14.55,1.285,0.0,0.502,0.341,1.075,2.2561,0.0,3.809,0.0,0.92,0.0 +house012.xml,58.56,70.839,43.3975,74.1136,0.31628,1.0462,1.0,1.0,1.0462,1.0,43.515,0.0,0.0,35.124,3.182,11.468,34.686,1.806,12.821,19.803,1.262,0.0,0.449,0.463,0.972,0.443,0.263,1.087,16.039,1.94,9.709,0.0,0.0,15.839,1.101,10.854,15.851,1.101,10.854,14.425,1.285,0.0,0.502,0.341,1.075,2.2561,0.0,3.809,0.0,0.92,0.0,58.14,6703.57,11021.38,1.0462,47.45,1.0,47.45,58.62,58.62,0.0,46.6,1.0,46.6,58.62,58.62,0.0,58.62,71.174,43.6417,74.4516,0.3151,1.0461,1.0,1.0,1.0461,1.0,43.759,0.0,0.0,35.105,3.188,11.624,34.672,1.81,12.976,19.995,1.262,0.0,0.448,0.462,0.974,0.443,0.263,1.087,16.03,1.943,9.834,0.0,0.0,15.832,1.103,10.978,15.844,1.103,10.978,14.55,1.285,0.0,0.502,0.341,1.075,2.2561,0.0,3.809,0.0,0.92,0.0 house013.xml,59.51,43.27,27.1712,45.6562,0.17078,1.0403,1.0,1.0143,1.0551,1.0,24.756,0.0,0.0,11.931,2.254,10.206,8.66,1.09,11.922,18.267,0.612,0.0,0.61,0.543,0.951,0.443,0.263,1.111,9.544,0.432,2.967,0.0,0.0,6.928,0.209,3.465,6.933,0.209,3.39,13.572,0.656,0.0,0.359,0.228,0.357,2.2561,0.0,3.809,0.0,0.92,0.0,58.06,1706.56,2785.59,1.0551,54.27,1.0,54.27,59.44,59.44,0.0,49.18,1.0,49.18,59.44,59.44,0.0,59.44,43.594,27.335,45.9851,0.16988,1.04,1.0,1.0142,1.0548,1.0,24.922,0.0,0.0,11.915,2.259,10.349,8.649,1.093,12.063,18.459,0.612,0.0,0.61,0.543,0.953,0.443,0.263,1.111,9.529,0.434,2.984,0.0,0.0,6.917,0.21,3.479,6.922,0.21,3.403,13.732,0.656,0.0,0.359,0.228,0.357,2.2561,0.0,3.809,0.0,0.92,0.0 house014.xml,57.98,186.892,106.8988,184.3868,0.25797,0.9366,1.0534,1.0,0.9866,1.0,90.342,0.0,0.0,89.902,32.152,14.991,72.398,17.399,17.173,46.715,3.132,0.0,1.0990000000000002,0.969,0.981,0.886,0.526,1.124,46.402,17.221,3.249,0.0,0.0,37.368,9.319,3.721,37.397,9.319,3.6,35.842,4.185,0.0,0.594,0.31,0.258,4.5122,0.0,7.618,0.0,0.92,0.0,58.06,10453.07,18247.74,0.9866,49.11,1.0,49.11,57.91,57.91,0.0,49.07,1.0,49.07,57.91,57.91,0.0,57.91,188.076,107.4539,185.5659,0.25695,0.9368,1.0532,1.0,0.9867,1.0,90.897,0.0,0.0,89.844,32.186,15.495,72.357,17.419,17.677,47.419,3.132,0.0,1.0990000000000002,0.969,0.985,0.886,0.526,1.124,46.39,17.227,3.337,0.0,0.0,37.361000000000004,9.323,3.807,37.39,9.323,3.683,36.315,4.185,0.0,0.594,0.31,0.258,4.5122,0.0,7.618,0.0,0.92,0.0 house015.xml,21.4,41.248,25.1391,47.1089,0.29358,1.1616,0.9595,1.0247,1.1421,0.401,18.949,11.35,0.0,0.082,25.333,3.386,0.084,13.235,6.646,12.159,0.288,0.0,0.432,0.503,0.629,0.443,0.263,1.235,0.157,14.247,0.837,0.0,0.0,0.161,7.443,1.644,0.161,7.443,1.447,9.689,0.209,0.0,0.335,0.263,0.31,2.2561,0.0,3.809,0.0,0.92,0.0,26.36,1097.38,3645.63,1.1421,49.31,1.0,49.31,53.44,53.44,0.0,45.66,1.0,45.66,53.44,53.44,0.0,21.22,41.001,25.0111,46.8058,0.29258,1.161,0.9596,1.0246,1.1416,0.3971,18.827,11.35,0.0,0.083,25.314,3.307,0.084,13.226,6.566,12.009,0.288,0.0,0.438,0.502,0.622,0.443,0.263,1.235,0.159,14.238,0.818,0.0,0.0,0.161,7.439,1.624,0.161,7.439,1.43,9.587,0.209,0.0,0.335,0.263,0.31,2.2561,0.0,3.809,0.0,0.92,0.0 house016.xml,50.51,110.001,57.9757,114.7852,0.2858,1.019,1.0,1.0241,1.0435,1.0,39.6928,0.0,0.0,0.703,78.018,5.507,0.574,41.14,11.46,24.908,0.865,0.0,0.542,0.498,0.814,0.443,0.263,1.695,0.296,36.174,2.896,0.0,0.0,0.242,19.075,6.027,0.242,19.075,10.471,18.238,0.371,0.0,0.359,0.213,1.194,2.2561,0.0,3.809,0.0,1.1877,1.013,71.33,6103.62,8200.25,1.0435,52.01,1.0,52.01,50.51,50.51,1.0,49.33,1.0,49.33,50.51,50.51,0.0,50.51,110.325,58.1398,115.1087,0.28495,1.0189,1.0,1.024,1.0434,1.0,39.8008,0.0,0.0,0.701,78.042,5.601,0.573,41.153,11.583,25.116,0.865,0.0,0.542,0.498,0.82,0.443,0.263,1.695,0.296,36.185,2.926,0.0,0.0,0.242,19.081,6.05,0.242,19.081,10.511,18.362,0.371,0.0,0.359,0.213,1.194,2.2561,0.0,3.809,0.0,1.1877,1.013 -house017.xml,68.28,59.253,42.4196,62.1246,0.20619,1.0306,1.0,1.0173,1.0485,1.0,36.833,0.0,0.0,21.182,6.544,10.79,33.748,3.542,18.681,20.078,0.659,0.0,0.805,0.485,0.979,1.282,0.263,1.695,22.378,1.761,2.346,0.0,0.0,35.654,0.953,4.061,39.2,0.953,9.04,15.444,0.491,0.0,1.047,0.228,1.098,1.0943,0.403,3.809,0.0,1.1877,1.013,163.68,8426.56,4910.24,1.0485,50.25,1.0,50.25,68.27,68.27,0.0,46.18,1.0,46.18,68.27,68.27,0.0,68.27,59.588,42.6446,62.4625,0.20526,1.0305,1.0,1.0172,1.0482,1.0,37.0612,0.0,0.0,21.167,6.553,10.939,33.725,3.545,18.874,20.27,0.659,0.0,0.805,0.485,0.982,1.282,0.263,1.695,22.363,1.767,2.374,0.0,0.0,35.631,0.956,4.096,39.175,0.956,9.118,15.649,0.491,0.0,1.047,0.228,1.098,1.0943,0.403,3.809,0.0,1.1877,1.013 +house017.xml,68.28,59.253,42.4196,62.1246,0.20619,1.0306,1.0,1.0173,1.0485,1.0,36.833,0.0,0.0,21.182,6.544,10.79,33.748,3.542,18.681,20.078,0.659,0.0,0.805,0.485,0.979,1.282,0.263,1.695,22.378,1.761,2.346,0.0,0.0,35.654,0.953,4.061,39.2,0.953,9.04,15.444,0.491,0.0,1.047,0.228,1.098,1.0943,0.403,3.809,0.0,1.1877,1.013,163.56,8426.56,4913.75,1.0485,50.25,1.0,50.25,68.27,68.27,0.0,46.18,1.0,46.18,68.27,68.27,0.0,68.27,59.588,42.6446,62.4625,0.20526,1.0305,1.0,1.0172,1.0482,1.0,37.0612,0.0,0.0,21.167,6.553,10.939,33.725,3.545,18.874,20.27,0.659,0.0,0.805,0.485,0.982,1.282,0.263,1.695,22.363,1.767,2.374,0.0,0.0,35.631,0.956,4.096,39.175,0.956,9.118,15.649,0.491,0.0,1.047,0.228,1.098,1.0943,0.403,3.809,0.0,1.1877,1.013 house018.xml,32.24,280.577,148.1649,268.676,0.23134,0.9103,1.0639,0.9888,0.9576,0.5847,117.3162,48.722,0.0,152.942,37.549,16.704,243.39100000000002,21.961,26.406,71.761,1.622,0.0,2.418,1.346,2.144,3.846,0.789,3.39,74.794,19.014,5.692,0.0,0.0,119.02799999999999,11.120999999999999,8.998,130.496,11.120999999999999,17.56,47.767,0.897,0.0,3.159,0.639,2.288,3.2829,1.209,11.427,0.0,2.3754,2.026,95.28,24793.19,27174.83,0.9576,47.68,1.0,47.68,55.06,55.06,0.0,47.1,1.0,47.1,55.06,55.06,0.0,32.28,282.113,148.7809,270.1937,0.23046,0.9106,1.0636,0.9888,0.9578,0.5863,117.773,48.722,0.0,152.862,37.59,17.326,243.26100000000002,21.983999999999998,27.22,72.713,1.622,0.0,2.418,1.346,2.158,3.846,0.789,3.39,74.778,19.021,5.95,0.0,0.0,119.00200000000001,11.124,9.346,130.46699999999998,11.124,18.24,48.135,0.897,0.0,3.159,0.639,2.288,3.2829,1.209,11.427,0.0,2.3754,2.026 -house019.xml,71.39,166.794,116.2003,162.7657,0.19741,0.9627,1.0136,1.0,0.9758,1.0,95.9628,0.0,0.0,100.376,12.303,12.927,159.873,7.489,21.866,41.188,0.0,0.0,0.805,0.431,1.019,1.282,0.263,1.724,54.145,4.485,7.252,0.0,0.0,86.24,2.73,12.267,95.142,2.73,15.187,29.323,20.995,0.0,1.041,0.201,1.408,1.0943,0.403,3.809,0.0,1.1877,1.013,79.67,29154.69,37499.47,0.9758,50.53,1.0,50.53,71.34,71.34,0.0,46.19,1.0,46.19,71.34,71.34,0.0,71.34,167.447,116.5879,163.4189,0.19662,0.9629,1.0136,1.0,0.9759,1.0,96.2284,0.0,0.0,100.338,12.316,13.212,159.813,7.496,22.236,41.581,0.0,0.0,0.805,0.431,1.024,1.282,0.263,1.724,54.123,4.492,7.328,0.0,0.0,86.204,2.734,12.334,95.102,2.734,15.27,29.651,20.994,0.0,1.041,0.201,1.408,1.0943,0.403,3.809,0.0,1.1877,1.013 -house020.xml,43.52,163.6338,134.6589,160.0348,0.26784,0.9391,1.0185,1.0225,0.978,0.5173,116.6486,56.31,0.0,90.858,16.783,12.784,113.94800000000001,8.787,14.126,43.098,0.111,0.0,1.711,2.056,0.984,2.136,1.052,1.087,70.919,14.902,12.166,0.0,0.0,91.06400000000001,7.777,13.443,97.608,7.777,13.443,33.055,3.617,0.0,1.7309999999999999,0.927,1.163,5.6065000000000005,0.403,15.236,0.0,0.92,0.0,103.75,13546.09,13349.82,0.978,55.45,1.0,55.45,84.08,84.08,0.0,52.0,1.0,52.0,84.08,84.08,0.0,43.63,164.2608,135.0804,160.6636,0.26667,0.9394,1.0184,1.0224,0.9781,0.519,117.0572,56.31,0.0,90.82600000000001,16.798000000000002,13.066,113.91,8.791,14.409,43.46,0.111,0.0,1.711,2.057,0.986,2.136,1.052,1.087,70.906,14.911,12.347,0.0,0.0,91.048,7.779,13.616,97.59100000000001,7.779,13.616,33.299,3.617,0.0,1.7309999999999999,0.927,1.163,5.6065000000000005,0.403,15.236,0.0,0.92,0.0 -house021.xml,59.56,107.916,67.493,113.3166,0.2749,1.0117,1.0379,1.0,1.05,1.0,50.731,0.0,0.0,55.788,9.129,14.902,88.856,5.392,24.076,27.217,0.88,0.0,0.805,0.444,1.049,1.282,0.263,1.695,29.528,5.985,10.156,0.0,0.0,47.031,3.535,16.408,51.856,3.535,17.617,19.134,2.69,0.0,1.042,0.263,1.587,1.0943,0.403,3.809,0.0,1.1877,1.013,63.21,16150.62,24334.03,1.05,51.81,1.0,51.81,59.49,59.49,0.0,47.74,1.0,47.74,59.49,59.49,0.0,59.49,108.883,68.0082,114.312,0.2739,1.0116,1.0378,1.0,1.0499,1.0,51.0302,0.0,0.0,55.734,9.151,15.32,88.772,5.403,24.62,27.798,0.88,0.0,0.805,0.445,1.055,1.282,0.263,1.695,29.503,5.999,10.298,0.0,0.0,46.992,3.542,16.55,51.813,3.542,17.769,19.518,2.69,0.0,1.042,0.263,1.587,1.0943,0.403,3.809,0.0,1.1877,1.013 +house019.xml,71.39,166.794,116.2003,162.7657,0.19741,0.9627,1.0136,1.0,0.9758,1.0,95.9628,0.0,0.0,100.376,12.303,12.927,159.873,7.489,21.866,41.188,0.0,0.0,0.805,0.431,1.019,1.282,0.263,1.724,54.145,4.485,7.252,0.0,0.0,86.24,2.73,12.267,95.142,2.73,15.187,29.323,20.995,0.0,1.041,0.201,1.408,1.0943,0.403,3.809,0.0,1.1877,1.013,79.61,29154.69,37528.53,0.9758,50.53,1.0,50.53,71.34,71.34,0.0,46.19,1.0,46.19,71.34,71.34,0.0,71.34,167.447,116.5879,163.4189,0.19662,0.9629,1.0136,1.0,0.9759,1.0,96.2284,0.0,0.0,100.338,12.316,13.212,159.813,7.496,22.236,41.581,0.0,0.0,0.805,0.431,1.024,1.282,0.263,1.724,54.123,4.492,7.328,0.0,0.0,86.204,2.734,12.334,95.102,2.734,15.27,29.651,20.994,0.0,1.041,0.201,1.408,1.0943,0.403,3.809,0.0,1.1877,1.013 +house020.xml,43.9,163.6338,135.2093,160.033,0.26797,0.9391,1.0185,1.0225,0.978,0.5196,117.2188,56.31,0.0,90.858,16.783,12.784,114.035,8.787,14.126,43.098,0.111,0.0,1.709,2.056,0.984,2.136,1.052,1.087,71.471,14.9,12.166,0.0,0.0,91.671,7.776,13.443,98.223,7.776,13.443,33.055,3.617,0.0,1.7309999999999999,0.927,1.163,5.6065000000000005,0.403,15.236,0.0,0.92,0.0,104.11,13605.13,13362.68,0.978,55.57,1.0,55.57,84.42,84.42,0.0,52.13,1.0,52.13,84.42,84.42,0.0,44.01,164.2608,135.6263,160.6622,0.26678,0.9393,1.0184,1.0224,0.9781,0.5213,117.627,56.31,0.0,90.82600000000001,16.798000000000002,13.066,114.001,8.791,14.409,43.46,0.111,0.0,1.709,2.057,0.986,2.136,1.052,1.087,71.45400000000001,14.909,12.347,0.0,0.0,91.65299999999999,7.778,13.616,98.204,7.778,13.616,33.299,3.617,0.0,1.7309999999999999,0.927,1.163,5.6065000000000005,0.403,15.236,0.0,0.92,0.0 +house021.xml,59.56,107.916,67.493,113.3166,0.2749,1.0117,1.0379,1.0,1.05,1.0,50.731,0.0,0.0,55.788,9.129,14.902,88.856,5.392,24.076,27.217,0.88,0.0,0.805,0.444,1.049,1.282,0.263,1.695,29.528,5.985,10.156,0.0,0.0,47.031,3.535,16.408,51.856,3.535,17.617,19.134,2.69,0.0,1.042,0.263,1.587,1.0943,0.403,3.809,0.0,1.1877,1.013,63.17,16150.62,24347.45,1.05,51.81,1.0,51.81,59.49,59.49,0.0,47.74,1.0,47.74,59.49,59.49,0.0,59.49,108.883,68.0082,114.312,0.2739,1.0116,1.0378,1.0,1.0499,1.0,51.0302,0.0,0.0,55.734,9.151,15.32,88.772,5.403,24.62,27.798,0.88,0.0,0.805,0.445,1.055,1.282,0.263,1.695,29.503,5.999,10.298,0.0,0.0,46.992,3.542,16.55,51.813,3.542,17.769,19.518,2.69,0.0,1.042,0.263,1.587,1.0943,0.403,3.809,0.0,1.1877,1.013 house022.xml,52.84,85.158,46.7859,88.5381,0.2459,1.0362,0.983,1.0207,1.0397,1.0,32.6138,0.0,0.0,0.494,57.912,4.478,0.381,31.087,6.04,21.294,0.98,0.0,0.574,0.489,0.824,0.443,0.263,1.111,0.741,26.396,1.718,0.0,0.0,0.572,14.169,2.317,0.572,14.169,2.267,15.839,2.092,0.0,1.0,0.126,0.282,2.2561,0.0,3.809,0.0,0.92,0.0,60.83,4146.37,6556.4,1.0397,53.27,1.0,53.27,52.83,52.83,1.0,49.42,1.0,49.42,52.83,52.83,0.0,52.83,85.192,46.7892,88.5624,0.24511,1.0361,0.9831,1.0206,1.0396,1.0,32.6136,0.0,0.0,0.494,57.915,4.487,0.38,31.088,6.049,21.316,0.98,0.0,0.576,0.489,0.824,0.443,0.263,1.111,0.739,26.387,1.718,0.0,0.0,0.569,14.164,2.316,0.569,14.164,2.266,15.853,2.092,0.0,1.0,0.126,0.282,2.2561,0.0,3.809,0.0,0.92,0.0 house023.xml,84.2,90.854,76.9587,91.3947,0.26966,1.0023,0.9814,1.0227,1.006,1.0,60.756,0.0,0.0,16.554,42.971,6.005,12.902,23.966,7.587,24.497,0.827,0.0,0.568,0.471,0.879,0.443,0.263,1.111,11.345,33.578,4.845,0.0,0.0,8.842,18.727,6.121,8.849,18.727,5.988,18.81,8.381,0.0,0.379,0.22,1.053,2.2561,0.0,3.809,0.0,0.92,0.0,85.41,9083.08,10572.37,1.006,48.41,1.0,48.41,84.2,84.2,0.0,46.76,1.0,46.76,84.2,84.2,0.0,84.2,90.884,76.9805,91.4231,0.26872,1.0023,0.9815,1.0226,1.0059,1.0,60.776,0.0,0.0,16.553,42.972,6.015,12.901,23.967,7.596,24.517,0.827,0.0,0.568,0.471,0.88,0.443,0.263,1.111,11.345,33.579,4.851,0.0,0.0,8.842,18.728,6.126,8.849,18.728,5.993,18.824,8.381,0.0,0.379,0.22,1.053,2.2561,0.0,3.809,0.0,0.92,0.0 house024.xml,71.72,110.745,80.2135,111.8431,0.28362,0.9905,1.0196,1.0,1.0099,1.0,58.5296,0.0,0.0,21.856,49.474,8.758,34.873,28.363,15.734,29.913,0.744,0.0,0.804,0.458,0.943,1.282,0.263,1.695,15.023,30.561,6.552,0.0,0.0,23.97,17.52,11.77,24.222,17.52,12.409,23.575,4.503,0.0,1.25,0.213,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013,96.24,12298.63,12653.33,1.0099,53.5,1.0,53.5,71.7,71.7,0.0,51.16,1.0,51.16,71.7,71.7,0.0,71.7,111.336,80.6115,112.4364,0.2827,0.9906,1.0195,1.0,1.0099,1.0,58.8678,0.0,0.0,21.84,49.503,8.974,34.847,28.381,16.014,30.275,0.744,0.0,0.804,0.458,0.95,1.282,0.263,1.695,15.01,30.582,6.639,0.0,0.0,23.949,17.533,11.847,24.2,17.533,12.49,23.878,4.503,0.0,1.25,0.213,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013 -house025.xml,16.32,198.588,111.61,189.9249,0.16447,0.9532,1.0113,0.992,0.9564,0.2778,97.437,70.373,0.0,108.354,23.95,12.252,95.974,12.949,13.966,51.266,2.767,0.0,1.0,0.971,0.975,0.886,0.526,1.111,57.152,12.948,2.333,0.0,0.0,50.622,7.001,2.66,50.66,7.001,2.602,36.487,2.69,0.0,0.682,0.342,0.282,4.5122,0.0,7.618,0.0,0.92,0.0,28.27,4111.96,15208.93,0.9564,50.81,1.0,50.81,58.69,58.69,0.0,47.05,1.0,47.05,58.69,58.69,0.0,16.4,199.206,111.8345,190.5566,0.16368,0.9535,1.0113,0.9921,0.9566,0.2794,97.665,70.373,0.0,108.322,23.964,12.526,95.949,12.956,14.239,51.628,2.767,0.0,1.0,0.971,0.977,0.886,0.526,1.111,57.17400000000001,12.928,2.358,0.0,0.0,50.644000000000005,6.99,2.68,50.682,6.99,2.622,36.684,2.69,0.0,0.682,0.342,0.282,4.5122,0.0,7.618,0.0,0.92,0.0 +house025.xml,16.47,198.588,111.8495,189.9237,0.16449,0.9532,1.0113,0.992,0.9564,0.2797,97.697,70.373,0.0,108.354,23.95,12.252,96.066,12.949,13.966,51.266,2.767,0.0,1.0,0.971,0.975,0.886,0.526,1.111,57.391000000000005,12.948,2.333,0.0,0.0,50.882000000000005,7.001,2.66,50.92100000000001,7.001,2.602,36.487,2.69,0.0,0.682,0.342,0.282,4.5122,0.0,7.618,0.0,0.92,0.0,28.43,4138.5,15218.3,0.9564,50.9,1.0,50.9,58.81,58.81,0.0,47.12,1.0,47.12,58.81,58.81,0.0,16.55,199.206,112.071,190.5545,0.16372,0.9534,1.0113,0.9921,0.9566,0.2814,97.925,70.373,0.0,108.322,23.964,12.526,96.044,12.956,14.239,51.628,2.767,0.0,1.0,0.971,0.977,0.886,0.526,1.111,57.411,12.928,2.358,0.0,0.0,50.903,6.99,2.68,50.942,6.99,2.622,36.684,2.69,0.0,0.682,0.342,0.282,4.5122,0.0,7.618,0.0,0.92,0.0 house026.xml,65.73,74.369,51.1235,77.7818,0.22017,1.0269,1.0,1.0185,1.0459,1.0,38.3772,0.0,0.0,11.925,31.779,7.404,19.027,18.297,13.926,22.598,0.664,0.0,0.804,0.456,1.802,1.282,0.263,3.39,6.178,18.636,7.012,0.0,0.0,9.858,10.73,13.192,10.869,10.73,14.164,18.802,0.494,0.0,1.042,0.213,3.174,1.0943,0.403,3.809,0.0,2.3754,2.026,90.46,8224.58,8692.9,1.0459,47.4,1.0,47.4,65.75,65.75,0.0,46.36,1.0,46.36,65.75,65.75,0.0,65.75,74.684,51.3475,78.0999,0.21946,1.0268,1.0,1.0184,1.0457,1.0,38.5578,0.0,0.0,11.918,31.795,7.518,19.015,18.306,14.074,22.79,0.664,0.0,0.804,0.456,1.81,1.282,0.263,3.39,6.174,18.649,7.068,0.0,0.0,9.85,10.737,13.232,10.861,10.737,14.208,18.963,0.494,0.0,1.042,0.213,3.174,1.0943,0.403,3.809,0.0,2.3754,2.026 house027.xml,69.86,90.758,65.9056,94.338,0.31589,1.0125,1.0,1.0266,1.0394,1.0,47.9424,0.0,0.0,15.935,41.078,7.403,25.424,23.435,14.249,25.568,0.774,0.0,0.804,0.46,0.896,1.282,0.263,1.724,10.537,26.042,6.042,0.0,0.0,16.812,14.857,11.63,16.988,14.857,11.632,19.506,3.778,0.0,1.25,0.213,1.667,1.0943,0.403,3.809,0.0,1.1877,1.013,91.71,9995.75,10485.52,1.0394,52.31,1.0,52.31,69.86,69.86,0.0,50.01,1.0,50.01,69.86,69.86,0.0,69.86,91.073,66.1218,94.6532,0.31484,1.0124,1.0,1.0265,1.0393,1.0,48.121,0.0,0.0,15.928,41.094,7.517,25.411,23.445,14.398,25.76,0.774,0.0,0.804,0.46,0.9,1.282,0.263,1.724,10.531,26.054,6.093,0.0,0.0,16.801,14.864,11.671,16.977,14.864,11.673,19.667,3.777,0.0,1.25,0.213,1.667,1.0943,0.403,3.809,0.0,1.1877,1.013 house028.xml,65.63,117.815,78.7912,120.0584,0.29278,0.9795,1.0404,1.0,1.019,1.0,63.495,0.0,0.0,22.948,52.655,10.086,17.747,30.363,11.681,30.996,1.13,0.0,0.573,0.455,0.959,0.443,0.263,1.111,13.535,31.353,7.807,0.0,0.0,10.467,18.079,9.042,10.475,18.079,8.845,25.31,0.787,0.0,0.401,0.228,1.053,2.2561,0.0,3.809,0.0,0.92,0.0,67.91,9590.86,13859.53,1.019,46.55,1.0,46.55,65.62,65.62,0.0,45.68,1.0,45.68,65.62,65.62,0.0,65.62,118.688,79.3652,120.9405,0.29179,0.9795,1.0403,1.0,1.019,1.0,64.039,0.0,0.0,22.924,52.699,10.403,17.73,30.39,11.998,31.532,1.13,0.0,0.573,0.455,0.963,0.443,0.263,1.111,13.514,31.389,7.921,0.0,0.0,10.452,18.101,9.136,10.46,18.101,8.937,25.754,0.787,0.0,0.401,0.228,1.053,2.2561,0.0,3.809,0.0,0.92,0.0 house029.xml,64.86,116.118,75.3129,116.1097,0.26552,0.9819,1.0183,1.0,0.9999,1.0,55.6544,0.0,0.0,22.476,52.003,8.758,35.864999999999995,29.86,15.736,31.884,0.997,0.0,1.606,0.914,1.886,2.564,0.526,3.39,14.425,30.202,3.706,0.0,0.0,23.018,17.342,6.66,23.259,17.342,9.278,26.283,0.696,0.0,2.5,0.426,2.652,2.1886,0.806,7.618,0.0,2.3754,2.026,86.98,11573.48,13306.2,0.9999,48.73,1.0,48.73,64.85,64.85,0.0,47.95,1.0,47.95,64.85,64.85,0.0,64.85,116.71,75.6841,116.7017,0.26467,0.982,1.0183,1.0,0.9999,1.0,55.9944,0.0,0.0,22.46,52.033,8.974,35.839,29.877,16.014,32.246,0.997,0.0,1.606,0.914,1.9,2.564,0.526,3.39,14.41,30.227,3.764,0.0,0.0,22.994,17.356,6.718,23.235,17.356,9.36,26.586,0.696,0.0,2.5,0.426,2.652,2.1886,0.806,7.618,0.0,2.3754,2.026 house030.xml,62.87,139.641,88.0257,140.013,0.30503,0.9622,1.0421,1.0,1.0027,1.0,64.1632,0.0,0.0,28.268,63.498999999999995,10.086,45.102000000000004,36.339,17.46,36.582,1.206,0.0,1.608,0.918,1.958,2.564,0.526,3.39,18.075,39.092,2.634,0.0,0.0,28.839,22.371000000000002,4.558,29.142,22.371000000000002,9.178,27.391,0.834,0.0,2.5,0.441,2.264,2.1886,0.806,7.618,0.0,2.3754,2.026,84.16,13433.45,15919.76,1.0027,49.9,1.0,49.9,62.84,62.84,0.0,49.24,1.0,49.24,62.84,62.84,0.0,62.84,140.514,88.5362,140.8874,0.30401,0.9623,1.042,1.0,1.0027,1.0,64.6554,0.0,0.0,28.244,63.543,10.404,45.064,36.364000000000004,17.87,37.118,1.206,0.0,1.608,0.918,1.974,2.564,0.526,3.39,18.052,39.131,2.684,0.0,0.0,28.804,22.393,4.61,29.106,22.393,9.282,27.835,0.834,0.0,2.5,0.441,2.264,2.1886,0.806,7.618,0.0,2.3754,2.026 -house031.xml,55.98,211.4885,118.9181,212.4461,-0.02309,1.0066,0.9968,1.0011,1.0045,1.0,105.01,0.0,0.0,122.762,23.996,14.123,109.292,12.956,17.739,49.516,1.092,0.0,1.982,1.9449999999999998,0.983,1.772,1.052,1.235,60.385999999999996,16.459,3.004,0.0,0.0,53.69,8.886000000000001,3.773,53.731,8.886000000000001,3.322,36.082,2.989,0.0,1.369,0.689,0.282,9.0244,0.0,15.236,0.0,0.92,0.0,54.75,9100.48,16547.26,1.0045,49.83,1.0,49.83,55.88,55.88,0.0,46.63,1.0,46.63,55.88,55.88,0.0,55.88,212.3995,119.2281,213.3683,-0.02326,1.0067,0.9968,1.0011,1.0046,1.0,105.303,0.0,0.0,122.713,24.017,14.525,109.256,12.966000000000001,18.14,50.052,1.092,0.0,1.982,1.9449999999999998,0.989,1.772,1.052,1.235,60.399,16.468,3.043,0.0,0.0,53.706,8.891,3.8,53.747,8.891,3.346,36.328,2.989,0.0,1.369,0.689,0.282,9.0244,0.0,15.236,0.0,0.92,0.0 +house031.xml,56.07,211.4885,119.1226,212.4523,-0.02324,1.0067,0.9968,1.0011,1.0046,1.0,105.231,0.0,0.0,122.762,23.996,14.123,109.37100000000001,12.956,17.739,49.516,1.092,0.0,1.982,1.9449999999999998,0.983,1.772,1.052,1.235,60.589,16.459,3.004,0.0,0.0,53.911,8.886000000000001,3.773,53.952,8.886000000000001,3.322,36.082,2.989,0.0,1.369,0.689,0.282,9.0244,0.0,15.236,0.0,0.92,0.0,54.86,9122.92,16554.94,1.0046,49.9,1.0,49.9,55.97,55.97,0.0,46.7,1.0,46.7,55.97,55.97,0.0,55.97,212.3995,119.4315,213.3743,-0.0234,1.0067,0.9968,1.0011,1.0046,1.0,105.523,0.0,0.0,122.713,24.017,14.525,109.335,12.966000000000001,18.14,50.052,1.092,0.0,1.9809999999999999,1.9449999999999998,0.989,1.772,1.052,1.235,60.603,16.468,3.043,0.0,0.0,53.926,8.891,3.8,53.967,8.891,3.346,36.328,2.989,0.0,1.369,0.689,0.282,9.0244,0.0,15.236,0.0,0.92,0.0 house032.xml,74.03,130.04,98.1265,132.5485,0.27905,0.9771,1.0193,1.0235,1.0193,1.0,70.0544,0.0,0.0,26.019,61.541,8.758,41.504999999999995,34.777,16.014,32.759,0.963,0.0,1.6070000000000002,0.927,0.943,2.564,0.526,1.724,17.897,41.668,7.087,0.0,0.0,28.549,23.543999999999997,12.958,28.848,23.543999999999997,12.96,25.639,5.837,0.0,2.5,0.426,1.667,2.1886,0.806,7.618,0.0,1.1877,1.013,105.74,15879.51,14733.2,1.0193,55.07,1.0,55.07,74.01,74.01,0.0,52.54,1.0,52.54,74.01,74.01,0.0,74.01,130.632,98.5341,133.1433,0.27811,0.9772,1.0192,1.0234,1.0192,1.0,70.3934,0.0,0.0,26.003,61.571,8.974,41.480000000000004,34.794,16.295,33.121,0.963,0.0,1.6070000000000002,0.927,0.95,2.564,0.526,1.724,17.883,41.692,7.181,0.0,0.0,28.527,23.558,13.04,28.826,23.558,13.042,25.942,5.836,0.0,2.5,0.426,1.667,2.1886,0.806,7.618,0.0,1.1877,1.013 -house033.xml,66.25,154.086,98.8292,149.1844,0.23286,0.9529,1.0161,1.0,0.9682,1.0,80.7416,0.0,0.0,69.673,31.649,11.126,111.026,18.122999999999998,19.058,41.638,0.0,0.0,1.609,0.917,0.989,2.564,0.526,1.695,52.089,12.472999999999999,3.342,0.0,0.0,83.005,7.1419999999999995,5.725,91.782,7.1419999999999995,10.523,30.926,0.0,0.0,2.072,0.441,1.169,2.1886,0.806,7.618,0.0,1.1877,1.013,89.83,21995.7,25291.08,0.9682,49.42,1.0,49.42,66.27,66.27,0.0,49.45,1.0,49.45,66.27,66.27,0.0,66.27,154.696,99.2728,149.7914,0.23208,0.953,1.016,1.0,0.9683,1.0,81.1812,0.0,0.0,69.645,31.67,11.381,110.983,18.135,19.388,42.0,0.0,0.0,1.609,0.917,0.995,2.564,0.526,1.695,52.068,12.483,3.407,0.0,0.0,82.97399999999999,7.148,5.804,91.748,7.148,10.669,31.314,0.0,0.0,2.072,0.441,1.169,2.1886,0.806,7.618,0.0,1.1877,1.013 +house033.xml,66.25,154.086,98.8292,149.1844,0.23286,0.9529,1.0161,1.0,0.9682,1.0,80.7416,0.0,0.0,69.673,31.649,11.126,111.026,18.122999999999998,19.058,41.638,0.0,0.0,1.609,0.917,0.989,2.564,0.526,1.695,52.089,12.472999999999999,3.342,0.0,0.0,83.005,7.1419999999999995,5.725,91.782,7.1419999999999995,10.523,30.926,0.0,0.0,2.072,0.441,1.169,2.1886,0.806,7.618,0.0,1.1877,1.013,89.75,21995.7,25313.26,0.9682,49.42,1.0,49.42,66.27,66.27,0.0,49.45,1.0,49.45,66.27,66.27,0.0,66.27,154.696,99.2728,149.7914,0.23208,0.953,1.016,1.0,0.9683,1.0,81.1812,0.0,0.0,69.645,31.67,11.381,110.983,18.135,19.388,42.0,0.0,0.0,1.609,0.917,0.995,2.564,0.526,1.695,52.068,12.483,3.407,0.0,0.0,82.97399999999999,7.148,5.804,91.748,7.148,10.669,31.314,0.0,0.0,2.072,0.441,1.169,2.1886,0.806,7.618,0.0,1.1877,1.013 house034.xml,62.85,60.158,38.9459,61.9645,0.19633,1.0133,1.0,1.0165,1.03,1.0,33.1174,0.0,0.0,18.358,5.593,9.834,29.267,3.183,17.471,24.346,2.027,0.0,0.804,0.461,0.954,1.282,0.263,1.695,9.199,3.437,4.347,0.0,0.0,14.665,1.956,7.723,16.17,1.956,10.759,19.733,2.23,0.0,1.042,0.244,1.326,1.0943,0.403,3.809,0.0,1.1877,1.013,153.48,5750.13,3637.21,1.03,55.25,1.0,55.25,63.01,63.01,0.0,50.91,1.0,50.91,63.01,63.01,0.0,63.01,60.48,39.2494,62.287,0.19536,1.0133,1.0,1.0164,1.0299,1.0,33.4048,0.0,0.0,18.342,5.6,9.973,29.241,3.186,17.65,24.538,2.027,0.0,0.804,0.461,0.958,1.282,0.263,1.695,9.185,3.443,4.398,0.0,0.0,14.643,1.959,7.784,16.145,1.959,10.844,19.993,2.23,0.0,1.042,0.244,1.326,1.0943,0.403,3.809,0.0,1.1877,1.013 -house035.xml,70.07,104.455,72.9082,104.0494,0.19797,0.9798,1.0,1.0166,0.9961,1.0,61.5082,0.0,0.0,52.48,7.905,10.91,83.587,4.856,12.619,32.114,1.046,0.0,0.805,0.427,0.961,1.282,0.263,1.111,40.136,3.337,9.031,0.0,0.0,63.926,2.05,10.446,69.3,2.05,10.219,19.89,0.514,0.0,1.075,0.263,1.099,1.0943,0.403,3.809,0.0,0.92,0.0,75.82,18413.95,24379.52,0.9961,54.93,1.0,54.93,69.99,69.99,0.0,48.8,1.0,48.8,69.99,69.99,0.0,69.99,104.786,73.0607,104.3806,0.19724,0.9799,1.0,1.0165,0.9961,1.0,61.658,0.0,0.0,52.462,7.912,11.06,83.558,4.86,12.769,32.306,1.046,0.0,0.805,0.427,0.962,1.282,0.263,1.111,40.131,3.339,9.144,0.0,0.0,63.918,2.051,10.558,69.292,2.051,10.328,19.932,0.514,0.0,1.075,0.263,1.099,1.0943,0.403,3.809,0.0,0.92,0.0 -house036.xml,75.74,115.856,86.0139,113.51,0.19119,0.9772,0.9868,1.016,0.9798,0.9995,72.7756,0.035,0.0,61.947,10.442,8.639,98.684,6.244,15.922,33.597,1.231,0.0,0.805,0.439,0.92,1.282,0.263,1.695,34.489,6.925,2.374,0.0,0.0,54.942,4.141,4.375,60.407,4.141,9.099,27.748,14.478,0.0,1.047,0.244,1.121,1.0943,0.403,3.809,0.0,1.1877,1.013,80.76,20735.59,26206.09,0.9798,54.23,1.0,54.23,75.77,75.77,0.0,49.03,1.0,49.03,75.77,75.77,0.0,75.73,115.89,86.0374,113.5517,0.1905,0.9773,0.9869,1.016,0.9798,0.9995,72.7902,0.035,0.0,61.946,10.443,8.651,98.68,6.244,15.939,33.619,1.231,0.0,0.805,0.439,0.92,1.282,0.263,1.695,34.489,6.929,2.378,0.0,0.0,54.941,4.143,4.381,60.406,4.143,9.112,27.763,14.478,0.0,1.047,0.244,1.121,1.0943,0.403,3.809,0.0,1.1877,1.013 -house037.xml,67.21,113.686,77.2487,114.9445,0.19874,0.9974,1.0137,1.0,1.0111,1.0,64.929,0.0,0.0,65.001,7.964,12.927,103.53,4.935,14.647,26.963,0.831,0.0,0.805,0.424,0.981,1.282,0.263,1.111,41.253,4.725,10.056,0.0,0.0,65.705,2.928,11.394,71.229,2.928,11.146,20.804,0.411,0.0,1.075,0.263,1.099,1.0943,0.403,3.809,0.0,0.92,0.0,73.34,19336.51,26077.02,1.0111,52.66,1.0,52.66,67.18,67.18,0.0,47.52,1.0,47.52,67.18,67.18,0.0,67.18,114.312,77.6453,115.5726,0.19799,0.9974,1.0137,1.0,1.011,1.0,65.318,0.0,0.0,64.967,7.977,13.212,103.476,4.942,14.932,27.325,0.831,0.0,0.805,0.424,0.983,1.282,0.263,1.111,41.235,4.731,10.221,0.0,0.0,65.677,2.931,11.551,71.198,2.931,11.3,21.048,0.411,0.0,1.075,0.263,1.099,1.0943,0.403,3.809,0.0,0.92,0.0 +house035.xml,70.07,104.455,72.9082,104.0494,0.19797,0.9798,1.0,1.0166,0.9961,1.0,61.5082,0.0,0.0,52.48,7.905,10.91,83.587,4.856,12.619,32.114,1.046,0.0,0.805,0.427,0.961,1.282,0.263,1.111,40.136,3.337,9.031,0.0,0.0,63.926,2.05,10.446,69.3,2.05,10.219,19.89,0.514,0.0,1.075,0.263,1.099,1.0943,0.403,3.809,0.0,0.92,0.0,75.77,18413.95,24396.85,0.9961,54.93,1.0,54.93,69.99,69.99,0.0,48.8,1.0,48.8,69.99,69.99,0.0,69.99,104.786,73.0607,104.3806,0.19724,0.9799,1.0,1.0165,0.9961,1.0,61.658,0.0,0.0,52.462,7.912,11.06,83.558,4.86,12.769,32.306,1.046,0.0,0.805,0.427,0.962,1.282,0.263,1.111,40.131,3.339,9.144,0.0,0.0,63.918,2.051,10.558,69.292,2.051,10.328,19.932,0.514,0.0,1.075,0.263,1.099,1.0943,0.403,3.809,0.0,0.92,0.0 +house036.xml,75.74,115.856,86.0139,113.51,0.19119,0.9772,0.9868,1.016,0.9798,0.9995,72.7756,0.035,0.0,61.947,10.442,8.639,98.684,6.244,15.922,33.597,1.231,0.0,0.805,0.439,0.92,1.282,0.263,1.695,34.489,6.925,2.374,0.0,0.0,54.942,4.141,4.375,60.407,4.141,9.099,27.748,14.478,0.0,1.047,0.244,1.121,1.0943,0.403,3.809,0.0,1.1877,1.013,80.56,20735.59,26271.6,0.9798,54.23,1.0,54.23,75.77,75.77,0.0,49.03,1.0,49.03,75.77,75.77,0.0,75.73,115.89,86.0374,113.5517,0.1905,0.9773,0.9869,1.016,0.9798,0.9995,72.7902,0.035,0.0,61.946,10.443,8.651,98.68,6.244,15.939,33.619,1.231,0.0,0.805,0.439,0.92,1.282,0.263,1.695,34.489,6.929,2.378,0.0,0.0,54.941,4.143,4.381,60.406,4.143,9.112,27.763,14.478,0.0,1.047,0.244,1.121,1.0943,0.403,3.809,0.0,1.1877,1.013 +house037.xml,67.21,113.686,77.2487,114.9445,0.19874,0.9974,1.0137,1.0,1.0111,1.0,64.929,0.0,0.0,65.001,7.964,12.927,103.53,4.935,14.647,26.963,0.831,0.0,0.805,0.424,0.981,1.282,0.263,1.111,41.253,4.725,10.056,0.0,0.0,65.705,2.928,11.394,71.229,2.928,11.146,20.804,0.411,0.0,1.075,0.263,1.099,1.0943,0.403,3.809,0.0,0.92,0.0,73.29,19336.51,26094.77,1.0111,52.66,1.0,52.66,67.18,67.18,0.0,47.52,1.0,47.52,67.18,67.18,0.0,67.18,114.312,77.6453,115.5726,0.19799,0.9974,1.0137,1.0,1.011,1.0,65.318,0.0,0.0,64.967,7.977,13.212,103.476,4.942,14.932,27.325,0.831,0.0,0.805,0.424,0.983,1.282,0.263,1.111,41.235,4.731,10.221,0.0,0.0,65.677,2.931,11.551,71.198,2.931,11.3,21.048,0.411,0.0,1.075,0.263,1.099,1.0943,0.403,3.809,0.0,0.92,0.0 house038.xml,65.15,134.449,85.0734,130.5778,0.27972,0.9528,1.0193,1.0,0.9712,1.0,65.3924,0.0,0.0,39.277,44.977999999999994,9.683,41.254,24.833,17.233,39.235,1.276,0.0,2.246,0.951,0.952,2.168,0.526,1.695,28.264000000000003,23.666,4.92,0.0,0.0,30.107999999999997,13.065999999999999,8.756,30.292,13.065999999999999,11.936,27.312,0.912,0.0,2.082,0.488,1.342,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,74.81,14951.15,20578.01,0.9712,48.91,1.0,48.91,65.14,65.14,0.0,48.28,1.0,48.28,65.14,65.14,0.0,65.14,135.05,85.4496,131.1761,0.27866,0.953,1.0192,1.0,0.9713,1.0,65.7314,0.0,0.0,39.257999999999996,45.004,9.915,41.238,24.848,17.534,39.597,1.276,0.0,2.246,0.951,0.958,2.168,0.526,1.695,28.253,23.676000000000002,5.075,0.0,0.0,30.099,13.072,8.975,30.283,13.072,12.235,27.533,0.912,0.0,2.082,0.488,1.342,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 -house039.xml,58.72,160.412,155.334,159.9268,0.11105,0.9746,1.023,1.0,0.997,0.6046,112.0792,44.32,0.0,72.765,25.205000000000002,15.968,115.97200000000001,13.765,27.771,46.473,0.0,0.0,2.4130000000000003,1.442,1.085,3.846,0.789,1.887,92.066,12.338000000000001,15.402,0.0,0.0,146.736,6.7379999999999995,26.786,150.466,6.7379999999999995,24.481,35.527,0.0,0.0,3.542,0.895,1.667,3.2829,1.209,11.427,0.0,1.1877,1.013,213.5,26294.6,12353.26,0.997,51.78,1.0,51.78,96.89,96.89,0.0,48.28,1.0,48.28,96.89,96.89,0.0,58.77,161.614,156.1198,161.1291,0.11022,0.9748,1.0228,1.0,0.997,0.6066,112.6612,44.32,0.0,72.705,25.235,16.496,115.877,13.779,28.469,47.177,0.0,0.0,2.412,1.443,1.093,3.846,0.789,1.887,92.033,12.353,15.758,0.0,0.0,146.683,6.744999999999999,27.195,150.41199999999998,6.744999999999999,24.855,35.975,0.0,0.0,3.542,0.895,1.667,3.2829,1.209,11.427,0.0,1.1877,1.013 -house040.xml,64.56,199.265,122.9819,190.4887,0.18855,0.956,1.0,1.0,0.956,1.0,94.9702,0.0,0.0,127.047,14.774,10.91,202.353,8.798,19.247,44.717,1.817,0.0,0.805,0.441,0.977,1.282,0.263,1.724,63.782,17.956,7.069,0.0,0.0,101.588,10.693,12.47,112.331,10.693,15.112,32.07,2.105,0.0,1.036,0.263,1.429,1.0943,0.403,3.809,0.0,1.1877,1.013,70.15,29791.54,44426.24,0.956,51.82,1.0,51.82,64.57,64.57,0.0,49.25,1.0,49.25,64.57,64.57,0.0,64.57,199.61,123.2246,190.8524,0.18781,0.9561,1.0,1.0,0.9561,1.0,95.1346,0.0,0.0,127.027,14.781,11.06,202.321,8.802,19.443,44.925,1.817,0.0,0.805,0.441,0.981,1.282,0.263,1.724,63.775,17.958,7.184,0.0,0.0,101.577,10.694,12.628,112.318,10.694,15.304,32.203,2.105,0.0,1.036,0.263,1.429,1.0943,0.403,3.809,0.0,1.1877,1.013 -house041.xml,80.09,73.205,59.9865,74.902,0.12851,1.0034,1.0089,1.0107,1.0232,1.0,48.3142,0.0,0.0,25.932,9.271,12.252,41.326,5.028,20.568,25.75,0.0,0.0,0.804,0.484,1.01,1.282,0.263,1.695,18.312,6.723,11.361,0.0,0.0,29.182,3.646,19.072,31.459,3.646,20.107,23.099,0.492,0.0,1.087,0.284,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013,165.91,9796.67,5771.0,1.0232,51.09,1.0,51.09,80.02,80.02,0.0,46.18,1.0,46.18,80.02,80.02,0.0,80.02,73.827,60.4421,75.5308,0.12794,1.0034,1.0088,1.0107,1.0231,1.0,48.667,0.0,0.0,25.901,9.288,12.526,41.277,5.037,20.923,26.112,0.0,0.0,0.804,0.484,1.015,1.282,0.263,1.695,18.293,6.734,11.573,0.0,0.0,29.153,3.652,19.33,31.428,3.652,20.379,23.35,0.492,0.0,1.087,0.284,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013 -house042.xml,90.76,116.72,105.6728,116.4332,0.22189,0.9825,1.0153,1.0,0.9975,1.0,78.358,0.0,0.0,50.454,23.275,11.126,80.401,13.395,19.393,31.865,0.0,0.0,0.805,0.456,0.989,1.282,0.263,1.724,51.904,18.764,8.149,0.0,0.0,82.712,10.799,14.204,83.58,10.799,15.274,26.855,0.0,0.0,1.25,0.263,1.563,1.0943,0.403,3.809,0.0,1.1877,1.013,112.29,21450.36,19149.47,0.9975,47.62,1.0,47.62,90.64,90.64,0.0,47.62,1.0,47.62,90.64,90.64,0.0,90.64,117.332,106.0872,117.0448,0.22108,0.9826,1.0153,1.0,0.9976,1.0,78.6864,0.0,0.0,50.427,23.297,11.381,80.358,13.407,19.724,32.227,0.0,0.0,0.805,0.456,0.995,1.282,0.263,1.724,51.888,18.776,8.347,0.0,0.0,82.686,10.805,14.467,83.554,10.805,15.556,27.076,0.0,0.0,1.25,0.263,1.563,1.0943,0.403,3.809,0.0,1.1877,1.013 -house043.xml,-7.81,52.322,21.6347,54.1458,0.29983,1.0349,1.0,1.0,1.0349,-0.1954,20.687,24.73,0.0,12.809,6.172,10.343,12.681,3.298,12.032,20.737,2.261,0.0,0.447,0.491,0.955,0.443,0.263,1.111,1.165,2.687,2.286,0.0,0.0,1.153,1.436,2.659,1.154,1.436,2.601,14.706,0.791,0.0,0.385,0.55,0.295,2.2561,0.0,3.809,0.0,0.92,0.0,0.77,34.26,4285.19,1.0349,54.04,1.0,54.04,39.98,39.98,1.0,49.09,1.0,49.09,39.98,39.98,1.0,-7.49,52.653,21.7804,54.4799,0.29847,1.0347,1.0,1.0,1.0347,-0.1874,20.827,24.73,0.0,12.794,6.182,10.487,12.67,3.303,12.177,20.929,2.261,0.0,0.447,0.491,0.957,0.443,0.263,1.111,1.171,2.691,2.299,0.0,0.0,1.16,1.438,2.67,1.161,1.438,2.612,14.827,0.791,0.0,0.385,0.55,0.295,2.2561,0.0,3.809,0.0,0.92,0.0 -house044.xml,69.26,43.348,31.6906,45.7591,0.17016,1.0658,0.9765,1.0143,1.0556,1.0,27.7366,0.0,0.0,18.834,3.836,6.474,30.001,2.269,8.171,13.861,0.343,0.0,0.805,0.444,0.88,1.282,0.263,1.111,14.432,2.703,4.493,0.0,0.0,22.988,1.599,5.67,25.275,1.599,5.547,9.54,0.523,0.0,1.047,0.263,1.053,1.0943,0.403,3.809,0.0,0.92,0.0,70.65,7624.24,10222.25,1.0556,52.26,1.0,52.26,69.33,69.33,0.0,47.18,1.0,47.18,69.33,69.33,0.0,69.33,43.078,31.5208,45.4646,0.16951,1.0656,0.9766,1.0142,1.0554,1.0,27.5796,0.0,0.0,18.847,3.829,6.348,30.022,2.265,8.046,13.711,0.343,0.0,0.805,0.444,0.877,1.282,0.263,1.111,14.44,2.698,4.449,0.0,0.0,23.002,1.596,5.639,25.29,1.596,5.516,9.411,0.523,0.0,1.047,0.263,1.053,1.0943,0.403,3.809,0.0,0.92,0.0 +house039.xml,58.72,160.412,155.334,159.9268,0.11105,0.9746,1.023,1.0,0.997,0.6046,112.0792,44.32,0.0,72.765,25.205000000000002,15.968,115.97200000000001,13.765,27.771,46.473,0.0,0.0,2.4130000000000003,1.442,1.085,3.846,0.789,1.887,92.066,12.338000000000001,15.402,0.0,0.0,146.736,6.7379999999999995,26.786,150.466,6.7379999999999995,24.481,35.527,0.0,0.0,3.542,0.895,1.667,3.2829,1.209,11.427,0.0,1.1877,1.013,213.38,26294.6,12360.04,0.997,51.78,1.0,51.78,96.89,96.89,0.0,48.28,1.0,48.28,96.89,96.89,0.0,58.77,161.614,156.1198,161.1291,0.11022,0.9748,1.0228,1.0,0.997,0.6066,112.6612,44.32,0.0,72.705,25.235,16.496,115.877,13.779,28.469,47.177,0.0,0.0,2.412,1.443,1.093,3.846,0.789,1.887,92.033,12.353,15.758,0.0,0.0,146.683,6.744999999999999,27.195,150.41199999999998,6.744999999999999,24.855,35.975,0.0,0.0,3.542,0.895,1.667,3.2829,1.209,11.427,0.0,1.1877,1.013 +house040.xml,64.56,199.265,122.9819,190.4887,0.18855,0.956,1.0,1.0,0.956,1.0,94.9702,0.0,0.0,127.047,14.774,10.91,202.353,8.798,19.247,44.717,1.817,0.0,0.805,0.441,0.977,1.282,0.263,1.724,63.782,17.956,7.069,0.0,0.0,101.588,10.693,12.47,112.331,10.693,15.112,32.07,2.105,0.0,1.036,0.263,1.429,1.0943,0.403,3.809,0.0,1.1877,1.013,70.09,29791.54,44463.79,0.956,51.82,1.0,51.82,64.57,64.57,0.0,49.25,1.0,49.25,64.57,64.57,0.0,64.57,199.61,123.2246,190.8524,0.18781,0.9561,1.0,1.0,0.9561,1.0,95.1346,0.0,0.0,127.027,14.781,11.06,202.321,8.802,19.443,44.925,1.817,0.0,0.805,0.441,0.981,1.282,0.263,1.724,63.775,17.958,7.184,0.0,0.0,101.577,10.694,12.628,112.318,10.694,15.304,32.203,2.105,0.0,1.036,0.263,1.429,1.0943,0.403,3.809,0.0,1.1877,1.013 +house041.xml,80.09,73.205,59.9865,74.902,0.12851,1.0034,1.0089,1.0107,1.0232,1.0,48.3142,0.0,0.0,25.932,9.271,12.252,41.326,5.028,20.568,25.75,0.0,0.0,0.804,0.484,1.01,1.282,0.263,1.695,18.312,6.723,11.361,0.0,0.0,29.182,3.646,19.072,31.459,3.646,20.107,23.099,0.492,0.0,1.087,0.284,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013,165.85,9796.67,5773.25,1.0232,51.09,1.0,51.09,80.02,80.02,0.0,46.18,1.0,46.18,80.02,80.02,0.0,80.02,73.827,60.4421,75.5308,0.12794,1.0034,1.0088,1.0107,1.0231,1.0,48.667,0.0,0.0,25.901,9.288,12.526,41.277,5.037,20.923,26.112,0.0,0.0,0.804,0.484,1.015,1.282,0.263,1.695,18.293,6.734,11.573,0.0,0.0,29.153,3.652,19.33,31.428,3.652,20.379,23.35,0.492,0.0,1.087,0.284,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013 +house042.xml,90.76,116.72,105.6728,116.4332,0.22189,0.9825,1.0153,1.0,0.9975,1.0,78.358,0.0,0.0,50.454,23.275,11.126,80.401,13.395,19.393,31.865,0.0,0.0,0.805,0.456,0.989,1.282,0.263,1.724,51.904,18.764,8.149,0.0,0.0,82.712,10.799,14.204,83.58,10.799,15.274,26.855,0.0,0.0,1.25,0.263,1.563,1.0943,0.403,3.809,0.0,1.1877,1.013,112.19,21450.36,19166.98,0.9975,47.62,1.0,47.62,90.64,90.64,0.0,47.62,1.0,47.62,90.64,90.64,0.0,90.64,117.332,106.0872,117.0448,0.22108,0.9826,1.0153,1.0,0.9976,1.0,78.6864,0.0,0.0,50.427,23.297,11.381,80.358,13.407,19.724,32.227,0.0,0.0,0.805,0.456,0.995,1.282,0.263,1.724,51.888,18.776,8.347,0.0,0.0,82.686,10.805,14.467,83.554,10.805,15.556,27.076,0.0,0.0,1.25,0.263,1.563,1.0943,0.403,3.809,0.0,1.1877,1.013 +house043.xml,-7.81,52.322,21.6337,54.146,0.29987,1.0349,1.0,1.0,1.0349,-0.1954,20.687,24.73,0.0,12.809,6.172,10.343,12.692,3.298,12.032,20.737,2.261,0.0,0.447,0.491,0.955,0.443,0.263,1.111,1.164,2.687,2.286,0.0,0.0,1.153,1.436,2.659,1.154,1.436,2.601,14.706,0.791,0.0,0.385,0.55,0.295,2.2561,0.0,3.809,0.0,0.92,0.0,0.77,34.26,4286.22,1.0349,54.08,1.0,54.08,39.98,39.98,1.0,49.11,1.0,49.11,39.98,39.98,1.0,-7.49,52.653,21.7795,54.4801,0.2985,1.0347,1.0,1.0,1.0347,-0.1874,20.827,24.73,0.0,12.794,6.182,10.487,12.68,3.303,12.177,20.929,2.261,0.0,0.447,0.491,0.957,0.443,0.263,1.111,1.171,2.691,2.299,0.0,0.0,1.16,1.438,2.67,1.161,1.438,2.612,14.827,0.791,0.0,0.385,0.55,0.295,2.2561,0.0,3.809,0.0,0.92,0.0 +house044.xml,69.26,43.348,31.6906,45.7591,0.17016,1.0658,0.9765,1.0143,1.0556,1.0,27.7366,0.0,0.0,18.834,3.836,6.474,30.001,2.269,8.171,13.861,0.343,0.0,0.805,0.444,0.88,1.282,0.263,1.111,14.432,2.703,4.493,0.0,0.0,22.988,1.599,5.67,25.275,1.599,5.547,9.54,0.523,0.0,1.047,0.263,1.053,1.0943,0.403,3.809,0.0,0.92,0.0,70.62,7624.24,10227.01,1.0556,52.26,1.0,52.26,69.33,69.33,0.0,47.18,1.0,47.18,69.33,69.33,0.0,69.33,43.078,31.5208,45.4646,0.16951,1.0656,0.9766,1.0142,1.0554,1.0,27.5796,0.0,0.0,18.847,3.829,6.348,30.022,2.265,8.046,13.711,0.343,0.0,0.805,0.444,0.877,1.282,0.263,1.111,14.44,2.698,4.449,0.0,0.0,23.002,1.596,5.639,25.29,1.596,5.516,9.411,0.523,0.0,1.047,0.263,1.053,1.0943,0.403,3.809,0.0,0.92,0.0 house045.xml,88.05,184.755,156.143,177.3374,0.22079,0.9415,1.0305,0.9893,0.9599,1.0,127.2368,0.0,0.0,74.229,49.148,11.856,58.427,27.576,19.966,49.522,0.0,0.0,0.563,0.468,2.012,0.443,0.263,3.39,62.748,35.617,13.784,0.0,0.0,49.39,19.984,23.214,49.427,19.984,32.34,39.51,4.484,0.0,0.401,0.228,2.652,2.2561,0.0,3.809,0.0,2.3754,2.026,98.52,25904.52,27392.69,0.9599,50.81,1.0,50.81,88.07,88.07,0.0,49.03,1.0,49.03,88.07,88.07,0.0,88.07,185.643,156.9567,178.2172,0.21997,0.9417,1.0304,0.9894,0.96,1.0,127.9354,0.0,0.0,74.194,49.183,12.21,58.402,27.596,20.428,50.057,0.0,0.0,0.563,0.468,2.026,0.443,0.263,3.39,62.731,35.629,14.278,0.0,0.0,49.379,19.991,23.89,49.416,19.991,33.284,39.834,4.484,0.0,0.401,0.228,2.652,2.2561,0.0,3.809,0.0,2.3754,2.026 -house046.xml,-3.12,134.701,48.5968,134.0278,0.28137,0.9895,1.0194,0.9864,0.995,-0.0862,47.324,51.401,0.0,76.571,13.512,12.647,70.634,7.556,14.281,28.825,3.146,0.0,0.48,0.469,0.963,0.443,0.263,1.087,16.121,2.779,9.225,0.0,0.0,14.871,1.554,10.417,14.882,1.554,10.417,17.423,3.049,0.0,0.305,0.141,1.132,2.2561,0.0,3.809,0.0,0.92,0.0,10.39,3169.29,30657.07,0.995,49.86,1.0,49.86,36.28,36.28,1.0,46.02,1.0,46.02,36.28,36.28,1.0,-2.92,135.325,48.8573,134.6511,0.28037,0.9895,1.0193,0.9865,0.995,-0.0804,47.577,51.401,0.0,76.538,13.527,12.927,70.607,7.565,14.562,29.187,3.146,0.0,0.48,0.469,0.965,0.443,0.263,1.087,16.112,2.782,9.356,0.0,0.0,14.864,1.556,10.539,14.875,1.556,10.539,17.558,3.049,0.0,0.305,0.141,1.132,2.2561,0.0,3.809,0.0,0.92,0.0 -house047.xml,61.87,84.996,52.8218,85.3744,0.21719,0.9865,1.0,1.0182,1.0045,1.0,42.1056,0.0,0.0,32.38,10.691,10.343,51.605,5.947,12.045,30.496,1.086,0.0,0.804,0.472,0.954,1.282,0.263,1.111,25.737,3.506,2.375,0.0,0.0,41.018,1.95,2.766,44.97,1.95,2.706,20.832,0.372,0.0,1.053,0.263,0.295,1.0943,0.403,3.809,0.0,0.92,0.0,157.45,10410.44,6582.74,1.0045,57.41,1.0,57.41,61.8,61.8,0.0,52.34,1.0,52.34,61.8,61.8,0.0,61.8,85.34,52.9716,85.7182,0.21621,0.9865,1.0,1.0181,1.0044,1.0,42.2102,0.0,0.0,32.363,10.7,10.487,51.579,5.95,12.189,30.704,1.086,0.0,0.804,0.472,0.956,1.282,0.263,1.111,25.748,3.507,2.394,0.0,0.0,41.036,1.95,2.782,44.99,1.95,2.722,20.951,0.372,0.0,1.053,0.263,0.295,1.0943,0.403,3.809,0.0,0.92,0.0 +house046.xml,-3.11,134.702,48.5371,134.0287,0.2814,0.9895,1.0194,0.9864,0.995,-0.0859,47.337,51.401,0.0,76.572,13.512,12.647,70.977,7.548,14.281,28.825,3.146,0.0,0.478,0.47,0.963,0.443,0.263,1.087,16.058,2.782,9.225,0.0,0.0,14.885,1.554,10.417,14.896,1.554,10.417,17.423,3.049,0.0,0.305,0.141,1.132,2.2561,0.0,3.809,0.0,0.92,0.0,10.37,3173.38,30750.86,0.995,50.22,1.0,50.22,36.24,36.24,1.0,46.34,1.0,46.34,36.24,36.24,1.0,-2.9,135.325,48.7977,134.6511,0.2804,0.9895,1.0193,0.9864,0.995,-0.0801,47.59,51.401,0.0,76.538,13.527,12.927,70.949,7.557,14.562,29.187,3.146,0.0,0.478,0.47,0.965,0.443,0.263,1.087,16.05,2.785,9.356,0.0,0.0,14.878,1.556,10.539,14.889,1.556,10.539,17.558,3.049,0.0,0.305,0.141,1.132,2.2561,0.0,3.809,0.0,0.92,0.0 +house047.xml,61.87,84.996,52.8218,85.3744,0.21719,0.9865,1.0,1.0182,1.0045,1.0,42.1056,0.0,0.0,32.38,10.691,10.343,51.605,5.947,12.045,30.496,1.086,0.0,0.804,0.472,0.954,1.282,0.263,1.111,25.737,3.506,2.375,0.0,0.0,41.018,1.95,2.766,44.97,1.95,2.706,20.832,0.372,0.0,1.053,0.263,0.295,1.0943,0.403,3.809,0.0,0.92,0.0,157.37,10410.44,6585.78,1.0045,57.41,1.0,57.41,61.8,61.8,0.0,52.34,1.0,52.34,61.8,61.8,0.0,61.8,85.34,52.9716,85.7182,0.21621,0.9865,1.0,1.0181,1.0044,1.0,42.2102,0.0,0.0,32.363,10.7,10.487,51.579,5.95,12.189,30.704,1.086,0.0,0.804,0.472,0.956,1.282,0.263,1.111,25.748,3.507,2.394,0.0,0.0,41.036,1.95,2.782,44.99,1.95,2.722,20.951,0.372,0.0,1.053,0.263,0.295,1.0943,0.403,3.809,0.0,0.92,0.0 house048.xml,65.42,102.428,71.0169,108.5587,0.34683,1.0297,1.0,1.0293,1.0599,1.0,46.3276,0.0,0.0,1.956,70.164,5.507,3.118,38.188,10.78,24.2,0.601,0.0,0.804,0.482,0.881,1.282,0.263,1.724,0.478,46.483,3.705,0.0,0.0,0.762,25.299,7.252,0.77,25.299,7.516,19.564,0.787,0.0,1.25,0.244,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013,81.48,6708.43,7767.81,1.0599,52.09,1.0,52.09,65.43,65.43,0.0,48.06,1.0,48.06,65.43,65.43,0.0,65.43,102.749,71.241,108.8811,0.34585,1.0296,1.0,1.0292,1.0597,1.0,46.4756,0.0,0.0,1.952,70.187,5.601,3.113,38.2,10.903,24.408,0.601,0.0,0.804,0.482,0.886,1.282,0.263,1.724,0.477,46.502,3.748,0.0,0.0,0.76,25.309,7.297,0.768,25.309,7.562,19.727,0.787,0.0,1.25,0.244,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013 house049.xml,53.15,43.995,24.6173,46.3155,0.22964,1.0495,0.9842,1.0193,1.0527,1.0,22.9158,0.0,0.0,13.842,3.565,7.962,9.929,1.871,15.864,17.257,1.369,0.0,0.617,0.5,0.851,0.443,0.263,1.695,5.086,1.284,3.115,0.0,0.0,3.648,0.674,6.207,3.651,0.674,8.647,12.98,2.152,0.0,0.383,0.19,1.326,2.2561,0.0,3.809,0.0,1.1877,1.013,89.95,2609.27,2755.42,1.0527,49.53,1.0,49.53,53.16,53.16,0.0,44.9,1.0,44.9,53.16,53.16,0.0,53.16,44.025,24.6313,46.3345,0.22842,1.0492,0.9842,1.0192,1.0525,1.0,22.9284,0.0,0.0,13.84,3.565,7.974,9.928,1.871,15.879,17.277,1.369,0.0,0.617,0.5,0.851,0.443,0.263,1.695,5.086,1.284,3.118,0.0,0.0,3.648,0.674,6.21,3.651,0.674,8.651,12.991,2.152,0.0,0.383,0.19,1.326,2.2561,0.0,3.809,0.0,1.1877,1.013 house050.xml,103.08,65.933,69.1064,67.0424,0.1743,1.0047,1.012,1.0,1.0168,1.0,60.4084,0.0,0.0,20.245,6.092,11.647,32.256,3.469,20.167,26.903,1.046,0.0,0.805,0.461,0.996,1.282,0.263,1.724,6.303,5.908,8.617,0.0,0.0,10.042,3.364,14.92,11.01,3.364,15.463,22.559,25.72,0.0,1.053,0.263,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013,184.98,7566.65,4022.88,1.0168,54.98,1.0,54.98,102.73,102.73,0.0,50.95,1.0,50.95,102.73,102.73,0.0,102.73,66.541,69.5025,67.6544,0.17334,1.0047,1.012,1.0,1.0167,1.0,60.7332,0.0,0.0,20.215,6.104,11.911,32.208,3.475,20.509,27.265,1.046,0.0,0.805,0.461,1.001,1.282,0.263,1.724,6.29,5.92,8.737,0.0,0.0,10.022,3.37,15.045,10.988,3.37,15.592,22.835,25.72,0.0,1.053,0.263,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013 @@ -70,27 +70,27 @@ house068.xml,79.74,121.872,94.7559,118.8299,0.26337,0.975,1.0,1.0,0.975,1.0,70.2 house069.xml,77.01,113.433,86.4543,112.2586,0.28794,0.9896,1.0,1.0,0.9896,1.0,62.0596,0.0,0.0,25.281,51.315,7.403,40.334,29.005,13.978,29.127,0.307,0.0,0.804,0.464,0.898,1.282,0.263,1.695,18.354,34.931,5.252,0.0,0.0,29.283,19.744,9.917,29.59,19.744,10.455,22.824,5.093,0.0,1.25,0.213,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013,103.45,13096.06,12791.27,0.9896,56.86,1.0,56.86,76.98,76.98,0.0,54.5,1.0,54.5,76.98,76.98,0.0,76.98,113.746,86.6634,112.5721,0.28702,0.9897,1.0,1.0,0.9897,1.0,62.2364,0.0,0.0,25.272,51.331,7.517,40.321,29.014,14.126,29.319,0.307,0.0,0.804,0.464,0.902,1.282,0.263,1.695,18.346,34.943,5.295,0.0,0.0,29.271,19.751,9.95,29.578,19.751,10.49,22.986,5.093,0.0,1.25,0.213,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013 house070.xml,43.48,184.716,76.1692,175.1957,0.21046,0.9349,1.0145,1.0,0.9485,1.0,69.523,0.0,0.0,88.752,29.112,11.506,71.245,16.227,13.205,53.221,2.125,0.0,0.552,0.471,0.968,0.443,0.263,1.111,27.022,5.255,8.096,0.0,0.0,21.692,2.929,9.292,21.708,2.929,9.09,35.332,0.464,0.0,0.233,0.126,1.075,2.2561,0.0,3.809,0.0,0.92,0.0,45.32,7816.12,18181.98,0.9485,52.24,1.0,52.24,43.48,43.48,1.0,48.33,1.0,48.33,43.48,43.48,1.0,43.48,185.326,76.4426,175.8146,0.20955,0.9352,1.0145,1.0,0.9487,1.0,69.78,0.0,0.0,88.722,29.129,11.767,71.224,16.237,13.467,53.583,2.125,0.0,0.552,0.471,0.971,0.443,0.263,1.111,27.012,5.258,8.174,0.0,0.0,21.685,2.931,9.355,21.701,2.931,9.152,35.534,0.464,0.0,0.233,0.126,1.075,2.2561,0.0,3.809,0.0,0.92,0.0 house071.xml,73.6,59.057,45.8121,62.2474,0.20565,1.0361,1.0,1.0173,1.054,1.0,41.1352,0.0,0.0,19.805,9.966,9.715,17.116,5.416,11.404,19.009,0.562,0.0,1.407,0.483,0.947,1.725,0.263,1.111,21.717,4.061,7.21,0.0,0.0,18.825,2.207,8.464,18.892999999999997,2.207,8.28,12.435,0.389,0.0,1.6059999999999999,0.228,1.075,3.3504,0.403,3.809,0.0,0.92,0.0,76.09,4888.66,6095.31,1.054,53.12,1.0,53.12,73.48,73.48,0.0,48.9,1.0,48.9,73.48,73.48,0.0,73.48,59.382,45.983,62.5763,0.20479,1.036,1.0,1.0172,1.0538,1.0,41.2998,0.0,0.0,19.790999999999997,9.976,9.853,17.105,5.421,11.541,19.201,0.562,0.0,1.407,0.483,0.949,1.725,0.263,1.111,21.705,4.065,7.264,0.0,0.0,18.817,2.209,8.509,18.885,2.209,8.324,12.56,0.389,0.0,1.6059999999999999,0.228,1.075,3.3504,0.403,3.809,0.0,0.92,0.0 -house072.xml,59.25,133.839,77.9339,131.5391,0.23178,0.9797,0.984,1.0195,0.9828,1.0,63.9972,0.0,0.0,89.529,1.635,10.436,141.769,1.261,18.716,31.108,1.131,0.0,1.107,0.34,0.961,1.725,0.263,1.724,50.718,0.513,5.285,0.0,0.0,80.279,0.396,9.478,88.185,0.396,11.486,20.825,0.592,0.0,2.04,0.244,1.429,3.3504,0.403,3.809,0.0,1.1877,1.013,138.64,16158.64,11858.58,0.9828,49.27,1.0,49.27,59.24,59.24,0.0,48.68,1.0,48.68,59.24,59.24,0.0,59.24,133.871,77.9438,131.5781,0.23101,0.9798,0.9841,1.0194,0.9829,1.0,64.0056,0.0,0.0,89.526,1.635,10.451,141.766,1.261,18.734,31.128,1.131,0.0,1.107,0.34,0.962,1.725,0.263,1.724,50.717000000000006,0.513,5.286,0.0,0.0,80.27799999999999,0.396,9.475,88.184,0.396,11.483,20.835,0.592,0.0,2.04,0.244,1.429,3.3504,0.403,3.809,0.0,1.1877,1.013 +house072.xml,59.28,133.839,77.9718,131.5385,0.23184,0.9797,0.984,1.0195,0.9828,1.0,63.9972,0.0,0.0,89.529,1.635,10.436,141.687,1.261,18.716,31.108,1.131,0.0,1.112,0.34,0.961,1.725,0.263,1.724,50.757,0.513,5.285,0.0,0.0,80.279,0.396,9.478,88.185,0.396,11.486,20.825,0.592,0.0,2.04,0.244,1.429,3.3504,0.403,3.809,0.0,1.1877,1.013,138.3,16158.64,11888.33,0.9828,49.27,1.0,49.27,59.27,59.27,0.0,48.68,1.0,48.68,59.27,59.27,0.0,59.27,133.871,77.9818,131.5775,0.23108,0.9798,0.9841,1.0194,0.9829,1.0,64.0056,0.0,0.0,89.526,1.635,10.451,141.68400000000003,1.261,18.734,31.128,1.131,0.0,1.112,0.34,0.962,1.725,0.263,1.724,50.754999999999995,0.513,5.286,0.0,0.0,80.27799999999999,0.396,9.475,88.184,0.396,11.483,20.835,0.592,0.0,2.04,0.244,1.429,3.3504,0.403,3.809,0.0,1.1877,1.013 house073.xml,30.27,225.797,109.6285,215.1184,0.16782,0.9418,1.0116,1.0,0.9527,0.594,88.7534,36.031,0.0,119.801,31.246000000000002,11.506,104.608,17.529,26.442,60.75,2.494,0.0,1.903,0.9359999999999999,0.989,2.136,0.526,2.273,24.844,23.29,14.46,0.0,0.0,23.575,13.065999999999999,33.23,24.401,13.065999999999999,31.9,43.986,3.049,0.0,1.4409999999999998,0.429,1.389,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013,63.52,13415.84,22170.48,0.9527,49.96,1.0,49.96,51.14,51.14,0.0,49.73,1.0,49.73,51.14,51.14,0.0,30.49,226.434,110.3848,215.8331,0.16609,0.9424,1.0115,1.0,0.9532,0.5961,89.2028,36.031,0.0,119.768,31.262999999999998,11.767,104.577,17.538,26.791,61.143,2.494,0.0,1.903,0.9359999999999999,0.998,2.136,0.526,2.273,24.834,23.302999999999997,14.844,0.0,0.0,23.564999999999998,13.073,33.796,24.391,13.073,32.444,44.355,3.049,0.0,1.4409999999999998,0.429,1.389,5.6065000000000005,0.403,7.618,0.0,1.1877,1.013 house074.xml,81.75,80.126,69.0973,84.5261,0.25286,1.033,1.0,1.0213,1.0549,1.0,57.55,0.0,0.0,14.603,35.368,7.403,11.318,19.821,8.889,22.023,0.729,0.0,0.571,0.468,0.915,0.443,0.263,1.099,7.269,24.949,5.61,0.0,0.0,5.634,13.982,6.736,5.638,13.982,6.663,20.906,10.363,0.0,0.359,0.217,1.053,2.2561,0.0,3.809,0.0,0.92,0.0,85.09,8516.41,9487.14,1.0549,46.23,1.0,46.23,82.04,82.04,0.0,45.0,1.0,45.0,82.04,82.04,0.0,82.04,80.439,69.5998,84.8409,0.252,1.0328,1.0,1.0212,1.0547,1.0,58.036,0.0,0.0,14.594,35.384,7.517,11.312,19.831,9.003,22.215,0.729,0.0,0.571,0.468,0.918,0.443,0.263,1.099,7.257,24.977,5.656,0.0,0.0,5.625,13.998,6.774,5.629,13.998,6.7,21.35,10.361,0.0,0.359,0.217,1.053,2.2561,0.0,3.809,0.0,0.92,0.0 -house075.xml,66.97,82.9,57.6152,86.0352,0.22051,1.0223,1.0152,1.0,1.0378,1.0,45.1026,0.0,0.0,32.308,17.119,11.126,51.492,9.94,19.065,22.347,0.0,0.0,0.804,0.452,0.989,1.282,0.263,1.695,20.684,9.309,10.068,0.0,0.0,32.966,5.405,17.252,35.738,5.405,18.188,17.285,0.269,0.0,1.075,0.244,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013,85.41,12022.45,13562.97,1.0378,44.39,1.0,44.39,67.2,67.2,0.0,44.31,1.0,44.31,67.2,67.2,0.0,67.2,83.513,58.2366,86.6606,0.21977,1.0222,1.0152,1.0,1.0377,1.0,45.6216,0.0,0.0,32.281,17.142,11.381,51.45,9.954,19.396,22.709,0.0,0.0,0.804,0.452,0.995,1.282,0.263,1.695,20.664,9.324,10.297,0.0,0.0,32.934,5.414,17.549,35.703,5.414,18.501,17.683,0.269,0.0,1.075,0.244,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013 +house075.xml,66.97,82.9,57.6152,86.0352,0.22051,1.0223,1.0152,1.0,1.0378,1.0,45.1026,0.0,0.0,32.308,17.119,11.126,51.492,9.94,19.065,22.347,0.0,0.0,0.804,0.452,0.989,1.282,0.263,1.695,20.684,9.309,10.068,0.0,0.0,32.966,5.405,17.252,35.738,5.405,18.188,17.285,0.269,0.0,1.075,0.244,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013,85.35,12022.45,13572.94,1.0378,44.39,1.0,44.39,67.2,67.2,0.0,44.31,1.0,44.31,67.2,67.2,0.0,67.2,83.513,58.2366,86.6606,0.21977,1.0222,1.0152,1.0,1.0377,1.0,45.6216,0.0,0.0,32.281,17.142,11.381,51.45,9.954,19.396,22.709,0.0,0.0,0.804,0.452,0.995,1.282,0.263,1.695,20.664,9.324,10.297,0.0,0.0,32.934,5.414,17.549,35.703,5.414,18.501,17.683,0.269,0.0,1.075,0.244,1.613,1.0943,0.403,3.809,0.0,1.1877,1.013 house076.xml,60.99,33.517,21.65,35.4992,0.1847,1.0703,0.9745,1.0155,1.0591,1.0,18.4706,0.0,0.0,6.896,5.262,6.94,10.989,2.927,13.627,14.076,0.343,0.0,0.805,0.472,0.863,1.282,0.263,1.695,4.366,2.905,3.441,0.0,0.0,6.958,1.616,6.757,7.672,1.616,8.33,10.225,0.712,0.0,1.042,0.343,1.429,1.0943,0.403,3.809,0.0,1.1877,1.013,101.14,3815.27,3561.47,1.0591,49.3,1.0,49.3,61.31,61.31,0.0,45.52,1.0,45.52,61.31,61.31,0.0,61.31,31.981,20.7704,33.8768,0.18512,1.0704,0.9745,1.0155,1.0593,1.0,17.8764,0.0,0.0,6.924,5.24,5.783,11.032,2.917,12.127,13.691,0.343,0.0,0.805,0.472,0.808,1.282,0.263,1.695,4.378,2.892,2.794,0.0,0.0,6.976,1.61,5.858,7.692,1.61,7.222,9.994,0.712,0.0,1.042,0.343,1.429,1.0943,0.403,3.809,0.0,1.1877,1.013 -house077.xml,76.14,40.605,33.168,43.5621,0.21469,1.0697,0.9852,1.018,1.0728,1.0,31.5402,0.0,0.0,8.934,5.639,9.449,14.239,3.203,10.581,15.371,1.212,0.0,0.804,0.462,0.96,1.282,0.263,1.075,5.406,2.643,7.273,0.0,0.0,8.617,1.501,8.144,9.506,1.501,8.233,9.955,7.891,0.0,1.041,0.228,1.075,1.0943,0.403,3.809,0.0,0.92,0.0,76.38,7632.14,9314.34,1.0728,42.75,1.0,42.75,76.24,76.24,0.0,44.87,1.0,44.87,76.24,76.24,0.0,76.24,39.687,32.465,42.5845,0.21521,1.0699,0.9852,1.0181,1.073,1.0,30.8262,0.0,0.0,8.942,5.632,8.652,14.252,3.2,9.783,15.249,1.212,0.0,0.804,0.462,0.951,1.282,0.263,1.075,5.409,2.64,6.629,0.0,0.0,8.621,1.5,7.496,9.511,1.5,7.577,9.896,7.891,0.0,1.041,0.228,1.075,1.0943,0.403,3.809,0.0,0.92,0.0 +house077.xml,76.14,40.605,33.168,43.5621,0.21469,1.0697,0.9852,1.018,1.0728,1.0,31.5402,0.0,0.0,8.934,5.639,9.449,14.239,3.203,10.581,15.371,1.212,0.0,0.804,0.462,0.96,1.282,0.263,1.075,5.406,2.643,7.273,0.0,0.0,8.617,1.501,8.144,9.506,1.501,8.233,9.955,7.891,0.0,1.041,0.228,1.075,1.0943,0.403,3.809,0.0,0.92,0.0,76.4,7632.14,9311.07,1.0728,42.75,1.0,42.75,76.24,76.24,0.0,44.87,1.0,44.87,76.24,76.24,0.0,76.24,39.687,32.465,42.5845,0.21521,1.0699,0.9852,1.0181,1.073,1.0,30.8262,0.0,0.0,8.942,5.632,8.652,14.252,3.2,9.783,15.249,1.212,0.0,0.804,0.462,0.951,1.282,0.263,1.075,5.409,2.64,6.629,0.0,0.0,8.621,1.5,7.496,9.511,1.5,7.577,9.896,7.891,0.0,1.041,0.228,1.075,1.0943,0.403,3.809,0.0,0.92,0.0 house078.xml,67.88,139.372,93.3429,137.5071,0.27914,0.968,1.0193,1.0,0.9866,1.0,73.475,0.0,0.0,30.303,62.418,8.758,48.344,35.212,15.946,36.61,1.283,0.0,0.804,0.465,0.931,1.282,0.263,1.695,10.856,34.317,3.691,0.0,0.0,17.319,19.359,6.721,18.988,19.359,9.363,27.321,17.158,0.0,1.053,0.213,1.326,1.0943,0.403,3.809,0.0,1.1877,1.013,87.79,13746.41,15871.11,0.9866,54.6,1.0,54.6,67.95,67.95,0.0,52.34,1.0,52.34,67.95,67.95,0.0,67.95,139.963,93.8334,138.0964,0.27823,0.9681,1.0192,1.0,0.9867,1.0,73.9236,0.0,0.0,30.287,62.447,8.974,48.317,35.229,16.226,36.972,1.283,0.0,0.804,0.465,0.937,1.282,0.263,1.695,10.82,34.383,3.761,0.0,0.0,17.262,19.397,6.8,18.925,19.397,9.473,27.717,17.152,0.0,1.053,0.213,1.326,1.0943,0.403,3.809,0.0,1.1877,1.013 house079.xml,56.69,92.743,51.0231,90.003,0.22318,0.9705,1.0,1.0,0.9705,1.0,44.02,0.0,0.0,45.391,3.601,10.206,32.44,1.781,12.335,33.545,0.0,0.0,1.237,1.058,0.94,0.886,0.526,1.136,25.668,0.254,2.806,0.0,0.0,18.341,0.126,3.391,18.355,0.126,3.244,22.294,0.0,0.0,0.632,0.33799999999999997,0.27,4.5122,0.0,7.618,0.0,0.92,0.0,55.81,3112.9,5747.05,0.9705,55.02,1.0,55.02,56.64,56.64,0.0,52.07,1.0,52.07,56.64,56.64,0.0,56.64,93.063,51.1621,90.3285,0.22195,0.9706,1.0,1.0,0.9706,1.0,44.158,0.0,0.0,45.373,3.604,10.349,32.428,1.783,12.477,33.737,0.0,0.0,1.237,1.058,0.943,0.886,0.526,1.136,25.663,0.254,2.836,0.0,0.0,18.337,0.126,3.42,18.351,0.126,3.271,22.409,0.0,0.0,0.632,0.33799999999999997,0.27,4.5122,0.0,7.618,0.0,0.92,0.0 house080.xml,42.14,155.849,63.8588,151.5509,0.28535,0.9536,1.0197,1.0,0.9724,1.0,50.808,0.0,0.0,39.45099999999999,68.76,8.758,30.198999999999998,39.858000000000004,11.1,36.925,1.955,0.0,1.157,0.904,0.917,0.886,0.526,1.163,12.597999999999999,24.718,1.552,0.0,0.0,9.644,14.327000000000002,1.967,9.651,14.327000000000002,1.839,23.646,1.345,0.0,0.62,0.38,0.27,4.5122,0.0,7.618,0.0,0.92,0.0,43.68,7763.14,18278.28,0.9724,48.57,1.0,48.57,42.11,42.11,1.0,47.5,1.0,47.5,42.11,42.11,1.0,42.11,156.44,64.0746,152.1421,0.28425,0.9538,1.0196,1.0,0.9725,1.0,51.02,0.0,0.0,39.435,68.78800000000001,8.974,30.189,39.875,11.316,37.288,1.955,0.0,1.157,0.904,0.922,0.886,0.526,1.163,12.61,24.709,1.572,0.0,0.0,9.654,14.322,1.982,9.661,14.322,1.853,23.839,1.345,0.0,0.62,0.38,0.27,4.5122,0.0,7.618,0.0,0.92,0.0 -house081.xml,65.32,25.993,19.1713,29.3501,0.15839,1.1393,0.9781,1.0133,1.1292,1.0,19.472,0.0,0.0,5.082,4.584,5.71,5.341,2.564,6.664,10.293,0.324,0.0,0.421,0.469,0.912,0.443,0.263,1.064,3.222,1.845,4.921,0.0,0.0,3.386,1.032,5.743,3.389,1.032,5.868,8.884,0.299,0.0,0.284,0.145,1.075,2.2561,0.0,3.809,0.0,0.92,0.0,67.47,3395.77,4457.06,1.1292,43.8,1.0,43.8,65.11,65.11,0.0,41.37,1.0,41.37,65.11,65.11,0.0,65.11,25.726,18.9058,29.0368,0.15786,1.1388,0.9782,1.0132,1.1287,1.0,19.206,0.0,0.0,5.092,4.572,5.595,5.348,2.558,6.55,10.143,0.324,0.0,0.422,0.469,0.909,0.443,0.263,1.064,3.228,1.839,4.821,0.0,0.0,3.39,1.029,5.643,3.393,1.029,5.766,8.719,0.299,0.0,0.284,0.145,1.075,2.2561,0.0,3.809,0.0,0.92,0.0 +house081.xml,65.33,25.993,19.1755,29.3505,0.15841,1.1393,0.9781,1.0133,1.1292,1.0,19.473,0.0,0.0,5.082,4.584,5.71,5.334,2.564,6.664,10.293,0.324,0.0,0.422,0.469,0.912,0.443,0.263,1.064,3.226,1.845,4.921,0.0,0.0,3.386,1.032,5.743,3.389,1.032,5.868,8.884,0.299,0.0,0.284,0.145,1.075,2.2561,0.0,3.809,0.0,0.92,0.0,67.5,3395.94,4455.47,1.1292,43.82,1.0,43.82,65.13,65.13,0.0,41.4,1.0,41.4,65.13,65.13,0.0,65.13,25.726,18.9107,29.0375,0.15789,1.1388,0.9782,1.0132,1.1287,1.0,19.207,0.0,0.0,5.092,4.572,5.595,5.34,2.558,6.55,10.143,0.324,0.0,0.422,0.469,0.909,0.443,0.263,1.064,3.233,1.839,4.821,0.0,0.0,3.39,1.029,5.643,3.393,1.029,5.766,8.719,0.299,0.0,0.284,0.145,1.075,2.2561,0.0,3.809,0.0,0.92,0.0 house082.xml,72.78,164.841,118.1139,162.2859,0.27318,0.9487,1.0377,1.0,0.9845,1.0,88.6846,0.0,0.0,34.458,76.01,10.086,54.976,43.144999999999996,17.559,43.527,0.762,0.0,1.608,0.925,0.974,2.564,0.526,1.695,23.706,48.968999999999994,2.549,0.0,0.0,37.824,27.796,4.438,40.775000000000006,27.796,8.937,30.076,12.813,0.0,2.174,0.448,1.132,2.1886,0.806,7.618,0.0,1.1877,1.013,98.24,18073.63,18686.45,0.9845,54.91,1.0,54.91,72.58,72.58,0.0,53.24,1.0,53.24,72.58,72.58,0.0,72.58,165.714,118.4123,163.1541,0.27229,0.9489,1.0376,1.0,0.9846,1.0,88.98,0.0,0.0,34.434,76.054,10.403,54.94,43.171,17.971,44.062,0.762,0.0,1.6070000000000002,0.925,0.981,2.564,0.526,1.695,23.698999999999998,48.980000000000004,2.619,0.0,0.0,37.812,27.802999999999997,4.524,40.763000000000005,27.802999999999997,9.11,30.302,12.812,0.0,2.174,0.448,1.132,2.1886,0.806,7.618,0.0,1.1877,1.013 house083.xml,57.44,34.936,22.6334,39.4038,0.32564,1.1494,0.9551,1.0275,1.1279,1.0,19.851,0.0,0.0,2.996,13.175,5.306,2.563,7.501,6.566,13.122,0.337,0.0,0.518,0.461,0.878,0.443,0.263,1.087,1.611,8.038,3.827,0.0,0.0,1.378,4.576,4.736,1.379,4.576,4.736,8.94,0.218,0.0,0.371,0.211,1.075,2.2561,0.0,3.809,0.0,0.92,0.0,59.04,2959.19,4443.8,1.1279,47.1,1.0,47.1,57.36,57.36,0.0,46.77,1.0,46.77,57.36,57.36,0.0,57.36,33.683,21.794,37.9958,0.32602,1.1496,0.955,1.0275,1.128,1.0,19.014,0.0,0.0,3.007,13.144,4.423,2.57,7.484,5.683,12.772,0.337,0.0,0.518,0.461,0.846,0.443,0.263,1.087,1.617,8.023,3.186,0.0,0.0,1.382,4.568,4.094,1.383,4.568,4.094,8.75,0.218,0.0,0.371,0.211,1.075,2.2561,0.0,3.809,0.0,0.92,0.0 -house084.xml,11.12,142.23,88.5851,139.4634,0.16775,0.967,1.0,1.0141,0.9805,0.1751,71.6886,59.139,0.0,70.127,19.924,10.344,114.864,10.891,18.124,39.32,2.517,0.0,0.763,1.44,1.934,1.25,0.789,3.39,41.238,10.269,6.622,0.0,0.0,67.546,5.614,11.606,75.953,5.614,14.616,28.81,1.644,0.0,1.053,0.5700000000000001,2.816,1.0943,0.403,11.427,0.0,2.3754,2.026,117.06,12380.54,10786.05,0.9805,53.96,1.0,53.96,63.47,63.47,0.0,49.38,1.0,49.38,63.47,63.47,0.0,11.18,142.572,88.7426,139.8115,0.16697,0.9671,1.0,1.014,0.9806,0.1762,71.7838,59.139,0.0,70.109,19.931,10.488,114.836,10.895,18.312,39.528,2.517,0.0,0.763,1.44,1.942,1.25,0.789,3.39,41.231,10.273,6.658,0.0,0.0,67.534,5.616,11.626,75.94,5.616,14.642,28.936,1.644,0.0,1.053,0.5700000000000001,2.816,1.0943,0.403,11.427,0.0,2.3754,2.026 -house085.xml,-7.64,117.015,80.931,116.2934,0.23687,0.9624,1.0327,1.0,0.9938,-0.1098,76.388,84.776,0.0,48.237,17.398,14.123,44.721,9.297,16.409,37.257,0.0,0.0,0.9430000000000001,0.981,0.989,0.886,0.526,1.149,52.003,2.061,2.554,0.0,0.0,48.13,1.101,2.967,48.167,1.101,2.806,24.314,0.0,0.0,0.594,0.31,0.246,4.5122,0.0,7.618,0.0,0.92,0.0,10.58,969.85,9225.59,0.9938,53.28,1.0,53.28,69.33,69.33,0.0,49.26,1.0,49.26,69.33,69.33,0.0,-7.29,117.931,81.2591,117.2074,0.23576,0.9625,1.0325,1.0,0.9939,-0.1051,76.711,84.776,0.0,48.193,17.421,14.525,44.686,9.31,16.811,37.792,0.0,0.0,0.9430000000000001,0.981,0.993,0.886,0.526,1.149,52.022,2.068,2.594,0.0,0.0,48.153999999999996,1.105,3.002,48.191,1.105,2.839,24.575,0.0,0.0,0.594,0.31,0.246,4.5122,0.0,7.618,0.0,0.92,0.0 +house084.xml,11.12,142.23,88.5851,139.4634,0.16775,0.967,1.0,1.0141,0.9805,0.1751,71.6886,59.139,0.0,70.127,19.924,10.344,114.864,10.891,18.124,39.32,2.517,0.0,0.763,1.44,1.934,1.25,0.789,3.39,41.238,10.269,6.622,0.0,0.0,67.546,5.614,11.606,75.953,5.614,14.616,28.81,1.644,0.0,1.053,0.5700000000000001,2.816,1.0943,0.403,11.427,0.0,2.3754,2.026,116.98,12380.54,10793.43,0.9805,53.96,1.0,53.96,63.47,63.47,0.0,49.38,1.0,49.38,63.47,63.47,0.0,11.18,142.572,88.7426,139.8115,0.16697,0.9671,1.0,1.014,0.9806,0.1762,71.7838,59.139,0.0,70.109,19.931,10.488,114.836,10.895,18.312,39.528,2.517,0.0,0.763,1.44,1.942,1.25,0.789,3.39,41.231,10.273,6.658,0.0,0.0,67.534,5.616,11.626,75.94,5.616,14.642,28.936,1.644,0.0,1.053,0.5700000000000001,2.816,1.0943,0.403,11.427,0.0,2.3754,2.026 +house085.xml,-7.64,117.015,80.8811,116.2932,0.23693,0.9624,1.0327,1.0,0.9938,-0.1098,76.389,84.776,0.0,48.237,17.398,14.123,44.763000000000005,9.297,16.409,37.257,0.0,0.0,0.942,0.981,0.989,0.886,0.526,1.149,51.953,2.061,2.554,0.0,0.0,48.13,1.101,2.967,48.167,1.101,2.806,24.314,0.0,0.0,0.594,0.31,0.246,4.5122,0.0,7.618,0.0,0.92,0.0,10.57,970.0,9229.88,0.9938,53.34,1.0,53.34,69.29,69.29,0.0,49.32,1.0,49.32,69.29,69.29,0.0,-7.28,117.931,81.2089,117.2071,0.23587,0.9625,1.0325,1.0,0.9939,-0.1051,76.713,84.776,0.0,48.193,17.421,14.525,44.730000000000004,9.31,16.811,37.792,0.0,0.0,0.942,0.981,0.993,0.886,0.526,1.149,51.972,2.068,2.594,0.0,0.0,48.156000000000006,1.105,3.002,48.193,1.105,2.839,24.575,0.0,0.0,0.594,0.31,0.246,4.5122,0.0,7.618,0.0,0.92,0.0 house086.xml,53.67,76.012,42.5687,79.3118,0.31033,1.0168,1.0,1.0261,1.0434,1.0,35.479,0.0,0.0,21.597,21.677,8.692,17.342,12.067,10.347,22.959,0.929,0.158,0.552,0.472,0.933,0.443,0.263,1.111,15.211,9.783,1.435,0.0,0.0,12.214,5.446,1.708,12.223,5.446,1.671,15.111,0.87,0.159,0.356,0.171,0.286,2.2561,0.0,3.809,0.0,0.92,0.0,54.98,6485.37,11304.61,1.0434,51.08,1.0,51.08,53.55,53.55,0.0,50.46,1.0,50.46,53.55,53.55,0.0,53.55,76.339,42.6443,79.6393,0.30908,1.0168,1.0,1.026,1.0432,1.0,35.557,0.0,0.0,21.585,21.692,8.819,17.333,12.077,10.475,23.151,0.929,0.163,0.552,0.472,0.935,0.443,0.263,1.111,15.199,9.782,1.441,0.0,0.0,12.205,5.446,1.711,12.214,5.446,1.674,15.192,0.87,0.161,0.356,0.171,0.286,2.2561,0.0,3.809,0.0,0.92,0.0 house087.xml,47.6,31.33,16.2051,34.0468,0.21757,1.1003,0.97,1.0183,1.0867,1.0,16.4414,0.0,0.0,6.383,4.774,6.94,5.775,2.605,13.63,12.913,0.32,0.0,0.49,0.481,0.863,0.443,0.263,3.39,3.665,2.875,1.333,0.0,0.0,3.315,1.569,2.618,3.318,1.569,8.031,8.172,0.16,0.0,0.359,0.307,3.0140000000000002,2.2561,0.0,3.809,0.0,2.3754,2.026,79.24,2905.17,3373.91,1.0867,46.32,1.0,46.32,48.48,48.48,0.0,44.12,1.0,44.12,48.48,48.48,0.0,48.48,29.826,15.7159,32.4191,0.21811,1.1005,0.9699,1.0183,1.0869,1.0,15.7546,0.0,0.0,6.398,4.762,5.783,5.786,2.599,12.13,12.563,0.32,0.0,0.49,0.481,0.808,0.443,0.263,3.39,3.67,2.871,1.049,0.0,0.0,3.318,1.567,2.201,3.321,1.567,6.829,7.966,0.16,0.0,0.359,0.307,3.0140000000000002,2.2561,0.0,3.809,0.0,2.3754,2.026 -house088.xml,57.34,126.033,71.706,125.0642,0.27922,0.9736,1.0193,1.0,0.9923,1.0,55.3852,0.0,0.0,54.377,25.801,11.126,86.65,14.753,19.413,33.518,1.211,0.0,0.805,0.459,0.988,1.282,0.263,1.724,28.477,12.587,8.312,0.0,0.0,45.378,7.197,14.504,49.193,7.197,15.596,21.761,0.569,0.0,1.075,0.244,1.563,1.0943,0.403,3.809,0.0,1.1877,1.013,96.11,13271.82,13916.21,0.9923,49.02,1.0,49.02,57.23,57.23,0.0,49.12,1.0,49.12,57.23,57.23,0.0,57.23,126.644,71.9223,125.6739,0.27826,0.9736,1.0192,1.0,0.9923,1.0,55.5326,0.0,0.0,54.35,25.822,11.381,86.606,14.765,19.745,33.88,1.211,0.0,0.805,0.459,0.994,1.282,0.263,1.724,28.47,12.594,8.434,0.0,0.0,45.366,7.201,14.632,49.18,7.201,15.734,21.856,0.569,0.0,1.075,0.244,1.563,1.0943,0.403,3.809,0.0,1.1877,1.013 +house088.xml,57.34,126.033,71.706,125.0642,0.27922,0.9736,1.0193,1.0,0.9923,1.0,55.3852,0.0,0.0,54.377,25.801,11.126,86.65,14.753,19.413,33.518,1.211,0.0,0.805,0.459,0.988,1.282,0.263,1.724,28.477,12.587,8.312,0.0,0.0,45.378,7.197,14.504,49.193,7.197,15.596,21.761,0.569,0.0,1.075,0.244,1.563,1.0943,0.403,3.809,0.0,1.1877,1.013,96.02,13271.82,13928.71,0.9923,49.02,1.0,49.02,57.23,57.23,0.0,49.12,1.0,49.12,57.23,57.23,0.0,57.23,126.644,71.9223,125.6739,0.27826,0.9736,1.0192,1.0,0.9923,1.0,55.5326,0.0,0.0,54.35,25.822,11.381,86.606,14.765,19.745,33.88,1.211,0.0,0.805,0.459,0.994,1.282,0.263,1.724,28.47,12.594,8.434,0.0,0.0,45.366,7.201,14.632,49.18,7.201,15.734,21.856,0.569,0.0,1.075,0.244,1.563,1.0943,0.403,3.809,0.0,1.1877,1.013 house089.xml,31.19,88.125,49.7477,93.7149,0.27916,1.0194,1.0193,1.0235,1.0634,0.5875,37.8006,15.591,0.0,15.246,38.803,8.758,24.324,22.312,15.617,25.318,0.0,0.0,0.804,0.457,0.951,1.282,0.263,1.695,6.006,21.795,2.36,0.0,0.0,9.583,12.532,4.208,10.566,12.532,8.211,19.587,0.0,0.0,1.042,0.213,1.144,1.0943,0.403,3.809,0.0,1.1877,1.013,53.24,5754.47,10163.71,1.0634,47.55,1.0,47.55,53.22,53.22,0.0,46.69,1.0,46.69,53.22,53.22,0.0,31.52,88.717,50.198,94.3248,0.27821,1.0193,1.0192,1.0234,1.0632,0.5923,38.244,15.591,0.0,15.23,38.833,8.974,24.299,22.33,15.897,25.68,0.0,0.0,0.804,0.457,0.957,1.282,0.263,1.695,5.997,21.813,2.412,0.0,0.0,9.568,12.543,4.272,10.55,12.543,8.337,19.976,0.0,0.0,1.042,0.213,1.144,1.0943,0.403,3.809,0.0,1.1877,1.013 house090.xml,57.33,47.828,29.2919,51.0963,0.2493,1.0464,1.0,1.021,1.0683,1.0,25.1692,0.0,0.0,9.523,8.962,10.148,15.188,5.046,17.771,19.195,0.0,0.0,0.804,0.466,0.968,1.282,0.263,1.695,7.6,4.616,2.694,0.0,0.0,12.121,2.599,4.717,13.289,2.599,9.206,14.382,0.0,0.0,1.053,0.232,1.144,1.0943,0.403,3.809,0.0,1.1877,1.013,82.14,5931.5,6758.96,1.0683,49.46,1.0,49.46,57.46,57.46,0.0,46.17,1.0,46.17,57.46,57.46,0.0,57.46,47.644,29.25,50.9077,0.24988,1.0465,1.0,1.021,1.0685,1.0,25.0794,0.0,0.0,9.515,8.969,9.852,15.174,5.05,17.388,19.308,0.0,0.0,0.804,0.466,0.96,1.282,0.263,1.695,7.595,4.62,2.559,0.0,0.0,12.112,2.601,4.516,13.279,2.601,8.812,14.477,0.0,0.0,1.053,0.232,1.144,1.0943,0.403,3.809,0.0,1.1877,1.013 -house091.xml,61.78,83.211,52.6648,85.2521,0.20407,1.0073,1.0,1.0171,1.0245,1.0,43.7014,0.0,0.0,35.134,10.891,10.343,55.985,5.943,18.118,25.941,0.902,0.0,0.805,0.481,0.968,1.282,0.263,1.695,23.526,4.88,5.608,0.0,0.0,37.488,2.663,9.823,41.571,2.663,19.169,18.247,0.404,0.0,1.031,0.155,1.144,1.0943,0.403,3.809,0.0,1.1877,1.013,168.97,10915.38,6305.16,1.0245,52.0,1.0,52.0,61.7,61.7,0.0,47.96,1.0,47.96,61.7,61.7,0.0,61.7,83.555,52.8094,85.5956,0.2032,1.0073,1.0,1.017,1.0244,1.0,43.7902,0.0,0.0,35.116,10.901,10.487,55.957,5.948,18.306,26.149,0.902,0.0,0.805,0.481,0.971,1.282,0.263,1.695,23.517,4.884,5.633,0.0,0.0,37.474,2.665,9.832,41.555,2.665,19.187,18.372,0.404,0.0,1.031,0.155,1.144,1.0943,0.403,3.809,0.0,1.1877,1.013 +house091.xml,61.78,83.211,52.6648,85.2521,0.20407,1.0073,1.0,1.0171,1.0245,1.0,43.7014,0.0,0.0,35.134,10.891,10.343,55.985,5.943,18.118,25.941,0.902,0.0,0.805,0.481,0.968,1.282,0.263,1.695,23.526,4.88,5.608,0.0,0.0,37.488,2.663,9.823,41.571,2.663,19.169,18.247,0.404,0.0,1.031,0.155,1.144,1.0943,0.403,3.809,0.0,1.1877,1.013,168.89,10915.38,6308.43,1.0245,52.0,1.0,52.0,61.7,61.7,0.0,47.96,1.0,47.96,61.7,61.7,0.0,61.7,83.555,52.8094,85.5956,0.2032,1.0073,1.0,1.017,1.0244,1.0,43.7902,0.0,0.0,35.116,10.901,10.487,55.957,5.948,18.306,26.149,0.902,0.0,0.805,0.481,0.971,1.282,0.263,1.695,23.517,4.884,5.633,0.0,0.0,37.474,2.665,9.832,41.555,2.665,19.187,18.372,0.404,0.0,1.031,0.155,1.144,1.0943,0.403,3.809,0.0,1.1877,1.013 house092.xml,58.81,125.544,75.1942,127.85,0.24966,0.9805,1.0172,1.021,1.0184,1.0,55.3782,0.0,0.0,24.421999999999997,58.559,8.758,38.953,32.899,15.939,32.489,1.316,0.0,1.6070000000000002,0.935,0.931,2.564,0.526,1.695,15.095,31.735,3.537,0.0,0.0,24.076999999999998,17.828000000000003,6.438,26.397,17.828000000000003,9.335,22.421,2.406,0.0,2.106,0.443,1.297,2.1886,0.806,7.618,0.0,1.1877,1.013,94.59,10348.31,10743.03,1.0184,48.41,1.0,48.41,58.75,58.75,0.0,47.44,1.0,47.44,58.75,58.75,0.0,58.75,126.136,75.4586,128.4453,0.24884,0.9806,1.0172,1.0209,1.0183,1.0,55.6172,0.0,0.0,24.406,58.589,8.974,38.92700000000001,32.916,16.218,32.851,1.316,0.0,1.6070000000000002,0.935,0.938,2.564,0.526,1.695,15.091000000000001,31.741,3.63,0.0,0.0,24.07,17.832,6.56,26.389,17.832,9.513,22.59,2.406,0.0,2.106,0.443,1.297,2.1886,0.806,7.618,0.0,1.1877,1.013 house093.xml,76.16,40.848,32.9621,43.282,0.21163,1.0565,0.9854,1.0178,1.0596,1.0,30.326,0.0,0.0,5.878,10.34,7.699,5.198,5.939,8.984,16.401,0.53,0.0,0.501,0.457,0.931,0.443,0.263,1.087,7.687,6.895,7.085,0.0,0.0,6.798,3.96,8.268,6.803,3.96,8.268,10.658,0.637,0.0,1.0,0.213,1.176,2.2561,0.0,3.809,0.0,0.92,0.0,79.65,5383.24,6378.64,1.0596,45.97,1.0,45.97,76.19,76.19,0.0,47.53,1.0,47.53,76.19,76.19,0.0,76.19,40.077,32.359,42.4696,0.21202,1.0566,0.9854,1.0178,1.0597,1.0,29.732,0.0,0.0,5.884,10.331,7.053,5.202,5.934,8.338,16.279,0.53,0.0,0.501,0.457,0.919,0.443,0.263,1.087,7.694,6.889,6.541,0.0,0.0,6.802,3.957,7.733,6.807,3.957,7.733,10.598,0.637,0.0,1.0,0.213,1.176,2.2561,0.0,3.809,0.0,0.92,0.0 house094.xml,73.41,53.8911,40.4162,55.0518,0.22058,1.0485,0.9848,0.9893,1.0215,1.0,34.1428,0.0,0.0,8.536000000000001,21.474,6.005,7.125,12.357,7.628,17.876,0.0,0.0,1.593,1.368,0.875,1.329,0.789,1.111,4.378,12.994,4.872,0.0,0.0,3.654,7.477,6.189,3.657,7.477,6.054,17.713,0.46,0.0,1.0050000000000001,0.732,1.075,6.7683,0.0,11.427,0.0,0.92,0.0,78.42,4590.27,5730.06,1.0215,50.71,1.0,50.71,73.43,73.43,0.0,48.75,1.0,48.75,73.43,73.43,0.0,73.43,53.9241,40.4443,55.0808,0.21969,1.0483,0.9848,0.9894,1.0215,1.0,34.1594,0.0,0.0,8.535,21.476,6.015,7.125,12.358,7.637,17.898,0.0,0.0,1.5910000000000002,1.368,0.875,1.329,0.789,1.111,4.378,12.995000000000001,4.877,0.0,0.0,3.654,7.478,6.192,3.657,7.478,6.057,17.735,0.46,0.0,1.0050000000000001,0.732,1.075,6.7683,0.0,11.427,0.0,0.92,0.0 -house095.xml,55.57,108.25,60.6963,109.2173,0.2335,0.9929,1.0161,1.0,1.0089,1.0,54.8446,0.0,0.0,56.138999999999996,6.505,13.903,85.498,3.204,22.814,29.616,2.087,0.0,1.3119999999999998,0.533,1.033,1.725,0.263,1.695,35.318,1.433,3.051,0.0,0.0,53.299,0.706,5.007,58.605,0.706,11.606,20.268,0.626,0.0,1.425,0.224,1.086,3.3504,0.403,3.809,0.0,1.1877,1.013,147.3,11163.02,7511.19,1.0089,52.26,1.0,52.26,55.43,55.43,0.0,47.65,1.0,47.65,55.43,55.43,0.0,55.43,108.886,60.8982,109.8554,0.23264,0.993,1.0161,1.0,1.0089,1.0,55.0566,0.0,0.0,56.101,6.516,14.204,85.447,3.209,23.205,29.978,2.087,0.0,1.311,0.533,1.037,1.725,0.263,1.695,35.305,1.438,3.107,0.0,0.0,53.287,0.708,5.076,58.591,0.708,11.767,20.422,0.626,0.0,1.425,0.224,1.086,3.3504,0.403,3.809,0.0,1.1877,1.013 +house095.xml,55.57,108.25,60.6963,109.2173,0.2335,0.9929,1.0161,1.0,1.0089,1.0,54.8446,0.0,0.0,56.138999999999996,6.505,13.903,85.498,3.204,22.814,29.616,2.087,0.0,1.3119999999999998,0.533,1.033,1.725,0.263,1.695,35.318,1.433,3.051,0.0,0.0,53.299,0.706,5.007,58.605,0.706,11.606,20.268,0.626,0.0,1.425,0.224,1.086,3.3504,0.403,3.809,0.0,1.1877,1.013,146.99,11163.02,7527.3,1.0089,52.26,1.0,52.26,55.43,55.43,0.0,47.65,1.0,47.65,55.43,55.43,0.0,55.43,108.886,60.8982,109.8554,0.23264,0.993,1.0161,1.0,1.0089,1.0,55.0566,0.0,0.0,56.101,6.516,14.204,85.447,3.209,23.205,29.978,2.087,0.0,1.311,0.533,1.037,1.725,0.263,1.695,35.305,1.438,3.107,0.0,0.0,53.287,0.708,5.076,58.591,0.708,11.767,20.422,0.626,0.0,1.425,0.224,1.086,3.3504,0.403,3.809,0.0,1.1877,1.013 diff --git a/workflow/tests/base_results/sample_files.csv b/workflow/tests/base_results/sample_files.csv index 8486e34fc..e308e241b 100644 --- a/workflow/tests/base_results/sample_files.csv +++ b/workflow/tests/base_results/sample_files.csv @@ -3,185 +3,185 @@ base-appliances-dehumidifier-ef-portable.xml,67.59,64.713,46.9014,69.3888,0.2703 base-appliances-dehumidifier-ef-whole-home.xml,67.57,64.727,46.8972,69.4038,0.27031,1.0484,1.0,1.0227,1.0723,1.0,37.5242,0.0,0.0,9.609,28.474,7.403,15.328,16.423,8.674,19.032,0.0,0.209,0.804,0.455,0.928,1.282,0.263,1.087,3.276,22.33,5.942,0.0,0.0,5.225,12.879,6.962,5.633,12.879,6.962,14.961,0.345,0.044,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,72.04,6004.32,7773.23,1.0723,48.06,1.0,48.06,67.56,67.56,0.0,46.76,1.0,46.76,67.56,67.56,0.0,67.56,65.041,47.1064,69.7237,0.26937,1.0482,1.0,1.0227,1.072,1.0,37.7246,0.0,0.0,9.601,28.49,7.517,15.314,16.432,8.788,19.224,0.0,0.209,0.804,0.455,0.93,1.282,0.263,1.087,3.274,22.34,6.012,0.0,0.0,5.222,12.885,7.029,5.629,12.885,7.029,15.091,0.345,0.044,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 base-appliances-dehumidifier-multiple.xml,67.58,64.714,46.896,69.3899,0.27031,1.0484,1.0,1.0227,1.0723,1.0,37.5226,0.0,0.0,9.628,28.47,7.403,15.358,16.42,8.674,19.032,0.0,0.181,0.804,0.455,0.928,1.282,0.263,1.087,3.276,22.329,5.942,0.0,0.0,5.226,12.878,6.962,5.634,12.878,6.962,14.961,0.345,0.043,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,72.05,6004.16,7771.43,1.0723,48.07,1.0,48.07,67.57,67.57,0.0,46.74,1.0,46.74,67.57,67.57,0.0,67.57,65.029,47.1004,69.7108,0.26937,1.0482,1.0,1.0227,1.072,1.0,37.7216,0.0,0.0,9.62,28.486,7.517,15.345,16.432,8.788,19.224,0.0,0.182,0.804,0.455,0.93,1.282,0.263,1.087,3.273,22.335,6.012,0.0,0.0,5.222,12.884,7.029,5.629,12.884,7.029,15.091,0.345,0.043,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 base-appliances-dehumidifier.xml,67.61,64.713,46.9148,69.3888,0.27031,1.0484,1.0,1.0227,1.0723,1.0,37.537,0.0,0.0,9.611,28.471,7.403,15.33,16.418,8.674,19.032,0.0,0.196,0.804,0.455,0.928,1.282,0.263,1.087,3.277,22.336,5.942,0.0,0.0,5.227,12.88,6.962,5.635,12.88,6.962,14.961,0.345,0.054,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,72.08,6005.87,7770.89,1.0723,48.07,1.0,48.07,67.61,67.61,0.0,46.73,1.0,46.73,67.61,67.61,0.0,67.61,65.026,47.1266,69.7076,0.26937,1.0482,1.0,1.0227,1.072,1.0,37.736,0.0,0.0,9.602,28.487,7.517,15.314,16.426,8.788,19.224,0.0,0.196,0.804,0.455,0.93,1.282,0.263,1.087,3.275,22.35,6.012,0.0,0.0,5.222,12.887,7.029,5.63,12.887,7.029,15.091,0.345,0.054,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-gas.xml,86.74,79.23,69.3975,80.0027,0.20487,0.9927,1.0,1.0172,1.0098,1.0,54.9088,0.0,0.0,29.681,10.209,10.343,47.3,5.558,11.674,28.997,0.0,0.0,0.804,0.482,0.963,1.282,0.263,1.087,27.513,10.542,8.243,0.0,0.0,43.845,5.739,9.304,47.266,5.739,9.304,23.037,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,168.14,10291.6,6061.71,1.0098,56.45,1.0,56.45,86.66,86.66,0.0,51.08,1.0,51.08,86.66,86.66,0.0,86.66,79.574,69.6266,80.3466,0.20397,0.9927,1.0,1.0171,1.0097,1.0,55.0802,0.0,0.0,29.664,10.218,10.487,47.274,5.563,11.818,29.205,0.0,0.0,0.804,0.482,0.965,1.282,0.263,1.087,27.5,10.549,8.328,0.0,0.0,43.825,5.743,9.385,47.245,5.743,9.385,23.187,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-modified.xml,86.9,77.47,67.9983,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.4524,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.432,10.566,8.655,0.0,0.0,43.716,5.764,9.77,47.127,5.764,9.77,21.282,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,160.85,9848.11,6061.71,1.01,55.89,1.0,55.89,86.9,86.9,0.0,50.32,1.0,50.32,86.9,86.9,0.0,86.9,77.798,68.2816,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.7388,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.394,10.587,8.791,0.0,0.0,43.655,5.776,9.908,47.062,5.776,9.908,21.446,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-none.xml,88.15,77.47,68.9718,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,57.4084,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.799,10.355,8.593,0.0,0.0,44.301,5.649,9.7,47.758,5.649,9.7,22.161,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,163.24,9994.06,6061.71,1.01,57.35,1.0,57.35,88.17,88.17,0.0,52.11,1.0,52.11,88.17,88.17,0.0,88.17,77.798,69.2789,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,57.7158,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.786,10.363,8.714,0.0,0.0,44.279,5.654,9.821,47.734,5.654,9.821,22.353,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-oil.xml,86.74,79.23,69.3975,80.0027,0.20487,0.9927,1.0,1.0172,1.0098,1.0,54.9092,0.0,0.0,29.681,10.209,10.343,47.3,5.558,11.674,28.997,0.0,0.0,0.804,0.482,0.963,1.282,0.263,1.087,27.513,10.542,8.243,0.0,0.0,43.845,5.739,9.304,47.266,5.739,9.304,23.037,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,171.93,10523.74,6061.71,1.0098,56.45,1.0,56.45,86.66,86.66,0.0,51.08,1.0,51.08,86.66,86.66,0.0,86.66,79.574,69.6266,80.3466,0.20397,0.9927,1.0,1.0171,1.0097,1.0,55.0802,0.0,0.0,29.664,10.218,10.487,47.274,5.563,11.818,29.205,0.0,0.0,0.804,0.482,0.965,1.282,0.263,1.087,27.5,10.549,8.328,0.0,0.0,43.825,5.743,9.385,47.245,5.743,9.385,23.187,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-appliances-propane.xml,86.74,79.23,69.3975,80.0027,0.20487,0.9927,1.0,1.0172,1.0098,1.0,54.9092,0.0,0.0,29.681,10.209,10.343,47.3,5.558,11.674,28.997,0.0,0.0,0.804,0.482,0.963,1.282,0.263,1.087,27.513,10.542,8.243,0.0,0.0,43.845,5.739,9.304,47.266,5.739,9.304,23.037,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,170.52,10437.29,6061.71,1.0098,56.45,1.0,56.45,86.66,86.66,0.0,51.08,1.0,51.08,86.66,86.66,0.0,86.66,79.574,69.6266,80.3466,0.20397,0.9927,1.0,1.0171,1.0097,1.0,55.0802,0.0,0.0,29.664,10.218,10.487,47.274,5.563,11.818,29.205,0.0,0.0,0.804,0.482,0.965,1.282,0.263,1.087,27.5,10.549,8.328,0.0,0.0,43.825,5.743,9.385,47.245,5.743,9.385,23.187,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-gas.xml,86.74,79.23,69.3975,80.0027,0.20487,0.9927,1.0,1.0172,1.0098,1.0,54.9088,0.0,0.0,29.681,10.209,10.343,47.3,5.558,11.674,28.997,0.0,0.0,0.804,0.482,0.963,1.282,0.263,1.087,27.513,10.542,8.243,0.0,0.0,43.845,5.739,9.304,47.266,5.739,9.304,23.037,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,168.07,10291.6,6064.37,1.0098,56.45,1.0,56.45,86.66,86.66,0.0,51.08,1.0,51.08,86.66,86.66,0.0,86.66,79.574,69.6266,80.3466,0.20397,0.9927,1.0,1.0171,1.0097,1.0,55.0802,0.0,0.0,29.664,10.218,10.487,47.274,5.563,11.818,29.205,0.0,0.0,0.804,0.482,0.965,1.282,0.263,1.087,27.5,10.549,8.328,0.0,0.0,43.825,5.743,9.385,47.245,5.743,9.385,23.187,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-modified.xml,86.9,77.47,67.9983,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.4524,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.432,10.566,8.655,0.0,0.0,43.716,5.764,9.77,47.127,5.764,9.77,21.282,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,160.78,9848.11,6064.37,1.01,55.89,1.0,55.89,86.9,86.9,0.0,50.32,1.0,50.32,86.9,86.9,0.0,86.9,77.798,68.2816,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.7388,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.394,10.587,8.791,0.0,0.0,43.655,5.776,9.908,47.062,5.776,9.908,21.446,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-none.xml,88.15,77.47,68.9718,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,57.4084,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.799,10.355,8.593,0.0,0.0,44.301,5.649,9.7,47.758,5.649,9.7,22.161,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,163.17,9994.06,6064.37,1.01,57.35,1.0,57.35,88.17,88.17,0.0,52.11,1.0,52.11,88.17,88.17,0.0,88.17,77.798,69.2789,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,57.7158,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.786,10.363,8.714,0.0,0.0,44.279,5.654,9.821,47.734,5.654,9.821,22.353,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-oil.xml,86.74,79.23,69.3975,80.0027,0.20487,0.9927,1.0,1.0172,1.0098,1.0,54.9092,0.0,0.0,29.681,10.209,10.343,47.3,5.558,11.674,28.997,0.0,0.0,0.804,0.482,0.963,1.282,0.263,1.087,27.513,10.542,8.243,0.0,0.0,43.845,5.739,9.304,47.266,5.739,9.304,23.037,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,171.86,10523.74,6064.37,1.0098,56.45,1.0,56.45,86.66,86.66,0.0,51.08,1.0,51.08,86.66,86.66,0.0,86.66,79.574,69.6266,80.3466,0.20397,0.9927,1.0,1.0171,1.0097,1.0,55.0802,0.0,0.0,29.664,10.218,10.487,47.274,5.563,11.818,29.205,0.0,0.0,0.804,0.482,0.965,1.282,0.263,1.087,27.5,10.549,8.328,0.0,0.0,43.825,5.743,9.385,47.245,5.743,9.385,23.187,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-appliances-propane.xml,86.74,79.23,69.3975,80.0027,0.20487,0.9927,1.0,1.0172,1.0098,1.0,54.9092,0.0,0.0,29.681,10.209,10.343,47.3,5.558,11.674,28.997,0.0,0.0,0.804,0.482,0.963,1.282,0.263,1.087,27.513,10.542,8.243,0.0,0.0,43.845,5.739,9.304,47.266,5.739,9.304,23.037,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,170.45,10437.29,6064.37,1.0098,56.45,1.0,56.45,86.66,86.66,0.0,51.08,1.0,51.08,86.66,86.66,0.0,86.66,79.574,69.6266,80.3466,0.20397,0.9927,1.0,1.0171,1.0097,1.0,55.0802,0.0,0.0,29.664,10.218,10.487,47.274,5.563,11.818,29.205,0.0,0.0,0.804,0.482,0.965,1.282,0.263,1.087,27.5,10.549,8.328,0.0,0.0,43.825,5.743,9.385,47.245,5.743,9.385,23.187,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 base-appliances-wood.xml,86.74,79.23,69.3975,80.0027,0.20487,0.9927,1.0,1.0172,1.0098,1.0,54.9092,0.0,0.0,29.681,10.209,10.343,47.3,5.558,11.674,28.997,0.0,0.0,0.804,0.482,0.963,1.282,0.263,1.087,27.513,10.542,8.243,0.0,0.0,43.845,5.739,9.304,47.266,5.739,9.304,23.037,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,56.45,1.0,56.45,86.66,86.66,0.0,51.08,1.0,51.08,86.66,86.66,0.0,86.66,79.574,69.6266,80.3466,0.20397,0.9927,1.0,1.0171,1.0097,1.0,55.0802,0.0,0.0,29.664,10.218,10.487,47.274,5.563,11.818,29.205,0.0,0.0,0.804,0.482,0.965,1.282,0.263,1.087,27.5,10.549,8.328,0.0,0.0,43.825,5.743,9.385,47.245,5.743,9.385,23.187,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-cathedral.xml,78.17,80.087,63.183,80.8319,0.19544,0.993,1.0,1.0164,1.0093,1.0,53.1418,0.0,0.0,32.278,10.427,10.343,51.439,5.64,11.675,27.039,0.0,0.0,0.804,0.485,0.963,1.282,0.263,1.087,25.825,8.127,8.244,0.0,0.0,41.155,4.396,9.306,44.366,4.396,9.306,20.987,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,146.97,9271.75,6250.31,1.0093,55.52,1.0,55.52,78.11,78.11,0.0,50.67,1.0,50.67,78.11,78.11,0.0,78.11,80.415,63.3959,81.1598,0.19461,0.9931,1.0,1.0163,1.0093,1.0,53.3486,0.0,0.0,32.262,10.435,10.487,51.413,5.644,11.819,27.231,0.0,0.0,0.804,0.485,0.964,1.282,0.263,1.087,25.817,8.133,8.329,0.0,0.0,41.142,4.399,9.387,44.352,4.399,9.387,21.117,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-conditioned.xml,74.59,93.837,68.2788,91.535,0.2015,0.9755,1.0,1.0,0.9755,1.0,57.732,0.0,0.0,37.897,13.154,10.343,60.399,7.154,11.674,32.443,0.0,0.0,0.804,0.483,0.963,1.282,0.263,1.087,24.605,10.032,8.158,0.0,0.0,39.214,5.456,9.208,42.274,5.456,9.208,25.092,0.392,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,131.9,9413.57,7316.38,0.9755,56.51,1.0,56.51,74.55,74.55,0.0,50.94,1.0,50.94,74.55,74.55,0.0,74.55,94.166,68.4901,91.8656,0.20065,0.9756,1.0,1.0,0.9756,1.0,57.9378,0.0,0.0,37.881,13.163,10.487,60.373,7.158,11.818,32.635,0.0,0.0,0.804,0.483,0.965,1.282,0.263,1.087,24.597,10.037,8.242,0.0,0.0,39.202,5.458,9.288,42.261,5.458,9.288,25.222,0.392,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-flat.xml,70.86,77.734,55.5955,78.4566,0.19533,0.993,1.0,1.0164,1.0093,1.0,47.919,0.0,0.0,30.075,10.276,10.343,47.927,5.517,11.674,27.04,0.0,0.0,0.805,0.489,0.963,1.282,0.263,1.087,19.403,6.895,8.244,0.0,0.0,30.92,3.702,9.305,33.333,3.702,9.305,20.99,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,124.34,7621.59,6072.99,1.0093,55.6,1.0,55.6,70.84,70.84,0.0,50.12,1.0,50.12,70.84,70.84,0.0,70.84,78.063,55.8091,78.7854,0.19446,0.9931,1.0,1.0163,1.0093,1.0,48.1262,0.0,0.0,30.059,10.285,10.487,47.902,5.52,11.818,27.232,0.0,0.0,0.805,0.489,0.965,1.282,0.263,1.087,19.396,6.901,8.329,0.0,0.0,30.909,3.704,9.386,33.321,3.704,9.386,21.12,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-cathedral.xml,78.17,80.087,63.183,80.8319,0.19544,0.993,1.0,1.0164,1.0093,1.0,53.1418,0.0,0.0,32.278,10.427,10.343,51.439,5.64,11.675,27.039,0.0,0.0,0.804,0.485,0.963,1.282,0.263,1.087,25.825,8.127,8.244,0.0,0.0,41.155,4.396,9.306,44.366,4.396,9.306,20.987,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,146.91,9271.75,6253.1,1.0093,55.52,1.0,55.52,78.11,78.11,0.0,50.67,1.0,50.67,78.11,78.11,0.0,78.11,80.415,63.3959,81.1598,0.19461,0.9931,1.0,1.0163,1.0093,1.0,53.3486,0.0,0.0,32.262,10.435,10.487,51.413,5.644,11.819,27.231,0.0,0.0,0.804,0.485,0.964,1.282,0.263,1.087,25.817,8.133,8.329,0.0,0.0,41.142,4.399,9.387,44.352,4.399,9.387,21.117,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-conditioned.xml,74.59,93.837,68.2788,91.535,0.2015,0.9755,1.0,1.0,0.9755,1.0,57.732,0.0,0.0,37.897,13.154,10.343,60.399,7.154,11.674,32.443,0.0,0.0,0.804,0.483,0.963,1.282,0.263,1.087,24.605,10.032,8.158,0.0,0.0,39.214,5.456,9.208,42.274,5.456,9.208,25.092,0.392,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,131.83,9413.57,7320.41,0.9755,56.51,1.0,56.51,74.55,74.55,0.0,50.94,1.0,50.94,74.55,74.55,0.0,74.55,94.166,68.4901,91.8656,0.20065,0.9756,1.0,1.0,0.9756,1.0,57.9378,0.0,0.0,37.881,13.163,10.487,60.373,7.158,11.818,32.635,0.0,0.0,0.804,0.483,0.965,1.282,0.263,1.087,24.597,10.037,8.242,0.0,0.0,39.202,5.458,9.288,42.261,5.458,9.288,25.222,0.392,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-flat.xml,70.86,77.734,55.5955,78.4566,0.19533,0.993,1.0,1.0164,1.0093,1.0,47.919,0.0,0.0,30.075,10.276,10.343,47.927,5.517,11.674,27.04,0.0,0.0,0.805,0.489,0.963,1.282,0.263,1.087,19.403,6.895,8.244,0.0,0.0,30.92,3.702,9.305,33.333,3.702,9.305,20.99,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,124.29,7621.59,6075.67,1.0093,55.6,1.0,55.6,70.84,70.84,0.0,50.12,1.0,50.12,70.84,70.84,0.0,70.84,78.063,55.8091,78.7854,0.19446,0.9931,1.0,1.0163,1.0093,1.0,48.1262,0.0,0.0,30.059,10.285,10.487,47.902,5.52,11.818,27.232,0.0,0.0,0.805,0.489,0.965,1.282,0.263,1.087,19.396,6.901,8.329,0.0,0.0,30.909,3.704,9.386,33.321,3.704,9.386,21.12,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 base-atticroof-radiant-barrier.xml,73.72,64.555,50.4193,68.392,0.22372,1.0399,1.0,1.0188,1.0594,1.0,39.7716,0.0,0.0,9.69,28.432,7.403,15.459,16.395,8.675,19.03,0.0,0.0,0.804,0.455,0.928,1.282,0.263,1.087,5.075,24.105,5.945,0.0,0.0,8.097,13.9,6.967,8.729,13.9,6.967,14.948,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,80.62,6620.7,7751.44,1.0594,47.84,1.0,47.84,73.68,73.68,0.0,46.51,1.0,46.51,73.68,73.68,0.0,73.68,64.869,50.626,68.7112,0.22296,1.0398,1.0,1.0187,1.0592,1.0,39.9706,0.0,0.0,9.682,28.448,7.517,15.447,16.405,8.789,19.222,0.0,0.0,0.804,0.455,0.93,1.282,0.263,1.087,5.072,24.115,6.016,0.0,0.0,8.093,13.906,7.034,8.724,13.906,7.034,15.078,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-unvented-insulated-roof.xml,76.32,77.47,59.6248,78.1297,0.179,0.9936,1.0,1.015,1.0085,1.0,50.6794,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,22.432,7.897,8.243,0.0,0.0,35.748,4.308,9.305,38.538,4.308,9.305,20.989,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,137.8,8424.3,6061.71,1.0085,55.6,1.0,55.6,76.26,76.26,0.0,50.12,1.0,50.12,76.26,76.26,0.0,76.26,77.798,59.8351,78.4575,0.17819,0.9936,1.0,1.0149,1.0085,1.0,50.8862,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,22.425,7.9,8.328,0.0,0.0,35.736,4.31,9.386,38.525,4.31,9.386,21.119,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-atticroof-vented.xml,88.06,77.47,68.9049,78.2483,0.21103,0.9925,1.0,1.0177,1.01,1.0,57.045,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,29.442,9.99,8.421,0.0,0.0,46.919,5.45,9.505,50.58,5.45,9.505,20.989,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,167.93,10281.56,6061.71,1.01,56.85,1.0,56.85,87.96,87.96,0.0,51.42,1.0,51.42,87.96,87.96,0.0,87.96,77.798,69.1154,78.5761,0.21009,0.9925,1.0,1.0176,1.01,1.0,57.2508,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,29.431,9.997,8.506,0.0,0.0,46.901,5.454,9.586,50.561,5.454,9.586,21.119,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-battery.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.64,9896.04,6061.71,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,77.89,41.746,35.0993,45.0612,0.20039,1.0616,1.0,1.0168,1.0794,1.0,32.1246,0.0,0.0,8.715,5.885,10.804,13.898,3.214,12.121,16.342,0.0,0.0,0.804,0.481,0.969,1.282,0.263,1.087,8.365,3.713,9.157,0.0,0.0,13.34,2.028,10.273,14.381,2.028,10.273,12.85,1.014,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,115.76,4215.94,3373.95,1.0794,55.61,1.0,55.61,77.72,77.72,0.0,53.09,1.0,53.09,77.72,77.72,0.0,77.72,41.534,34.853,44.8422,0.20096,1.0618,1.0,1.0169,1.0796,1.0,31.87,0.0,0.0,8.707,5.892,10.487,13.885,3.217,11.804,16.448,0.0,0.0,0.804,0.481,0.966,1.282,0.263,1.087,8.36,3.718,8.839,0.0,0.0,13.332,2.03,9.949,14.372,2.03,9.949,12.922,1.014,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-unvented-insulated-roof.xml,76.32,77.47,59.6248,78.1297,0.179,0.9936,1.0,1.015,1.0085,1.0,50.6794,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,22.432,7.897,8.243,0.0,0.0,35.748,4.308,9.305,38.538,4.308,9.305,20.989,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,137.74,8424.3,6064.37,1.0085,55.6,1.0,55.6,76.26,76.26,0.0,50.12,1.0,50.12,76.26,76.26,0.0,76.26,77.798,59.8351,78.4575,0.17819,0.9936,1.0,1.0149,1.0085,1.0,50.8862,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,22.425,7.9,8.328,0.0,0.0,35.736,4.31,9.386,38.525,4.31,9.386,21.119,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-atticroof-vented.xml,88.06,77.47,68.9049,78.2483,0.21103,0.9925,1.0,1.0177,1.01,1.0,57.045,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,29.442,9.99,8.421,0.0,0.0,46.919,5.45,9.505,50.58,5.45,9.505,20.989,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,167.85,10281.56,6064.37,1.01,56.85,1.0,56.85,87.96,87.96,0.0,51.42,1.0,51.42,87.96,87.96,0.0,87.96,77.798,69.1154,78.5761,0.21009,0.9925,1.0,1.0176,1.01,1.0,57.2508,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,29.431,9.997,8.506,0.0,0.0,46.901,5.454,9.586,50.561,5.454,9.586,21.119,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-battery.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.57,9896.04,6064.37,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,77.89,41.746,35.0993,45.0612,0.20039,1.0616,1.0,1.0168,1.0794,1.0,32.1246,0.0,0.0,8.715,5.885,10.804,13.898,3.214,12.121,16.342,0.0,0.0,0.804,0.481,0.969,1.282,0.263,1.087,8.365,3.713,9.157,0.0,0.0,13.34,2.028,10.273,14.381,2.028,10.273,12.85,1.014,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,115.75,4215.94,3374.26,1.0794,55.61,1.0,55.61,77.72,77.72,0.0,53.09,1.0,53.09,77.72,77.72,0.0,77.72,41.534,34.853,44.8422,0.20096,1.0618,1.0,1.0169,1.0796,1.0,31.87,0.0,0.0,8.707,5.892,10.487,13.885,3.217,11.804,16.448,0.0,0.0,0.804,0.481,0.966,1.282,0.263,1.087,8.36,3.718,8.839,0.0,0.0,13.332,2.03,9.949,14.372,2.03,9.949,12.922,1.014,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 base-bldgtype-mf-unit-location-portland-or.xml,74.94,34.362,27.5073,36.7079,0.17317,1.053,1.0,1.0145,1.0683,1.0,26.6794,0.0,0.0,3.86,3.877,10.272,6.156,2.041,11.583,16.353,0.0,0.0,0.804,0.499,0.964,1.282,0.263,1.087,2.18,2.756,8.681,0.0,0.0,3.477,1.451,9.789,3.748,1.451,9.789,12.883,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,93.39,2172.6,2177.73,1.0683,61.52,1.0,61.52,74.72,74.72,0.0,50.92,1.0,50.92,74.72,74.72,0.0,74.72,34.168,27.2778,36.5081,0.17371,1.0532,1.0,1.0146,1.0685,1.0,26.445,0.0,0.0,3.853,3.883,9.973,6.145,2.045,11.283,16.459,0.0,0.0,0.804,0.499,0.961,1.282,0.263,1.087,2.176,2.757,8.383,0.0,0.0,3.47,1.452,9.484,3.741,1.452,9.484,12.955,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,74.22,39.649,31.8654,42.9318,0.2086,1.0642,1.0,1.0175,1.0828,1.0,29.5092,0.0,0.0,5.773,6.702,10.804,9.457,3.549,12.105,16.37,0.0,0.0,0.763,0.496,0.97,1.25,0.263,1.087,2.969,5.839,9.15,0.0,0.0,4.864,3.092,10.252,5.378,3.092,10.252,12.9,1.007,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,86.35,2976.85,3183.77,1.0828,51.55,1.0,51.55,74.03,74.03,0.0,50.39,1.0,50.39,74.03,74.03,0.0,74.03,39.439,31.6232,42.714,0.20918,1.0644,1.0,1.0176,1.083,1.0,29.2578,0.0,0.0,5.766,6.71,10.487,9.445,3.553,11.787,16.476,0.0,0.0,0.763,0.496,0.967,1.25,0.263,1.087,2.966,5.843,8.834,0.0,0.0,4.859,3.094,9.929,5.372,3.094,9.929,12.973,1.007,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,74.74,39.649,32.0851,42.9318,0.2086,1.0642,1.0,1.0175,1.0828,1.0,29.764,0.0,0.0,5.773,6.702,10.804,9.457,3.549,12.105,16.37,0.0,0.0,0.763,0.496,0.97,1.25,0.263,1.087,3.189,5.839,9.15,0.0,0.0,5.224,3.092,10.252,5.776,3.092,10.252,12.9,1.007,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,87.79,3026.46,3183.77,1.0828,51.74,1.0,51.74,74.55,74.55,0.0,50.49,1.0,50.49,74.55,74.55,0.0,74.55,39.439,31.8419,42.714,0.20918,1.0644,1.0,1.0176,1.083,1.0,29.5136,0.0,0.0,5.766,6.71,10.487,9.445,3.553,11.787,16.476,0.0,0.0,0.763,0.496,0.967,1.25,0.263,1.087,3.186,5.843,8.834,0.0,0.0,5.219,3.094,9.929,5.77,3.094,9.929,12.972,1.007,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,74.3,39.649,31.8991,42.9318,0.2086,1.0642,1.0,1.0175,1.0828,1.0,29.6862,0.0,0.0,5.773,6.702,10.804,9.457,3.549,12.105,16.37,0.0,0.0,0.763,0.496,0.97,1.25,0.263,1.087,3.003,5.839,9.15,0.0,0.0,4.919,3.092,10.252,5.439,3.092,10.252,12.9,1.007,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,86.2,2971.58,3183.77,1.0828,51.74,1.0,51.74,74.11,74.11,0.0,50.49,1.0,50.49,74.11,74.11,0.0,74.11,39.439,31.6563,42.714,0.20918,1.0644,1.0,1.0176,1.083,1.0,29.4358,0.0,0.0,5.766,6.71,10.487,9.445,3.553,11.787,16.476,0.0,0.0,0.763,0.496,0.967,1.25,0.263,1.087,2.999,5.843,8.834,0.0,0.0,4.913,3.094,9.929,5.432,3.094,9.929,12.973,1.007,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,73.27,39.648,31.412,42.873,0.20506,1.0631,1.0,1.0172,1.0813,1.0,29.323,0.0,0.0,5.772,6.702,10.804,9.563,3.549,12.105,16.37,0.0,0.0,1.02,0.496,0.97,1.693,0.263,1.087,2.515,5.839,9.15,0.0,0.0,4.104,3.092,10.252,4.510000000000001,3.092,10.252,12.9,1.007,0.0,1.314,0.263,1.042,3.3504,0.403,3.809,0.0,0.92,0.0,82.33,2834.24,3183.77,1.0813,50.49,1.0,50.49,73.07,73.07,0.0,49.95,1.0,49.95,73.07,73.07,0.0,73.07,39.437,31.1681,42.654,0.20563,1.0632,1.0,1.0173,1.0816,1.0,29.072,0.0,0.0,5.763999999999999,6.71,10.487,9.553,3.553,11.787,16.476,0.0,0.0,1.019,0.496,0.967,1.693,0.263,1.087,2.512,5.843,8.834,0.0,0.0,4.099,3.094,9.929,4.504,3.094,9.929,12.972,1.007,0.0,1.314,0.263,1.042,3.3504,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,74.67,39.648,31.9523,42.7919,0.2001,1.0615,1.0,1.0168,1.0793,1.0,29.4828,0.0,0.0,5.772,6.702,10.804,9.202,3.549,12.105,16.37,0.0,0.0,0.804,0.496,0.97,1.282,0.263,1.087,4.737,4.158,9.15,0.0,0.0,7.552,2.202,10.252,7.552,2.202,10.252,12.9,1.007,0.0,1.282,0.274,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,94.07,3232.46,3183.77,1.0793,57.46,1.0,57.46,74.48,74.48,0.0,51.28,1.0,51.28,74.48,74.48,0.0,74.48,39.437,31.7067,42.5733,0.20066,1.0617,1.0,1.0168,1.0795,1.0,29.2306,0.0,0.0,5.764,6.71,10.487,9.19,3.553,11.787,16.476,0.0,0.0,0.804,0.496,0.967,1.282,0.263,1.087,4.731,4.162,8.834,0.0,0.0,7.544,2.204,9.929,7.544,2.204,9.929,12.972,1.007,0.0,1.282,0.274,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,77.6,39.648,33.2053,42.7919,0.2001,1.0615,1.0,1.0168,1.0793,1.0,30.1468,0.0,0.0,5.772,6.702,10.804,9.202,3.549,12.105,16.37,0.0,0.0,0.804,0.496,0.97,1.282,0.263,1.087,4.737,5.41,9.15,0.0,0.0,7.552,2.865,10.252,7.552,2.865,10.252,12.901,1.007,0.0,1.282,0.302,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,95.51,3281.91,3183.77,1.0793,57.84,1.0,57.84,77.42,77.42,0.0,51.75,1.0,51.75,77.42,77.42,0.0,77.42,39.437,32.9611,42.5733,0.20066,1.0617,1.0,1.0168,1.0795,1.0,29.8942,0.0,0.0,5.764,6.71,10.487,9.19,3.553,11.787,16.476,0.0,0.0,0.804,0.496,0.967,1.282,0.263,1.087,4.731,5.416,8.834,0.0,0.0,7.543,2.868,9.929,7.543,2.868,9.929,12.973,1.007,0.0,1.282,0.302,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,75.61,39.648,32.3545,42.7919,0.2001,1.0615,1.0,1.0168,1.0793,1.0,29.6958,0.0,0.0,5.772,6.702,10.804,9.202,3.549,12.105,16.37,0.0,0.0,0.804,0.496,0.97,1.282,0.263,1.087,4.737,4.561,9.15,0.0,0.0,7.552,2.415,10.252,7.552,2.415,10.252,12.9,1.007,0.0,1.282,0.302,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,94.52,3247.93,3183.77,1.0793,57.84,1.0,57.84,75.42,75.42,0.0,51.75,1.0,51.75,75.42,75.42,0.0,75.42,39.437,32.109,42.5733,0.20066,1.0617,1.0,1.0168,1.0795,1.0,29.4436,0.0,0.0,5.764,6.71,10.487,9.19,3.553,11.787,16.476,0.0,0.0,0.804,0.496,0.967,1.282,0.263,1.087,4.731,4.565,8.834,0.0,0.0,7.544,2.417,9.929,7.544,2.417,9.929,12.972,1.007,0.0,1.282,0.302,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,95.31,39.648,40.7855,42.7919,0.2001,1.0615,1.0,1.0168,1.0793,1.0,34.1598,0.0,0.0,5.772,6.702,10.804,9.202,3.549,12.105,16.37,0.0,0.0,0.804,0.496,0.97,1.282,0.263,1.087,4.737,12.991,9.15,0.0,0.0,7.552,6.879,10.252,7.552,6.879,10.252,12.901,1.007,0.0,1.282,0.747,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,104.09,3576.86,3183.77,1.0793,62.59,1.0,62.59,95.24,95.24,0.0,57.6,1.0,57.6,95.24,95.24,0.0,95.24,39.437,40.5474,42.5733,0.20066,1.0617,1.0,1.0168,1.0795,1.0,33.9122,0.0,0.0,5.764,6.71,10.487,9.19,3.553,11.787,16.476,0.0,0.0,0.804,0.496,0.967,1.282,0.263,1.087,4.731,13.003,8.834,0.0,0.0,7.543,6.885,9.929,7.543,6.885,9.929,12.973,1.007,0.0,1.282,0.747,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,76.91,39.648,32.9126,42.7919,0.2001,1.0615,1.0,1.0168,1.0793,1.0,29.9908,0.0,0.0,5.772,6.702,10.804,9.202,3.549,12.105,16.37,0.0,0.0,0.804,0.496,0.97,1.282,0.263,1.087,4.737,5.118,9.15,0.0,0.0,7.552,2.71,10.252,7.552,2.71,10.252,12.901,1.007,0.0,1.282,0.285,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,95.18,3270.53,3183.77,1.0793,57.66,1.0,57.66,76.73,76.73,0.0,51.53,1.0,51.53,76.73,76.73,0.0,76.73,39.437,32.6683,42.5733,0.20066,1.0617,1.0,1.0168,1.0795,1.0,29.7382,0.0,0.0,5.764,6.71,10.487,9.19,3.553,11.787,16.476,0.0,0.0,0.804,0.496,0.967,1.282,0.263,1.087,4.731,5.124,8.834,0.0,0.0,7.543,2.713,9.929,7.543,2.713,9.929,12.973,1.007,0.0,1.282,0.285,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-generator.xml,68.1,39.648,30.4267,42.7966,0.20039,1.0616,1.0,1.0168,1.0794,0.9578,27.4372,1.1572,0.0,5.772,6.702,10.804,9.207,3.532,12.105,16.37,0.0,0.0,0.804,0.498,0.97,1.282,0.263,1.087,2.992,4.378,9.15,0.0,0.0,4.773,2.307,10.252,5.145,2.307,10.252,12.9,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,141.12,4837.5,3175.63,1.0794,50.32,1.0,50.32,70.89,70.89,0.0,48.5,1.0,48.5,70.89,70.89,0.0,67.87,39.437,30.1841,42.5781,0.20096,1.0618,1.0,1.0169,1.0796,0.9574,27.1858,1.1572,0.0,5.764,6.71,10.487,9.195,3.535,11.787,16.476,0.0,0.0,0.804,0.498,0.967,1.282,0.263,1.087,2.988,4.383,8.834,0.0,0.0,4.767,2.309,9.929,5.139,2.309,9.929,12.972,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,66.4,39.655,28.4183,42.7994,0.2001,1.0615,1.0,1.0168,1.0793,1.0,27.936,0.0,0.0,5.772,6.709,10.804,6.484,3.43,12.105,16.37,0.0,0.0,0.394,0.514,0.97,0.443,0.263,1.087,1.694,3.667,9.15,0.0,0.0,1.903,1.875,10.252,1.904,1.875,10.252,12.9,1.007,0.0,0.278,0.206,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,66.59,2282.2,3175.63,1.0793,47.24,1.0,47.24,66.17,66.17,0.0,47.61,1.0,47.61,66.17,66.17,0.0,66.17,39.445,28.1771,42.5813,0.20063,1.0616,1.0,1.0168,1.0795,1.0,27.685,0.0,0.0,5.765,6.717,10.487,6.477,3.433,11.787,16.476,0.0,0.0,0.394,0.514,0.967,0.443,0.263,1.087,1.692,3.673,8.834,0.0,0.0,1.901,1.877,9.929,1.902,1.877,9.929,12.972,1.007,0.0,0.278,0.206,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,70.45,39.533,30.0617,42.669,0.20017,1.0615,1.0,1.0168,1.0793,1.0,24.3658,0.0,0.0,5.535,6.821,10.804,8.83,3.578,18.59,16.373,0.0,0.0,0.804,0.5,1.97,1.282,0.263,3.39,2.895,4.442,8.816,0.0,0.0,4.619,2.33,15.168,4.979,2.33,15.168,12.902,1.007,0.0,1.087,0.242,3.39,1.0943,0.403,3.809,0.0,2.3754,2.026,124.58,4279.88,3182.85,1.0793,46.72,1.0,46.72,70.26,70.26,0.0,44.17,1.0,44.17,70.26,70.26,0.0,70.26,39.322,29.8257,42.4509,0.20077,1.0617,1.0,1.0168,1.0796,1.0,24.2698,0.0,0.0,5.536,6.82,10.488,8.831,3.578,18.18,16.479,0.0,0.0,0.804,0.5,1.956,1.282,0.263,3.39,2.895,4.441,8.508,0.0,0.0,4.619,2.33,14.748,4.979,2.33,14.748,12.974,1.007,0.0,1.087,0.242,3.39,1.0943,0.403,3.809,0.0,2.3754,2.026 -base-bldgtype-mf-unit-shared-laundry-room.xml,67.62,39.533,28.8516,42.669,0.20017,1.0615,1.0,1.0168,1.0793,1.0,23.5732,0.0,0.0,5.535,6.821,10.804,8.83,3.578,18.59,16.373,0.0,0.0,0.804,0.5,0.985,1.282,0.263,1.695,3.193,4.223,7.534,0.0,0.0,5.094,2.215,12.963,5.492,2.215,12.962,12.895,1.007,0.0,1.087,0.242,1.695,1.0943,0.403,3.809,0.0,1.1877,1.013,117.05,4021.05,3182.81,1.0793,46.72,1.0,46.72,67.44,67.44,0.0,44.17,1.0,44.17,67.44,67.44,0.0,67.44,39.322,28.6281,42.4509,0.20077,1.0617,1.0,1.0168,1.0796,1.0,23.4788,0.0,0.0,5.536,6.82,10.487,8.831,3.578,18.179,16.479,0.0,0.0,0.804,0.5,0.978,1.282,0.263,1.695,3.194,4.222,7.238,0.0,0.0,5.095,2.215,12.547,5.493,2.215,12.546,12.967,1.007,0.0,1.087,0.242,1.695,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,72.56,40.223,31.5037,43.4172,0.20039,1.0616,1.0,1.0168,1.0794,1.0,29.2934,0.0,0.0,5.66,6.8,10.804,9.029,3.574,12.104,16.372,0.587,0.0,0.804,0.5,0.97,1.282,0.263,1.087,0.5,4.964,9.129,2.316,0.137,0.798,2.609,10.227,0.86,2.609,10.227,12.963,1.495,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,84.07,2921.38,3219.38,1.0794,50.32,1.0,50.32,72.37,72.37,0.0,48.5,1.0,48.5,72.37,72.37,0.0,72.37,40.013,31.2635,43.2,0.20096,1.0618,1.0,1.0169,1.0796,1.0,29.0446,0.0,0.0,5.653,6.808,10.487,9.018,3.578,11.786,16.478,0.587,0.0,0.804,0.5,0.967,1.282,0.263,1.087,0.499,4.97,8.812,2.316,0.137,0.796,2.612,9.903,0.858,2.612,9.903,13.035,1.495,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-mechvent.xml,68.94,40.223,29.9311,43.4172,0.20039,1.0616,1.0,1.0168,1.0794,1.0,28.3372,0.0,0.0,5.66,6.8,10.804,9.029,3.574,12.104,16.372,0.587,0.0,0.804,0.5,0.97,1.282,0.263,1.087,1.772,4.597,9.143,0.0,0.0,2.827,2.416,10.243,3.048,2.416,10.243,12.924,1.495,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,75.76,2632.76,3219.38,1.0794,50.32,1.0,50.32,68.72,68.72,0.0,48.5,1.0,48.5,68.72,68.72,0.0,68.72,40.013,29.6858,43.2,0.20096,1.0618,1.0,1.0169,1.0796,1.0,28.0866,0.0,0.0,5.653,6.808,10.487,9.018,3.578,11.786,16.478,0.587,0.0,0.804,0.5,0.967,1.282,0.263,1.087,1.77,4.599,8.826,0.0,0.0,2.824,2.417,9.919,3.044,2.417,9.919,12.996,1.495,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-pv-battery.xml,12.48,39.648,30.4267,42.7966,0.20039,1.0616,1.0,1.0168,1.0794,0.1755,28.5944,24.449,0.873,5.772,6.702,10.804,9.207,3.532,12.105,16.37,0.0,0.0,0.804,0.498,0.97,1.282,0.263,1.087,2.992,4.378,9.15,0.0,0.0,4.773,2.307,10.252,5.145,2.307,10.252,12.9,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,30.85,1057.5,3175.63,1.0794,50.32,1.0,50.32,70.89,70.89,0.0,48.5,1.0,48.5,70.89,70.89,0.0,11.93,39.437,30.1841,42.5781,0.20096,1.0618,1.0,1.0169,1.0796,0.1682,28.343,24.449,0.874,5.764,6.71,10.487,9.195,3.535,11.787,16.476,0.0,0.0,0.804,0.498,0.967,1.282,0.263,1.087,2.988,4.383,8.834,0.0,0.0,4.767,2.309,9.929,5.139,2.309,9.929,12.972,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-pv.xml,10.31,39.648,30.4267,42.7966,0.20039,1.0616,1.0,1.0168,1.0794,0.145,28.5944,24.449,0.0,5.772,6.702,10.804,9.207,3.532,12.105,16.37,0.0,0.0,0.804,0.498,0.97,1.282,0.263,1.087,2.992,4.378,9.15,0.0,0.0,4.773,2.307,10.252,5.145,2.307,10.252,12.9,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,35.39,1213.14,3175.63,1.0794,50.32,1.0,50.32,70.89,70.89,0.0,48.5,1.0,48.5,70.89,70.89,0.0,9.74,39.437,30.1841,42.5781,0.20096,1.0618,1.0,1.0169,1.0796,0.1374,28.343,24.449,0.0,5.764,6.71,10.487,9.195,3.535,11.787,16.476,0.0,0.0,0.804,0.498,0.967,1.282,0.263,1.087,2.988,4.383,8.834,0.0,0.0,4.767,2.309,9.929,5.139,2.309,9.929,12.972,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,58.02,39.648,24.8305,42.7966,0.20039,1.0616,1.0,1.0168,1.0794,1.0,22.0184,0.0,0.0,5.772,6.702,10.804,9.207,3.532,12.105,16.37,0.0,0.0,0.804,0.498,0.97,1.282,0.263,1.087,5.704,3.034,2.229,0.0,0.0,9.098,1.599,2.497,9.808,1.599,2.497,12.857,1.007,0.0,1.087,0.242,0.275,1.0943,0.403,3.809,0.0,0.92,0.0,84.44,2894.56,3175.63,1.0794,49.54,1.0,49.54,58.3,58.3,0.0,47.13,1.0,47.13,58.3,58.3,0.0,58.3,39.437,24.8221,42.5781,0.20096,1.0618,1.0,1.0169,1.0796,1.0,21.9918,0.0,0.0,5.764,6.71,10.487,9.195,3.535,11.787,16.476,0.0,0.0,0.804,0.498,0.967,1.282,0.263,1.087,5.606,3.128,2.151,0.0,0.0,8.942,1.648,2.418,9.64,1.648,2.418,12.93,1.007,0.0,1.087,0.242,0.275,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,68.12,39.561,29.0877,42.6992,0.20017,1.0615,1.0,1.0168,1.0793,1.0,24.608,0.0,0.0,5.356,7.025,10.804,8.545,3.672,18.585,16.376,0.0,0.0,0.804,0.502,0.985,1.282,0.263,1.695,3.126,4.314,7.743,0.0,0.0,4.988,2.255,13.32,5.377,2.255,13.918,12.897,1.007,0.0,1.087,0.242,1.626,1.0943,0.403,3.809,0.0,1.1877,1.013,118.98,4078.17,3175.63,1.0793,47.39,1.0,47.39,67.96,67.96,0.0,44.92,1.0,44.92,67.96,67.96,0.0,67.96,39.351,28.8717,42.4822,0.20077,1.0617,1.0,1.0168,1.0796,1.0,24.5132,0.0,0.0,5.349,7.033,10.487,8.534,3.676,18.173,16.482,0.0,0.0,0.804,0.502,0.978,1.282,0.263,1.695,3.123,4.316,7.457,0.0,0.0,4.982,2.256,12.922,5.371,2.256,13.502,12.969,1.007,0.0,1.087,0.242,1.626,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-bldgtype-mf-unit-shared-water-heater.xml,66.69,39.561,28.4779,42.6992,0.20017,1.0615,1.0,1.0168,1.0793,1.0,23.512,0.0,0.0,5.356,7.025,10.804,8.545,3.672,18.585,16.376,0.0,0.0,0.804,0.502,0.985,1.282,0.263,1.695,3.126,4.314,7.133,0.0,0.0,4.988,2.255,12.271,5.377,2.255,12.822,12.897,1.007,0.0,1.087,0.242,1.626,1.0943,0.403,3.809,0.0,1.1877,1.013,116.31,3986.63,3175.63,1.0793,46.66,1.0,46.66,66.54,66.54,0.0,44.21,1.0,44.21,66.54,66.54,0.0,66.54,39.351,28.2665,42.4822,0.20077,1.0617,1.0,1.0168,1.0796,1.0,23.4172,0.0,0.0,5.349,7.033,10.487,8.534,3.676,18.173,16.482,0.0,0.0,0.804,0.502,0.978,1.282,0.263,1.695,3.123,4.316,6.851,0.0,0.0,4.982,2.256,11.873,5.371,2.256,12.406,12.969,1.007,0.0,1.087,0.242,1.626,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-bldgtype-mf-unit.xml,71.1,39.648,30.4267,42.7966,0.20039,1.0616,1.0,1.0168,1.0794,1.0,28.5944,0.0,0.0,5.772,6.702,10.804,9.207,3.532,12.105,16.37,0.0,0.0,0.804,0.498,0.97,1.282,0.263,1.087,2.992,4.378,9.15,0.0,0.0,4.773,2.307,10.252,5.145,2.307,10.252,12.9,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,84.27,2888.66,3175.63,1.0794,50.32,1.0,50.32,70.89,70.89,0.0,48.5,1.0,48.5,70.89,70.89,0.0,70.89,39.437,30.1841,42.5781,0.20096,1.0618,1.0,1.0169,1.0796,1.0,28.343,0.0,0.0,5.764,6.71,10.487,9.195,3.535,11.787,16.476,0.0,0.0,0.804,0.498,0.967,1.282,0.263,1.087,2.988,4.383,8.834,0.0,0.0,4.767,2.309,9.929,5.139,2.309,9.929,12.972,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-sfa-unit.xml,83.18,57.054,49.1928,59.1374,0.21019,1.0186,1.0,1.0176,1.0365,1.0,42.6898,0.0,0.0,18.344,6.728,10.343,29.234,3.729,11.673,21.639,0.0,0.0,0.804,0.474,0.963,1.282,0.263,1.087,17.633,5.687,8.49,0.0,0.0,28.1,3.152,9.582,30.293,3.152,9.582,16.891,0.492,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,145.45,6862.62,4552.06,1.0365,55.34,1.0,55.34,83.08,83.08,0.0,49.83,1.0,49.83,83.08,83.08,0.0,83.08,57.383,49.4057,59.4692,0.20928,1.0185,1.0,1.0176,1.0364,1.0,42.8992,0.0,0.0,18.328,6.737,10.487,29.21,3.734,11.816,21.831,0.0,0.0,0.804,0.474,0.965,1.282,0.263,1.087,17.621,5.692,8.58,0.0,0.0,28.083,3.155,9.667,30.274,3.155,9.667,17.021,0.492,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-combi-tankless.xml,65.47,77.126,51.0189,77.9294,0.21874,0.9922,1.0,1.0184,1.0104,1.0,43.6814,0.0,0.0,29.556,10.187,10.343,48.329,5.604,18.108,27.04,0.0,0.0,0.764,0.477,0.968,1.25,0.263,1.695,18.911,8.491,2.563,0.0,0.0,30.923,4.671,4.488,34.191,4.671,10.354,20.99,0.063,0.0,1.087,0.263,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013,140.75,8634.29,6071.27,1.0104,54.09,1.0,54.09,65.4,65.4,0.0,49.45,1.0,49.45,65.4,65.4,0.0,65.4,77.455,51.1838,78.2582,0.21778,0.9922,1.0,1.0183,1.0104,1.0,43.8506,0.0,0.0,29.54,10.196,10.487,48.303,5.608,18.296,27.232,0.0,0.0,0.764,0.477,0.972,1.25,0.263,1.695,18.904,8.498,2.599,0.0,0.0,30.911,4.674,4.534,34.178,4.674,10.46,21.12,0.063,0.0,1.087,0.263,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-desuperheater.xml,86.48,77.468,67.6596,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,53.566,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.57,10.757,6.278,0.0,0.0,47.124,5.935,7.087,47.126,5.935,7.087,20.991,0.063,0.0,1.282,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,157.07,9631.22,6071.27,1.01,70.15,1.0,70.15,86.36,86.36,0.0,61.25,1.0,61.25,86.36,86.36,0.0,86.36,77.797,67.8551,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,53.7552,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.56,10.766,6.345,0.0,0.0,47.107,5.938,7.151,47.109,5.938,7.151,21.121,0.063,0.0,1.282,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-dwhr.xml,83.75,77.47,65.5321,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,53.6662,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,6.273,0.0,0.0,44.484,5.614,7.081,47.955,5.614,7.081,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,158.74,9718.78,6061.71,1.01,55.6,1.0,55.6,83.65,83.65,0.0,50.12,1.0,50.12,83.65,83.65,0.0,83.65,77.798,65.7234,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,53.8574,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,6.342,0.0,0.0,44.468,5.616,7.147,47.938,5.616,7.147,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-indirect-standbyloss.xml,69.32,77.079,53.9728,77.8643,0.21398,0.9924,1.0,1.018,1.0102,1.0,44.7986,0.0,0.0,29.478,10.218,10.343,48.205,5.618,18.447,27.04,0.0,0.0,0.764,0.478,0.967,1.25,0.263,1.724,17.978,9.007,5.932,0.0,0.0,29.399,4.952,10.58,32.506,4.952,14.14,20.993,0.063,0.0,1.087,0.263,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013,145.69,8965.29,6091.67,1.0102,54.09,1.0,54.09,69.27,69.27,0.0,49.45,1.0,49.45,69.27,69.27,0.0,69.27,77.408,54.1678,78.1929,0.21298,0.9924,1.0,1.0179,1.0101,1.0,44.9678,0.0,0.0,29.462,10.227,10.487,48.179,5.623,18.634,27.232,0.0,0.0,0.764,0.477,0.97,1.25,0.263,1.724,17.971,9.012,5.999,0.0,0.0,29.387,4.955,10.659,32.493,4.955,14.246,21.123,0.063,0.0,1.087,0.263,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-jacket-gas.xml,85.38,77.222,66.6216,78.0276,0.21909,0.9922,1.0,1.0184,1.0104,1.0,51.9254,0.0,0.0,29.711,10.128,10.343,47.348,5.514,17.463,27.04,0.0,0.0,0.804,0.482,0.971,1.282,0.263,1.639,27.607,10.431,7.528,0.0,0.0,43.995,5.679,12.711,47.428,5.679,13.732,20.992,0.063,0.0,1.087,0.242,1.626,1.0943,0.403,3.809,0.0,1.1877,1.013,181.53,11101.4,6052.25,1.0104,52.73,1.0,52.73,85.29,85.29,0.0,47.86,1.0,47.86,85.29,85.29,0.0,85.29,77.55,66.8273,78.356,0.21826,0.9922,1.0,1.0183,1.0104,1.0,52.0922,0.0,0.0,29.694,10.137,10.487,47.322,5.519,17.649,27.232,0.0,0.0,0.804,0.482,0.974,1.282,0.263,1.639,27.595,10.436,7.611,0.0,0.0,43.977,5.682,12.808,47.409,5.682,13.837,21.122,0.063,0.0,1.087,0.242,1.626,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-jacket-hpwh.xml,82.14,77.096,63.9319,77.8326,0.20073,0.9928,1.0,1.0168,1.0096,1.0,51.1266,0.0,0.0,29.502,10.211,10.343,47.016,5.553,12.832,27.04,0.0,0.0,0.804,0.483,0.937,1.282,0.263,1.163,31.686,8.959,2.241,0.0,0.0,50.497,4.872,2.78,54.437,4.872,2.599,20.983,0.063,0.0,1.087,0.242,0.275,1.0943,0.403,3.809,0.0,0.92,0.0,165.75,10250.31,6125.5,1.0096,55.9,1.0,55.9,82.01,82.01,0.0,50.38,1.0,50.38,82.01,82.01,0.0,82.01,77.425,64.1011,78.1609,0.1997,0.9929,1.0,1.0167,1.0095,1.0,51.2868,0.0,0.0,29.486,10.22,10.487,46.99,5.557,12.976,27.232,0.0,0.0,0.804,0.483,0.94,1.282,0.263,1.163,31.706,8.955,2.265,0.0,0.0,50.528,4.869,2.803,54.471,4.869,2.62,21.112,0.063,0.0,1.087,0.242,0.275,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-jacket-indirect.xml,68.23,77.079,53.1245,77.8643,0.21398,0.9924,1.0,1.018,1.0102,1.0,44.5258,0.0,0.0,29.478,10.218,10.343,48.205,5.618,18.447,27.04,0.0,0.0,0.764,0.478,0.967,1.25,0.263,1.724,18.248,8.859,4.962,0.0,0.0,29.842,4.871,8.849,32.995,4.871,13.169,20.992,0.063,0.0,1.087,0.263,1.269,1.0943,0.403,3.809,0.0,1.1877,1.013,144.43,8887.93,6091.67,1.0102,54.09,1.0,54.09,68.18,68.18,0.0,49.45,1.0,49.45,68.18,68.18,0.0,68.18,77.408,53.3113,78.1929,0.21298,0.9924,1.0,1.0179,1.0101,1.0,44.6954,0.0,0.0,29.462,10.227,10.487,48.179,5.623,18.634,27.232,0.0,0.0,0.764,0.477,0.97,1.25,0.263,1.724,18.241,8.865,5.02,0.0,0.0,29.83,4.874,8.92,32.982,4.874,13.275,21.122,0.063,0.0,1.087,0.263,1.269,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-low-flow-fixtures.xml,85.85,77.47,67.1755,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.5212,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,7.916,0.0,0.0,44.484,5.614,8.936,47.955,5.614,8.936,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.16,9866.74,6061.71,1.01,55.6,1.0,55.6,85.76,85.76,0.0,50.12,1.0,50.12,85.76,85.76,0.0,85.76,77.798,67.3829,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,55.728,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.002,0.0,0.0,44.467,5.616,9.018,47.937,5.616,9.018,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-multiple.xml,68.47,77.469,53.5997,78.2769,0.219,0.9922,1.0,1.0184,1.0104,1.0,42.9706,0.0,0.0,30.117,9.97,10.344,49.212,5.501,11.676,27.039,0.0,0.0,0.765,0.476,5.778,1.25,0.263,6.522,18.348,8.788,5.407,0.0,0.0,29.981,4.849,6.105,33.149,4.849,6.105,20.992,0.063,0.0,1.087,0.263,6.9,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0,126.03,7732.23,6072.14,1.0104,60.62,1.0,60.62,68.39,68.39,0.0,55.32,1.0,55.32,68.39,68.39,0.0,68.39,77.797,53.754,78.6047,0.21804,0.9922,1.0,1.0183,1.0104,1.0,43.1118,0.0,0.0,30.1,9.979,10.486,49.186,5.504,11.82,27.231,0.0,0.0,0.765,0.476,5.784,1.25,0.263,6.522,18.338,8.792,5.44,0.0,0.0,29.966,4.849,6.13,33.133,4.849,6.13,21.122,0.063,0.0,1.087,0.263,6.9,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0 -base-dhw-none.xml,90.11,77.127,70.1922,77.8987,0.21015,0.9925,1.0,1.0176,1.01,1.0,54.472,0.0,0.0,29.556,10.188,10.343,47.101,5.543,18.108,27.04,0.0,0.0,0.804,0.483,0.968,1.282,0.263,1.695,27.106,10.646,10.344,0.0,0.0,43.197,5.792,18.11,46.568,5.792,18.109,22.033,0.063,0.0,1.087,0.242,1.695,1.0943,0.403,3.809,0.0,1.1877,1.013,191.28,11710.61,6061.71,1.01,62.55,1.0,62.55,90.15,90.15,0.0,57.62,1.0,57.62,90.15,90.15,0.0,90.15,77.455,70.521,78.2266,0.20926,0.9925,1.0,1.0176,1.01,1.0,54.7328,0.0,0.0,29.539,10.197,10.487,47.075,5.547,18.296,27.232,0.0,0.0,0.804,0.483,0.972,1.282,0.263,1.695,27.091,10.655,10.488,0.0,0.0,43.173,5.796,18.297,46.542,5.796,18.296,22.225,0.063,0.0,1.087,0.242,1.695,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-recirc-demand.xml,86.21,77.47,67.459,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8402,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.2,0.0,0.0,44.484,5.614,9.256,47.955,5.614,9.256,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.57,9892.04,6061.71,1.01,55.6,1.0,55.6,86.12,86.12,0.0,50.12,1.0,50.12,86.12,86.12,0.0,86.12,77.798,67.6642,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.044,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.283,0.0,0.0,44.467,5.616,9.335,47.937,5.616,9.335,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-solar-fraction.xml,79.63,77.47,62.3056,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,49.9758,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,28.185,10.183,2.885,0.0,0.0,44.916,5.555,3.256,48.421,5.555,3.256,20.99,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,154.76,9475.13,6061.71,1.01,55.6,1.0,55.6,79.49,79.49,0.0,50.12,1.0,50.12,79.49,79.49,0.0,79.49,77.798,62.4606,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,50.13,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,28.176,10.187,2.915,0.0,0.0,44.9,5.558,3.285,48.404,5.558,3.285,21.12,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-solar-indirect-flat-plate.xml,77.87,77.47,60.9299,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,48.4104,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.638,10.592,1.645,0.0,0.0,44.044,5.778,1.857,47.481,5.778,1.857,20.992,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,151.07,9248.99,6061.71,1.01,55.6,1.0,55.6,77.75,77.75,0.0,50.12,1.0,50.12,77.75,77.75,0.0,77.75,77.798,61.0905,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,48.5702,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.631,10.598,1.677,0.0,0.0,44.032,5.782,1.89,47.468,5.782,1.89,21.122,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tank-elec-ef.xml,86.47,77.47,67.6552,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.0902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.771,10.346,8.484,0.0,0.0,44.256,5.644,9.577,47.709,5.644,9.577,20.991,0.063,0.0,1.087,0.242,1.075,1.0943,0.403,3.809,0.0,0.92,0.0,161.46,9884.98,6061.71,1.01,55.6,1.0,55.6,86.37,86.37,0.0,50.12,1.0,50.12,86.37,86.37,0.0,86.37,77.798,67.866,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.2964,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.761,10.352,8.569,0.0,0.0,44.24,5.648,9.657,47.692,5.648,9.657,21.121,0.063,0.0,1.087,0.242,1.075,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tank-gas-ef.xml,86.88,77.08,67.624,77.8338,0.20544,0.9927,1.0,1.0172,1.0098,1.0,52.3744,0.0,0.0,29.478,10.219,10.343,46.977,5.557,18.447,27.04,0.0,0.0,0.804,0.483,0.967,1.282,0.263,1.724,27.172,10.614,8.782,0.0,0.0,43.302,5.772,15.662,46.681,5.772,15.396,20.993,0.063,0.0,1.087,0.242,1.695,1.0943,0.403,3.809,0.0,1.1877,1.013,183.08,11244.36,6082.33,1.0098,52.73,1.0,52.73,86.8,86.8,0.0,47.86,1.0,47.86,86.8,86.8,0.0,86.8,77.408,67.8431,78.1615,0.20448,0.9927,1.0,1.0172,1.0097,1.0,52.5416,0.0,0.0,29.461,10.228,10.487,46.95,5.562,18.634,27.232,0.0,0.0,0.804,0.483,0.97,1.282,0.263,1.724,27.161,10.622,8.875,0.0,0.0,43.284,5.776,15.769,46.662,5.776,15.501,21.123,0.063,0.0,1.087,0.242,1.695,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-tank-heat-pump-confined-space.xml,82.48,77.096,64.1934,77.8326,0.20073,0.9928,1.0,1.0168,1.0096,1.0,51.5076,0.0,0.0,29.502,10.211,10.343,47.016,5.553,12.832,27.04,0.0,0.0,0.804,0.483,0.937,1.282,0.263,1.163,31.355,9.075,2.718,0.0,0.0,49.969,4.935,3.372,53.868,4.935,3.152,20.983,0.063,0.0,1.087,0.242,0.275,1.0943,0.403,3.809,0.0,0.92,0.0,165.24,10218.23,6125.5,1.0096,55.9,1.0,55.9,82.09,82.09,0.0,50.38,1.0,50.38,82.09,82.09,0.0,82.09,77.425,64.1625,78.1609,0.1997,0.9929,1.0,1.0167,1.0095,1.0,51.367,0.0,0.0,29.486,10.22,10.487,46.99,5.557,12.976,27.232,0.0,0.0,0.804,0.483,0.94,1.282,0.263,1.163,31.639,8.988,2.359,0.0,0.0,50.421,4.887,2.919,54.356,4.887,2.729,21.113,0.063,0.0,1.087,0.242,0.275,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tank-heat-pump-ef.xml,82.28,77.096,64.0388,77.8326,0.20073,0.9928,1.0,1.0168,1.0096,1.0,51.2734,0.0,0.0,29.502,10.211,10.343,47.016,5.553,12.832,27.04,0.0,0.0,0.804,0.483,0.937,1.282,0.263,1.163,31.562,9.01,2.42,0.0,0.0,50.299,4.9,3.003,54.224,4.9,2.807,20.983,0.063,0.0,1.087,0.242,0.323,1.0943,0.403,3.809,0.0,0.92,0.0,165.57,10239.17,6125.5,1.0096,55.9,1.0,55.9,82.15,82.15,0.0,50.38,1.0,50.38,82.15,82.15,0.0,82.15,77.425,64.2094,78.1609,0.1997,0.9929,1.0,1.0167,1.0095,1.0,51.4366,0.0,0.0,29.486,10.22,10.487,46.99,5.557,12.976,27.232,0.0,0.0,0.804,0.483,0.94,1.282,0.263,1.163,31.582,9.006,2.445,0.0,0.0,50.331,4.897,3.025,54.258,4.897,2.828,21.113,0.063,0.0,1.087,0.242,0.323,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tank-oil.xml,85.51,77.222,66.7176,78.0276,0.21909,0.9922,1.0,1.0184,1.0104,1.0,52.0794,0.0,0.0,29.711,10.128,10.343,47.348,5.514,17.463,27.04,0.0,0.0,0.804,0.482,0.971,1.282,0.263,1.639,27.445,10.495,7.723,0.0,0.0,43.736,5.714,13.039,47.149,5.714,14.319,20.992,0.063,0.0,1.087,0.242,1.602,1.0943,0.403,3.809,0.0,1.1877,1.013,193.7,11845.53,6052.25,1.0104,52.73,1.0,52.73,85.41,85.41,0.0,47.86,1.0,47.86,85.41,85.41,0.0,85.41,77.55,66.9225,78.356,0.21826,0.9922,1.0,1.0183,1.0104,1.0,52.2458,0.0,0.0,29.694,10.137,10.487,47.322,5.519,17.649,27.232,0.0,0.0,0.804,0.482,0.974,1.282,0.263,1.639,27.433,10.501,7.804,0.0,0.0,43.719,5.717,13.133,47.13,5.717,14.423,21.122,0.063,0.0,1.087,0.242,1.602,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,74.22,39.649,31.8654,42.9318,0.2086,1.0642,1.0,1.0175,1.0828,1.0,29.5092,0.0,0.0,5.773,6.702,10.804,9.457,3.549,12.105,16.37,0.0,0.0,0.763,0.496,0.97,1.25,0.263,1.087,2.969,5.839,9.15,0.0,0.0,4.864,3.092,10.252,5.378,3.092,10.252,12.9,1.007,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,86.35,2976.85,3183.96,1.0828,51.55,1.0,51.55,74.03,74.03,0.0,50.39,1.0,50.39,74.03,74.03,0.0,74.03,39.439,31.6232,42.714,0.20918,1.0644,1.0,1.0176,1.083,1.0,29.2578,0.0,0.0,5.766,6.71,10.487,9.445,3.553,11.787,16.476,0.0,0.0,0.763,0.496,0.967,1.25,0.263,1.087,2.966,5.843,8.834,0.0,0.0,4.859,3.094,9.929,5.372,3.094,9.929,12.973,1.007,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,74.74,39.649,32.0851,42.9318,0.2086,1.0642,1.0,1.0175,1.0828,1.0,29.764,0.0,0.0,5.773,6.702,10.804,9.457,3.549,12.105,16.37,0.0,0.0,0.763,0.496,0.97,1.25,0.263,1.087,3.189,5.839,9.15,0.0,0.0,5.224,3.092,10.252,5.776,3.092,10.252,12.9,1.007,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,87.78,3026.46,3183.96,1.0828,51.74,1.0,51.74,74.55,74.55,0.0,50.49,1.0,50.49,74.55,74.55,0.0,74.55,39.439,31.8419,42.714,0.20918,1.0644,1.0,1.0176,1.083,1.0,29.5136,0.0,0.0,5.766,6.71,10.487,9.445,3.553,11.787,16.476,0.0,0.0,0.763,0.496,0.967,1.25,0.263,1.087,3.186,5.843,8.834,0.0,0.0,5.219,3.094,9.929,5.77,3.094,9.929,12.972,1.007,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,74.3,39.649,31.8991,42.9318,0.2086,1.0642,1.0,1.0175,1.0828,1.0,29.6862,0.0,0.0,5.773,6.702,10.804,9.457,3.549,12.105,16.37,0.0,0.0,0.763,0.496,0.97,1.25,0.263,1.087,3.003,5.839,9.15,0.0,0.0,4.919,3.092,10.252,5.439,3.092,10.252,12.9,1.007,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,86.19,2971.58,3183.96,1.0828,51.74,1.0,51.74,74.11,74.11,0.0,50.49,1.0,50.49,74.11,74.11,0.0,74.11,39.439,31.6563,42.714,0.20918,1.0644,1.0,1.0176,1.083,1.0,29.4358,0.0,0.0,5.766,6.71,10.487,9.445,3.553,11.787,16.476,0.0,0.0,0.763,0.496,0.967,1.25,0.263,1.087,2.999,5.843,8.834,0.0,0.0,4.913,3.094,9.929,5.432,3.094,9.929,12.973,1.007,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,73.27,39.648,31.4119,42.8734,0.20509,1.0631,1.0,1.0172,1.0814,1.0,29.323,0.0,0.0,5.772,6.702,10.804,9.556,3.549,12.105,16.37,0.0,0.0,1.021,0.496,0.97,1.693,0.263,1.087,2.516,5.839,9.15,0.0,0.0,4.104,3.092,10.252,4.510000000000001,3.092,10.252,12.9,1.007,0.0,1.314,0.263,1.042,3.3504,0.403,3.809,0.0,0.92,0.0,82.32,2834.24,3183.96,1.0814,50.49,1.0,50.49,73.07,73.07,0.0,49.95,1.0,49.95,73.07,73.07,0.0,73.07,39.437,31.168,42.6546,0.20566,1.0632,1.0,1.0173,1.0816,1.0,29.072,0.0,0.0,5.763999999999999,6.71,10.487,9.546,3.553,11.787,16.476,0.0,0.0,1.02,0.496,0.967,1.693,0.263,1.087,2.512,5.843,8.834,0.0,0.0,4.099,3.094,9.929,4.504,3.094,9.929,12.972,1.007,0.0,1.314,0.263,1.042,3.3504,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,74.67,39.648,31.9523,42.7919,0.2001,1.0615,1.0,1.0168,1.0793,1.0,29.4828,0.0,0.0,5.772,6.702,10.804,9.202,3.549,12.105,16.37,0.0,0.0,0.804,0.496,0.97,1.282,0.263,1.087,4.737,4.158,9.15,0.0,0.0,7.552,2.202,10.252,7.552,2.202,10.252,12.9,1.007,0.0,1.282,0.274,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,94.06,3232.46,3183.96,1.0793,57.46,1.0,57.46,74.48,74.48,0.0,51.28,1.0,51.28,74.48,74.48,0.0,74.48,39.437,31.7067,42.5733,0.20066,1.0617,1.0,1.0168,1.0795,1.0,29.2306,0.0,0.0,5.764,6.71,10.487,9.19,3.553,11.787,16.476,0.0,0.0,0.804,0.496,0.967,1.282,0.263,1.087,4.731,4.162,8.834,0.0,0.0,7.544,2.204,9.929,7.544,2.204,9.929,12.972,1.007,0.0,1.282,0.274,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,77.6,39.648,33.2053,42.7919,0.2001,1.0615,1.0,1.0168,1.0793,1.0,30.1468,0.0,0.0,5.772,6.702,10.804,9.202,3.549,12.105,16.37,0.0,0.0,0.804,0.496,0.97,1.282,0.263,1.087,4.737,5.41,9.15,0.0,0.0,7.552,2.865,10.252,7.552,2.865,10.252,12.901,1.007,0.0,1.282,0.302,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,95.5,3281.91,3183.96,1.0793,57.84,1.0,57.84,77.42,77.42,0.0,51.75,1.0,51.75,77.42,77.42,0.0,77.42,39.437,32.9611,42.5733,0.20066,1.0617,1.0,1.0168,1.0795,1.0,29.8942,0.0,0.0,5.764,6.71,10.487,9.19,3.553,11.787,16.476,0.0,0.0,0.804,0.496,0.967,1.282,0.263,1.087,4.731,5.416,8.834,0.0,0.0,7.543,2.868,9.929,7.543,2.868,9.929,12.973,1.007,0.0,1.282,0.302,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,75.61,39.648,32.3545,42.7919,0.2001,1.0615,1.0,1.0168,1.0793,1.0,29.6958,0.0,0.0,5.772,6.702,10.804,9.202,3.549,12.105,16.37,0.0,0.0,0.804,0.496,0.97,1.282,0.263,1.087,4.737,4.561,9.15,0.0,0.0,7.552,2.415,10.252,7.552,2.415,10.252,12.9,1.007,0.0,1.282,0.302,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,94.51,3247.93,3183.96,1.0793,57.84,1.0,57.84,75.42,75.42,0.0,51.75,1.0,51.75,75.42,75.42,0.0,75.42,39.437,32.109,42.5733,0.20066,1.0617,1.0,1.0168,1.0795,1.0,29.4436,0.0,0.0,5.764,6.71,10.487,9.19,3.553,11.787,16.476,0.0,0.0,0.804,0.496,0.967,1.282,0.263,1.087,4.731,4.565,8.834,0.0,0.0,7.544,2.417,9.929,7.544,2.417,9.929,12.972,1.007,0.0,1.282,0.302,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,95.31,39.648,40.7855,42.7919,0.2001,1.0615,1.0,1.0168,1.0793,1.0,34.1598,0.0,0.0,5.772,6.702,10.804,9.202,3.549,12.105,16.37,0.0,0.0,0.804,0.496,0.97,1.282,0.263,1.087,4.737,12.991,9.15,0.0,0.0,7.552,6.879,10.252,7.552,6.879,10.252,12.901,1.007,0.0,1.282,0.747,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,104.09,3576.86,3183.96,1.0793,62.59,1.0,62.59,95.24,95.24,0.0,57.6,1.0,57.6,95.24,95.24,0.0,95.24,39.437,40.5474,42.5733,0.20066,1.0617,1.0,1.0168,1.0795,1.0,33.9122,0.0,0.0,5.764,6.71,10.487,9.19,3.553,11.787,16.476,0.0,0.0,0.804,0.496,0.967,1.282,0.263,1.087,4.731,13.003,8.834,0.0,0.0,7.543,6.885,9.929,7.543,6.885,9.929,12.973,1.007,0.0,1.282,0.747,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,76.91,39.648,32.9126,42.7919,0.2001,1.0615,1.0,1.0168,1.0793,1.0,29.9908,0.0,0.0,5.772,6.702,10.804,9.202,3.549,12.105,16.37,0.0,0.0,0.804,0.496,0.97,1.282,0.263,1.087,4.737,5.118,9.15,0.0,0.0,7.552,2.71,10.252,7.552,2.71,10.252,12.901,1.007,0.0,1.282,0.285,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,95.17,3270.53,3183.96,1.0793,57.66,1.0,57.66,76.73,76.73,0.0,51.53,1.0,51.53,76.73,76.73,0.0,76.73,39.437,32.6683,42.5733,0.20066,1.0617,1.0,1.0168,1.0795,1.0,29.7382,0.0,0.0,5.764,6.71,10.487,9.19,3.553,11.787,16.476,0.0,0.0,0.804,0.496,0.967,1.282,0.263,1.087,4.731,5.124,8.834,0.0,0.0,7.543,2.713,9.929,7.543,2.713,9.929,12.973,1.007,0.0,1.282,0.285,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-generator.xml,68.1,39.648,30.4267,42.7966,0.20039,1.0616,1.0,1.0168,1.0794,0.9578,27.4372,1.1572,0.0,5.772,6.702,10.804,9.207,3.532,12.105,16.37,0.0,0.0,0.804,0.498,0.97,1.282,0.263,1.087,2.992,4.378,9.15,0.0,0.0,4.773,2.307,10.252,5.145,2.307,10.252,12.9,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,141.12,4837.5,3175.79,1.0794,50.32,1.0,50.32,70.89,70.89,0.0,48.5,1.0,48.5,70.89,70.89,0.0,67.87,39.437,30.1841,42.5781,0.20096,1.0618,1.0,1.0169,1.0796,0.9574,27.1858,1.1572,0.0,5.764,6.71,10.487,9.195,3.535,11.787,16.476,0.0,0.0,0.804,0.498,0.967,1.282,0.263,1.087,2.988,4.383,8.834,0.0,0.0,4.767,2.309,9.929,5.139,2.309,9.929,12.972,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,66.4,39.655,28.4178,42.8003,0.20015,1.0615,1.0,1.0168,1.0793,1.0,27.936,0.0,0.0,5.772,6.709,10.804,6.486,3.43,12.105,16.37,0.0,0.0,0.394,0.514,0.97,0.443,0.263,1.087,1.693,3.667,9.15,0.0,0.0,1.903,1.875,10.252,1.904,1.875,10.252,12.9,1.007,0.0,0.278,0.206,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,66.58,2282.2,3175.79,1.0793,47.24,1.0,47.24,66.17,66.17,0.0,47.61,1.0,47.61,66.17,66.17,0.0,66.17,39.445,28.1763,42.5818,0.20066,1.0617,1.0,1.0168,1.0795,1.0,27.685,0.0,0.0,5.765,6.717,10.487,6.48,3.433,11.787,16.476,0.0,0.0,0.394,0.514,0.967,0.443,0.263,1.087,1.691,3.673,8.834,0.0,0.0,1.901,1.877,9.929,1.902,1.877,9.929,12.972,1.007,0.0,0.278,0.206,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,70.45,39.533,30.0617,42.669,0.20017,1.0615,1.0,1.0168,1.0793,1.0,24.3658,0.0,0.0,5.535,6.821,10.804,8.83,3.578,18.59,16.373,0.0,0.0,0.804,0.5,1.97,1.282,0.263,3.39,2.895,4.442,8.816,0.0,0.0,4.619,2.33,15.168,4.979,2.33,15.168,12.902,1.007,0.0,1.087,0.242,3.39,1.0943,0.403,3.809,0.0,2.3754,2.026,124.58,4279.88,3183.0,1.0793,46.72,1.0,46.72,70.26,70.26,0.0,44.17,1.0,44.17,70.26,70.26,0.0,70.26,39.322,29.8257,42.4509,0.20077,1.0617,1.0,1.0168,1.0796,1.0,24.2698,0.0,0.0,5.536,6.82,10.488,8.831,3.578,18.18,16.479,0.0,0.0,0.804,0.5,1.956,1.282,0.263,3.39,2.895,4.441,8.508,0.0,0.0,4.619,2.33,14.748,4.979,2.33,14.748,12.974,1.007,0.0,1.087,0.242,3.39,1.0943,0.403,3.809,0.0,2.3754,2.026 +base-bldgtype-mf-unit-shared-laundry-room.xml,67.62,39.533,28.8516,42.669,0.20017,1.0615,1.0,1.0168,1.0793,1.0,23.5732,0.0,0.0,5.535,6.821,10.804,8.83,3.578,18.59,16.373,0.0,0.0,0.804,0.5,0.985,1.282,0.263,1.695,3.193,4.223,7.534,0.0,0.0,5.094,2.215,12.963,5.492,2.215,12.962,12.895,1.007,0.0,1.087,0.242,1.695,1.0943,0.403,3.809,0.0,1.1877,1.013,117.05,4021.05,3182.97,1.0793,46.72,1.0,46.72,67.44,67.44,0.0,44.17,1.0,44.17,67.44,67.44,0.0,67.44,39.322,28.6281,42.4509,0.20077,1.0617,1.0,1.0168,1.0796,1.0,23.4788,0.0,0.0,5.536,6.82,10.487,8.831,3.578,18.179,16.479,0.0,0.0,0.804,0.5,0.978,1.282,0.263,1.695,3.194,4.222,7.238,0.0,0.0,5.095,2.215,12.547,5.493,2.215,12.546,12.967,1.007,0.0,1.087,0.242,1.695,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,72.56,40.223,31.5037,43.4172,0.20039,1.0616,1.0,1.0168,1.0794,1.0,29.2934,0.0,0.0,5.66,6.8,10.804,9.029,3.574,12.104,16.372,0.587,0.0,0.804,0.5,0.97,1.282,0.263,1.087,0.5,4.964,9.129,2.316,0.137,0.798,2.609,10.227,0.86,2.609,10.227,12.963,1.495,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,84.06,2921.38,3219.53,1.0794,50.32,1.0,50.32,72.37,72.37,0.0,48.5,1.0,48.5,72.37,72.37,0.0,72.37,40.013,31.2635,43.2,0.20096,1.0618,1.0,1.0169,1.0796,1.0,29.0446,0.0,0.0,5.653,6.808,10.487,9.018,3.578,11.786,16.478,0.587,0.0,0.804,0.5,0.967,1.282,0.263,1.087,0.499,4.97,8.812,2.316,0.137,0.796,2.612,9.903,0.858,2.612,9.903,13.035,1.495,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,68.94,40.223,29.9311,43.4172,0.20039,1.0616,1.0,1.0168,1.0794,1.0,28.3372,0.0,0.0,5.66,6.8,10.804,9.029,3.574,12.104,16.372,0.587,0.0,0.804,0.5,0.97,1.282,0.263,1.087,1.772,4.597,9.143,0.0,0.0,2.827,2.416,10.243,3.048,2.416,10.243,12.924,1.495,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,75.76,2632.76,3219.53,1.0794,50.32,1.0,50.32,68.72,68.72,0.0,48.5,1.0,48.5,68.72,68.72,0.0,68.72,40.013,29.6858,43.2,0.20096,1.0618,1.0,1.0169,1.0796,1.0,28.0866,0.0,0.0,5.653,6.808,10.487,9.018,3.578,11.786,16.478,0.587,0.0,0.804,0.5,0.967,1.282,0.263,1.087,1.77,4.599,8.826,0.0,0.0,2.824,2.417,9.919,3.044,2.417,9.919,12.996,1.495,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-pv-battery.xml,12.48,39.648,30.4267,42.7966,0.20039,1.0616,1.0,1.0168,1.0794,0.1755,28.5944,24.449,0.873,5.772,6.702,10.804,9.207,3.532,12.105,16.37,0.0,0.0,0.804,0.498,0.97,1.282,0.263,1.087,2.992,4.378,9.15,0.0,0.0,4.773,2.307,10.252,5.145,2.307,10.252,12.9,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,30.85,1057.5,3175.79,1.0794,50.32,1.0,50.32,70.89,70.89,0.0,48.5,1.0,48.5,70.89,70.89,0.0,11.93,39.437,30.1841,42.5781,0.20096,1.0618,1.0,1.0169,1.0796,0.1682,28.343,24.449,0.874,5.764,6.71,10.487,9.195,3.535,11.787,16.476,0.0,0.0,0.804,0.498,0.967,1.282,0.263,1.087,2.988,4.383,8.834,0.0,0.0,4.767,2.309,9.929,5.139,2.309,9.929,12.972,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-pv.xml,10.31,39.648,30.4267,42.7966,0.20039,1.0616,1.0,1.0168,1.0794,0.145,28.5944,24.449,0.0,5.772,6.702,10.804,9.207,3.532,12.105,16.37,0.0,0.0,0.804,0.498,0.97,1.282,0.263,1.087,2.992,4.378,9.15,0.0,0.0,4.773,2.307,10.252,5.145,2.307,10.252,12.9,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,35.39,1213.14,3175.79,1.0794,50.32,1.0,50.32,70.89,70.89,0.0,48.5,1.0,48.5,70.89,70.89,0.0,9.74,39.437,30.1841,42.5781,0.20096,1.0618,1.0,1.0169,1.0796,0.1374,28.343,24.449,0.0,5.764,6.71,10.487,9.195,3.535,11.787,16.476,0.0,0.0,0.804,0.498,0.967,1.282,0.263,1.087,2.988,4.383,8.834,0.0,0.0,4.767,2.309,9.929,5.139,2.309,9.929,12.972,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,58.02,39.648,24.8305,42.7966,0.20039,1.0616,1.0,1.0168,1.0794,1.0,22.0184,0.0,0.0,5.772,6.702,10.804,9.207,3.532,12.105,16.37,0.0,0.0,0.804,0.498,0.97,1.282,0.263,1.087,5.704,3.034,2.229,0.0,0.0,9.098,1.599,2.497,9.808,1.599,2.497,12.857,1.007,0.0,1.087,0.242,0.275,1.0943,0.403,3.809,0.0,0.92,0.0,84.44,2894.56,3175.79,1.0794,49.54,1.0,49.54,58.3,58.3,0.0,47.13,1.0,47.13,58.3,58.3,0.0,58.3,39.437,24.8221,42.5781,0.20096,1.0618,1.0,1.0169,1.0796,1.0,21.9918,0.0,0.0,5.764,6.71,10.487,9.195,3.535,11.787,16.476,0.0,0.0,0.804,0.498,0.967,1.282,0.263,1.087,5.606,3.128,2.151,0.0,0.0,8.942,1.648,2.418,9.64,1.648,2.418,12.93,1.007,0.0,1.087,0.242,0.275,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,68.12,39.561,29.0877,42.6992,0.20017,1.0615,1.0,1.0168,1.0793,1.0,24.608,0.0,0.0,5.356,7.025,10.804,8.545,3.672,18.585,16.376,0.0,0.0,0.804,0.502,0.985,1.282,0.263,1.695,3.126,4.314,7.743,0.0,0.0,4.988,2.255,13.32,5.377,2.255,13.918,12.897,1.007,0.0,1.087,0.242,1.626,1.0943,0.403,3.809,0.0,1.1877,1.013,118.98,4078.17,3175.79,1.0793,47.39,1.0,47.39,67.96,67.96,0.0,44.92,1.0,44.92,67.96,67.96,0.0,67.96,39.351,28.8717,42.4822,0.20077,1.0617,1.0,1.0168,1.0796,1.0,24.5132,0.0,0.0,5.349,7.033,10.487,8.534,3.676,18.173,16.482,0.0,0.0,0.804,0.502,0.978,1.282,0.263,1.695,3.123,4.316,7.457,0.0,0.0,4.982,2.256,12.922,5.371,2.256,13.502,12.969,1.007,0.0,1.087,0.242,1.626,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-bldgtype-mf-unit-shared-water-heater.xml,66.69,39.561,28.4779,42.6992,0.20017,1.0615,1.0,1.0168,1.0793,1.0,23.512,0.0,0.0,5.356,7.025,10.804,8.545,3.672,18.585,16.376,0.0,0.0,0.804,0.502,0.985,1.282,0.263,1.695,3.126,4.314,7.133,0.0,0.0,4.988,2.255,12.271,5.377,2.255,12.822,12.897,1.007,0.0,1.087,0.242,1.626,1.0943,0.403,3.809,0.0,1.1877,1.013,116.31,3986.63,3175.79,1.0793,46.66,1.0,46.66,66.54,66.54,0.0,44.21,1.0,44.21,66.54,66.54,0.0,66.54,39.351,28.2665,42.4822,0.20077,1.0617,1.0,1.0168,1.0796,1.0,23.4172,0.0,0.0,5.349,7.033,10.487,8.534,3.676,18.173,16.482,0.0,0.0,0.804,0.502,0.978,1.282,0.263,1.695,3.123,4.316,6.851,0.0,0.0,4.982,2.256,11.873,5.371,2.256,12.406,12.969,1.007,0.0,1.087,0.242,1.626,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-bldgtype-mf-unit.xml,71.1,39.648,30.4267,42.7966,0.20039,1.0616,1.0,1.0168,1.0794,1.0,28.5944,0.0,0.0,5.772,6.702,10.804,9.207,3.532,12.105,16.37,0.0,0.0,0.804,0.498,0.97,1.282,0.263,1.087,2.992,4.378,9.15,0.0,0.0,4.773,2.307,10.252,5.145,2.307,10.252,12.9,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,84.27,2888.66,3175.79,1.0794,50.32,1.0,50.32,70.89,70.89,0.0,48.5,1.0,48.5,70.89,70.89,0.0,70.89,39.437,30.1841,42.5781,0.20096,1.0618,1.0,1.0169,1.0796,1.0,28.343,0.0,0.0,5.764,6.71,10.487,9.195,3.535,11.787,16.476,0.0,0.0,0.804,0.498,0.967,1.282,0.263,1.087,2.988,4.383,8.834,0.0,0.0,4.767,2.309,9.929,5.139,2.309,9.929,12.972,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-sfa-unit.xml,83.18,57.054,49.1928,59.1374,0.21019,1.0186,1.0,1.0176,1.0365,1.0,42.6898,0.0,0.0,18.344,6.728,10.343,29.234,3.729,11.673,21.639,0.0,0.0,0.804,0.474,0.963,1.282,0.263,1.087,17.633,5.687,8.49,0.0,0.0,28.1,3.152,9.582,30.293,3.152,9.582,16.891,0.492,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,145.4,6862.62,4553.48,1.0365,55.34,1.0,55.34,83.08,83.08,0.0,49.83,1.0,49.83,83.08,83.08,0.0,83.08,57.383,49.4057,59.4692,0.20928,1.0185,1.0,1.0176,1.0364,1.0,42.8992,0.0,0.0,18.328,6.737,10.487,29.21,3.734,11.816,21.831,0.0,0.0,0.804,0.474,0.965,1.282,0.263,1.087,17.621,5.692,8.58,0.0,0.0,28.083,3.155,9.667,30.274,3.155,9.667,17.021,0.492,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-combi-tankless.xml,65.47,77.126,51.0189,77.9294,0.21874,0.9922,1.0,1.0184,1.0104,1.0,43.6814,0.0,0.0,29.556,10.187,10.343,48.329,5.604,18.108,27.04,0.0,0.0,0.764,0.477,0.968,1.25,0.263,1.695,18.911,8.491,2.563,0.0,0.0,30.923,4.671,4.488,34.191,4.671,10.354,20.99,0.063,0.0,1.087,0.263,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013,140.69,8634.29,6073.93,1.0104,54.09,1.0,54.09,65.4,65.4,0.0,49.45,1.0,49.45,65.4,65.4,0.0,65.4,77.455,51.1838,78.2582,0.21778,0.9922,1.0,1.0183,1.0104,1.0,43.8506,0.0,0.0,29.54,10.196,10.487,48.303,5.608,18.296,27.232,0.0,0.0,0.764,0.477,0.972,1.25,0.263,1.695,18.904,8.498,2.599,0.0,0.0,30.911,4.674,4.534,34.178,4.674,10.46,21.12,0.063,0.0,1.087,0.263,1.087,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-desuperheater.xml,86.48,77.468,67.6596,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,53.566,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.57,10.757,6.278,0.0,0.0,47.124,5.935,7.087,47.126,5.935,7.087,20.991,0.063,0.0,1.282,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,157.0,9631.22,6073.93,1.01,70.15,1.0,70.15,86.36,86.36,0.0,61.25,1.0,61.25,86.36,86.36,0.0,86.36,77.797,67.8551,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,53.7552,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.56,10.766,6.345,0.0,0.0,47.107,5.938,7.151,47.109,5.938,7.151,21.121,0.063,0.0,1.282,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-dwhr.xml,83.75,77.47,65.5321,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,53.6662,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,6.273,0.0,0.0,44.484,5.614,7.081,47.955,5.614,7.081,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,158.67,9718.78,6064.37,1.01,55.6,1.0,55.6,83.65,83.65,0.0,50.12,1.0,50.12,83.65,83.65,0.0,83.65,77.798,65.7234,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,53.8574,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,6.342,0.0,0.0,44.468,5.616,7.147,47.938,5.616,7.147,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-indirect-standbyloss.xml,69.32,77.079,53.9728,77.8643,0.21398,0.9924,1.0,1.018,1.0102,1.0,44.7986,0.0,0.0,29.478,10.218,10.343,48.205,5.618,18.447,27.04,0.0,0.0,0.764,0.478,0.967,1.25,0.263,1.724,17.978,9.007,5.932,0.0,0.0,29.399,4.952,10.58,32.506,4.952,14.14,20.993,0.063,0.0,1.087,0.263,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013,145.63,8965.29,6094.33,1.0102,54.09,1.0,54.09,69.27,69.27,0.0,49.45,1.0,49.45,69.27,69.27,0.0,69.27,77.408,54.1678,78.1929,0.21298,0.9924,1.0,1.0179,1.0101,1.0,44.9678,0.0,0.0,29.462,10.227,10.487,48.179,5.623,18.634,27.232,0.0,0.0,0.764,0.477,0.97,1.25,0.263,1.724,17.971,9.012,5.999,0.0,0.0,29.387,4.955,10.659,32.493,4.955,14.246,21.123,0.063,0.0,1.087,0.263,1.344,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-jacket-gas.xml,85.38,77.222,66.6216,78.0276,0.21909,0.9922,1.0,1.0184,1.0104,1.0,51.9254,0.0,0.0,29.711,10.128,10.343,47.348,5.514,17.463,27.04,0.0,0.0,0.804,0.482,0.971,1.282,0.263,1.639,27.607,10.431,7.528,0.0,0.0,43.995,5.679,12.711,47.428,5.679,13.732,20.992,0.063,0.0,1.087,0.242,1.626,1.0943,0.403,3.809,0.0,1.1877,1.013,181.45,11101.4,6054.92,1.0104,52.73,1.0,52.73,85.29,85.29,0.0,47.86,1.0,47.86,85.29,85.29,0.0,85.29,77.55,66.8273,78.356,0.21826,0.9922,1.0,1.0183,1.0104,1.0,52.0922,0.0,0.0,29.694,10.137,10.487,47.322,5.519,17.649,27.232,0.0,0.0,0.804,0.482,0.974,1.282,0.263,1.639,27.595,10.436,7.611,0.0,0.0,43.977,5.682,12.808,47.409,5.682,13.837,21.122,0.063,0.0,1.087,0.242,1.626,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-jacket-hpwh.xml,82.14,77.096,63.9319,77.8326,0.20073,0.9928,1.0,1.0168,1.0096,1.0,51.1266,0.0,0.0,29.502,10.211,10.343,47.016,5.553,12.832,27.04,0.0,0.0,0.804,0.483,0.937,1.282,0.263,1.163,31.686,8.959,2.241,0.0,0.0,50.497,4.872,2.78,54.437,4.872,2.599,20.983,0.063,0.0,1.087,0.242,0.275,1.0943,0.403,3.809,0.0,0.92,0.0,165.68,10250.31,6128.17,1.0096,55.9,1.0,55.9,82.01,82.01,0.0,50.38,1.0,50.38,82.01,82.01,0.0,82.01,77.425,64.1011,78.1609,0.1997,0.9929,1.0,1.0167,1.0095,1.0,51.2868,0.0,0.0,29.486,10.22,10.487,46.99,5.557,12.976,27.232,0.0,0.0,0.804,0.483,0.94,1.282,0.263,1.163,31.706,8.955,2.265,0.0,0.0,50.528,4.869,2.803,54.471,4.869,2.62,21.112,0.063,0.0,1.087,0.242,0.275,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-jacket-indirect.xml,68.23,77.079,53.1245,77.8643,0.21398,0.9924,1.0,1.018,1.0102,1.0,44.5258,0.0,0.0,29.478,10.218,10.343,48.205,5.618,18.447,27.04,0.0,0.0,0.764,0.478,0.967,1.25,0.263,1.724,18.248,8.859,4.962,0.0,0.0,29.842,4.871,8.849,32.995,4.871,13.169,20.992,0.063,0.0,1.087,0.263,1.269,1.0943,0.403,3.809,0.0,1.1877,1.013,144.37,8887.93,6094.33,1.0102,54.09,1.0,54.09,68.18,68.18,0.0,49.45,1.0,49.45,68.18,68.18,0.0,68.18,77.408,53.3113,78.1929,0.21298,0.9924,1.0,1.0179,1.0101,1.0,44.6954,0.0,0.0,29.462,10.227,10.487,48.179,5.623,18.634,27.232,0.0,0.0,0.764,0.477,0.97,1.25,0.263,1.724,18.241,8.865,5.02,0.0,0.0,29.83,4.874,8.92,32.982,4.874,13.275,21.122,0.063,0.0,1.087,0.263,1.269,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-low-flow-fixtures.xml,85.85,77.47,67.1755,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.5212,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,7.916,0.0,0.0,44.484,5.614,8.936,47.955,5.614,8.936,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.09,9866.74,6064.37,1.01,55.6,1.0,55.6,85.76,85.76,0.0,50.12,1.0,50.12,85.76,85.76,0.0,85.76,77.798,67.3829,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,55.728,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.002,0.0,0.0,44.467,5.616,9.018,47.937,5.616,9.018,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-multiple.xml,68.47,77.469,53.5997,78.2769,0.219,0.9922,1.0,1.0184,1.0104,1.0,42.9706,0.0,0.0,30.117,9.97,10.344,49.212,5.501,11.676,27.039,0.0,0.0,0.765,0.476,5.778,1.25,0.263,6.522,18.348,8.788,5.407,0.0,0.0,29.981,4.849,6.105,33.149,4.849,6.105,20.992,0.063,0.0,1.087,0.263,6.9,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0,125.97,7732.23,6074.8,1.0104,60.62,1.0,60.62,68.39,68.39,0.0,55.32,1.0,55.32,68.39,68.39,0.0,68.39,77.797,53.754,78.6047,0.21804,0.9922,1.0,1.0183,1.0104,1.0,43.1118,0.0,0.0,30.1,9.979,10.486,49.186,5.504,11.82,27.231,0.0,0.0,0.765,0.476,5.784,1.25,0.263,6.522,18.338,8.792,5.44,0.0,0.0,29.966,4.849,6.13,33.133,4.849,6.13,21.122,0.063,0.0,1.087,0.263,6.9,1.0943,0.403,3.809,0.0,5.5200000000000005,0.0 +base-dhw-none.xml,90.11,77.127,70.1922,77.8987,0.21015,0.9925,1.0,1.0176,1.01,1.0,54.472,0.0,0.0,29.556,10.188,10.343,47.101,5.543,18.108,27.04,0.0,0.0,0.804,0.483,0.968,1.282,0.263,1.695,27.106,10.646,10.344,0.0,0.0,43.197,5.792,18.11,46.568,5.792,18.109,22.033,0.063,0.0,1.087,0.242,1.695,1.0943,0.403,3.809,0.0,1.1877,1.013,191.19,11710.61,6064.37,1.01,62.55,1.0,62.55,90.15,90.15,0.0,57.62,1.0,57.62,90.15,90.15,0.0,90.15,77.455,70.521,78.2266,0.20926,0.9925,1.0,1.0176,1.01,1.0,54.7328,0.0,0.0,29.539,10.197,10.487,47.075,5.547,18.296,27.232,0.0,0.0,0.804,0.483,0.972,1.282,0.263,1.695,27.091,10.655,10.488,0.0,0.0,43.173,5.796,18.297,46.542,5.796,18.296,22.225,0.063,0.0,1.087,0.242,1.695,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-recirc-demand.xml,86.21,77.47,67.459,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8402,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.2,0.0,0.0,44.484,5.614,9.256,47.955,5.614,9.256,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.5,9892.04,6064.37,1.01,55.6,1.0,55.6,86.12,86.12,0.0,50.12,1.0,50.12,86.12,86.12,0.0,86.12,77.798,67.6642,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.044,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.283,0.0,0.0,44.467,5.616,9.335,47.937,5.616,9.335,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-solar-fraction.xml,79.63,77.47,62.3056,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,49.9758,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,28.185,10.183,2.885,0.0,0.0,44.916,5.555,3.256,48.421,5.555,3.256,20.99,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,154.69,9475.13,6064.37,1.01,55.6,1.0,55.6,79.49,79.49,0.0,50.12,1.0,50.12,79.49,79.49,0.0,79.49,77.798,62.4606,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,50.13,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,28.176,10.187,2.915,0.0,0.0,44.9,5.558,3.285,48.404,5.558,3.285,21.12,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-solar-indirect-flat-plate.xml,77.87,77.47,60.9299,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,48.4104,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.638,10.592,1.645,0.0,0.0,44.044,5.778,1.857,47.481,5.778,1.857,20.992,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,151.0,9248.99,6064.37,1.01,55.6,1.0,55.6,77.75,77.75,0.0,50.12,1.0,50.12,77.75,77.75,0.0,77.75,77.798,61.0905,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,48.5702,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.631,10.598,1.677,0.0,0.0,44.032,5.782,1.89,47.468,5.782,1.89,21.122,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tank-elec-ef.xml,86.47,77.47,67.6552,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.0902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.771,10.346,8.484,0.0,0.0,44.256,5.644,9.577,47.709,5.644,9.577,20.991,0.063,0.0,1.087,0.242,1.075,1.0943,0.403,3.809,0.0,0.92,0.0,161.39,9884.98,6064.37,1.01,55.6,1.0,55.6,86.37,86.37,0.0,50.12,1.0,50.12,86.37,86.37,0.0,86.37,77.798,67.866,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.2964,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.761,10.352,8.569,0.0,0.0,44.24,5.648,9.657,47.692,5.648,9.657,21.121,0.063,0.0,1.087,0.242,1.075,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tank-gas-ef.xml,86.88,77.08,67.624,77.8338,0.20544,0.9927,1.0,1.0172,1.0098,1.0,52.3744,0.0,0.0,29.478,10.219,10.343,46.977,5.557,18.447,27.04,0.0,0.0,0.804,0.483,0.967,1.282,0.263,1.724,27.172,10.614,8.782,0.0,0.0,43.302,5.772,15.662,46.681,5.772,15.396,20.993,0.063,0.0,1.087,0.242,1.695,1.0943,0.403,3.809,0.0,1.1877,1.013,183.0,11244.36,6084.99,1.0098,52.73,1.0,52.73,86.8,86.8,0.0,47.86,1.0,47.86,86.8,86.8,0.0,86.8,77.408,67.8431,78.1615,0.20448,0.9927,1.0,1.0172,1.0097,1.0,52.5416,0.0,0.0,29.461,10.228,10.487,46.95,5.562,18.634,27.232,0.0,0.0,0.804,0.483,0.97,1.282,0.263,1.724,27.161,10.622,8.875,0.0,0.0,43.284,5.776,15.769,46.662,5.776,15.501,21.123,0.063,0.0,1.087,0.242,1.695,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-tank-heat-pump-confined-space.xml,82.48,77.096,64.1934,77.8326,0.20073,0.9928,1.0,1.0168,1.0096,1.0,51.5076,0.0,0.0,29.502,10.211,10.343,47.016,5.553,12.832,27.04,0.0,0.0,0.804,0.483,0.937,1.282,0.263,1.163,31.355,9.075,2.718,0.0,0.0,49.969,4.935,3.372,53.868,4.935,3.152,20.983,0.063,0.0,1.087,0.242,0.275,1.0943,0.403,3.809,0.0,0.92,0.0,165.16,10218.23,6128.17,1.0096,55.9,1.0,55.9,82.09,82.09,0.0,50.38,1.0,50.38,82.09,82.09,0.0,82.09,77.425,64.1625,78.1609,0.1997,0.9929,1.0,1.0167,1.0095,1.0,51.367,0.0,0.0,29.486,10.22,10.487,46.99,5.557,12.976,27.232,0.0,0.0,0.804,0.483,0.94,1.282,0.263,1.163,31.639,8.988,2.359,0.0,0.0,50.421,4.887,2.919,54.356,4.887,2.729,21.113,0.063,0.0,1.087,0.242,0.275,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tank-heat-pump-ef.xml,82.28,77.096,64.0388,77.8326,0.20073,0.9928,1.0,1.0168,1.0096,1.0,51.2734,0.0,0.0,29.502,10.211,10.343,47.016,5.553,12.832,27.04,0.0,0.0,0.804,0.483,0.937,1.282,0.263,1.163,31.562,9.01,2.42,0.0,0.0,50.299,4.9,3.003,54.224,4.9,2.807,20.983,0.063,0.0,1.087,0.242,0.323,1.0943,0.403,3.809,0.0,0.92,0.0,165.5,10239.17,6128.17,1.0096,55.9,1.0,55.9,82.15,82.15,0.0,50.38,1.0,50.38,82.15,82.15,0.0,82.15,77.425,64.2094,78.1609,0.1997,0.9929,1.0,1.0167,1.0095,1.0,51.4366,0.0,0.0,29.486,10.22,10.487,46.99,5.557,12.976,27.232,0.0,0.0,0.804,0.483,0.94,1.282,0.263,1.163,31.582,9.006,2.445,0.0,0.0,50.331,4.897,3.025,54.258,4.897,2.828,21.113,0.063,0.0,1.087,0.242,0.323,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tank-oil.xml,85.51,77.222,66.7176,78.0276,0.21909,0.9922,1.0,1.0184,1.0104,1.0,52.0794,0.0,0.0,29.711,10.128,10.343,47.348,5.514,17.463,27.04,0.0,0.0,0.804,0.482,0.971,1.282,0.263,1.639,27.445,10.495,7.723,0.0,0.0,43.736,5.714,13.039,47.149,5.714,14.319,20.992,0.063,0.0,1.087,0.242,1.602,1.0943,0.403,3.809,0.0,1.1877,1.013,193.61,11845.53,6054.92,1.0104,52.73,1.0,52.73,85.41,85.41,0.0,47.86,1.0,47.86,85.41,85.41,0.0,85.41,77.55,66.9225,78.356,0.21826,0.9922,1.0,1.0183,1.0104,1.0,52.2458,0.0,0.0,29.694,10.137,10.487,47.322,5.519,17.649,27.232,0.0,0.0,0.804,0.482,0.974,1.282,0.263,1.639,27.433,10.501,7.804,0.0,0.0,43.719,5.717,13.133,47.13,5.717,14.423,21.122,0.063,0.0,1.087,0.242,1.602,1.0943,0.403,3.809,0.0,1.1877,1.013 base-dhw-tank-wood.xml,85.8,77.222,66.9477,78.0276,0.21909,0.9922,1.0,1.0184,1.0104,1.0,52.1516,0.0,0.0,29.711,10.128,10.343,47.348,5.514,17.463,27.04,0.0,0.0,0.804,0.482,0.971,1.282,0.263,1.639,27.382,10.519,7.992,0.0,0.0,43.636,5.727,13.493,47.041,5.727,14.577,20.992,0.063,0.0,1.087,0.242,1.626,1.0943,0.403,3.809,0.0,1.1877,1.013,,,,,52.73,1.0,52.73,85.71,85.71,0.0,47.86,1.0,47.86,85.71,85.71,0.0,85.71,77.55,67.1574,78.356,0.21826,0.9922,1.0,1.0183,1.0104,1.0,52.3184,0.0,0.0,29.694,10.137,10.487,47.322,5.519,17.649,27.232,0.0,0.0,0.804,0.482,0.974,1.282,0.263,1.639,27.371,10.526,8.075,0.0,0.0,43.619,5.731,13.59,47.023,5.731,14.682,21.122,0.063,0.0,1.087,0.242,1.626,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-tankless-electric-ef.xml,86.96,77.47,68.0446,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.4252,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,28.332,10.126,8.533,0.0,0.0,45.151,5.524,9.632,48.674,5.524,9.632,20.99,0.063,0.0,1.087,0.242,1.132,1.0943,0.403,3.809,0.0,0.92,0.0,163.61,10017.05,6061.71,1.01,55.73,1.0,55.73,86.88,86.88,0.0,50.25,1.0,50.25,86.88,86.88,0.0,86.88,77.798,68.2638,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.6424,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,28.322,10.13,8.628,0.0,0.0,45.134,5.527,9.724,48.656,5.527,9.724,21.12,0.063,0.0,1.087,0.242,1.132,1.0943,0.403,3.809,0.0,0.92,0.0 -base-dhw-tankless-gas-ef.xml,80.09,77.127,62.3872,77.8987,0.21015,0.9925,1.0,1.0176,1.01,1.0,50.6868,0.0,0.0,29.556,10.188,10.343,47.101,5.543,18.108,27.04,0.0,0.0,0.804,0.483,0.968,1.282,0.263,1.695,28.332,10.153,2.849,0.0,0.0,45.151,5.524,4.988,48.674,5.524,9.733,20.99,0.063,0.0,1.087,0.242,1.144,1.0943,0.403,3.809,0.0,1.1877,1.013,174.48,10682.53,6061.71,1.01,52.73,1.0,52.73,79.96,79.96,0.0,47.86,1.0,47.86,79.96,79.96,0.0,79.96,77.455,62.5508,78.2266,0.20926,0.9925,1.0,1.0176,1.01,1.0,50.8488,0.0,0.0,29.539,10.197,10.487,47.075,5.547,18.296,27.232,0.0,0.0,0.804,0.483,0.972,1.282,0.263,1.695,28.321,10.16,2.886,0.0,0.0,45.134,5.527,5.036,48.656,5.527,9.827,21.12,0.063,0.0,1.087,0.242,1.144,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-dhw-tankless-propane.xml,82.01,77.127,63.8859,77.8987,0.21015,0.9925,1.0,1.0176,1.01,1.0,51.208,0.0,0.0,29.556,10.188,10.343,47.101,5.543,18.108,27.04,0.0,0.0,0.804,0.483,0.968,1.282,0.263,1.695,28.332,10.153,4.348,0.0,0.0,45.151,5.524,7.611,48.674,5.524,11.037,20.99,0.063,0.0,1.087,0.242,1.297,1.0943,0.403,3.809,0.0,1.1877,1.013,183.12,11211.1,6061.71,1.01,52.73,1.0,52.73,81.9,81.9,0.0,47.86,1.0,47.86,81.9,81.9,0.0,81.9,77.455,64.0687,78.2266,0.20926,0.9925,1.0,1.0176,1.01,1.0,51.3752,0.0,0.0,29.539,10.197,10.487,47.075,5.547,18.296,27.232,0.0,0.0,0.804,0.483,0.972,1.282,0.263,1.695,28.321,10.16,4.404,0.0,0.0,45.134,5.527,7.684,48.656,5.527,11.142,21.12,0.063,0.0,1.087,0.242,1.297,1.0943,0.403,3.809,0.0,1.1877,1.013 -base-enclosure-2stories-garage.xml,90.71,93.674,83.3435,91.8767,0.21019,0.9808,1.0,1.0,0.9808,1.0,66.7068,0.0,0.0,39.92,12.732,10.343,63.622,6.979,11.676,30.679,0.0,0.0,0.804,0.479,0.963,1.282,0.263,1.087,33.751,17.744,8.204,0.0,0.0,53.791,9.726,9.261,57.988,9.726,9.261,23.645,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,165.62,11864.27,7303.69,0.9808,54.92,1.0,54.92,90.62,90.62,0.0,50.03,1.0,50.03,90.62,90.62,0.0,90.62,94.002,83.5551,92.2061,0.20928,0.9809,1.0,1.0,0.9809,1.0,66.9134,0.0,0.0,39.904,12.74,10.487,63.596,6.983,11.82,30.871,0.0,0.0,0.804,0.479,0.964,1.282,0.263,1.087,33.742,17.75,8.288,0.0,0.0,53.775,9.729,9.342,57.971,9.729,9.342,23.775,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-2stories.xml,91.15,106.721,94.0763,103.2118,0.21019,0.9671,1.0,1.0,0.9671,1.0,75.3018,0.0,0.0,46.305,14.93,10.343,73.799,8.103,11.676,35.143,0.0,0.0,0.804,0.484,0.963,1.282,0.263,1.087,41.451,17.383,8.103,0.0,0.0,66.063,9.434,9.147,71.218,9.434,9.147,27.14,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,175.31,14056.98,8290.98,0.9671,55.1,1.0,55.1,91.06,91.06,0.0,50.18,1.0,50.18,91.06,91.06,0.0,91.06,107.049,94.2877,103.544,0.20928,0.9673,1.0,1.0,0.9673,1.0,75.505,0.0,0.0,46.289,14.938,10.487,73.774,8.107,11.819,35.335,0.0,0.0,0.804,0.484,0.964,1.282,0.263,1.087,41.441,17.391,8.186,0.0,0.0,66.047,9.438,9.226,71.201,9.438,9.226,27.27,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-1.xml,91.51,70.562,63.3176,69.1947,0.21114,0.9925,0.9709,1.0177,0.9806,1.0,51.589,0.0,0.0,29.35,9.442,6.276,46.773,5.136,7.607,25.494,0.0,0.0,0.804,0.483,0.897,1.282,0.263,1.087,28.811,9.883,4.832,0.0,0.0,45.914,5.376,5.857,49.497,5.376,5.857,19.791,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,179.41,9724.29,5527.33,0.9806,57.11,1.0,57.11,91.59,91.59,0.0,51.54,1.0,51.54,91.59,91.59,0.0,91.59,70.294,63.1413,68.9379,0.21021,0.9925,0.971,1.0176,0.9807,1.0,51.414,0.0,0.0,29.363,9.435,6.153,46.793,5.132,7.484,25.343,0.0,0.0,0.804,0.483,0.894,1.282,0.263,1.087,28.82,9.88,4.752,0.0,0.0,45.928,5.374,5.78,49.512,5.374,5.78,19.689,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-2.xml,88.52,74.079,65.27,73.7344,0.21063,0.9925,0.9855,1.0177,0.9953,1.0,53.6256,0.0,0.0,29.733,9.707,8.372,47.383,5.276,9.703,26.267,0.0,0.0,0.804,0.483,0.938,1.282,0.263,1.087,28.198,10.108,6.573,0.0,0.0,44.936,5.494,7.618,48.443,5.494,7.618,20.391,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,169.25,9769.05,5798.98,0.9953,56.36,1.0,56.36,88.51,88.51,0.0,50.52,1.0,50.52,88.51,88.51,0.0,88.51,74.11,65.2885,73.7668,0.20971,0.9925,0.9855,1.0176,0.9954,1.0,53.6428,0.0,0.0,29.731,9.708,8.384,47.38,5.276,9.715,26.287,0.0,0.0,0.804,0.483,0.938,1.282,0.263,1.087,28.197,10.109,6.578,0.0,0.0,44.935,5.494,7.622,48.441,5.494,7.622,20.405,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-4.xml,84.83,80.801,70.2305,82.7893,0.20978,0.9925,1.0145,1.0176,1.0246,1.0,58.559,0.0,0.0,30.5,10.237,12.252,48.605,5.63,13.585,27.812,0.0,0.0,0.804,0.477,0.98,1.282,0.263,1.087,28.117,10.426,9.878,0.0,0.0,44.808,5.734,10.953,48.304,5.734,10.953,21.589,0.22,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,156.79,10149.3,6317.91,1.0246,54.85,1.0,54.85,84.67,84.67,0.0,49.15,1.0,49.15,84.67,84.67,0.0,84.67,81.422,70.6328,83.4165,0.20885,0.9925,1.0144,1.0175,1.0245,1.0,58.9528,0.0,0.0,30.469,10.253,12.526,48.556,5.638,13.859,28.174,0.0,0.0,0.804,0.477,0.982,1.282,0.263,1.087,28.097,10.44,10.042,0.0,0.0,44.776,5.741,11.111,48.27,5.741,11.111,21.833,0.22,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-beds-5.xml,83.53,84.094,72.9942,87.386,0.20936,0.9925,1.0289,1.0176,1.0391,1.0,61.2082,0.0,0.0,30.886,10.503,14.123,49.221,5.796,15.456,28.582,0.0,0.0,0.804,0.476,0.993,1.282,0.263,1.087,28.323,10.612,11.494,0.0,0.0,45.137,5.856,12.579,48.659,5.856,12.579,22.188,0.377,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,152.43,10401.69,6566.99,1.0391,54.12,1.0,54.12,83.31,83.31,0.0,48.4,1.0,48.4,83.31,83.31,0.0,83.31,85.01,73.5852,88.3234,0.20846,0.9926,1.0288,1.0175,1.039,1.0,61.789,0.0,0.0,30.84,10.528,14.525,49.148,5.808,15.859,29.117,0.0,0.0,0.804,0.476,0.996,1.282,0.263,1.087,28.295,10.631,11.734,0.0,0.0,45.091,5.865,12.812,48.61,5.865,12.812,22.548,0.377,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-ceilingtypes.xml,95.07,77.47,73.8773,77.7061,0.06425,0.9977,1.0,1.0054,1.003,1.0,60.3892,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,34.231,10.353,8.245,0.0,0.0,54.55,5.648,9.307,58.807,5.648,9.307,20.985,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,188.96,11489.05,6061.71,1.003,55.48,1.0,55.48,94.94,94.94,0.0,50.04,1.0,50.04,94.94,94.94,0.0,94.94,77.798,74.0865,78.034,0.06394,0.9977,1.0,1.0053,1.003,1.0,60.5948,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,34.222,10.358,8.329,0.0,0.0,54.535,5.651,9.387,58.791,5.651,9.387,21.115,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-floortypes.xml,100.25,57.173,60.5136,60.3602,0.21019,1.0374,1.0,1.0176,1.0557,1.0,49.5484,0.0,0.0,19.483,8.406,10.343,31.055,4.575,11.671,18.941,0.0,0.0,0.804,0.482,0.963,1.282,0.263,1.087,28.124,8.792,8.424,0.0,0.0,44.829,4.785,9.506,48.327,4.785,9.506,14.828,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,197.84,9411.71,4506.0,1.0557,54.09,1.0,54.09,100.06,100.06,0.0,48.67,1.0,48.67,100.06,100.06,0.0,100.06,57.502,60.7291,60.6933,0.20928,1.0373,1.0,1.0176,1.0555,1.0,49.7584,0.0,0.0,19.467,8.415,10.487,31.03,4.58,11.814,19.133,0.0,0.0,0.804,0.482,0.965,1.282,0.263,1.087,28.115,8.797,8.514,0.0,0.0,44.815,4.788,9.591,48.312,4.788,9.591,14.958,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-garage.xml,88.37,75.349,67.2506,76.103,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.384,0.0,0.0,29.39,8.684,10.343,46.837,4.84,11.677,26.932,0.0,0.0,0.804,0.471,0.963,1.282,0.263,1.087,30.957,7.012,8.322,0.0,0.0,49.334,3.908,9.395,53.184,3.908,9.395,20.897,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,175.42,10531.41,5944.17,1.01,56.13,1.0,56.13,88.26,88.26,0.0,50.41,1.0,50.41,88.26,88.26,0.0,88.26,75.684,67.4655,76.4381,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.5952,0.0,0.0,29.389,8.684,10.487,46.835,4.84,11.821,27.124,0.0,0.0,0.804,0.471,0.964,1.282,0.263,1.087,30.956,7.012,8.408,0.0,0.0,49.332,3.908,9.477,53.182,3.908,9.477,21.027,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-ach-house-pressure.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.64,9896.04,6061.71,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-cfm-house-pressure.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.64,9896.04,6061.71,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-cfm50.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.64,9896.04,6061.71,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-ela.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.64,9896.04,6061.71,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-natural-ach.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.64,9896.04,6061.71,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-infil-natural-cfm.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.64,9896.04,6061.71,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-overhangs.xml,86.09,77.47,67.3594,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8344,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,28.041,10.022,8.243,0.0,0.0,44.687,5.467,9.305,48.174,5.467,9.305,20.99,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,162.0,9918.11,6061.71,1.01,55.6,1.0,55.6,86.0,86.0,0.0,50.12,1.0,50.12,86.0,86.0,0.0,86.0,77.798,67.5702,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.0402,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,28.031,10.028,8.328,0.0,0.0,44.67,5.471,9.386,48.156,5.471,9.386,21.12,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-skylights-cathedral.xml,73.12,101.298,72.2394,98.8005,0.15694,0.9753,1.0,1.0,0.9753,1.0,60.9356,0.0,0.0,42.152,13.659,10.343,67.183,7.376,11.675,35.144,0.0,0.0,0.804,0.486,0.963,1.282,0.263,1.087,26.746,10.25,8.103,0.0,0.0,42.629,5.535,9.147,45.955,5.535,9.147,27.14,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,130.67,10085.42,7913.54,0.9753,55.87,1.0,55.87,73.09,73.09,0.0,50.57,1.0,50.57,73.09,73.09,0.0,73.09,101.626,72.4498,99.1306,0.15629,0.9754,1.0,1.0,0.9754,1.0,61.1408,0.0,0.0,42.136,13.667,10.487,67.157,7.379,11.818,35.336,0.0,0.0,0.804,0.486,0.965,1.282,0.263,1.087,26.739,10.254,8.187,0.0,0.0,42.617,5.536,9.226,45.943,5.536,9.226,27.27,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-skylights.xml,89.18,77.47,69.602,78.0456,0.15628,0.9944,1.0,1.0131,1.0074,1.0,57.0302,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.993,12.309,8.242,0.0,0.0,44.61,6.715,9.303,48.091,6.715,9.303,20.995,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,163.68,9995.31,6061.71,1.0074,55.6,1.0,55.6,89.08,89.08,0.0,50.12,1.0,50.12,89.08,89.08,0.0,89.08,77.798,69.8113,78.3735,0.15559,0.9944,1.0,1.013,1.0074,1.0,57.2368,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.984,12.313,8.326,0.0,0.0,44.594,6.718,9.384,48.074,6.718,9.384,21.125,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-enclosure-walltypes.xml,98.58,77.423,76.133,77.2261,-0.05376,1.0019,1.0,0.9955,0.9975,1.0,62.5594,0.0,0.0,30.079,9.962,10.343,47.935,5.433,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,39.37,7.474,8.248,0.0,0.0,62.742,4.076,9.31,67.638,4.076,9.31,20.978,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,209.67,12664.84,6055.88,0.9975,55.74,1.0,55.74,98.44,98.44,0.0,50.22,1.0,50.22,98.44,98.44,0.0,98.44,77.751,76.3404,77.554,-0.05355,1.0019,1.0,0.9956,0.9975,1.0,62.7644,0.0,0.0,30.063,9.97,10.487,47.909,5.438,11.819,27.231,0.0,0.0,0.804,0.481,0.964,1.282,0.263,1.087,39.359,7.478,8.332,0.0,0.0,62.723,4.079,9.39,67.618,4.079,9.39,21.108,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-ambient.xml,87.05,57.173,52.5433,60.3602,0.21019,1.0374,1.0,1.0176,1.0557,1.0,43.495,0.0,0.0,19.483,8.406,10.343,31.055,4.575,11.671,18.941,0.0,0.0,0.804,0.482,0.963,1.282,0.263,1.087,18.123,10.804,8.415,0.0,0.0,28.887,5.88,9.495,31.141,5.88,9.495,14.857,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,146.85,6985.95,4506.0,1.0557,54.27,1.0,54.27,86.92,86.92,0.0,48.85,1.0,48.85,86.92,86.92,0.0,86.92,57.502,52.7575,60.6933,0.20928,1.0373,1.0,1.0176,1.0555,1.0,43.705,0.0,0.0,19.467,8.415,10.487,31.03,4.58,11.814,19.133,0.0,0.0,0.804,0.482,0.965,1.282,0.263,1.087,18.113,10.809,8.502,0.0,0.0,28.872,5.883,9.578,31.125,5.883,9.578,14.988,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-basement-garage.xml,83.98,68.462,59.387,70.7172,0.21019,1.015,1.0,1.0176,1.0329,1.0,49.3752,0.0,0.0,27.281,8.264,10.343,43.472,4.562,11.676,22.574,0.0,0.0,0.805,0.476,0.963,1.282,0.263,1.087,23.438,9.777,8.453,0.0,0.0,37.348,5.397,9.542,40.262,5.397,9.542,17.49,0.23,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,153.36,8499.17,5365.26,1.0329,54.61,1.0,54.61,83.89,83.89,0.0,49.41,1.0,49.41,83.89,83.89,0.0,83.89,68.79,59.6022,71.0461,0.20928,1.015,1.0,1.0176,1.0328,1.0,49.5844,0.0,0.0,27.264,8.273,10.487,43.447,4.565,11.822,22.766,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,23.426,9.786,8.54,0.0,0.0,37.331,5.4,9.627,40.244,5.4,9.627,17.62,0.23,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,86.51,77.47,67.6889,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.848,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.068,11.321,8.243,0.0,0.0,43.136,6.176,9.304,46.502,6.176,9.304,20.994,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,158.83,9724.27,6061.71,1.01,55.6,1.0,55.6,86.41,86.41,0.0,50.12,1.0,50.12,86.41,86.41,0.0,86.41,77.798,67.8968,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.0538,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.058,11.325,8.326,0.0,0.0,43.119,6.179,9.384,46.484,6.179,9.384,21.124,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,87.14,75.684,66.6128,76.4414,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.4262,0.0,0.0,28.692,9.61,10.343,45.725,5.299,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,27.725,9.592,8.244,0.0,0.0,44.183,5.289,9.306,47.631,5.289,9.306,20.989,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,163.92,9826.5,5935.45,1.01,56.5,1.0,56.5,87.05,87.05,0.0,50.85,1.0,50.85,87.05,87.05,0.0,87.05,76.013,66.8261,76.7704,0.20928,0.9925,1.0,1.0176,1.01,1.0,55.6314,0.0,0.0,28.676,9.619,10.487,45.699,5.303,11.819,27.231,0.0,0.0,0.804,0.476,0.964,1.282,0.263,1.087,27.715,9.601,8.328,0.0,0.0,44.167,5.293,9.386,47.614,5.293,9.386,21.119,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-multiple.xml,81.37,56.035,48.1349,59.1587,0.21019,1.0374,1.0,1.0176,1.0557,1.0,40.7624,0.0,0.0,19.461,7.603,10.343,31.021,4.217,11.862,18.628,0.0,0.0,0.804,0.473,0.948,1.282,0.263,1.087,15.601,9.278,8.257,0.0,0.0,24.868,5.146,9.47,26.808,5.146,9.47,14.654,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,133.6,6278.87,4451.67,1.0557,53.7,1.0,53.7,81.26,81.26,0.0,48.14,1.0,48.14,81.26,81.26,0.0,81.26,56.372,48.3513,59.5006,0.20928,1.0373,1.0,1.0176,1.0555,1.0,40.9746,0.0,0.0,19.46,7.604,10.487,31.019,4.218,12.006,18.821,0.0,0.0,0.804,0.473,0.949,1.282,0.263,1.087,15.599,9.279,8.344,0.0,0.0,24.865,5.147,9.553,26.805,5.147,9.553,14.784,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-slab.xml,70.62,58.214,43.4025,61.4592,0.21019,1.0374,1.0,1.0176,1.0557,1.0,37.577,0.0,0.0,21.257,7.68,10.343,33.873,4.245,11.675,18.934,0.0,0.0,0.805,0.475,0.963,1.282,0.263,1.087,12.021,7.767,8.412,0.0,0.0,19.155,4.293,9.495,20.65,4.293,9.495,14.858,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,110.7,5339.13,4568.42,1.0557,53.78,1.0,53.78,70.59,70.59,0.0,48.13,1.0,48.13,70.59,70.59,0.0,70.59,58.543,43.619,61.7921,0.20928,1.0373,1.0,1.0176,1.0555,1.0,37.7886,0.0,0.0,21.241,7.689,10.487,33.848,4.25,11.819,19.126,0.0,0.0,0.805,0.475,0.964,1.282,0.263,1.087,12.014,7.772,8.499,0.0,0.0,19.145,4.296,9.579,20.639,4.296,9.579,14.988,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unconditioned-basement-assembly-r.xml,77.84,56.279,46.251,59.4163,0.21019,1.0374,1.0,1.0176,1.0557,1.0,39.507,0.0,0.0,19.466,7.844,10.343,31.029,4.33,11.864,18.626,0.0,0.0,0.804,0.476,0.948,1.282,0.263,1.087,14.512,8.52,8.277,0.0,0.0,23.133,4.703,9.494,24.938,4.703,9.494,14.597,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,126.92,5972.45,4457.23,1.0557,53.25,1.0,53.25,77.76,77.76,0.0,47.75,1.0,47.75,77.76,77.76,0.0,77.76,56.615,46.4687,59.7571,0.20928,1.0373,1.0,1.0176,1.0555,1.0,39.7188,0.0,0.0,19.465,7.845,10.487,31.027,4.33,12.007,18.818,0.0,0.0,0.804,0.476,0.949,1.282,0.263,1.087,14.51,8.523,8.364,0.0,0.0,23.129,4.704,9.576,24.934,4.704,9.576,14.727,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unconditioned-basement-wall-insulation.xml,83.56,56.279,49.6488,59.4163,0.21019,1.0374,1.0,1.0176,1.0557,1.0,42.01,0.0,0.0,19.466,7.844,10.343,31.029,4.33,11.864,18.626,0.0,0.0,0.804,0.476,0.948,1.282,0.263,1.087,18.206,8.156,8.24,0.0,0.0,29.02,4.502,9.452,31.285,4.502,9.452,14.702,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,146.39,6888.87,4457.23,1.0557,53.25,1.0,53.25,83.45,83.45,0.0,47.75,1.0,47.75,83.45,83.45,0.0,83.45,56.615,49.8679,59.7571,0.20928,1.0373,1.0,1.0176,1.0555,1.0,42.2206,0.0,0.0,19.465,7.845,10.487,31.027,4.33,12.007,18.818,0.0,0.0,0.804,0.476,0.949,1.282,0.263,1.087,18.203,8.16,8.328,0.0,0.0,29.015,4.504,9.535,31.279,4.504,9.535,14.832,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unconditioned-basement.xml,81.37,56.279,48.3463,59.4163,0.21019,1.0374,1.0,1.0176,1.0557,1.0,40.8496,0.0,0.0,19.466,7.844,10.343,31.029,4.33,11.864,18.626,0.0,0.0,0.804,0.476,0.948,1.282,0.263,1.087,15.632,9.491,8.272,0.0,0.0,24.918,5.239,9.489,26.862,5.239,9.489,14.606,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,133.69,6290.89,4457.23,1.0557,53.25,1.0,53.25,81.27,81.27,0.0,47.75,1.0,47.75,81.27,81.27,0.0,81.27,56.615,48.5665,59.7571,0.20928,1.0373,1.0,1.0176,1.0555,1.0,41.0604,0.0,0.0,19.465,7.845,10.487,31.027,4.33,12.007,18.818,0.0,0.0,0.804,0.476,0.949,1.282,0.263,1.087,15.63,9.494,8.36,0.0,0.0,24.915,5.24,9.572,26.859,5.24,9.572,14.737,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-unvented-crawlspace.xml,79.46,55.673,46.7063,58.7765,0.21019,1.0374,1.0,1.0176,1.0557,1.0,39.6092,0.0,0.0,17.471,8.912,10.343,27.851,4.836,11.667,18.947,0.0,0.0,0.804,0.484,0.964,1.282,0.263,1.087,13.533,9.452,8.51,0.0,0.0,21.573,5.129,9.599,23.256,5.129,9.599,14.867,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,125.33,5786.96,4373.46,1.0557,55.61,1.0,55.61,79.38,79.38,0.0,50.08,1.0,50.08,79.38,79.38,0.0,79.38,56.004,46.9242,59.1122,0.20928,1.0373,1.0,1.0176,1.0555,1.0,39.82,0.0,0.0,17.456,8.922,10.487,27.826,4.841,11.81,19.139,0.0,0.0,0.804,0.484,0.965,1.282,0.263,1.087,13.526,9.458,8.598,0.0,0.0,21.561,5.132,9.683,23.243,5.132,9.683,14.997,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-vented-crawlspace-above-grade.xml,82.91,55.789,48.8322,58.899,0.21019,1.0374,1.0,1.0176,1.0557,1.0,41.1728,0.0,0.0,17.832,8.669,10.343,28.427,4.723,11.668,18.945,0.0,0.0,0.804,0.482,0.964,1.282,0.263,1.087,15.546,9.484,8.595,0.0,0.0,24.783,5.167,9.696,26.717,5.167,9.696,14.862,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,136.01,6303.89,4390.23,1.0557,55.85,1.0,55.85,82.8,82.8,0.0,50.34,1.0,50.34,82.8,82.8,0.0,82.8,56.12,49.0485,59.2346,0.20928,1.0373,1.0,1.0176,1.0555,1.0,41.3832,0.0,0.0,17.817,8.679,10.487,28.402,4.728,11.812,19.137,0.0,0.0,0.804,0.482,0.965,1.282,0.263,1.087,15.538,9.49,8.683,0.0,0.0,24.769,5.17,9.78,26.702,5.17,9.78,14.992,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-vented-crawlspace.xml,82.41,55.673,48.4377,58.7765,0.21019,1.0374,1.0,1.0176,1.0557,1.0,40.8906,0.0,0.0,17.471,8.912,10.343,27.851,4.836,11.667,18.947,0.0,0.0,0.804,0.484,0.964,1.282,0.263,1.087,15.255,9.375,8.6,0.0,0.0,24.318,5.087,9.701,26.216,5.087,9.701,14.863,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,134.83,6225.62,4373.46,1.0557,55.61,1.0,55.61,82.31,82.31,0.0,50.08,1.0,50.08,82.31,82.31,0.0,82.31,56.004,48.6547,59.1122,0.20928,1.0373,1.0,1.0176,1.0555,1.0,41.1,0.0,0.0,17.456,8.922,10.487,27.826,4.841,11.81,19.139,0.0,0.0,0.804,0.484,0.965,1.282,0.263,1.087,15.247,9.381,8.689,0.0,0.0,24.304,5.09,9.785,26.201,5.09,9.785,14.993,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-foundation-walkout-basement.xml,87.93,82.357,71.8764,81.7395,0.21019,0.9925,1.0,1.0,0.9925,1.0,58.9422,0.0,0.0,33.823,11.154,10.343,53.904,6.09,11.676,27.037,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,31.806,10.777,8.244,0.0,0.0,50.69,5.884,9.306,54.645,5.884,9.306,20.987,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,170.95,10889.5,6417.98,0.9925,55.4,1.0,55.4,87.84,87.84,0.0,50.39,1.0,50.39,87.84,87.84,0.0,87.84,82.685,72.086,82.0677,0.20928,0.9925,1.0,1.0,0.9925,1.0,59.1484,0.0,0.0,33.807,11.162,10.487,53.878,6.095,11.82,27.229,0.0,0.0,0.804,0.481,0.964,1.282,0.263,1.087,31.796,10.781,8.328,0.0,0.0,50.674,5.887,9.387,54.628,5.887,9.387,21.117,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,87.92,77.469,68.7915,78.2427,0.20977,0.9925,1.0,1.0176,1.01,1.0,55.2622,0.0,0.0,30.116,9.971,10.343,47.993,5.474,11.675,27.039,0.0,0.0,0.804,0.478,0.963,1.282,0.263,1.087,29.268,10.226,8.243,0.0,0.0,46.642,5.614,9.305,46.644,5.614,9.305,20.991,0.063,0.0,1.282,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,158.45,9712.83,6069.31,1.01,69.9,1.0,69.9,87.82,87.82,0.0,61.05,1.0,61.05,87.82,87.82,0.0,87.82,77.798,68.9991,78.5716,0.20887,0.9925,1.0,1.0175,1.0099,1.0,55.468,0.0,0.0,30.1,9.98,10.487,47.967,5.479,11.819,27.231,0.0,0.0,0.805,0.478,0.964,1.282,0.263,1.087,29.256,10.231,8.327,0.0,0.0,46.623,5.617,9.385,46.625,5.617,9.385,21.121,0.063,0.0,1.282,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,88.02,77.469,68.8593,78.2348,0.20765,0.9926,1.0,1.0174,1.0099,1.0,63.144,0.0,0.0,30.117,9.97,10.343,27.262,5.501,11.675,27.039,0.0,0.0,0.489,0.476,0.963,0.443,0.263,1.087,30.942,8.62,8.243,0.0,0.0,28.009,4.756,9.305,28.03,4.756,9.305,20.991,0.063,0.0,0.414,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,88.0,5395.31,6071.27,1.0099,55.53,1.0,55.53,87.91,87.91,0.0,50.72,1.0,50.72,87.91,87.91,0.0,87.91,77.797,69.068,78.5627,0.20675,0.9926,1.0,1.0173,1.0098,1.0,63.348,0.0,0.0,30.1,9.979,10.487,27.25,5.504,11.819,27.231,0.0,0.0,0.489,0.476,0.964,0.443,0.263,1.087,30.928,8.628,8.327,0.0,0.0,28.0,4.759,9.385,28.021,4.759,9.385,21.121,0.063,0.0,0.414,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,87.64,77.499,68.5984,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,62.884,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,30.805,8.496,8.243,0.0,0.0,27.975,4.53,9.305,27.996,4.53,9.305,20.991,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,87.74,5371.89,6061.71,1.01,53.49,1.0,53.49,87.54,87.54,0.0,48.67,1.0,48.67,87.54,87.54,0.0,87.54,77.828,68.8049,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,63.088,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,30.792,8.501,8.327,0.0,0.0,27.966,4.533,9.385,27.987,4.533,9.385,21.121,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer-hspf.xml,91.61,77.499,71.7051,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,65.435,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,33.184,9.224,8.243,0.0,0.0,30.135,4.918,9.305,30.158,4.918,9.305,20.991,0.063,0.0,0.443,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,91.38,5594.66,6061.71,1.01,53.49,1.0,53.49,91.49,91.49,0.0,48.67,1.0,48.67,91.49,91.49,0.0,91.49,77.828,71.9132,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,65.638,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,33.171,9.231,8.327,0.0,0.0,30.126,4.922,9.385,30.149,4.922,9.385,21.121,0.063,0.0,0.443,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,87.53,77.499,68.5137,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,62.807,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,30.72,8.496,8.243,0.0,0.0,27.898,4.53,9.305,27.919,4.53,9.305,20.991,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,87.62,5364.13,6061.71,1.01,53.49,1.0,53.49,87.43,87.43,0.0,48.67,1.0,48.67,87.43,87.43,0.0,87.43,77.828,68.7202,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,63.011,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,30.708,8.501,8.327,0.0,0.0,27.889,4.533,9.385,27.91,4.533,9.385,21.121,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,81.8,77.499,64.0243,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,59.1,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,27.227,7.5,8.243,0.0,0.0,24.725,3.999,9.305,24.744,3.999,9.305,20.991,0.063,0.0,0.354,0.191,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,82.35,5041.4,6061.71,1.01,53.49,1.0,53.49,81.72,81.72,0.0,48.67,1.0,48.67,81.72,81.72,0.0,81.72,77.828,64.2322,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,59.305,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,27.215,7.505,8.327,0.0,0.0,24.717,4.002,9.385,24.736,4.002,9.385,21.121,0.063,0.0,0.354,0.191,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,82.78,77.499,64.795,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,59.885,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,28.223,7.275,8.243,0.0,0.0,25.63,3.879,9.305,25.649,3.879,9.305,20.991,0.063,0.0,0.315,0.154,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,83.35,5102.99,6061.71,1.01,53.49,1.0,53.49,82.7,82.7,0.0,48.67,1.0,48.67,82.7,82.7,0.0,82.7,77.828,65.0021,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,60.09,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,28.212,7.278,8.327,0.0,0.0,25.623,3.881,9.385,25.642,3.881,9.385,21.121,0.063,0.0,0.315,0.154,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-boiler-elec-only.xml,93.1,77.469,72.8348,78.2348,0.20765,0.9926,1.0,1.0174,1.0099,1.0,66.747,0.0,0.0,30.117,9.97,10.343,27.262,5.501,11.675,27.039,0.0,0.0,0.489,0.476,0.963,0.443,0.263,1.087,34.919,8.618,8.243,0.0,0.0,31.609,4.755,9.305,31.633,4.755,9.305,20.991,0.063,0.0,1.02,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,92.62,5678.87,6071.27,1.0099,55.53,1.0,55.53,92.97,92.97,0.0,50.72,1.0,50.72,92.97,92.97,0.0,92.97,77.797,73.0415,78.5627,0.20675,0.9926,1.0,1.0173,1.0098,1.0,66.947,0.0,0.0,30.1,9.979,10.487,27.25,5.504,11.819,27.231,0.0,0.0,0.489,0.476,0.964,0.443,0.263,1.087,34.902,8.628,8.327,0.0,0.0,31.597,4.759,9.385,31.621,4.759,9.385,21.121,0.063,0.0,1.02,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-boiler-gas-only.xml,72.25,77.469,56.5577,78.2768,0.21899,0.9922,1.0,1.0184,1.0104,1.0,48.7244,0.0,0.0,30.117,9.97,10.343,49.212,5.501,11.675,27.039,0.0,0.0,0.765,0.476,0.963,1.25,0.263,1.087,18.642,8.618,8.243,0.0,0.0,30.462,4.755,9.305,33.681,4.755,9.305,20.991,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,126.92,7785.9,6071.27,1.0104,56.56,1.0,56.56,72.23,72.23,0.0,51.23,1.0,51.23,72.23,72.23,0.0,72.23,77.797,56.774,78.6047,0.21804,0.9922,1.0,1.0183,1.0104,1.0,48.9312,0.0,0.0,30.1,9.979,10.487,49.186,5.504,11.819,27.231,0.0,0.0,0.765,0.476,0.964,1.25,0.263,1.087,18.634,8.628,8.327,0.0,0.0,30.45,4.759,9.385,33.668,4.759,9.385,21.121,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-boiler-oil-only.xml,72.27,77.469,56.571,78.2768,0.21899,0.9922,1.0,1.0184,1.0104,1.0,48.862,0.0,0.0,30.117,9.97,10.343,49.212,5.501,11.675,27.039,0.0,0.0,0.765,0.476,0.963,1.25,0.263,1.087,18.656,8.618,8.243,0.0,0.0,30.484,4.755,9.305,33.705,4.755,9.305,20.991,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,153.12,9393.44,6071.27,1.0104,56.56,1.0,56.56,72.24,72.24,0.0,51.23,1.0,51.23,72.24,72.24,0.0,72.24,77.797,56.7868,78.6047,0.21804,0.9922,1.0,1.0183,1.0104,1.0,49.0688,0.0,0.0,30.1,9.979,10.487,49.186,5.504,11.819,27.231,0.0,0.0,0.765,0.476,0.964,1.25,0.263,1.087,18.647,8.628,8.327,0.0,0.0,30.471,4.759,9.385,33.691,4.759,9.385,21.121,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-boiler-propane-only.xml,72.25,77.469,56.5577,78.2768,0.21899,0.9922,1.0,1.0184,1.0104,1.0,48.7244,0.0,0.0,30.117,9.97,10.343,49.212,5.501,11.675,27.039,0.0,0.0,0.765,0.476,0.963,1.25,0.263,1.087,18.642,8.618,8.243,0.0,0.0,30.462,4.755,9.305,33.681,4.755,9.305,20.991,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,143.55,8806.16,6071.27,1.0104,56.56,1.0,56.56,72.23,72.23,0.0,51.23,1.0,51.23,72.23,72.23,0.0,72.23,77.797,56.774,78.6047,0.21804,0.9922,1.0,1.0183,1.0104,1.0,48.9312,0.0,0.0,30.1,9.979,10.487,49.186,5.504,11.819,27.231,0.0,0.0,0.765,0.476,0.964,1.25,0.263,1.087,18.634,8.628,8.327,0.0,0.0,30.45,4.759,9.385,33.668,4.759,9.385,21.121,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-1-speed-seer.xml,89.13,77.468,69.7389,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,55.8132,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.268,11.174,8.243,0.0,0.0,46.642,6.165,9.305,46.644,6.165,9.305,20.991,0.063,0.0,1.282,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,159.05,9752.59,6071.27,1.01,70.15,1.0,70.15,89.03,89.03,0.0,61.25,1.0,61.25,89.03,89.03,0.0,89.03,77.797,69.9525,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,56.019,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,11.185,8.327,0.0,0.0,46.623,6.169,9.385,46.625,6.169,9.385,21.121,0.063,0.0,1.282,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-1-speed.xml,88.1,77.468,68.9324,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,55.3682,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.268,10.367,8.243,0.0,0.0,46.642,5.72,9.305,46.644,5.72,9.305,20.991,0.063,0.0,1.282,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,158.52,9720.5,6071.27,1.01,70.15,1.0,70.15,88.0,88.0,0.0,61.25,1.0,61.25,88.0,88.0,0.0,88.0,77.797,69.1456,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,55.574,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,10.378,8.327,0.0,0.0,46.623,5.724,9.385,46.625,5.724,9.385,21.121,0.063,0.0,1.282,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-2-speed.xml,86.67,77.468,67.8087,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,54.7482,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.268,9.243,8.243,0.0,0.0,46.642,5.1,9.305,46.644,5.1,9.305,20.991,0.063,0.0,1.282,0.191,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,157.8,9675.98,6071.27,1.01,70.15,1.0,70.15,86.57,86.57,0.0,61.25,1.0,61.25,86.57,86.57,0.0,86.57,77.797,68.0197,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,54.953,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,9.252,8.327,0.0,0.0,46.623,5.103,9.385,46.625,5.103,9.385,21.121,0.063,0.0,1.282,0.191,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-var-speed.xml,85.64,77.468,67.0088,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,54.3078,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,8.444,8.243,0.0,0.0,46.641,4.659,9.305,46.643,4.659,9.305,20.991,0.063,0.0,1.282,0.141,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,157.24,9641.86,6071.27,1.01,70.15,1.0,70.15,85.55,85.55,0.0,61.25,1.0,61.25,85.55,85.55,0.0,85.55,77.797,67.2177,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,54.5116,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,8.451,8.327,0.0,0.0,46.622,4.661,9.385,46.624,4.661,9.385,21.121,0.063,0.0,1.282,0.141,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,90.54,77.499,70.8677,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,64.108,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,30.843,10.728,8.243,0.0,0.0,28.009,5.72,9.305,28.03,5.72,9.305,20.991,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,89.31,5467.87,6061.71,1.01,53.49,1.0,53.49,90.42,90.42,0.0,48.67,1.0,48.67,90.42,90.42,0.0,90.42,77.828,71.0759,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,64.312,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,30.83,10.735,8.327,0.0,0.0,28.0,5.724,9.385,28.021,5.724,9.385,21.121,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-dse.xml,78.96,77.47,61.7787,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,51.9796,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,23.112,9.369,8.243,0.0,0.0,36.832,5.111,9.305,39.706,5.111,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,141.34,8653.37,6061.71,1.01,55.6,1.0,55.6,78.89,78.89,0.0,50.1,1.0,50.1,78.89,78.89,0.0,78.89,77.798,61.9885,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,52.1856,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,23.104,9.373,8.327,0.0,0.0,36.818,5.114,9.385,39.691,5.114,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,91.25,77.5,71.4313,78.2818,0.21187,0.9924,1.0,1.0178,1.0101,1.0,61.0618,0.0,0.0,30.118,10.0,10.343,44.502,5.274,11.675,27.039,0.0,0.0,1.381,0.498,0.963,1.725,0.263,1.087,32.619,9.515,8.243,0.0,0.0,47.760000000000005,5.018,9.305,52.051,5.018,9.305,20.991,0.063,0.0,1.467,0.242,1.042,3.3504,0.403,3.809,0.0,0.92,0.0,163.74,10025.64,6061.71,1.0101,54.34,1.0,54.34,91.14,91.14,0.0,49.1,1.0,49.1,91.14,91.14,0.0,91.14,77.829,71.6422,78.6107,0.21097,0.9925,1.0,1.0177,1.01,1.0,61.2688,0.0,0.0,30.102,10.009,10.487,44.481,5.279,11.819,27.231,0.0,0.0,1.381,0.498,0.964,1.725,0.263,1.087,32.611,9.52,8.327,0.0,0.0,47.749,5.021,9.385,52.039,5.021,9.385,21.121,0.063,0.0,1.467,0.242,1.042,3.3504,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-areas.xml,79.62,77.47,62.2994,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,52.4552,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,24.253,8.749,8.243,0.0,0.0,38.649,4.773,9.305,41.665,4.773,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,145.61,8914.73,6061.71,1.01,55.6,1.0,55.6,79.56,79.56,0.0,50.12,1.0,50.12,79.56,79.56,0.0,79.56,77.798,62.5112,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,52.6612,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,24.244,8.756,8.327,0.0,0.0,38.635,4.777,9.385,41.65,4.777,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-buried.xml,79.63,77.47,62.3059,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,52.4594,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,24.257,8.751,8.243,0.0,0.0,38.657,4.774,9.305,41.673,4.774,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,145.63,8915.95,6061.71,1.01,55.6,1.0,55.6,79.56,79.56,0.0,50.12,1.0,50.12,79.56,79.56,0.0,79.56,77.798,62.5158,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,52.6654,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,24.249,8.756,8.327,0.0,0.0,38.643,4.777,9.385,41.658,4.777,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-leakage-cfm50.xml,85.22,77.47,66.6806,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.3396,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.299,10.084,8.243,0.0,0.0,43.504,5.501,9.305,46.899,5.501,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,158.99,9733.71,6061.71,1.01,55.6,1.0,55.6,85.13,85.13,0.0,50.12,1.0,50.12,85.13,85.13,0.0,85.13,77.798,66.891,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,55.5448,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.29,10.09,8.327,0.0,0.0,43.488,5.505,9.385,46.882,5.505,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-elec-resistance-only.xml,89.79,77.469,70.2506,78.2348,0.20765,0.9926,1.0,1.0174,1.0099,1.0,64.405,0.0,0.0,30.117,9.97,10.343,27.262,5.501,11.675,27.039,0.0,0.0,0.489,0.476,0.963,0.443,0.263,1.087,32.335,8.618,8.243,0.0,0.0,29.27,4.755,9.305,29.292,4.755,9.305,20.991,0.063,0.0,1.0,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,89.32,5476.77,6071.27,1.0099,55.53,1.0,55.53,89.68,89.68,0.0,50.72,1.0,50.72,89.68,89.68,0.0,89.68,77.797,70.4576,78.5627,0.20675,0.9926,1.0,1.0173,1.0098,1.0,64.606,0.0,0.0,30.1,9.979,10.487,27.25,5.504,11.819,27.231,0.0,0.0,0.489,0.476,0.964,0.443,0.263,1.087,32.318,8.628,8.327,0.0,0.0,29.258,4.759,9.385,29.28,4.759,9.385,21.121,0.063,0.0,1.0,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-evap-cooler-only-ducted.xml,76.59,77.468,59.9277,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,50.3998,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,1.363,8.243,0.0,0.0,46.641,0.752,9.305,46.643,0.752,9.305,20.991,0.063,0.0,1.282,0.228,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,152.56,9354.58,6071.27,1.01,70.15,1.0,70.15,76.53,76.53,0.0,61.25,1.0,61.25,76.53,76.53,0.0,76.53,77.797,60.1305,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,50.6026,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,1.363,8.327,0.0,0.0,46.622,0.752,9.385,46.624,0.752,9.385,21.121,0.063,0.0,1.282,0.228,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-evap-cooler-only.xml,76.16,77.468,59.5924,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,50.2148,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,1.028,8.243,0.0,0.0,46.641,0.567,9.305,46.643,0.567,9.305,20.991,0.063,0.0,1.282,0.228,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,152.34,9341.58,6071.27,1.01,70.15,1.0,70.15,76.1,76.1,0.0,61.25,1.0,61.25,76.1,76.1,0.0,76.1,77.797,59.7951,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,50.4166,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,1.028,8.327,0.0,0.0,46.622,0.567,9.385,46.624,0.567,9.385,21.121,0.063,0.0,1.282,0.228,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-fan-motor-type.xml,87.19,77.47,68.2251,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.1584,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.942,10.986,8.243,0.0,0.0,44.528,5.993,9.305,48.003,5.993,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,162.4,9942.77,6061.71,1.01,55.6,1.0,55.6,87.09,87.09,0.0,50.12,1.0,50.12,87.09,87.09,0.0,87.09,77.798,68.433,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.3636,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.932,10.99,8.327,0.0,0.0,44.512,5.996,9.385,47.985,5.996,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tankless-electric-ef.xml,86.96,77.47,68.0446,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.4252,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,28.332,10.126,8.533,0.0,0.0,45.151,5.524,9.632,48.674,5.524,9.632,20.99,0.063,0.0,1.087,0.242,1.132,1.0943,0.403,3.809,0.0,0.92,0.0,163.54,10017.05,6064.37,1.01,55.73,1.0,55.73,86.88,86.88,0.0,50.25,1.0,50.25,86.88,86.88,0.0,86.88,77.798,68.2638,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.6424,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,28.322,10.13,8.628,0.0,0.0,45.134,5.527,9.724,48.656,5.527,9.724,21.12,0.063,0.0,1.087,0.242,1.132,1.0943,0.403,3.809,0.0,0.92,0.0 +base-dhw-tankless-gas-ef.xml,80.09,77.127,62.3872,77.8987,0.21015,0.9925,1.0,1.0176,1.01,1.0,50.6868,0.0,0.0,29.556,10.188,10.343,47.101,5.543,18.108,27.04,0.0,0.0,0.804,0.483,0.968,1.282,0.263,1.695,28.332,10.153,2.849,0.0,0.0,45.151,5.524,4.988,48.674,5.524,9.733,20.99,0.063,0.0,1.087,0.242,1.144,1.0943,0.403,3.809,0.0,1.1877,1.013,174.41,10682.53,6064.37,1.01,52.73,1.0,52.73,79.96,79.96,0.0,47.86,1.0,47.86,79.96,79.96,0.0,79.96,77.455,62.5508,78.2266,0.20926,0.9925,1.0,1.0176,1.01,1.0,50.8488,0.0,0.0,29.539,10.197,10.487,47.075,5.547,18.296,27.232,0.0,0.0,0.804,0.483,0.972,1.282,0.263,1.695,28.321,10.16,2.886,0.0,0.0,45.134,5.527,5.036,48.656,5.527,9.827,21.12,0.063,0.0,1.087,0.242,1.144,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-dhw-tankless-propane.xml,82.01,77.127,63.8859,77.8987,0.21015,0.9925,1.0,1.0176,1.01,1.0,51.208,0.0,0.0,29.556,10.188,10.343,47.101,5.543,18.108,27.04,0.0,0.0,0.804,0.483,0.968,1.282,0.263,1.695,28.332,10.153,4.348,0.0,0.0,45.151,5.524,7.611,48.674,5.524,11.037,20.99,0.063,0.0,1.087,0.242,1.297,1.0943,0.403,3.809,0.0,1.1877,1.013,183.04,11211.1,6064.37,1.01,52.73,1.0,52.73,81.9,81.9,0.0,47.86,1.0,47.86,81.9,81.9,0.0,81.9,77.455,64.0687,78.2266,0.20926,0.9925,1.0,1.0176,1.01,1.0,51.3752,0.0,0.0,29.539,10.197,10.487,47.075,5.547,18.296,27.232,0.0,0.0,0.804,0.483,0.972,1.282,0.263,1.695,28.321,10.16,4.404,0.0,0.0,45.134,5.527,7.684,48.656,5.527,11.142,21.12,0.063,0.0,1.087,0.242,1.297,1.0943,0.403,3.809,0.0,1.1877,1.013 +base-enclosure-2stories-garage.xml,90.71,93.674,83.3435,91.8767,0.21019,0.9808,1.0,1.0,0.9808,1.0,66.7068,0.0,0.0,39.92,12.732,10.343,63.622,6.979,11.676,30.679,0.0,0.0,0.804,0.479,0.963,1.282,0.263,1.087,33.751,17.744,8.204,0.0,0.0,53.791,9.726,9.261,57.988,9.726,9.261,23.645,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,165.53,11864.27,7307.78,0.9808,54.92,1.0,54.92,90.62,90.62,0.0,50.03,1.0,50.03,90.62,90.62,0.0,90.62,94.002,83.5551,92.2061,0.20928,0.9809,1.0,1.0,0.9809,1.0,66.9134,0.0,0.0,39.904,12.74,10.487,63.596,6.983,11.82,30.871,0.0,0.0,0.804,0.479,0.964,1.282,0.263,1.087,33.742,17.75,8.288,0.0,0.0,53.775,9.729,9.342,57.971,9.729,9.342,23.775,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-2stories.xml,91.15,106.721,94.0763,103.2118,0.21019,0.9671,1.0,1.0,0.9671,1.0,75.3018,0.0,0.0,46.305,14.93,10.343,73.799,8.103,11.676,35.143,0.0,0.0,0.804,0.484,0.963,1.282,0.263,1.087,41.451,17.383,8.103,0.0,0.0,66.063,9.434,9.147,71.218,9.434,9.147,27.14,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,175.21,14056.98,8295.78,0.9671,55.1,1.0,55.1,91.06,91.06,0.0,50.18,1.0,50.18,91.06,91.06,0.0,91.06,107.049,94.2877,103.544,0.20928,0.9673,1.0,1.0,0.9673,1.0,75.505,0.0,0.0,46.289,14.938,10.487,73.774,8.107,11.819,35.335,0.0,0.0,0.804,0.484,0.964,1.282,0.263,1.087,41.441,17.391,8.186,0.0,0.0,66.047,9.438,9.226,71.201,9.438,9.226,27.27,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-1.xml,91.51,70.562,63.3176,69.1947,0.21114,0.9925,0.9709,1.0177,0.9806,1.0,51.589,0.0,0.0,29.35,9.442,6.276,46.773,5.136,7.607,25.494,0.0,0.0,0.804,0.483,0.897,1.282,0.263,1.087,28.811,9.883,4.832,0.0,0.0,45.914,5.376,5.857,49.497,5.376,5.857,19.791,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,179.32,9724.29,5529.91,0.9806,57.11,1.0,57.11,91.59,91.59,0.0,51.54,1.0,51.54,91.59,91.59,0.0,91.59,70.294,63.1413,68.9379,0.21021,0.9925,0.971,1.0176,0.9807,1.0,51.414,0.0,0.0,29.363,9.435,6.153,46.793,5.132,7.484,25.343,0.0,0.0,0.804,0.483,0.894,1.282,0.263,1.087,28.82,9.88,4.752,0.0,0.0,45.928,5.374,5.78,49.512,5.374,5.78,19.689,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-2.xml,88.52,74.079,65.27,73.7344,0.21063,0.9925,0.9855,1.0177,0.9953,1.0,53.6256,0.0,0.0,29.733,9.707,8.372,47.383,5.276,9.703,26.267,0.0,0.0,0.804,0.483,0.938,1.282,0.263,1.087,28.198,10.108,6.573,0.0,0.0,44.936,5.494,7.618,48.443,5.494,7.618,20.391,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,169.17,9769.05,5801.62,0.9953,56.36,1.0,56.36,88.51,88.51,0.0,50.52,1.0,50.52,88.51,88.51,0.0,88.51,74.11,65.2885,73.7668,0.20971,0.9925,0.9855,1.0176,0.9954,1.0,53.6428,0.0,0.0,29.731,9.708,8.384,47.38,5.276,9.715,26.287,0.0,0.0,0.804,0.483,0.938,1.282,0.263,1.087,28.197,10.109,6.578,0.0,0.0,44.935,5.494,7.622,48.441,5.494,7.622,20.405,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-4.xml,84.83,80.801,70.2305,82.7893,0.20978,0.9925,1.0145,1.0176,1.0246,1.0,58.559,0.0,0.0,30.5,10.237,12.252,48.605,5.63,13.585,27.812,0.0,0.0,0.804,0.477,0.98,1.282,0.263,1.087,28.117,10.426,9.878,0.0,0.0,44.808,5.734,10.953,48.304,5.734,10.953,21.589,0.22,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,156.72,10149.3,6320.64,1.0246,54.85,1.0,54.85,84.67,84.67,0.0,49.15,1.0,49.15,84.67,84.67,0.0,84.67,81.422,70.6328,83.4165,0.20885,0.9925,1.0144,1.0175,1.0245,1.0,58.9528,0.0,0.0,30.469,10.253,12.526,48.556,5.638,13.859,28.174,0.0,0.0,0.804,0.477,0.982,1.282,0.263,1.087,28.097,10.44,10.042,0.0,0.0,44.776,5.741,11.111,48.27,5.741,11.111,21.833,0.22,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-beds-5.xml,83.53,84.094,72.9942,87.386,0.20936,0.9925,1.0289,1.0176,1.0391,1.0,61.2082,0.0,0.0,30.886,10.503,14.123,49.221,5.796,15.456,28.582,0.0,0.0,0.804,0.476,0.993,1.282,0.263,1.087,28.323,10.612,11.494,0.0,0.0,45.137,5.856,12.579,48.659,5.856,12.579,22.188,0.377,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,152.36,10401.69,6569.74,1.0391,54.12,1.0,54.12,83.31,83.31,0.0,48.4,1.0,48.4,83.31,83.31,0.0,83.31,85.01,73.5852,88.3234,0.20846,0.9926,1.0288,1.0175,1.039,1.0,61.789,0.0,0.0,30.84,10.528,14.525,49.148,5.808,15.859,29.117,0.0,0.0,0.804,0.476,0.996,1.282,0.263,1.087,28.295,10.631,11.734,0.0,0.0,45.091,5.865,12.812,48.61,5.865,12.812,22.548,0.377,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-ceilingtypes.xml,95.07,77.47,73.8773,77.7061,0.06425,0.9977,1.0,1.0054,1.003,1.0,60.3892,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,34.231,10.353,8.245,0.0,0.0,54.55,5.648,9.307,58.807,5.648,9.307,20.985,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,188.88,11489.05,6064.37,1.003,55.48,1.0,55.48,94.94,94.94,0.0,50.04,1.0,50.04,94.94,94.94,0.0,94.94,77.798,74.0865,78.034,0.06394,0.9977,1.0,1.0053,1.003,1.0,60.5948,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,34.222,10.358,8.329,0.0,0.0,54.535,5.651,9.387,58.791,5.651,9.387,21.115,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-floortypes.xml,100.25,57.173,60.5136,60.3602,0.21019,1.0374,1.0,1.0176,1.0557,1.0,49.5484,0.0,0.0,19.483,8.406,10.343,31.055,4.575,11.671,18.941,0.0,0.0,0.804,0.482,0.963,1.282,0.263,1.087,28.124,8.792,8.424,0.0,0.0,44.829,4.785,9.506,48.327,4.785,9.506,14.828,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,197.78,9411.71,4507.47,1.0557,54.09,1.0,54.09,100.06,100.06,0.0,48.67,1.0,48.67,100.06,100.06,0.0,100.06,57.502,60.7291,60.6933,0.20928,1.0373,1.0,1.0176,1.0555,1.0,49.7584,0.0,0.0,19.467,8.415,10.487,31.03,4.58,11.814,19.133,0.0,0.0,0.804,0.482,0.965,1.282,0.263,1.087,28.115,8.797,8.514,0.0,0.0,44.815,4.788,9.591,48.312,4.788,9.591,14.958,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-garage.xml,88.37,75.349,67.2506,76.103,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.384,0.0,0.0,29.39,8.684,10.343,46.837,4.84,11.677,26.932,0.0,0.0,0.804,0.471,0.963,1.282,0.263,1.087,30.957,7.012,8.322,0.0,0.0,49.334,3.908,9.395,53.184,3.908,9.395,20.897,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,175.34,10531.41,5946.85,1.01,56.13,1.0,56.13,88.26,88.26,0.0,50.41,1.0,50.41,88.26,88.26,0.0,88.26,75.684,67.4655,76.4381,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.5952,0.0,0.0,29.389,8.684,10.487,46.835,4.84,11.821,27.124,0.0,0.0,0.804,0.471,0.964,1.282,0.263,1.087,30.956,7.012,8.408,0.0,0.0,49.332,3.908,9.477,53.182,3.908,9.477,21.027,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-ach-house-pressure.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.57,9896.04,6064.37,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-cfm-house-pressure.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.57,9896.04,6064.37,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-cfm50.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.57,9896.04,6064.37,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-ela.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.57,9896.04,6064.37,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-natural-ach.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.57,9896.04,6064.37,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-infil-natural-cfm.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.57,9896.04,6064.37,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-overhangs.xml,86.09,77.47,67.3594,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8344,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,28.041,10.022,8.243,0.0,0.0,44.687,5.467,9.305,48.174,5.467,9.305,20.99,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.93,9918.11,6064.37,1.01,55.6,1.0,55.6,86.0,86.0,0.0,50.12,1.0,50.12,86.0,86.0,0.0,86.0,77.798,67.5702,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.0402,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,28.031,10.028,8.328,0.0,0.0,44.67,5.471,9.386,48.156,5.471,9.386,21.12,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-skylights-cathedral.xml,73.12,101.298,72.2394,98.8005,0.15694,0.9753,1.0,1.0,0.9753,1.0,60.9356,0.0,0.0,42.152,13.659,10.343,67.183,7.376,11.675,35.144,0.0,0.0,0.804,0.486,0.963,1.282,0.263,1.087,26.746,10.25,8.103,0.0,0.0,42.629,5.535,9.147,45.955,5.535,9.147,27.14,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,130.6,10085.42,7917.79,0.9753,55.87,1.0,55.87,73.09,73.09,0.0,50.57,1.0,50.57,73.09,73.09,0.0,73.09,101.626,72.4498,99.1306,0.15629,0.9754,1.0,1.0,0.9754,1.0,61.1408,0.0,0.0,42.136,13.667,10.487,67.157,7.379,11.818,35.336,0.0,0.0,0.804,0.486,0.965,1.282,0.263,1.087,26.739,10.254,8.187,0.0,0.0,42.617,5.536,9.226,45.943,5.536,9.226,27.27,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-skylights.xml,89.18,77.47,69.602,78.0456,0.15628,0.9944,1.0,1.0131,1.0074,1.0,57.0302,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.993,12.309,8.242,0.0,0.0,44.61,6.715,9.303,48.091,6.715,9.303,20.995,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,163.6,9995.31,6064.37,1.0074,55.6,1.0,55.6,89.08,89.08,0.0,50.12,1.0,50.12,89.08,89.08,0.0,89.08,77.798,69.8113,78.3735,0.15559,0.9944,1.0,1.013,1.0074,1.0,57.2368,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.984,12.313,8.326,0.0,0.0,44.594,6.718,9.384,48.074,6.718,9.384,21.125,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-enclosure-walltypes.xml,98.58,77.423,76.133,77.2261,-0.05376,1.0019,1.0,0.9955,0.9975,1.0,62.5594,0.0,0.0,30.079,9.962,10.343,47.935,5.433,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,39.37,7.474,8.248,0.0,0.0,62.742,4.076,9.31,67.638,4.076,9.31,20.978,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,209.57,12664.84,6058.57,0.9975,55.74,1.0,55.74,98.44,98.44,0.0,50.22,1.0,50.22,98.44,98.44,0.0,98.44,77.751,76.3404,77.554,-0.05355,1.0019,1.0,0.9956,0.9975,1.0,62.7644,0.0,0.0,30.063,9.97,10.487,47.909,5.438,11.819,27.231,0.0,0.0,0.804,0.481,0.964,1.282,0.263,1.087,39.359,7.478,8.332,0.0,0.0,62.723,4.079,9.39,67.618,4.079,9.39,21.108,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-ambient.xml,87.05,57.173,52.5433,60.3602,0.21019,1.0374,1.0,1.0176,1.0557,1.0,43.495,0.0,0.0,19.483,8.406,10.343,31.055,4.575,11.671,18.941,0.0,0.0,0.804,0.482,0.963,1.282,0.263,1.087,18.123,10.804,8.415,0.0,0.0,28.887,5.88,9.495,31.141,5.88,9.495,14.857,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,146.8,6985.95,4507.47,1.0557,54.27,1.0,54.27,86.92,86.92,0.0,48.85,1.0,48.85,86.92,86.92,0.0,86.92,57.502,52.7575,60.6933,0.20928,1.0373,1.0,1.0176,1.0555,1.0,43.705,0.0,0.0,19.467,8.415,10.487,31.03,4.58,11.814,19.133,0.0,0.0,0.804,0.482,0.965,1.282,0.263,1.087,18.113,10.809,8.502,0.0,0.0,28.872,5.883,9.578,31.125,5.883,9.578,14.988,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-basement-garage.xml,83.98,68.462,59.387,70.7172,0.21019,1.015,1.0,1.0176,1.0329,1.0,49.3752,0.0,0.0,27.281,8.264,10.343,43.472,4.562,11.676,22.574,0.0,0.0,0.805,0.476,0.963,1.282,0.263,1.087,23.438,9.777,8.453,0.0,0.0,37.348,5.397,9.542,40.262,5.397,9.542,17.49,0.23,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,153.29,8499.17,5367.54,1.0329,54.61,1.0,54.61,83.89,83.89,0.0,49.41,1.0,49.41,83.89,83.89,0.0,83.89,68.79,59.6022,71.0461,0.20928,1.015,1.0,1.0176,1.0328,1.0,49.5844,0.0,0.0,27.264,8.273,10.487,43.447,4.565,11.822,22.766,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,23.426,9.786,8.54,0.0,0.0,37.331,5.4,9.627,40.244,5.4,9.627,17.62,0.23,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,86.51,77.47,67.6889,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.848,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.068,11.321,8.243,0.0,0.0,43.136,6.176,9.304,46.502,6.176,9.304,20.994,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,158.76,9724.27,6064.37,1.01,55.6,1.0,55.6,86.41,86.41,0.0,50.12,1.0,50.12,86.41,86.41,0.0,86.41,77.798,67.8968,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.0538,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.058,11.325,8.326,0.0,0.0,43.119,6.179,9.384,46.484,6.179,9.384,21.124,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,87.14,75.684,66.6128,76.4414,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.4262,0.0,0.0,28.692,9.61,10.343,45.725,5.299,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,27.725,9.592,8.244,0.0,0.0,44.183,5.289,9.306,47.631,5.289,9.306,20.989,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,163.84,9826.5,5938.04,1.01,56.5,1.0,56.5,87.05,87.05,0.0,50.85,1.0,50.85,87.05,87.05,0.0,87.05,76.013,66.8261,76.7704,0.20928,0.9925,1.0,1.0176,1.01,1.0,55.6314,0.0,0.0,28.676,9.619,10.487,45.699,5.303,11.819,27.231,0.0,0.0,0.804,0.476,0.964,1.282,0.263,1.087,27.715,9.601,8.328,0.0,0.0,44.167,5.293,9.386,47.614,5.293,9.386,21.119,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-multiple.xml,81.37,56.035,48.1349,59.1587,0.21019,1.0374,1.0,1.0176,1.0557,1.0,40.7624,0.0,0.0,19.461,7.603,10.343,31.021,4.217,11.862,18.628,0.0,0.0,0.804,0.473,0.948,1.282,0.263,1.087,15.601,9.278,8.257,0.0,0.0,24.868,5.146,9.47,26.808,5.146,9.47,14.654,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,133.55,6278.87,4453.1,1.0557,53.7,1.0,53.7,81.26,81.26,0.0,48.14,1.0,48.14,81.26,81.26,0.0,81.26,56.372,48.3513,59.5006,0.20928,1.0373,1.0,1.0176,1.0555,1.0,40.9746,0.0,0.0,19.46,7.604,10.487,31.019,4.218,12.006,18.821,0.0,0.0,0.804,0.473,0.949,1.282,0.263,1.087,15.599,9.279,8.344,0.0,0.0,24.865,5.147,9.553,26.805,5.147,9.553,14.784,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-slab.xml,70.62,58.214,43.4025,61.4592,0.21019,1.0374,1.0,1.0176,1.0557,1.0,37.577,0.0,0.0,21.257,7.68,10.343,33.873,4.245,11.675,18.934,0.0,0.0,0.805,0.475,0.963,1.282,0.263,1.087,12.021,7.767,8.412,0.0,0.0,19.155,4.293,9.495,20.65,4.293,9.495,14.858,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,110.66,5339.13,4570.08,1.0557,53.78,1.0,53.78,70.59,70.59,0.0,48.13,1.0,48.13,70.59,70.59,0.0,70.59,58.543,43.619,61.7921,0.20928,1.0373,1.0,1.0176,1.0555,1.0,37.7886,0.0,0.0,21.241,7.689,10.487,33.848,4.25,11.819,19.126,0.0,0.0,0.805,0.475,0.964,1.282,0.263,1.087,12.014,7.772,8.499,0.0,0.0,19.145,4.296,9.579,20.639,4.296,9.579,14.988,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unconditioned-basement-assembly-r.xml,77.84,56.279,46.251,59.4163,0.21019,1.0374,1.0,1.0176,1.0557,1.0,39.507,0.0,0.0,19.466,7.844,10.343,31.029,4.33,11.864,18.626,0.0,0.0,0.804,0.476,0.948,1.282,0.263,1.087,14.512,8.52,8.277,0.0,0.0,23.133,4.703,9.494,24.938,4.703,9.494,14.597,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,126.88,5972.45,4458.67,1.0557,53.25,1.0,53.25,77.76,77.76,0.0,47.75,1.0,47.75,77.76,77.76,0.0,77.76,56.615,46.4687,59.7571,0.20928,1.0373,1.0,1.0176,1.0555,1.0,39.7188,0.0,0.0,19.465,7.845,10.487,31.027,4.33,12.007,18.818,0.0,0.0,0.804,0.476,0.949,1.282,0.263,1.087,14.51,8.523,8.364,0.0,0.0,23.129,4.704,9.576,24.934,4.704,9.576,14.727,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unconditioned-basement-wall-insulation.xml,83.56,56.279,49.6488,59.4163,0.21019,1.0374,1.0,1.0176,1.0557,1.0,42.01,0.0,0.0,19.466,7.844,10.343,31.029,4.33,11.864,18.626,0.0,0.0,0.804,0.476,0.948,1.282,0.263,1.087,18.206,8.156,8.24,0.0,0.0,29.02,4.502,9.452,31.285,4.502,9.452,14.702,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,146.35,6888.87,4458.67,1.0557,53.25,1.0,53.25,83.45,83.45,0.0,47.75,1.0,47.75,83.45,83.45,0.0,83.45,56.615,49.8679,59.7571,0.20928,1.0373,1.0,1.0176,1.0555,1.0,42.2206,0.0,0.0,19.465,7.845,10.487,31.027,4.33,12.007,18.818,0.0,0.0,0.804,0.476,0.949,1.282,0.263,1.087,18.203,8.16,8.328,0.0,0.0,29.015,4.504,9.535,31.279,4.504,9.535,14.832,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unconditioned-basement.xml,81.37,56.279,48.3463,59.4163,0.21019,1.0374,1.0,1.0176,1.0557,1.0,40.8496,0.0,0.0,19.466,7.844,10.343,31.029,4.33,11.864,18.626,0.0,0.0,0.804,0.476,0.948,1.282,0.263,1.087,15.632,9.491,8.272,0.0,0.0,24.918,5.239,9.489,26.862,5.239,9.489,14.606,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,133.64,6290.89,4458.67,1.0557,53.25,1.0,53.25,81.27,81.27,0.0,47.75,1.0,47.75,81.27,81.27,0.0,81.27,56.615,48.5665,59.7571,0.20928,1.0373,1.0,1.0176,1.0555,1.0,41.0604,0.0,0.0,19.465,7.845,10.487,31.027,4.33,12.007,18.818,0.0,0.0,0.804,0.476,0.949,1.282,0.263,1.087,15.63,9.494,8.36,0.0,0.0,24.915,5.24,9.572,26.859,5.24,9.572,14.737,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-unvented-crawlspace.xml,79.46,55.673,46.7063,58.7765,0.21019,1.0374,1.0,1.0176,1.0557,1.0,39.6092,0.0,0.0,17.471,8.912,10.343,27.851,4.836,11.667,18.947,0.0,0.0,0.804,0.484,0.964,1.282,0.263,1.087,13.533,9.452,8.51,0.0,0.0,21.573,5.129,9.599,23.256,5.129,9.599,14.867,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,125.29,5786.96,4374.89,1.0557,55.61,1.0,55.61,79.38,79.38,0.0,50.08,1.0,50.08,79.38,79.38,0.0,79.38,56.004,46.9242,59.1122,0.20928,1.0373,1.0,1.0176,1.0555,1.0,39.82,0.0,0.0,17.456,8.922,10.487,27.826,4.841,11.81,19.139,0.0,0.0,0.804,0.484,0.965,1.282,0.263,1.087,13.526,9.458,8.598,0.0,0.0,21.561,5.132,9.683,23.243,5.132,9.683,14.997,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-vented-crawlspace-above-grade.xml,82.91,55.789,48.8322,58.899,0.21019,1.0374,1.0,1.0176,1.0557,1.0,41.1728,0.0,0.0,17.832,8.669,10.343,28.427,4.723,11.668,18.945,0.0,0.0,0.804,0.482,0.964,1.282,0.263,1.087,15.546,9.484,8.595,0.0,0.0,24.783,5.167,9.696,26.717,5.167,9.696,14.862,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,135.96,6303.89,4391.68,1.0557,55.85,1.0,55.85,82.8,82.8,0.0,50.34,1.0,50.34,82.8,82.8,0.0,82.8,56.12,49.0485,59.2346,0.20928,1.0373,1.0,1.0176,1.0555,1.0,41.3832,0.0,0.0,17.817,8.679,10.487,28.402,4.728,11.812,19.137,0.0,0.0,0.804,0.482,0.965,1.282,0.263,1.087,15.538,9.49,8.683,0.0,0.0,24.769,5.17,9.78,26.702,5.17,9.78,14.992,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-vented-crawlspace.xml,82.41,55.673,48.4377,58.7765,0.21019,1.0374,1.0,1.0176,1.0557,1.0,40.8906,0.0,0.0,17.471,8.912,10.343,27.851,4.836,11.667,18.947,0.0,0.0,0.804,0.484,0.964,1.282,0.263,1.087,15.255,9.375,8.6,0.0,0.0,24.318,5.087,9.701,26.216,5.087,9.701,14.863,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,134.79,6225.62,4374.89,1.0557,55.61,1.0,55.61,82.31,82.31,0.0,50.08,1.0,50.08,82.31,82.31,0.0,82.31,56.004,48.6547,59.1122,0.20928,1.0373,1.0,1.0176,1.0555,1.0,41.1,0.0,0.0,17.456,8.922,10.487,27.826,4.841,11.81,19.139,0.0,0.0,0.804,0.484,0.965,1.282,0.263,1.087,15.247,9.381,8.689,0.0,0.0,24.304,5.09,9.785,26.201,5.09,9.785,14.993,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-foundation-walkout-basement.xml,87.93,82.357,71.8764,81.7395,0.21019,0.9925,1.0,1.0,0.9925,1.0,58.9422,0.0,0.0,33.823,11.154,10.343,53.904,6.09,11.676,27.037,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,31.806,10.777,8.244,0.0,0.0,50.69,5.884,9.306,54.645,5.884,9.306,20.987,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,170.87,10889.5,6421.11,0.9925,55.4,1.0,55.4,87.84,87.84,0.0,50.39,1.0,50.39,87.84,87.84,0.0,87.84,82.685,72.086,82.0677,0.20928,0.9925,1.0,1.0,0.9925,1.0,59.1484,0.0,0.0,33.807,11.162,10.487,53.878,6.095,11.82,27.229,0.0,0.0,0.804,0.481,0.964,1.282,0.263,1.087,31.796,10.781,8.328,0.0,0.0,50.674,5.887,9.387,54.628,5.887,9.387,21.117,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,87.92,77.469,68.7915,78.2427,0.20977,0.9925,1.0,1.0176,1.01,1.0,55.2622,0.0,0.0,30.116,9.971,10.343,47.993,5.474,11.675,27.039,0.0,0.0,0.804,0.478,0.963,1.282,0.263,1.087,29.268,10.226,8.243,0.0,0.0,46.642,5.614,9.305,46.644,5.614,9.305,20.991,0.063,0.0,1.282,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,158.38,9712.83,6071.97,1.01,69.9,1.0,69.9,87.82,87.82,0.0,61.05,1.0,61.05,87.82,87.82,0.0,87.82,77.798,68.9991,78.5716,0.20887,0.9925,1.0,1.0175,1.0099,1.0,55.468,0.0,0.0,30.1,9.98,10.487,47.967,5.479,11.819,27.231,0.0,0.0,0.805,0.478,0.964,1.282,0.263,1.087,29.256,10.231,8.327,0.0,0.0,46.623,5.617,9.385,46.625,5.617,9.385,21.121,0.063,0.0,1.282,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,88.09,77.469,68.9136,78.2348,0.20766,0.9926,1.0,1.0174,1.0099,1.0,63.221,0.0,0.0,30.117,9.97,10.343,27.289,5.501,11.675,27.039,0.0,0.0,0.489,0.476,0.963,0.443,0.263,1.087,30.996,8.62,8.243,0.0,0.0,28.086,4.756,9.305,28.107,4.756,9.305,20.991,0.063,0.0,0.414,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,88.08,5403.09,6073.93,1.0099,55.58,1.0,55.58,87.98,87.98,0.0,50.77,1.0,50.77,87.98,87.98,0.0,87.98,77.797,69.1234,78.5627,0.20676,0.9926,1.0,1.0173,1.0098,1.0,63.425,0.0,0.0,30.1,9.979,10.487,27.276,5.504,11.819,27.231,0.0,0.0,0.489,0.476,0.964,0.443,0.263,1.087,30.984,8.628,8.327,0.0,0.0,28.077,4.759,9.385,28.098,4.759,9.385,21.121,0.063,0.0,0.414,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,88.92,77.499,69.6046,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,63.779,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,31.689,8.618,8.243,0.0,0.0,28.805,4.595,9.305,28.827,4.595,9.305,20.991,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,89.02,5452.54,6064.37,1.01,53.55,1.0,53.55,88.82,88.82,0.0,48.71,1.0,48.71,88.82,88.82,0.0,88.82,77.828,69.8121,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,63.983,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,31.678,8.623,8.327,0.0,0.0,28.797,4.598,9.385,28.819,4.598,9.385,21.121,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer-hspf.xml,91.63,77.499,71.7252,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,65.481,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,33.204,9.224,8.243,0.0,0.0,30.182,4.918,9.305,30.205,4.918,9.305,20.991,0.063,0.0,0.443,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,91.42,5599.29,6064.37,1.01,53.55,1.0,53.55,91.52,91.52,0.0,48.71,1.0,48.71,91.52,91.52,0.0,91.52,77.828,71.9333,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,65.684,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,33.191,9.231,8.327,0.0,0.0,30.173,4.922,9.385,30.196,4.922,9.385,21.121,0.063,0.0,0.443,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,87.6,77.499,68.5692,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,62.884,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,30.776,8.496,8.243,0.0,0.0,27.975,4.53,9.305,27.996,4.53,9.305,20.991,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,87.7,5371.89,6064.37,1.01,53.55,1.0,53.55,87.5,87.5,0.0,48.71,1.0,48.71,87.5,87.5,0.0,87.5,77.828,68.7757,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,63.088,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,30.763,8.501,8.327,0.0,0.0,27.966,4.533,9.385,27.987,4.533,9.385,21.121,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,81.91,77.499,64.1138,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,59.205,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,27.316,7.5,8.243,0.0,0.0,24.83,3.999,9.305,24.849,3.999,9.305,20.991,0.063,0.0,0.354,0.191,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,82.48,5052.03,6064.37,1.01,53.55,1.0,53.55,81.83,81.83,0.0,48.71,1.0,48.71,81.83,81.83,0.0,81.83,77.828,64.3207,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,59.41,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,27.304,7.505,8.327,0.0,0.0,24.821,4.002,9.385,24.84,4.002,9.385,21.121,0.063,0.0,0.354,0.191,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,82.75,77.499,64.7682,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,59.886,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,28.196,7.275,8.243,0.0,0.0,25.63,3.879,9.305,25.649,3.879,9.305,20.991,0.063,0.0,0.315,0.154,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,83.32,5103.13,6064.37,1.01,53.55,1.0,53.55,82.66,82.66,0.0,48.71,1.0,48.71,82.66,82.66,0.0,82.66,77.828,64.9764,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,60.091,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,28.187,7.278,8.327,0.0,0.0,25.624,3.881,9.385,25.643,3.881,9.385,21.121,0.063,0.0,0.315,0.154,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-boiler-elec-only.xml,93.05,77.469,72.8003,78.2348,0.20766,0.9926,1.0,1.0174,1.0099,1.0,66.747,0.0,0.0,30.117,9.97,10.343,27.289,5.501,11.675,27.039,0.0,0.0,0.489,0.476,0.963,0.443,0.263,1.087,34.885,8.618,8.243,0.0,0.0,31.609,4.755,9.305,31.633,4.755,9.305,20.991,0.063,0.0,1.02,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,92.58,5678.87,6073.93,1.0099,55.58,1.0,55.58,92.93,92.93,0.0,50.77,1.0,50.77,92.93,92.93,0.0,92.93,77.797,73.0082,78.5627,0.20676,0.9926,1.0,1.0173,1.0098,1.0,66.947,0.0,0.0,30.1,9.979,10.487,27.276,5.504,11.819,27.231,0.0,0.0,0.489,0.476,0.964,0.443,0.263,1.087,34.869,8.628,8.327,0.0,0.0,31.597,4.759,9.385,31.621,4.759,9.385,21.121,0.063,0.0,1.02,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-boiler-gas-only.xml,72.25,77.469,56.5577,78.2768,0.21899,0.9922,1.0,1.0184,1.0104,1.0,48.7244,0.0,0.0,30.117,9.97,10.343,49.212,5.501,11.675,27.039,0.0,0.0,0.765,0.476,0.963,1.25,0.263,1.087,18.642,8.618,8.243,0.0,0.0,30.462,4.755,9.305,33.681,4.755,9.305,20.991,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,126.86,7785.9,6073.93,1.0104,56.56,1.0,56.56,72.23,72.23,0.0,51.23,1.0,51.23,72.23,72.23,0.0,72.23,77.797,56.774,78.6047,0.21804,0.9922,1.0,1.0183,1.0104,1.0,48.9312,0.0,0.0,30.1,9.979,10.487,49.186,5.504,11.819,27.231,0.0,0.0,0.765,0.476,0.964,1.25,0.263,1.087,18.634,8.628,8.327,0.0,0.0,30.45,4.759,9.385,33.668,4.759,9.385,21.121,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-boiler-oil-only.xml,72.27,77.469,56.571,78.2768,0.21899,0.9922,1.0,1.0184,1.0104,1.0,48.862,0.0,0.0,30.117,9.97,10.343,49.212,5.501,11.675,27.039,0.0,0.0,0.765,0.476,0.963,1.25,0.263,1.087,18.656,8.618,8.243,0.0,0.0,30.484,4.755,9.305,33.705,4.755,9.305,20.991,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,153.06,9393.44,6073.93,1.0104,56.56,1.0,56.56,72.24,72.24,0.0,51.23,1.0,51.23,72.24,72.24,0.0,72.24,77.797,56.7868,78.6047,0.21804,0.9922,1.0,1.0183,1.0104,1.0,49.0688,0.0,0.0,30.1,9.979,10.487,49.186,5.504,11.819,27.231,0.0,0.0,0.765,0.476,0.964,1.25,0.263,1.087,18.647,8.628,8.327,0.0,0.0,30.471,4.759,9.385,33.691,4.759,9.385,21.121,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-boiler-propane-only.xml,72.25,77.469,56.5577,78.2768,0.21899,0.9922,1.0,1.0184,1.0104,1.0,48.7244,0.0,0.0,30.117,9.97,10.343,49.212,5.501,11.675,27.039,0.0,0.0,0.765,0.476,0.963,1.25,0.263,1.087,18.642,8.618,8.243,0.0,0.0,30.462,4.755,9.305,33.681,4.755,9.305,20.991,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,143.49,8806.16,6073.93,1.0104,56.56,1.0,56.56,72.23,72.23,0.0,51.23,1.0,51.23,72.23,72.23,0.0,72.23,77.797,56.774,78.6047,0.21804,0.9922,1.0,1.0183,1.0104,1.0,48.9312,0.0,0.0,30.1,9.979,10.487,49.186,5.504,11.819,27.231,0.0,0.0,0.765,0.476,0.964,1.25,0.263,1.087,18.634,8.628,8.327,0.0,0.0,30.45,4.759,9.385,33.668,4.759,9.385,21.121,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-1-speed-seer.xml,89.13,77.468,69.7389,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,55.8132,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.268,11.174,8.243,0.0,0.0,46.642,6.165,9.305,46.644,6.165,9.305,20.991,0.063,0.0,1.282,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,158.98,9752.59,6073.93,1.01,70.15,1.0,70.15,89.03,89.03,0.0,61.25,1.0,61.25,89.03,89.03,0.0,89.03,77.797,69.9525,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,56.019,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,11.185,8.327,0.0,0.0,46.623,6.169,9.385,46.625,6.169,9.385,21.121,0.063,0.0,1.282,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-1-speed.xml,88.1,77.468,68.9324,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,55.3682,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.268,10.367,8.243,0.0,0.0,46.642,5.72,9.305,46.644,5.72,9.305,20.991,0.063,0.0,1.282,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,158.45,9720.5,6073.93,1.01,70.15,1.0,70.15,88.0,88.0,0.0,61.25,1.0,61.25,88.0,88.0,0.0,88.0,77.797,69.1456,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,55.574,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,10.378,8.327,0.0,0.0,46.623,5.724,9.385,46.625,5.724,9.385,21.121,0.063,0.0,1.282,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-2-speed.xml,86.67,77.468,67.8087,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,54.7482,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.268,9.243,8.243,0.0,0.0,46.642,5.1,9.305,46.644,5.1,9.305,20.991,0.063,0.0,1.282,0.191,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,157.73,9675.98,6073.93,1.01,70.15,1.0,70.15,86.57,86.57,0.0,61.25,1.0,61.25,86.57,86.57,0.0,86.57,77.797,68.0197,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,54.953,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,9.252,8.327,0.0,0.0,46.623,5.103,9.385,46.625,5.103,9.385,21.121,0.063,0.0,1.282,0.191,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-var-speed.xml,85.64,77.468,67.0088,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,54.3078,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,8.444,8.243,0.0,0.0,46.641,4.659,9.305,46.643,4.659,9.305,20.991,0.063,0.0,1.282,0.141,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,157.17,9641.86,6073.93,1.01,70.15,1.0,70.15,85.55,85.55,0.0,61.25,1.0,61.25,85.55,85.55,0.0,85.55,77.797,67.2177,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,54.5116,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,8.451,8.327,0.0,0.0,46.622,4.661,9.385,46.624,4.661,9.385,21.121,0.063,0.0,1.282,0.141,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,90.61,77.499,70.923,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,64.185,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,30.898,10.728,8.243,0.0,0.0,28.086,5.72,9.305,28.107,5.72,9.305,20.991,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,89.4,5475.65,6064.37,1.01,53.55,1.0,53.55,90.5,90.5,0.0,48.71,1.0,48.71,90.5,90.5,0.0,90.5,77.828,71.1313,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,64.389,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,30.885,10.735,8.327,0.0,0.0,28.077,5.724,9.385,28.098,5.724,9.385,21.121,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-dse.xml,78.96,77.47,61.7787,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,51.9796,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,23.112,9.369,8.243,0.0,0.0,36.832,5.111,9.305,39.706,5.111,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,141.28,8653.37,6064.37,1.01,55.6,1.0,55.6,78.89,78.89,0.0,50.1,1.0,50.1,78.89,78.89,0.0,78.89,77.798,61.9885,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,52.1856,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,23.104,9.373,8.327,0.0,0.0,36.818,5.114,9.385,39.691,5.114,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,91.25,77.5,71.4313,78.2818,0.21187,0.9924,1.0,1.0178,1.0101,1.0,61.0618,0.0,0.0,30.118,10.0,10.343,44.502,5.274,11.675,27.039,0.0,0.0,1.381,0.498,0.963,1.725,0.263,1.087,32.619,9.515,8.243,0.0,0.0,47.760000000000005,5.018,9.305,52.051,5.018,9.305,20.991,0.063,0.0,1.467,0.242,1.042,3.3504,0.403,3.809,0.0,0.92,0.0,163.67,10025.64,6064.37,1.0101,54.34,1.0,54.34,91.14,91.14,0.0,49.1,1.0,49.1,91.14,91.14,0.0,91.14,77.829,71.6422,78.6107,0.21097,0.9925,1.0,1.0177,1.01,1.0,61.2688,0.0,0.0,30.102,10.009,10.487,44.481,5.279,11.819,27.231,0.0,0.0,1.381,0.498,0.964,1.725,0.263,1.087,32.611,9.52,8.327,0.0,0.0,47.749,5.021,9.385,52.039,5.021,9.385,21.121,0.063,0.0,1.467,0.242,1.042,3.3504,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-areas.xml,79.62,77.47,62.2994,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,52.4552,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,24.253,8.749,8.243,0.0,0.0,38.649,4.773,9.305,41.665,4.773,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,145.55,8914.73,6064.37,1.01,55.6,1.0,55.6,79.56,79.56,0.0,50.12,1.0,50.12,79.56,79.56,0.0,79.56,77.798,62.5112,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,52.6612,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,24.244,8.756,8.327,0.0,0.0,38.635,4.777,9.385,41.65,4.777,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-buried.xml,79.63,77.47,62.3059,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,52.4594,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,24.257,8.751,8.243,0.0,0.0,38.657,4.774,9.305,41.673,4.774,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,145.57,8915.95,6064.37,1.01,55.6,1.0,55.6,79.56,79.56,0.0,50.12,1.0,50.12,79.56,79.56,0.0,79.56,77.798,62.5158,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,52.6654,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,24.249,8.756,8.327,0.0,0.0,38.643,4.777,9.385,41.658,4.777,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-leakage-cfm50.xml,85.22,77.47,66.6806,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.3396,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.299,10.084,8.243,0.0,0.0,43.504,5.501,9.305,46.899,5.501,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,158.92,9733.71,6064.37,1.01,55.6,1.0,55.6,85.13,85.13,0.0,50.12,1.0,50.12,85.13,85.13,0.0,85.13,77.798,66.891,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,55.5448,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.29,10.09,8.327,0.0,0.0,43.488,5.505,9.385,46.882,5.505,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-elec-resistance-only.xml,89.75,77.469,70.2186,78.2348,0.20766,0.9926,1.0,1.0174,1.0099,1.0,64.405,0.0,0.0,30.117,9.97,10.343,27.289,5.501,11.675,27.039,0.0,0.0,0.489,0.476,0.963,0.443,0.263,1.087,32.303,8.618,8.243,0.0,0.0,29.27,4.755,9.305,29.292,4.755,9.305,20.991,0.063,0.0,1.0,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,89.29,5476.77,6073.93,1.0099,55.58,1.0,55.58,89.64,89.64,0.0,50.77,1.0,50.77,89.64,89.64,0.0,89.64,77.797,70.4268,78.5627,0.20676,0.9926,1.0,1.0173,1.0098,1.0,64.606,0.0,0.0,30.1,9.979,10.487,27.276,5.504,11.819,27.231,0.0,0.0,0.489,0.476,0.964,0.443,0.263,1.087,32.287,8.628,8.327,0.0,0.0,29.258,4.759,9.385,29.28,4.759,9.385,21.121,0.063,0.0,1.0,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-evap-cooler-only-ducted.xml,76.59,77.468,59.9277,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,50.3998,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,1.363,8.243,0.0,0.0,46.641,0.752,9.305,46.643,0.752,9.305,20.991,0.063,0.0,1.282,0.228,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,152.49,9354.58,6073.93,1.01,70.15,1.0,70.15,76.53,76.53,0.0,61.25,1.0,61.25,76.53,76.53,0.0,76.53,77.797,60.1305,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,50.6026,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,1.363,8.327,0.0,0.0,46.622,0.752,9.385,46.624,0.752,9.385,21.121,0.063,0.0,1.282,0.228,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-evap-cooler-only.xml,76.16,77.468,59.5924,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,50.2148,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,1.028,8.243,0.0,0.0,46.641,0.567,9.305,46.643,0.567,9.305,20.991,0.063,0.0,1.282,0.228,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,152.28,9341.58,6073.93,1.01,70.15,1.0,70.15,76.1,76.1,0.0,61.25,1.0,61.25,76.1,76.1,0.0,76.1,77.797,59.7951,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,50.4166,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,1.028,8.327,0.0,0.0,46.622,0.567,9.385,46.624,0.567,9.385,21.121,0.063,0.0,1.282,0.228,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-fan-motor-type.xml,87.19,77.47,68.2251,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.1584,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.942,10.986,8.243,0.0,0.0,44.528,5.993,9.305,48.003,5.993,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,162.33,9942.77,6064.37,1.01,55.6,1.0,55.6,87.09,87.09,0.0,50.12,1.0,50.12,87.09,87.09,0.0,87.09,77.798,68.433,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.3636,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.932,10.99,8.327,0.0,0.0,44.512,5.996,9.385,47.985,5.996,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 base-hvac-fireplace-wood-only.xml,77.52,77.468,60.6524,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,49.7596,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,22.737,8.618,8.243,0.0,0.0,36.234,4.755,9.305,36.614,4.755,9.305,20.991,0.063,0.0,1.25,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,57.0,1.0,57.0,77.47,77.47,0.0,51.58,1.0,51.58,77.47,77.47,0.0,77.47,77.797,60.8676,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,49.9656,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,22.728,8.628,8.327,0.0,0.0,36.219,4.759,9.385,36.599,4.759,9.385,21.121,0.063,0.0,1.25,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-floor-furnace-propane-only.xml,77.52,77.468,60.6524,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,49.7596,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,22.737,8.618,8.243,0.0,0.0,36.234,4.755,9.305,36.614,4.755,9.305,20.991,0.063,0.0,1.25,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,152.45,9347.75,6071.27,1.01,57.0,1.0,57.0,77.47,77.47,0.0,51.58,1.0,51.58,77.47,77.47,0.0,77.47,77.797,60.8676,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,49.9656,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,22.728,8.628,8.327,0.0,0.0,36.219,4.759,9.385,36.599,4.759,9.385,21.121,0.063,0.0,1.25,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-furnace-elec-only.xml,113.42,77.469,88.7338,78.2348,0.20765,0.9926,1.0,1.0174,1.0099,1.0,81.149,0.0,0.0,30.117,9.97,10.343,27.262,5.501,11.675,27.039,0.0,0.0,0.489,0.476,0.963,0.443,0.263,1.087,50.817,8.62,8.243,0.0,0.0,45.999,4.756,9.305,46.034,4.756,9.305,20.991,0.063,0.0,1.02,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,113.76,6974.73,6071.27,1.0099,55.53,1.0,55.53,113.2,113.2,0.0,50.72,1.0,50.72,113.2,113.2,0.0,113.2,77.797,88.9311,78.5627,0.20675,0.9926,1.0,1.0173,1.0098,1.0,81.344,0.0,0.0,30.1,9.979,10.487,27.25,5.504,11.819,27.231,0.0,0.0,0.489,0.476,0.964,0.443,0.263,1.087,50.791,8.628,8.327,0.0,0.0,45.982,4.759,9.385,46.017,4.759,9.385,21.121,0.063,0.0,1.02,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-furnace-gas-only.xml,84.88,77.468,66.4115,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,55.4754,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,28.494,8.62,8.243,0.0,0.0,45.409,4.756,9.305,48.952,4.756,9.305,20.991,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,162.65,9973.72,6071.27,1.01,57.0,1.0,57.0,84.8,84.8,0.0,51.58,1.0,51.58,84.8,84.8,0.0,84.8,77.797,66.6238,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,55.6802,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,28.484,8.628,8.327,0.0,0.0,45.392,4.759,9.385,48.934,4.759,9.385,21.121,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-furnace-gas-plus-air-to-air-heat-pump-cooling.xml,87.01,77.47,68.0846,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.3344,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,28.494,10.293,8.243,0.0,0.0,45.409,5.615,9.305,48.952,5.615,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,163.97,10038.64,6061.71,1.01,55.6,1.0,55.6,86.92,86.92,0.0,50.12,1.0,50.12,86.92,86.92,0.0,86.92,77.798,68.2926,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.5392,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,28.484,10.297,8.327,0.0,0.0,45.392,5.618,9.385,48.934,5.618,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ground-to-air-heat-pump-1-speed.xml,67.92,77.499,53.1619,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,49.612,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,17.381,6.484,8.243,0.0,0.0,15.784,3.457,9.305,15.796,3.457,9.305,20.991,0.063,0.0,0.278,0.206,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,67.92,4158.29,6061.71,1.01,53.49,1.0,53.49,67.9,67.9,0.0,48.67,1.0,48.67,67.9,67.9,0.0,67.9,77.828,53.3722,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,49.817,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,17.374,6.487,8.327,0.0,0.0,15.779,3.459,9.385,15.791,3.459,9.385,21.121,0.063,0.0,0.278,0.206,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,84.65,77.469,66.2359,78.2427,0.20977,0.9925,1.0,1.0176,1.01,1.0,53.8602,0.0,0.0,30.116,9.971,10.343,47.993,5.474,11.675,27.039,0.0,0.0,0.804,0.478,0.963,1.282,0.263,1.087,29.268,7.67,8.243,0.0,0.0,46.642,4.211,9.305,46.644,4.211,9.305,20.991,0.063,0.0,1.282,0.206,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,156.77,9609.76,6069.31,1.01,69.9,1.0,69.9,84.56,84.56,0.0,61.05,1.0,61.05,84.56,84.56,0.0,84.56,77.798,66.4436,78.5716,0.20887,0.9925,1.0,1.0175,1.0099,1.0,54.065,0.0,0.0,30.1,9.98,10.487,47.967,5.479,11.819,27.231,0.0,0.0,0.805,0.478,0.964,1.282,0.263,1.087,29.256,7.676,8.327,0.0,0.0,46.623,4.214,9.385,46.625,4.214,9.385,21.121,0.063,0.0,1.282,0.206,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,70.18,77.469,54.9028,78.2348,0.20765,0.9926,1.0,1.0174,1.0099,1.0,50.5,0.0,0.0,30.117,9.97,10.343,27.262,5.501,11.675,27.039,0.0,0.0,0.489,0.476,0.963,0.443,0.263,1.087,16.986,8.62,8.243,0.0,0.0,15.375,4.756,9.305,15.387,4.756,9.305,20.991,0.063,0.0,0.278,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,68.77,4216.71,6071.27,1.0099,55.53,1.0,55.53,70.16,70.16,0.0,50.72,1.0,50.72,70.16,70.16,0.0,70.16,77.797,55.1165,78.5627,0.20675,0.9926,1.0,1.0173,1.0098,1.0,50.707,0.0,0.0,30.1,9.979,10.487,27.25,5.504,11.819,27.231,0.0,0.0,0.489,0.476,0.964,0.443,0.263,1.087,16.977,8.628,8.327,0.0,0.0,15.369,4.759,9.385,15.381,4.759,9.385,21.121,0.063,0.0,0.278,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,85.93,77.499,67.2627,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,61.91,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,30.111,7.855,8.243,0.0,0.0,27.344,4.188,9.305,27.365,4.188,9.305,20.991,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,86.41,5290.01,6061.71,1.01,53.49,1.0,53.49,85.84,85.84,0.0,48.67,1.0,48.67,85.84,85.84,0.0,85.84,77.828,67.4685,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,62.114,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,30.099,7.858,8.327,0.0,0.0,27.336,4.19,9.385,27.357,4.19,9.385,21.121,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,85.42,77.47,66.8335,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.2658,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.971,9.565,8.243,0.0,0.0,44.575,5.218,9.305,48.053,5.218,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.82,9907.45,6061.71,1.01,55.6,1.0,55.6,85.32,85.32,0.0,50.12,1.0,50.12,85.32,85.32,0.0,85.32,77.798,67.0416,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,55.4706,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.961,9.57,8.327,0.0,0.0,44.558,5.221,9.385,48.035,5.221,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-install-quality-ground-to-air-heat-pump-1-speed.xml,67.47,77.499,52.8093,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,49.373,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,17.248,6.264,8.243,0.0,0.0,15.663,3.34,9.305,15.675,3.34,9.305,20.991,0.063,0.0,0.278,0.206,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,67.6,4138.7,6061.71,1.01,53.49,1.0,53.49,67.45,67.45,0.0,48.67,1.0,48.67,67.45,67.45,0.0,67.45,77.828,53.0186,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,49.578,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,17.24,6.268,8.327,0.0,0.0,15.657,3.342,9.385,15.669,3.342,9.385,21.121,0.063,0.0,0.278,0.206,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,82.21,77.468,64.3228,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,52.8248,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,5.758,8.243,0.0,0.0,46.641,3.177,9.305,46.643,3.177,9.305,20.991,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,155.47,9533.2,6071.27,1.01,70.15,1.0,70.15,82.13,82.13,0.0,61.25,1.0,61.25,82.13,82.13,0.0,82.13,77.797,64.529,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,53.0276,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,5.762,8.327,0.0,0.0,46.622,3.178,9.385,46.624,3.178,9.385,21.121,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,69.34,77.499,54.2774,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,51.282,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,20.246,4.734,8.243,0.0,0.0,18.386,2.524,9.305,18.4,2.524,9.305,20.991,0.063,0.0,0.341,0.18,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,71.07,4351.25,6061.71,1.01,53.49,1.0,53.49,69.32,69.32,0.0,48.67,1.0,48.67,69.32,69.32,0.0,69.32,77.828,54.4875,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,51.487,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,20.239,4.737,8.327,0.0,0.0,18.381,2.526,9.385,18.395,2.526,9.385,21.121,0.063,0.0,0.341,0.18,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,82.58,77.468,64.611,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,52.9848,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,6.046,8.243,0.0,0.0,46.641,3.336,9.305,46.643,3.336,9.305,20.991,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,155.66,9544.59,6071.27,1.01,70.15,1.0,70.15,82.5,82.5,0.0,61.25,1.0,61.25,82.5,82.5,0.0,82.5,77.797,64.8209,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,53.1886,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,6.054,8.327,0.0,0.0,46.622,3.339,9.385,46.624,3.339,9.385,21.121,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,80.94,77.468,63.3278,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,52.2768,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,4.763,8.243,0.0,0.0,46.641,2.628,9.305,46.643,2.628,9.305,20.991,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,154.82,9493.51,6071.27,1.01,70.15,1.0,70.15,80.87,80.87,0.0,61.25,1.0,61.25,80.87,80.87,0.0,80.87,77.797,63.5379,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,52.481,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,4.77,8.327,0.0,0.0,46.623,2.631,9.385,46.625,2.631,9.385,21.121,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,82.23,77.469,64.3408,78.2427,0.20977,0.9925,1.0,1.0176,1.01,1.0,52.8188,0.0,0.0,30.116,9.971,10.343,47.993,5.474,11.675,27.039,0.0,0.0,0.804,0.478,0.963,1.282,0.263,1.087,29.267,5.776,8.243,0.0,0.0,46.641,3.171,9.305,46.643,3.171,9.305,20.991,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,155.55,9534.88,6069.31,1.01,69.9,1.0,69.9,82.15,82.15,0.0,61.05,1.0,61.05,82.15,82.15,0.0,82.15,77.798,64.5449,78.5716,0.20887,0.9925,1.0,1.0175,1.0099,1.0,53.0226,0.0,0.0,30.1,9.98,10.487,47.967,5.479,11.819,27.231,0.0,0.0,0.805,0.478,0.964,1.282,0.263,1.087,29.256,5.778,8.327,0.0,0.0,46.622,3.172,9.385,46.624,3.172,9.385,21.121,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,74.69,77.469,58.4297,78.2348,0.20765,0.9926,1.0,1.0174,1.0099,1.0,53.696,0.0,0.0,30.117,9.97,10.343,27.262,5.501,11.675,27.039,0.0,0.0,0.489,0.476,0.963,0.443,0.263,1.087,20.513,8.62,8.243,0.0,0.0,18.568,4.756,9.305,18.582,4.756,9.305,20.991,0.063,0.0,0.341,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,73.95,4534.3,6071.27,1.0099,55.53,1.0,55.53,74.64,74.64,0.0,50.72,1.0,50.72,74.64,74.64,0.0,74.64,77.797,58.643,78.5627,0.20675,0.9926,1.0,1.0173,1.0098,1.0,53.903,0.0,0.0,30.1,9.979,10.487,27.25,5.504,11.819,27.231,0.0,0.0,0.489,0.476,0.964,0.443,0.263,1.087,20.503,8.628,8.327,0.0,0.0,18.562,4.759,9.385,18.576,4.759,9.385,21.121,0.063,0.0,0.341,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,69.84,77.499,54.6635,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,51.578,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,20.486,4.88,8.243,0.0,0.0,18.604,2.602,9.305,18.618,2.602,9.305,20.991,0.063,0.0,0.341,0.18,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,71.5,4377.16,6061.71,1.01,53.49,1.0,53.49,69.81,69.81,0.0,48.67,1.0,48.67,69.81,69.81,0.0,69.81,77.828,54.8725,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,51.784,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,20.478,4.884,8.327,0.0,0.0,18.598,2.604,9.385,18.612,2.604,9.385,21.121,0.063,0.0,0.341,0.18,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,61.25,77.499,47.946,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,45.914,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,14.943,3.706,8.243,0.0,0.0,13.57,1.976,9.305,13.58,1.976,9.305,20.991,0.063,0.0,0.341,0.18,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,63.26,3873.22,6061.71,1.01,53.49,1.0,53.49,61.27,61.27,0.0,48.67,1.0,48.67,61.27,61.27,0.0,61.27,77.828,48.1569,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,46.121,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,14.938,3.708,8.327,0.0,0.0,13.567,1.977,9.385,13.577,1.977,9.385,21.121,0.063,0.0,0.341,0.18,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-multiple.xml,87.68,77.4777,68.5841,78.2205,0.20143,0.9928,1.0,1.0169,1.0096,1.0,65.66,0.0,0.0,30.12,9.975,10.343,41.175,5.309,11.675,27.039,0.0,0.0,5.416,2.947,0.963,7.754,1.578,1.087,30.249,9.039,8.243,0.0,0.0,41.409,4.828,9.305,42.36,4.828,9.305,20.991,0.063,0.0,8.707,1.598,1.042,17.913800000000002,1.612,22.854,0.0,0.92,0.0,117.05,8202.77,6941.47,1.0096,55.82,1.0,55.82,87.58,87.58,0.0,51.27,1.0,51.27,87.58,87.58,0.0,87.58,77.8067,68.792,78.5494,0.20056,0.9928,1.0,1.0168,1.0095,1.0,65.8622,0.0,0.0,30.1,9.984,10.487,41.159,5.312,11.819,27.231,0.0,0.0,5.415,2.946,0.964,7.754,1.578,1.087,30.234,9.048,8.327,0.0,0.0,41.396,4.831,9.385,42.346,4.831,9.385,21.121,0.063,0.0,8.707,1.598,1.042,17.913800000000002,1.612,22.854,0.0,0.92,0.0 +base-hvac-floor-furnace-propane-only.xml,77.52,77.468,60.6524,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,49.7596,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,22.737,8.618,8.243,0.0,0.0,36.234,4.755,9.305,36.614,4.755,9.305,20.991,0.063,0.0,1.25,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,152.38,9347.75,6073.93,1.01,57.0,1.0,57.0,77.47,77.47,0.0,51.58,1.0,51.58,77.47,77.47,0.0,77.47,77.797,60.8676,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,49.9656,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,22.728,8.628,8.327,0.0,0.0,36.219,4.759,9.385,36.599,4.759,9.385,21.121,0.063,0.0,1.25,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-furnace-elec-only.xml,113.36,77.469,88.6835,78.2348,0.20766,0.9926,1.0,1.0174,1.0099,1.0,81.149,0.0,0.0,30.117,9.97,10.343,27.289,5.501,11.675,27.039,0.0,0.0,0.489,0.476,0.963,0.443,0.263,1.087,50.766,8.62,8.243,0.0,0.0,45.999,4.756,9.305,46.034,4.756,9.305,20.991,0.063,0.0,1.02,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,113.71,6974.73,6073.93,1.0099,55.58,1.0,55.58,113.14,113.14,0.0,50.77,1.0,50.77,113.14,113.14,0.0,113.14,77.797,88.8827,78.5627,0.20676,0.9926,1.0,1.0173,1.0098,1.0,81.344,0.0,0.0,30.1,9.979,10.487,27.276,5.504,11.819,27.231,0.0,0.0,0.489,0.476,0.964,0.443,0.263,1.087,50.743,8.628,8.327,0.0,0.0,45.982,4.759,9.385,46.017,4.759,9.385,21.121,0.063,0.0,1.02,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-furnace-gas-only.xml,84.88,77.468,66.4115,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,55.4754,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,28.494,8.62,8.243,0.0,0.0,45.409,4.756,9.305,48.952,4.756,9.305,20.991,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,162.58,9973.72,6073.93,1.01,57.0,1.0,57.0,84.8,84.8,0.0,51.58,1.0,51.58,84.8,84.8,0.0,84.8,77.797,66.6238,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,55.6802,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,28.484,8.628,8.327,0.0,0.0,45.392,4.759,9.385,48.934,4.759,9.385,21.121,0.063,0.0,1.087,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-furnace-gas-plus-air-to-air-heat-pump-cooling.xml,87.01,77.47,68.0846,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.3344,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,28.494,10.293,8.243,0.0,0.0,45.409,5.615,9.305,48.952,5.615,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,163.89,10038.64,6064.37,1.01,55.6,1.0,55.6,86.92,86.92,0.0,50.12,1.0,50.12,86.92,86.92,0.0,86.92,77.798,68.2926,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.5392,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,28.484,10.297,8.327,0.0,0.0,45.392,5.618,9.385,48.934,5.618,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ground-to-air-heat-pump-1-speed.xml,67.9,77.499,53.1454,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,49.612,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,17.364,6.484,8.243,0.0,0.0,15.784,3.457,9.305,15.796,3.457,9.305,20.991,0.063,0.0,0.278,0.206,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,67.89,4158.29,6064.37,1.01,53.55,1.0,53.55,67.88,67.88,0.0,48.71,1.0,48.71,67.88,67.88,0.0,67.88,77.828,53.3557,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,49.817,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,17.357,6.487,8.327,0.0,0.0,15.779,3.459,9.385,15.791,3.459,9.385,21.121,0.063,0.0,0.278,0.206,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,84.65,77.469,66.2359,78.2427,0.20977,0.9925,1.0,1.0176,1.01,1.0,53.8602,0.0,0.0,30.116,9.971,10.343,47.993,5.474,11.675,27.039,0.0,0.0,0.804,0.478,0.963,1.282,0.263,1.087,29.268,7.67,8.243,0.0,0.0,46.642,4.211,9.305,46.644,4.211,9.305,20.991,0.063,0.0,1.282,0.206,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,156.7,9609.76,6071.97,1.01,69.9,1.0,69.9,84.56,84.56,0.0,61.05,1.0,61.05,84.56,84.56,0.0,84.56,77.798,66.4436,78.5716,0.20887,0.9925,1.0,1.0175,1.0099,1.0,54.065,0.0,0.0,30.1,9.98,10.487,47.967,5.479,11.819,27.231,0.0,0.0,0.805,0.478,0.964,1.282,0.263,1.087,29.256,7.676,8.327,0.0,0.0,46.623,4.214,9.385,46.625,4.214,9.385,21.121,0.063,0.0,1.282,0.206,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,70.16,77.469,54.886,78.2348,0.20766,0.9926,1.0,1.0174,1.0099,1.0,50.5,0.0,0.0,30.117,9.97,10.343,27.289,5.501,11.675,27.039,0.0,0.0,0.489,0.476,0.963,0.443,0.263,1.087,16.969,8.62,8.243,0.0,0.0,15.375,4.756,9.305,15.387,4.756,9.305,20.991,0.063,0.0,0.278,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,68.74,4216.71,6073.93,1.0099,55.58,1.0,55.58,70.14,70.14,0.0,50.77,1.0,50.77,70.14,70.14,0.0,70.14,77.797,55.1003,78.5627,0.20676,0.9926,1.0,1.0173,1.0098,1.0,50.707,0.0,0.0,30.1,9.979,10.487,27.276,5.504,11.819,27.231,0.0,0.0,0.489,0.476,0.964,0.443,0.263,1.087,16.961,8.628,8.327,0.0,0.0,15.369,4.759,9.385,15.381,4.759,9.385,21.121,0.063,0.0,0.278,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,86.01,77.499,67.3221,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,61.99,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,30.17,7.855,8.243,0.0,0.0,27.424,4.188,9.305,27.445,4.188,9.305,20.991,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,86.5,5298.09,6064.37,1.01,53.55,1.0,53.55,85.91,85.91,0.0,48.71,1.0,48.71,85.91,85.91,0.0,85.91,77.828,67.5278,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,62.194,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,30.159,7.858,8.327,0.0,0.0,27.416,4.19,9.385,27.437,4.19,9.385,21.121,0.063,0.0,0.414,0.242,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,85.42,77.47,66.8335,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.2658,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.971,9.565,8.243,0.0,0.0,44.575,5.218,9.305,48.053,5.218,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.75,9907.45,6064.37,1.01,55.6,1.0,55.6,85.32,85.32,0.0,50.12,1.0,50.12,85.32,85.32,0.0,85.32,77.798,67.0416,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,55.4706,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.961,9.57,8.327,0.0,0.0,44.558,5.221,9.385,48.035,5.221,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-install-quality-ground-to-air-heat-pump-1-speed.xml,67.45,77.499,52.793,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,49.373,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,17.231,6.264,8.243,0.0,0.0,15.663,3.34,9.305,15.675,3.34,9.305,20.991,0.063,0.0,0.278,0.206,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,67.57,4138.7,6064.37,1.01,53.55,1.0,53.55,67.43,67.43,0.0,48.71,1.0,48.71,67.43,67.43,0.0,67.43,77.828,53.0022,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,49.578,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,17.223,6.268,8.327,0.0,0.0,15.657,3.342,9.385,15.669,3.342,9.385,21.121,0.063,0.0,0.278,0.206,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,82.21,77.468,64.3228,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,52.8248,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,5.758,8.243,0.0,0.0,46.641,3.177,9.305,46.643,3.177,9.305,20.991,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,155.4,9533.2,6073.93,1.01,70.15,1.0,70.15,82.13,82.13,0.0,61.25,1.0,61.25,82.13,82.13,0.0,82.13,77.797,64.529,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,53.0276,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,5.762,8.327,0.0,0.0,46.622,3.178,9.385,46.624,3.178,9.385,21.121,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,69.32,77.499,54.2581,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,51.283,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,20.227,4.734,8.243,0.0,0.0,18.386,2.524,9.305,18.4,2.524,9.305,20.991,0.063,0.0,0.341,0.18,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,71.04,4351.34,6064.37,1.01,53.55,1.0,53.55,69.29,69.29,0.0,48.71,1.0,48.71,69.29,69.29,0.0,69.29,77.828,54.4671,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,51.488,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,20.219,4.737,8.327,0.0,0.0,18.38,2.526,9.385,18.394,2.526,9.385,21.121,0.063,0.0,0.341,0.18,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,82.58,77.468,64.611,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,52.9848,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,6.046,8.243,0.0,0.0,46.641,3.336,9.305,46.643,3.336,9.305,20.991,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,155.59,9544.59,6073.93,1.01,70.15,1.0,70.15,82.5,82.5,0.0,61.25,1.0,61.25,82.5,82.5,0.0,82.5,77.797,64.8209,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,53.1886,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,6.054,8.327,0.0,0.0,46.622,3.339,9.385,46.624,3.339,9.385,21.121,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,80.94,77.468,63.3278,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,52.2768,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,4.763,8.243,0.0,0.0,46.641,2.628,9.305,46.643,2.628,9.305,20.991,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,154.75,9493.51,6073.93,1.01,70.15,1.0,70.15,80.87,80.87,0.0,61.25,1.0,61.25,80.87,80.87,0.0,80.87,77.797,63.5379,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,52.481,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,4.77,8.327,0.0,0.0,46.623,2.631,9.385,46.625,2.631,9.385,21.121,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,82.23,77.469,64.3408,78.2427,0.20977,0.9925,1.0,1.0176,1.01,1.0,52.8188,0.0,0.0,30.116,9.971,10.343,47.993,5.474,11.675,27.039,0.0,0.0,0.804,0.478,0.963,1.282,0.263,1.087,29.267,5.776,8.243,0.0,0.0,46.641,3.171,9.305,46.643,3.171,9.305,20.991,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,155.48,9534.88,6071.97,1.01,69.9,1.0,69.9,82.15,82.15,0.0,61.05,1.0,61.05,82.15,82.15,0.0,82.15,77.798,64.5449,78.5716,0.20887,0.9925,1.0,1.0175,1.0099,1.0,53.0226,0.0,0.0,30.1,9.98,10.487,47.967,5.479,11.819,27.231,0.0,0.0,0.805,0.478,0.964,1.282,0.263,1.087,29.256,5.778,8.327,0.0,0.0,46.622,3.172,9.385,46.624,3.172,9.385,21.121,0.063,0.0,1.282,0.18,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,74.66,77.469,58.4094,78.2348,0.20766,0.9926,1.0,1.0174,1.0099,1.0,53.696,0.0,0.0,30.117,9.97,10.343,27.289,5.501,11.675,27.039,0.0,0.0,0.489,0.476,0.963,0.443,0.263,1.087,20.492,8.62,8.243,0.0,0.0,18.568,4.756,9.305,18.582,4.756,9.305,20.991,0.063,0.0,0.341,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,73.92,4534.39,6073.93,1.0099,55.58,1.0,55.58,74.62,74.62,0.0,50.77,1.0,50.77,74.62,74.62,0.0,74.62,77.797,58.6257,78.5627,0.20676,0.9926,1.0,1.0173,1.0098,1.0,53.903,0.0,0.0,30.1,9.979,10.487,27.276,5.504,11.819,27.231,0.0,0.0,0.489,0.476,0.964,0.443,0.263,1.087,20.486,8.628,8.327,0.0,0.0,18.564,4.759,9.385,18.578,4.759,9.385,21.121,0.063,0.0,0.341,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,69.81,77.499,54.6441,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,51.579,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,20.467,4.88,8.243,0.0,0.0,18.604,2.602,9.305,18.618,2.602,9.305,20.991,0.063,0.0,0.341,0.18,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,71.47,4377.24,6064.37,1.01,53.55,1.0,53.55,69.79,69.79,0.0,48.71,1.0,48.71,69.79,69.79,0.0,69.79,77.828,54.8542,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,51.785,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,20.459,4.884,8.327,0.0,0.0,18.599,2.604,9.385,18.613,2.604,9.385,21.121,0.063,0.0,0.341,0.18,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,61.24,77.499,47.9329,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,45.915,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,14.93,3.706,8.243,0.0,0.0,13.571,1.976,9.305,13.581,1.976,9.305,20.991,0.063,0.0,0.341,0.18,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,63.24,3873.32,6064.37,1.01,53.55,1.0,53.55,61.25,61.25,0.0,48.71,1.0,48.71,61.25,61.25,0.0,61.25,77.828,48.1427,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,46.122,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,14.924,3.708,8.327,0.0,0.0,13.567,1.977,9.385,13.577,1.977,9.385,21.121,0.063,0.0,0.341,0.18,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-multiple.xml,87.73,77.4777,68.6264,78.2207,0.20149,0.9928,1.0,1.0169,1.0096,1.0,65.6696,0.0,0.0,30.12,9.975,10.343,41.135,5.309,11.675,27.039,0.0,0.0,5.417,2.947,0.963,7.754,1.578,1.087,30.291,9.039,8.243,0.0,0.0,41.42,4.828,9.305,42.372,4.828,9.305,20.991,0.063,0.0,8.707,1.598,1.042,17.913800000000002,1.612,22.854,0.0,0.92,0.0,117.19,8204.25,6934.42,1.0096,55.82,1.0,55.82,87.63,87.63,0.0,51.27,1.0,51.27,87.63,87.63,0.0,87.63,77.8067,68.8355,78.5498,0.20066,0.9928,1.0,1.0168,1.0096,1.0,65.8718,0.0,0.0,30.1,9.984,10.487,41.119,5.312,11.819,27.231,0.0,0.0,5.416,2.946,0.964,7.754,1.578,1.087,30.278,9.048,8.327,0.0,0.0,41.41,4.831,9.385,42.36,4.831,9.385,21.121,0.063,0.0,8.707,1.598,1.042,17.913800000000002,1.612,22.854,0.0,0.92,0.0 base-hvac-none.xml,90.75,70.267,67.1684,74.0142,0.20131,1.0358,1.0,1.0169,1.0533,1.0,46.811,0.0,0.0,0.0,46.003,5.092,0.0,25.482,6.276,19.172,0.0,0.0,0.0,0.474,0.882,1.282,0.263,1.087,0.0,47.731,4.024,0.0,0.0,0.0,26.439,4.96,0.0,26.439,4.96,15.068,0.345,0.0,1.282,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,68.55,1.0,68.55,90.64,90.64,0.0,62.34,1.0,62.34,90.64,90.64,0.0,90.64,70.578,67.3755,74.3299,0.20068,1.0357,1.0,1.0168,1.0532,1.0,47.007,0.0,0.0,0.0,46.032,5.182,0.0,25.499,6.366,19.364,0.0,0.0,0.0,0.474,0.885,1.282,0.263,1.087,0.0,47.751,4.081,0.0,0.0,0.0,26.451,5.014,0.0,26.451,5.014,15.198,0.345,0.0,1.282,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-programmable-thermostat.xml,82.69,77.47,64.7027,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,54.1464,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,26.637,8.775,8.245,0.0,0.0,42.45,4.787,9.307,45.762,4.787,9.307,20.982,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,155.6,9526.6,6061.71,1.01,55.6,1.0,55.6,82.61,82.61,0.0,50.12,1.0,50.12,82.61,82.61,0.0,82.61,77.798,64.9108,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,54.3522,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,26.627,8.778,8.331,0.0,0.0,42.433,4.789,9.389,45.744,4.789,9.389,21.112,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ptac-with-heating-electricity.xml,86.95,77.499,68.0616,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,63.133,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,32.23,6.534,8.243,0.0,0.0,29.269,3.484,9.305,29.291,3.484,9.305,20.991,0.063,0.0,1.0,0.322,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,87.88,5380.13,6061.71,1.01,53.49,1.0,53.49,86.85,86.85,0.0,48.67,1.0,48.67,86.85,86.85,0.0,86.85,77.828,68.264,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,63.333,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,32.215,6.538,8.327,0.0,0.0,29.258,3.486,9.385,29.28,3.486,9.385,21.121,0.063,0.0,1.0,0.322,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,74.58,77.468,58.3488,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,48.4876,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,22.737,6.314,8.243,0.0,0.0,36.234,3.484,9.305,36.614,3.484,9.305,20.991,0.063,0.0,1.25,0.322,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,132.87,8134.45,6061.71,1.01,55.6,1.0,55.6,74.53,74.53,0.0,50.1,1.0,50.1,74.53,74.53,0.0,74.53,77.797,58.5602,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,48.693,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,22.729,6.32,8.327,0.0,0.0,36.22,3.486,9.385,36.6,3.486,9.385,21.121,0.063,0.0,1.25,0.322,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ptac.xml,82.92,77.468,64.8792,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,53.1318,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,6.314,8.243,0.0,0.0,46.641,3.484,9.305,46.643,3.484,9.305,20.991,0.063,0.0,1.282,0.322,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,155.77,9551.34,6071.27,1.01,70.15,1.0,70.15,82.84,82.84,0.0,61.25,1.0,61.25,82.84,82.84,0.0,82.84,77.797,65.088,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,53.336,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,6.32,8.327,0.0,0.0,46.623,3.486,9.385,46.625,3.486,9.385,21.121,0.063,0.0,1.282,0.322,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-pthp.xml,64.12,77.499,50.1925,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,47.061,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,14.807,6.088,8.243,0.0,0.0,13.447,3.246,9.305,13.457,3.246,9.305,20.991,0.063,0.0,0.278,0.29,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,64.54,3951.25,6061.71,1.01,53.49,1.0,53.49,64.13,64.13,0.0,48.67,1.0,48.67,64.13,64.13,0.0,64.13,77.828,50.4042,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,47.268,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,14.801,6.091,8.327,0.0,0.0,13.443,3.248,9.385,13.453,3.248,9.385,21.121,0.063,0.0,0.278,0.29,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-room-ac-only-eer.xml,85.0,77.468,66.5068,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,54.0298,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,7.942,8.243,0.0,0.0,46.641,4.382,9.305,46.643,4.382,9.305,20.991,0.063,0.0,1.282,0.405,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,156.82,9615.76,6071.27,1.01,70.15,1.0,70.15,84.91,84.91,0.0,61.25,1.0,61.25,84.91,84.91,0.0,84.91,77.797,66.7161,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,54.235,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,7.948,8.327,0.0,0.0,46.623,4.384,9.385,46.625,4.384,9.385,21.121,0.063,0.0,1.282,0.405,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-room-ac-only.xml,85.03,77.468,66.5249,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,54.0398,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,7.96,8.243,0.0,0.0,46.641,4.392,9.305,46.643,4.392,9.305,20.991,0.063,0.0,1.282,0.406,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,156.83,9616.51,6071.27,1.01,70.15,1.0,70.15,84.94,84.94,0.0,61.25,1.0,61.25,84.94,84.94,0.0,84.94,77.797,66.7361,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,54.245,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,7.968,8.327,0.0,0.0,46.623,4.395,9.385,46.625,4.395,9.385,21.121,0.063,0.0,1.282,0.406,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-room-ac-with-heating.xml,89.13,77.499,69.7646,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,64.041,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,32.23,8.237,8.243,0.0,0.0,29.269,4.392,9.305,29.291,4.392,9.305,20.991,0.063,0.0,1.0,0.406,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,88.94,5445.3,6061.71,1.01,53.49,1.0,53.49,89.02,89.02,0.0,48.67,1.0,48.67,89.02,89.02,0.0,89.02,77.828,69.9687,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,64.242,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,32.215,8.242,8.327,0.0,0.0,29.258,4.395,9.385,29.28,4.395,9.385,21.121,0.063,0.0,1.0,0.406,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,64.11,77.499,50.1812,78.2734,0.2099,0.9925,1.0,1.0176,1.01,1.0,47.055,0.0,0.0,30.117,10.0,10.343,27.35,5.332,11.675,27.039,0.0,0.0,0.488,0.492,0.963,0.443,0.263,1.087,14.807,6.077,8.243,0.0,0.0,13.447,3.24,9.305,13.457,3.24,9.305,20.991,0.063,0.0,0.278,0.289,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,64.53,3950.86,6061.71,1.01,53.49,1.0,53.49,64.11,64.11,0.0,48.67,1.0,48.67,64.11,64.11,0.0,64.11,77.828,50.3929,78.6023,0.20899,0.9925,1.0,1.0175,1.0099,1.0,47.262,0.0,0.0,30.101,10.009,10.487,27.338,5.337,11.819,27.231,0.0,0.0,0.488,0.492,0.964,0.443,0.263,1.087,14.801,6.08,8.327,0.0,0.0,13.443,3.242,9.385,13.453,3.242,9.385,21.121,0.063,0.0,0.278,0.289,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-space-heater-gas-only.xml,69.28,77.468,54.2056,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,46.8304,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,16.29,8.618,8.243,0.0,0.0,25.96,4.755,9.305,29.291,4.755,9.305,20.991,0.063,0.0,1.0,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,116.64,7152.38,6071.27,1.01,57.0,1.0,57.0,69.27,69.27,0.0,51.58,1.0,51.58,69.27,69.27,0.0,69.27,77.797,54.4239,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,47.038,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,16.284,8.628,8.327,0.0,0.0,25.95,4.759,9.385,29.28,4.759,9.385,21.121,0.063,0.0,1.0,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-programmable-thermostat.xml,82.69,77.47,64.7027,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,54.1464,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,26.637,8.775,8.245,0.0,0.0,42.45,4.787,9.307,45.762,4.787,9.307,20.982,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,155.53,9526.6,6064.37,1.01,55.6,1.0,55.6,82.61,82.61,0.0,50.12,1.0,50.12,82.61,82.61,0.0,82.61,77.798,64.9108,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,54.3522,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,26.627,8.778,8.331,0.0,0.0,42.433,4.789,9.389,45.744,4.789,9.389,21.112,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ptac-with-heating-electricity.xml,86.91,77.499,68.031,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,63.133,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,32.199,6.534,8.243,0.0,0.0,29.269,3.484,9.305,29.291,3.484,9.305,20.991,0.063,0.0,1.0,0.322,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,87.84,5380.13,6064.37,1.01,53.55,1.0,53.55,86.81,86.81,0.0,48.71,1.0,48.71,86.81,86.81,0.0,86.81,77.828,68.2334,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,63.333,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,32.184,6.538,8.327,0.0,0.0,29.258,3.486,9.385,29.28,3.486,9.385,21.121,0.063,0.0,1.0,0.322,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,74.58,77.468,58.3488,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,48.4876,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,22.737,6.314,8.243,0.0,0.0,36.234,3.484,9.305,36.614,3.484,9.305,20.991,0.063,0.0,1.25,0.322,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,132.81,8134.45,6064.37,1.01,55.6,1.0,55.6,74.53,74.53,0.0,50.1,1.0,50.1,74.53,74.53,0.0,74.53,77.797,58.5602,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,48.693,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,22.729,6.32,8.327,0.0,0.0,36.22,3.486,9.385,36.6,3.486,9.385,21.121,0.063,0.0,1.25,0.322,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ptac.xml,82.92,77.468,64.8792,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,53.1318,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,6.314,8.243,0.0,0.0,46.641,3.484,9.305,46.643,3.484,9.305,20.991,0.063,0.0,1.282,0.322,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,155.7,9551.34,6073.93,1.01,70.15,1.0,70.15,82.84,82.84,0.0,61.25,1.0,61.25,82.84,82.84,0.0,82.84,77.797,65.088,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,53.336,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,6.32,8.327,0.0,0.0,46.623,3.486,9.385,46.625,3.486,9.385,21.121,0.063,0.0,1.282,0.322,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-pthp.xml,64.3,77.499,50.3268,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,47.196,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,14.942,6.088,8.243,0.0,0.0,13.582,3.246,9.305,13.592,3.246,9.305,20.991,0.063,0.0,0.278,0.29,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,64.74,3965.05,6064.37,1.01,53.55,1.0,53.55,64.3,64.3,0.0,48.71,1.0,48.71,64.3,64.3,0.0,64.3,77.828,50.5385,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,47.403,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,14.936,6.091,8.327,0.0,0.0,13.578,3.248,9.385,13.588,3.248,9.385,21.121,0.063,0.0,0.278,0.29,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-room-ac-only-eer.xml,85.0,77.468,66.5068,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,54.0298,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,7.942,8.243,0.0,0.0,46.641,4.382,9.305,46.643,4.382,9.305,20.991,0.063,0.0,1.282,0.405,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,156.75,9615.76,6073.93,1.01,70.15,1.0,70.15,84.91,84.91,0.0,61.25,1.0,61.25,84.91,84.91,0.0,84.91,77.797,66.7161,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,54.235,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,7.948,8.327,0.0,0.0,46.623,4.384,9.385,46.625,4.384,9.385,21.121,0.063,0.0,1.282,0.405,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-room-ac-only.xml,85.03,77.468,66.5249,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,54.0398,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,29.267,7.96,8.243,0.0,0.0,46.641,4.392,9.305,46.643,4.392,9.305,20.991,0.063,0.0,1.282,0.406,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,156.76,9616.51,6073.93,1.01,70.15,1.0,70.15,84.94,84.94,0.0,61.25,1.0,61.25,84.94,84.94,0.0,84.94,77.797,66.7361,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,54.245,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,29.256,7.968,8.327,0.0,0.0,46.623,4.395,9.385,46.625,4.395,9.385,21.121,0.063,0.0,1.282,0.406,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-room-ac-with-heating.xml,89.09,77.499,69.734,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,64.041,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,32.199,8.237,8.243,0.0,0.0,29.269,4.392,9.305,29.291,4.392,9.305,20.991,0.063,0.0,1.0,0.406,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,88.9,5445.3,6064.37,1.01,53.55,1.0,53.55,88.98,88.98,0.0,48.71,1.0,48.71,88.98,88.98,0.0,88.98,77.828,69.9381,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,64.242,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,32.184,8.242,8.327,0.0,0.0,29.258,4.395,9.385,29.28,4.395,9.385,21.121,0.063,0.0,1.0,0.406,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,64.28,77.499,50.3156,78.2736,0.20994,0.9925,1.0,1.0176,1.01,1.0,47.19,0.0,0.0,30.117,10.0,10.343,27.376,5.332,11.675,27.039,0.0,0.0,0.487,0.492,0.963,0.443,0.263,1.087,14.942,6.077,8.243,0.0,0.0,13.582,3.24,9.305,13.592,3.24,9.305,20.991,0.063,0.0,0.278,0.289,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,64.73,3964.66,6064.37,1.01,53.55,1.0,53.55,64.28,64.28,0.0,48.71,1.0,48.71,64.28,64.28,0.0,64.28,77.828,50.5272,78.6024,0.209,0.9925,1.0,1.0175,1.0099,1.0,47.397,0.0,0.0,30.101,10.009,10.487,27.364,5.337,11.819,27.231,0.0,0.0,0.487,0.492,0.964,0.443,0.263,1.087,14.936,6.08,8.327,0.0,0.0,13.578,3.242,9.385,13.588,3.242,9.385,21.121,0.063,0.0,0.278,0.289,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-space-heater-gas-only.xml,69.28,77.468,54.2056,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,46.8304,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,16.29,8.618,8.243,0.0,0.0,25.96,4.755,9.305,29.291,4.755,9.305,20.991,0.063,0.0,1.0,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,116.59,7152.38,6073.93,1.01,57.0,1.0,57.0,69.27,69.27,0.0,51.58,1.0,51.58,69.27,69.27,0.0,69.27,77.797,54.4239,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,47.038,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,16.284,8.628,8.327,0.0,0.0,25.95,4.759,9.385,29.28,4.759,9.385,21.121,0.063,0.0,1.0,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 base-hvac-stove-wood-pellets-only.xml,77.5,77.468,60.635,78.2414,0.2097,0.9925,1.0,1.0176,1.01,1.0,49.8158,0.0,0.0,30.116,9.97,10.343,47.993,5.501,11.675,27.039,0.0,0.0,0.804,0.476,0.963,1.282,0.263,1.087,22.72,8.618,8.243,0.0,0.0,36.206,4.755,9.305,36.586,4.755,9.305,20.991,0.063,0.0,1.25,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,57.0,1.0,57.0,77.45,77.45,0.0,51.58,1.0,51.58,77.45,77.45,0.0,77.45,77.797,60.8502,78.5703,0.20879,0.9926,1.0,1.0175,1.0099,1.0,50.0228,0.0,0.0,30.1,9.979,10.487,47.967,5.504,11.819,27.231,0.0,0.0,0.805,0.476,0.964,1.282,0.263,1.087,22.711,8.628,8.327,0.0,0.0,36.191,4.759,9.385,36.571,4.759,9.385,21.121,0.063,0.0,1.25,0.263,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-undersized.xml,82.62,77.47,64.6479,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,53.9744,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,25.784,9.567,8.243,0.0,0.0,41.089,5.219,9.305,44.295,5.219,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,152.45,9333.36,6061.71,1.01,55.6,1.0,55.6,82.54,82.54,0.0,50.12,1.0,50.12,82.54,82.54,0.0,82.54,77.798,64.856,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,54.1796,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,25.773,9.571,8.327,0.0,0.0,41.072,5.222,9.385,44.277,5.222,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-wall-furnace-elec-only.xml,90.64,77.469,70.9096,78.2348,0.20765,0.9926,1.0,1.0174,1.0099,1.0,65.002,0.0,0.0,30.117,9.97,10.343,27.262,5.501,11.675,27.039,0.0,0.0,0.489,0.476,0.963,0.443,0.263,1.087,32.994,8.618,8.243,0.0,0.0,29.866,4.755,9.305,29.889,4.755,9.305,20.991,0.063,0.0,1.02,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,90.2,5530.57,6071.27,1.0099,55.53,1.0,55.53,90.52,90.52,0.0,50.72,1.0,50.72,90.52,90.52,0.0,90.52,77.797,71.1165,78.5627,0.20675,0.9926,1.0,1.0173,1.0098,1.0,65.203,0.0,0.0,30.1,9.979,10.487,27.25,5.504,11.819,27.231,0.0,0.0,0.489,0.476,0.964,0.443,0.263,1.087,32.977,8.628,8.327,0.0,0.0,29.854,4.759,9.385,29.877,4.759,9.385,21.121,0.063,0.0,1.02,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 -base-lighting-ceiling-fans-label-energy-use.xml,86.13,77.869,67.7336,78.6399,0.20794,0.9926,1.0,1.0174,1.0099,1.0,56.3286,0.0,0.0,30.1,9.636,10.343,47.968,5.261,11.671,27.79,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.897,9.852,8.244,0.0,0.0,44.457,5.379,9.302,47.926,5.379,9.302,21.678,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,160.93,9935.93,6113.67,1.0099,55.6,1.0,55.6,86.04,86.04,0.0,50.16,1.0,50.16,86.04,86.04,0.0,86.04,78.198,67.9447,78.9688,0.20705,0.9926,1.0,1.0174,1.0099,1.0,56.5334,0.0,0.0,30.084,9.645,10.487,47.942,5.266,11.815,27.982,0.0,0.0,0.804,0.481,0.965,1.282,0.263,1.087,27.886,9.859,8.328,0.0,0.0,44.439,5.383,9.383,47.907,5.383,9.383,21.808,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-lighting-ceiling-fans.xml,85.83,77.869,67.4998,78.6399,0.20794,0.9926,1.0,1.0174,1.0099,1.0,56.1284,0.0,0.0,30.1,9.636,10.343,47.968,5.261,11.671,27.79,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.898,9.773,8.244,0.0,0.0,44.459,5.336,9.303,47.928,5.336,9.303,21.521,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,160.65,9918.82,6113.67,1.0099,55.6,1.0,55.6,85.74,85.74,0.0,50.16,1.0,50.16,85.74,85.74,0.0,85.74,78.198,67.7083,78.9688,0.20705,0.9926,1.0,1.0174,1.0099,1.0,56.3332,0.0,0.0,30.084,9.645,10.487,47.942,5.266,11.815,27.982,0.0,0.0,0.804,0.481,0.965,1.282,0.263,1.087,27.887,9.779,8.328,0.0,0.0,44.441,5.339,9.383,47.909,5.339,9.383,21.651,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-undersized.xml,82.62,77.47,64.6479,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,53.9744,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,25.784,9.567,8.243,0.0,0.0,41.089,5.219,9.305,44.295,5.219,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,152.38,9333.36,6064.37,1.01,55.6,1.0,55.6,82.54,82.54,0.0,50.12,1.0,50.12,82.54,82.54,0.0,82.54,77.798,64.856,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,54.1796,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,25.773,9.571,8.327,0.0,0.0,41.072,5.222,9.385,44.277,5.222,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-wall-furnace-elec-only.xml,90.6,77.469,70.877,78.2348,0.20766,0.9926,1.0,1.0174,1.0099,1.0,65.002,0.0,0.0,30.117,9.97,10.343,27.289,5.501,11.675,27.039,0.0,0.0,0.489,0.476,0.963,0.443,0.263,1.087,32.962,8.618,8.243,0.0,0.0,29.866,4.755,9.305,29.889,4.755,9.305,20.991,0.063,0.0,1.02,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0,90.16,5530.57,6073.93,1.0099,55.58,1.0,55.58,90.48,90.48,0.0,50.77,1.0,50.77,90.48,90.48,0.0,90.48,77.797,71.0851,78.5627,0.20676,0.9926,1.0,1.0173,1.0098,1.0,65.203,0.0,0.0,30.1,9.979,10.487,27.276,5.504,11.819,27.231,0.0,0.0,0.489,0.476,0.964,0.443,0.263,1.087,32.945,8.628,8.327,0.0,0.0,29.854,4.759,9.385,29.877,4.759,9.385,21.121,0.063,0.0,1.02,0.263,1.042,2.2561,0.0,3.809,0.0,0.92,0.0 +base-lighting-ceiling-fans-label-energy-use.xml,86.13,77.869,67.7336,78.6399,0.20794,0.9926,1.0,1.0174,1.0099,1.0,56.3286,0.0,0.0,30.1,9.636,10.343,47.968,5.261,11.671,27.79,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.897,9.852,8.244,0.0,0.0,44.457,5.379,9.302,47.926,5.379,9.302,21.678,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,160.86,9935.93,6116.33,1.0099,55.6,1.0,55.6,86.04,86.04,0.0,50.16,1.0,50.16,86.04,86.04,0.0,86.04,78.198,67.9447,78.9688,0.20705,0.9926,1.0,1.0174,1.0099,1.0,56.5334,0.0,0.0,30.084,9.645,10.487,47.942,5.266,11.815,27.982,0.0,0.0,0.804,0.481,0.965,1.282,0.263,1.087,27.886,9.859,8.328,0.0,0.0,44.439,5.383,9.383,47.907,5.383,9.383,21.808,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-lighting-ceiling-fans.xml,85.83,77.869,67.4998,78.6399,0.20794,0.9926,1.0,1.0174,1.0099,1.0,56.1284,0.0,0.0,30.1,9.636,10.343,47.968,5.261,11.671,27.79,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.898,9.773,8.244,0.0,0.0,44.459,5.336,9.303,47.928,5.336,9.303,21.521,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,160.58,9918.82,6116.33,1.0099,55.6,1.0,55.6,85.74,85.74,0.0,50.16,1.0,50.16,85.74,85.74,0.0,85.74,78.198,67.7083,78.9688,0.20705,0.9926,1.0,1.0174,1.0099,1.0,56.3332,0.0,0.0,30.084,9.645,10.487,47.942,5.266,11.815,27.982,0.0,0.0,0.804,0.481,0.965,1.282,0.263,1.087,27.887,9.779,8.328,0.0,0.0,44.441,5.339,9.383,47.909,5.339,9.383,21.651,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 base-location-baltimore-md.xml,73.99,60.708,48.0808,64.983,0.26367,1.0472,1.0,1.0222,1.0704,1.0,40.263,0.0,0.0,20.171,12.108,9.47,32.154,6.922,10.786,18.959,0.0,0.0,0.804,0.459,0.954,1.282,0.263,1.087,13.294,11.833,7.725,0.0,0.0,21.191,6.765,8.799,22.845,6.765,8.799,14.883,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,74.39,9712.34,12197.19,1.0704,50.48,1.0,50.48,73.94,73.94,0.0,50.1,1.0,50.1,73.94,73.94,0.0,73.94,61.032,48.2947,65.3131,0.26268,1.047,1.0,1.0221,1.0701,1.0,40.4696,0.0,0.0,20.157,12.119,9.605,32.132,6.928,10.922,19.151,0.0,0.0,0.804,0.459,0.956,1.282,0.263,1.087,13.287,11.843,7.807,0.0,0.0,21.181,6.77,8.877,22.834,6.77,8.877,15.013,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 base-location-capetown-zaf.xml,78.11,36.594,29.9742,38.3742,0.18405,1.0327,1.0,1.0154,1.0486,1.0,27.4542,0.0,0.0,3.866,5.507,8.234,6.162,2.909,9.533,18.987,0.0,0.0,0.804,0.497,0.939,1.282,0.263,1.087,0.888,7.056,6.744,0.0,0.0,1.415,3.727,7.808,1.525,3.727,7.808,14.942,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,50.53,1.0,50.53,78.02,78.02,0.0,48.87,1.0,48.87,78.02,78.02,0.0,78.02,36.911,30.187,38.6936,0.18275,1.0325,1.0,1.0153,1.0483,1.0,27.6586,0.0,0.0,3.859,5.517,8.356,6.15,2.914,9.655,19.179,0.0,0.0,0.804,0.497,0.941,1.282,0.263,1.087,0.885,7.064,6.82,0.0,0.0,1.411,3.731,7.88,1.521,3.731,7.88,15.073,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 base-location-dallas-tx.xml,67.69,64.555,46.8557,69.2194,0.27031,1.0484,1.0,1.0227,1.0723,1.0,37.4806,0.0,0.0,9.69,28.432,7.403,15.459,16.395,8.675,19.03,0.0,0.0,0.804,0.455,0.928,1.282,0.263,1.087,3.285,22.324,5.941,0.0,0.0,5.241,12.873,6.962,5.65,12.873,6.962,14.96,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,72.2,6001.17,7751.44,1.0723,47.84,1.0,47.84,67.68,67.68,0.0,46.51,1.0,46.51,67.68,67.68,0.0,67.68,64.869,47.0608,69.5393,0.26937,1.0482,1.0,1.0227,1.072,1.0,37.6796,0.0,0.0,9.682,28.448,7.517,15.447,16.405,8.789,19.222,0.0,0.0,0.804,0.455,0.93,1.282,0.263,1.087,3.282,22.332,6.012,0.0,0.0,5.236,12.878,7.029,5.645,12.878,7.029,15.09,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-duluth-mn.xml,79.94,78.693,67.0083,83.8196,0.24454,1.0437,1.0,1.0205,1.0651,1.0,56.26,0.0,0.0,45.65,2.066,12.907,72.707,1.337,14.768,18.07,0.0,0.0,0.805,0.406,0.95,1.282,0.263,1.087,39.321,2.812,10.301,0.0,0.0,62.627,1.82,11.786,67.514,1.82,11.786,14.229,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,163.01,11965.68,6891.31,1.0651,46.95,1.0,46.95,79.86,79.86,0.0,46.52,1.0,46.52,79.86,79.86,0.0,79.86,79.055,67.2364,84.1887,0.24378,1.0436,1.0,1.0205,1.0649,1.0,56.4844,0.0,0.0,45.648,2.066,13.078,72.705,1.337,14.939,18.263,0.0,0.0,0.805,0.406,0.952,1.282,0.263,1.087,39.318,2.812,10.402,0.0,0.0,62.623,1.82,11.882,67.51,1.82,11.882,14.359,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-helena-mt.xml,84.93,92.35,79.2315,93.2887,0.2135,0.9924,1.0,1.0179,1.0102,1.0,65.6728,0.0,0.0,49.224,4.394,11.732,78.422,2.439,13.088,27.0,0.0,0.0,0.805,0.473,0.974,1.282,0.263,1.087,44.459,4.371,9.385,0.0,0.0,70.83,2.426,10.47,76.357,2.426,10.47,20.954,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,205.01,13322.13,6433.0,1.0102,50.63,1.0,50.63,84.86,84.86,0.0,50.27,1.0,50.27,84.86,84.86,0.0,84.86,92.687,79.4458,93.6253,0.21263,0.9924,1.0,1.0178,1.0101,1.0,65.8848,0.0,0.0,49.205,4.399,11.891,78.391,2.442,13.247,27.192,0.0,0.0,0.805,0.473,0.976,1.282,0.263,1.087,44.447,4.374,9.478,0.0,0.0,70.81,2.428,10.559,76.336,2.428,10.559,21.084,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-duluth-mn.xml,79.94,78.693,67.0083,83.8196,0.24454,1.0437,1.0,1.0205,1.0651,1.0,56.26,0.0,0.0,45.65,2.066,12.907,72.707,1.337,14.768,18.07,0.0,0.0,0.805,0.406,0.95,1.282,0.263,1.087,39.321,2.812,10.301,0.0,0.0,62.627,1.82,11.786,67.514,1.82,11.786,14.229,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,162.63,11965.68,6907.66,1.0651,46.95,1.0,46.95,79.86,79.86,0.0,46.52,1.0,46.52,79.86,79.86,0.0,79.86,79.055,67.2364,84.1887,0.24378,1.0436,1.0,1.0205,1.0649,1.0,56.4844,0.0,0.0,45.648,2.066,13.078,72.705,1.337,14.939,18.263,0.0,0.0,0.805,0.406,0.952,1.282,0.263,1.087,39.318,2.812,10.402,0.0,0.0,62.623,1.82,11.882,67.51,1.82,11.882,14.359,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-helena-mt.xml,84.93,92.35,79.2315,93.2887,0.2135,0.9924,1.0,1.0179,1.0102,1.0,65.6728,0.0,0.0,49.224,4.394,11.732,78.422,2.439,13.088,27.0,0.0,0.0,0.805,0.473,0.974,1.282,0.263,1.087,44.459,4.371,9.385,0.0,0.0,70.83,2.426,10.47,76.357,2.426,10.47,20.954,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,204.76,13322.13,6440.83,1.0102,50.63,1.0,50.63,84.86,84.86,0.0,50.27,1.0,50.27,84.86,84.86,0.0,84.86,92.687,79.4458,93.6253,0.21263,0.9924,1.0,1.0178,1.0101,1.0,65.8848,0.0,0.0,49.205,4.399,11.891,78.391,2.442,13.247,27.192,0.0,0.0,0.805,0.473,0.976,1.282,0.263,1.087,44.447,4.374,9.478,0.0,0.0,70.81,2.428,10.559,76.336,2.428,10.559,21.084,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 base-location-honolulu-hi.xml,75.56,70.269,55.9143,73.9988,0.20039,1.0357,1.0,1.0168,1.0531,1.0,40.409,0.0,0.0,0.0,46.005,5.092,0.0,25.271,6.276,19.172,0.0,0.0,0.0,0.478,0.882,1.282,0.263,1.087,0.0,36.477,4.024,0.0,0.0,0.0,20.037,4.96,0.0,20.037,4.96,15.068,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,61.3,1.0,61.3,75.52,75.52,0.0,44.53,1.0,44.53,75.52,75.52,0.0,75.52,70.581,56.1204,74.3151,0.19975,1.0356,1.0,1.0168,1.0529,1.0,40.602,0.0,0.0,0.0,46.035,5.182,0.0,25.287,6.366,19.364,0.0,0.0,0.0,0.478,0.885,1.282,0.263,1.087,0.0,36.496,4.081,0.0,0.0,0.0,20.047,5.014,0.0,20.047,5.014,15.198,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 base-location-miami-fl.xml,73.51,68.337,53.0667,72.1869,0.21236,1.0378,1.0,1.0178,1.0563,1.0,39.5848,0.0,0.0,0.048,43.893,5.244,0.077,24.999,6.44,19.152,0.0,0.0,0.799,0.461,0.885,1.282,0.263,1.087,0.001,33.517,4.148,0.0,0.0,0.002,19.089,5.094,0.002,19.089,5.094,15.056,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,73.83,5830.4,7476.08,1.0563,61.33,1.0,61.33,73.47,73.47,0.0,46.1,1.0,46.1,73.47,73.47,0.0,73.47,68.647,53.2674,72.5022,0.21171,1.0377,1.0,1.0178,1.0562,1.0,39.7768,0.0,0.0,0.048,43.92,5.335,0.076,25.015,6.532,19.344,0.0,0.0,0.81,0.461,0.888,1.282,0.263,1.087,0.001,33.53,4.205,0.0,0.0,0.002,19.097,5.149,0.002,19.097,5.149,15.186,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 base-location-phoenix-az.xml,68.74,80.905,59.9007,87.138,0.28757,1.0516,1.0,1.0242,1.077,1.0,42.5434,0.0,0.0,1.362,54.94,5.507,2.172,29.845,6.738,19.096,0.0,0.0,0.804,0.483,0.888,1.282,0.263,1.087,0.126,40.052,4.355,0.0,0.0,0.2,21.757,5.329,0.216,21.757,5.329,15.023,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,69.38,4762.78,6373.98,1.077,50.37,1.0,50.37,68.73,68.73,0.0,46.33,1.0,46.33,68.73,68.73,0.0,68.73,81.211,60.105,87.4501,0.28679,1.0514,1.0,1.0241,1.0768,1.0,42.736,0.0,0.0,1.36,54.962,5.601,2.167,29.857,6.832,19.288,0.0,0.0,0.805,0.483,0.891,1.282,0.263,1.087,0.125,40.066,4.416,0.0,0.0,0.199,21.765,5.386,0.215,21.765,5.386,15.153,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 base-location-portland-or.xml,84.24,45.932,40.5465,48.131,0.18119,1.0322,1.0,1.0152,1.0479,1.0,36.0046,0.0,0.0,12.984,4.188,9.834,20.7,2.357,11.17,18.926,0.0,0.0,0.804,0.466,0.957,1.282,0.263,1.087,12.543,4.668,8.153,0.0,0.0,19.998,2.627,9.261,21.558,2.627,9.261,14.837,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,163.36,4884.58,2853.44,1.0479,66.59,1.0,66.59,84.12,84.12,0.0,50.34,1.0,50.34,84.12,84.12,0.0,84.12,46.255,40.7607,48.4576,0.18025,1.032,1.0,1.0151,1.0476,1.0,36.2096,0.0,0.0,12.969,4.195,9.973,20.674,2.36,11.309,19.118,0.0,0.0,0.804,0.467,0.959,1.282,0.263,1.087,12.535,4.675,8.238,0.0,0.0,19.983,2.63,9.342,21.542,2.63,9.342,14.967,0.345,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-balanced.xml,91.04,78.838,72.4888,79.6269,0.21019,0.9925,1.0,1.0176,1.01,1.0,59.8946,0.0,0.0,29.724,10.153,10.343,47.37,5.526,11.674,27.04,1.578,0.0,0.804,0.482,0.963,1.282,0.263,1.087,31.044,10.42,8.246,0.0,0.0,49.474,5.671,9.307,53.335,5.671,9.307,20.986,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,173.66,10828.43,6173.8,1.01,55.6,1.0,55.6,90.93,90.93,0.0,50.12,1.0,50.12,90.93,90.93,0.0,90.93,79.167,72.7007,79.9558,0.20928,0.9925,1.0,1.0176,1.01,1.0,60.1004,0.0,0.0,29.708,10.162,10.487,47.344,5.53,11.818,27.232,1.578,0.0,0.804,0.482,0.965,1.282,0.263,1.087,31.034,10.427,8.331,0.0,0.0,49.458,5.674,9.388,53.317,5.674,9.388,21.116,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis-control-type-timer.xml,94.29,78.393,74.6549,79.1775,0.21019,0.9925,1.0,1.0176,1.01,1.0,61.9288,0.0,0.0,29.851,10.094,10.343,47.572,5.497,11.675,27.04,1.065,0.0,0.804,0.482,0.963,1.282,0.263,1.087,29.724,11.503,8.243,0.0,0.0,47.37,6.264,9.305,51.066,6.264,9.305,20.99,4.195,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,173.27,10740.91,6137.44,1.01,55.6,1.0,55.6,94.16,94.16,0.0,50.12,1.0,50.12,94.16,94.16,0.0,94.16,78.722,74.8649,79.5063,0.20928,0.9925,1.0,1.0176,1.01,1.0,62.134,0.0,0.0,29.836,10.102,10.487,47.547,5.502,11.818,27.232,1.065,0.0,0.804,0.482,0.965,1.282,0.263,1.087,29.714,11.507,8.328,0.0,0.0,47.353,6.267,9.385,51.048,6.267,9.385,21.12,4.196,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis-no-additional-runtime.xml,89.94,77.647,70.535,78.424,0.21019,0.9925,1.0,1.0176,1.01,1.0,58.0026,0.0,0.0,30.065,9.995,10.343,47.912,5.451,11.675,27.039,0.205,0.0,0.804,0.481,0.963,1.282,0.263,1.087,30.733,10.567,8.243,0.0,0.0,48.977,5.763,9.305,52.799,5.763,9.305,20.991,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,172.81,10605.21,6076.24,1.01,55.6,1.0,55.6,89.83,89.83,0.0,50.12,1.0,50.12,89.83,89.83,0.0,89.83,77.975,70.7444,78.7519,0.20928,0.9925,1.0,1.0176,1.01,1.0,58.207,0.0,0.0,30.049,10.003,10.487,47.886,5.455,11.819,27.231,0.205,0.0,0.805,0.481,0.964,1.282,0.263,1.087,30.723,10.573,8.327,0.0,0.0,48.96,5.766,9.385,52.78,5.766,9.385,21.121,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis-no-outdoor-air-control.xml,95.57,78.393,75.6712,79.1775,0.21019,0.9925,1.0,1.0176,1.01,1.0,62.3722,0.0,0.0,29.851,10.094,10.343,47.572,5.497,11.675,27.04,1.065,0.0,0.804,0.482,0.963,1.282,0.263,1.087,32.475,11.027,8.243,0.0,0.0,51.754,6.005,9.305,55.792,6.005,9.305,20.989,2.937,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,182.39,11306.21,6137.44,1.01,55.6,1.0,55.6,95.44,95.44,0.0,50.12,1.0,50.12,95.44,95.44,0.0,95.44,78.722,75.8813,79.5063,0.20928,0.9925,1.0,1.0176,1.01,1.0,62.5758,0.0,0.0,29.836,10.102,10.487,47.547,5.502,11.818,27.232,1.065,0.0,0.804,0.482,0.965,1.282,0.263,1.087,32.463,11.033,8.329,0.0,0.0,51.734,6.009,9.386,55.771,6.009,9.386,21.119,2.937,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis-supplemental-fan-exhaust-synchronized.xml,86.3,78.393,68.3279,79.1775,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.6028,0.0,0.0,29.851,10.094,10.343,47.572,5.497,11.675,27.04,1.065,0.0,0.804,0.482,0.963,1.282,0.263,1.087,28.253,10.235,8.244,0.0,0.0,45.026,5.574,9.306,48.539,5.574,9.306,20.988,0.607,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.74,10025.74,6137.44,1.01,55.6,1.0,55.6,86.21,86.21,0.0,50.12,1.0,50.12,86.21,86.21,0.0,86.21,78.722,68.5391,79.5063,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.8086,0.0,0.0,29.836,10.102,10.487,47.547,5.502,11.818,27.232,1.065,0.0,0.804,0.482,0.965,1.282,0.263,1.087,28.243,10.242,8.33,0.0,0.0,45.008,5.578,9.387,48.52,5.578,9.387,21.118,0.607,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,84.98,78.393,67.2844,79.1775,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8268,0.0,0.0,29.851,10.094,10.343,47.572,5.497,11.675,27.04,1.065,0.0,0.804,0.482,0.963,1.282,0.263,1.087,27.334,10.228,8.244,0.0,0.0,43.561,5.57,9.306,46.96,5.57,9.306,20.988,0.49,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,157.86,9785.5,6137.44,1.01,55.6,1.0,55.6,84.89,84.89,0.0,50.12,1.0,50.12,84.89,84.89,0.0,84.89,78.722,67.4938,79.5063,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.0322,0.0,0.0,29.836,10.102,10.487,47.547,5.502,11.818,27.232,1.065,0.0,0.804,0.482,0.965,1.282,0.263,1.087,27.324,10.232,8.33,0.0,0.0,43.543,5.573,9.387,46.941,5.573,9.387,21.118,0.49,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis.xml,90.49,78.393,71.6444,79.1775,0.21019,0.9925,1.0,1.0176,1.01,1.0,59.565,0.0,0.0,29.851,10.094,10.343,47.572,5.497,11.675,27.04,1.065,0.0,0.804,0.482,0.963,1.282,0.263,1.087,28.789,10.674,8.243,0.0,0.0,45.879,5.813,9.305,49.459,5.813,9.305,20.99,2.948,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,167.29,10369.77,6137.44,1.01,55.6,1.0,55.6,90.37,90.37,0.0,50.12,1.0,50.12,90.37,90.37,0.0,90.37,78.722,71.8534,79.5063,0.20928,0.9925,1.0,1.0176,1.01,1.0,59.7698,0.0,0.0,29.836,10.102,10.487,47.547,5.502,11.818,27.232,1.065,0.0,0.804,0.482,0.965,1.282,0.263,1.087,28.779,10.679,8.328,0.0,0.0,45.862,5.816,9.385,49.441,5.816,9.385,21.12,2.948,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-erv-atre-asre.xml,79.17,79.426,63.5132,80.2208,0.21019,0.9925,1.0,1.0176,1.01,1.0,53.4462,0.0,0.0,29.557,10.231,10.343,47.103,5.563,11.674,27.04,2.255,0.0,0.804,0.483,0.963,1.282,0.263,1.087,21.888,10.593,8.241,0.0,0.0,34.882,5.76,9.302,37.604,5.76,9.302,20.997,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,135.98,8544.92,6221.85,1.01,55.6,1.0,55.6,79.11,79.11,0.0,50.12,1.0,50.12,79.11,79.11,0.0,79.11,79.755,63.725,80.5496,0.20928,0.9925,1.0,1.0176,1.01,1.0,53.652,0.0,0.0,29.541,10.24,10.487,47.077,5.567,11.818,27.232,2.255,0.0,0.804,0.483,0.965,1.282,0.263,1.087,21.878,10.601,8.326,0.0,0.0,34.865,5.763,9.383,37.586,5.763,9.383,21.127,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-erv.xml,79.2,79.426,63.5319,80.2208,0.21019,0.9925,1.0,1.0176,1.01,1.0,53.4604,0.0,0.0,29.557,10.231,10.343,47.103,5.563,11.674,27.04,2.255,0.0,0.804,0.483,0.963,1.282,0.263,1.087,21.905,10.595,8.241,0.0,0.0,34.909,5.761,9.302,37.633,5.761,9.302,20.997,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,136.05,8549.43,6221.85,1.01,55.6,1.0,55.6,79.14,79.14,0.0,50.12,1.0,50.12,79.14,79.14,0.0,79.14,79.755,63.7456,80.5496,0.20928,0.9925,1.0,1.0176,1.01,1.0,53.6652,0.0,0.0,29.541,10.24,10.487,47.077,5.567,11.818,27.232,2.255,0.0,0.804,0.483,0.965,1.282,0.263,1.087,21.895,10.604,8.326,0.0,0.0,34.892,5.765,9.383,37.615,5.765,9.383,21.127,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-exhaust.xml,87.35,78.393,69.1632,79.1775,0.21019,0.9925,1.0,1.0176,1.01,1.0,57.2836,0.0,0.0,29.851,10.094,10.343,47.572,5.497,11.675,27.04,1.065,0.0,0.804,0.482,0.963,1.282,0.263,1.087,28.741,10.292,8.244,0.0,0.0,45.804,5.605,9.306,49.378,5.605,9.306,20.988,0.897,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,164.11,10172.74,6137.44,1.01,55.6,1.0,55.6,87.25,87.25,0.0,50.12,1.0,50.12,87.25,87.25,0.0,87.25,78.722,69.3726,79.5063,0.20928,0.9925,1.0,1.0176,1.01,1.0,57.489,0.0,0.0,29.836,10.102,10.487,47.547,5.502,11.818,27.232,1.065,0.0,0.804,0.482,0.965,1.282,0.263,1.087,28.731,10.297,8.33,0.0,0.0,45.786,5.608,9.387,49.359,5.608,9.387,21.118,0.897,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-hrv-asre.xml,79.57,79.426,63.8332,80.2208,0.21019,0.9925,1.0,1.0176,1.01,1.0,53.6558,0.0,0.0,29.557,10.231,10.343,47.103,5.563,11.674,27.04,2.255,0.0,0.804,0.483,0.963,1.282,0.263,1.087,22.061,10.741,8.241,0.0,0.0,35.158,5.84,9.302,37.901,5.84,9.302,20.997,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,136.74,8593.08,6221.85,1.01,55.6,1.0,55.6,79.51,79.51,0.0,50.12,1.0,50.12,79.51,79.51,0.0,79.51,79.755,64.0469,80.5496,0.20928,0.9925,1.0,1.0176,1.01,1.0,53.8616,0.0,0.0,29.541,10.24,10.487,47.077,5.567,11.818,27.232,2.255,0.0,0.804,0.483,0.965,1.282,0.263,1.087,22.051,10.75,8.326,0.0,0.0,35.141,5.844,9.383,37.883,5.844,9.383,21.127,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-hrv.xml,79.59,79.426,63.8466,80.2208,0.21019,0.9925,1.0,1.0176,1.01,1.0,53.6666,0.0,0.0,29.557,10.231,10.343,47.103,5.563,11.674,27.04,2.255,0.0,0.804,0.483,0.963,1.282,0.263,1.087,22.075,10.741,8.241,0.0,0.0,35.179,5.84,9.302,37.924,5.84,9.302,20.997,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,136.8,8596.54,6221.85,1.01,55.6,1.0,55.6,79.53,79.53,0.0,50.12,1.0,50.12,79.53,79.53,0.0,79.53,79.755,64.0597,80.5496,0.20928,0.9925,1.0,1.0176,1.01,1.0,53.8714,0.0,0.0,29.541,10.24,10.487,47.077,5.567,11.818,27.232,2.255,0.0,0.804,0.483,0.965,1.282,0.263,1.087,22.064,10.75,8.326,0.0,0.0,35.161,5.844,9.383,37.905,5.844,9.383,21.127,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-multiple.xml,83.33,79.056,66.5368,79.847,0.21016,0.9925,1.0,1.0176,1.01,1.0,56.147,0.0,0.0,29.664,10.184,10.343,47.274,5.566,11.674,27.04,1.826,0.0,1.609,0.961,0.963,2.564,0.526,1.087,24.669,9.627,8.246,0.0,0.0,39.315,5.2620000000000005,9.307,42.383,4.82,9.307,20.985,3.009,0.0,2.174,0.484,1.042,2.1886,0.806,7.618,0.0,0.92,0.0,146.52,9308.12,6290.0,1.01,55.61,1.0,55.61,83.25,83.25,0.0,50.1,1.0,50.1,83.25,83.25,0.0,83.25,79.385,66.7479,80.1758,0.20925,0.9925,1.0,1.0176,1.01,1.0,56.3536,0.0,0.0,29.648,10.194,10.487,47.247,5.572,11.818,27.232,1.826,0.0,1.609,0.961,0.965,2.564,0.526,1.087,24.66,9.633,8.331,0.0,0.0,39.3,5.267,9.388,42.366,4.823,9.388,21.115,3.009,0.0,2.174,0.484,1.042,2.1886,0.806,7.618,0.0,0.92,0.0 -base-mechvent-supply.xml,86.8,78.393,68.7279,79.1775,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.9406,0.0,0.0,29.851,10.094,10.343,47.572,5.497,11.675,27.04,1.065,0.0,0.804,0.482,0.963,1.282,0.263,1.087,28.176,10.423,8.243,0.0,0.0,44.902,5.676,9.305,48.406,5.676,9.305,20.989,0.897,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.93,10037.71,6137.44,1.01,55.6,1.0,55.6,86.71,86.71,0.0,50.12,1.0,50.12,86.71,86.71,0.0,86.71,78.722,68.9387,79.5063,0.20928,0.9925,1.0,1.0176,1.01,1.0,57.1464,0.0,0.0,29.836,10.102,10.487,47.547,5.502,11.818,27.232,1.065,0.0,0.804,0.482,0.965,1.282,0.263,1.087,28.166,10.427,8.33,0.0,0.0,44.885,5.679,9.387,48.388,5.679,9.387,21.119,0.897,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-whole-house-fan.xml,83.94,77.47,65.6763,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,54.9052,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,28.007,8.385,8.25,0.0,0.0,44.632,4.574,9.312,48.115,3.902,9.312,20.972,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,160.89,9850.02,6061.71,1.01,55.6,1.0,55.6,83.85,83.85,0.0,50.12,1.0,50.12,83.85,83.85,0.0,83.85,77.798,65.8845,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,55.1094,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.997,8.389,8.334,0.0,0.0,44.616,4.577,9.392,48.097,3.905,9.392,21.102,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-misc-generators.xml,84.07,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,0.9745,54.5012,1.389,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,198.11,12129.25,6061.71,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,83.98,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,0.9746,54.706,1.389,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-pv-battery.xml,45.99,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,0.5331,55.8902,26.887,0.793,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,130.14,7967.75,6061.71,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,46.08,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,0.5347,56.095,26.887,0.788,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-pv.xml,44.77,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,0.5189,55.8902,26.887,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,131.95,8078.73,6061.71,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,44.87,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,0.5207,56.095,26.887,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-versions-multiple-mf.xml,70.89,39.437,30.1841,42.5781,0.20096,1.0618,1.0,1.0169,1.0796,1.0,28.343,0.0,0.0,5.764,6.71,10.487,9.195,3.535,11.787,16.476,0.0,0.0,0.804,0.498,0.967,1.282,0.263,1.087,2.988,4.383,8.834,0.0,0.0,4.767,2.309,9.929,5.139,2.309,9.929,12.972,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,84.12,2868.38,3158.18,1.0796,50.32,1.0,50.32,70.89,70.89,0.0,48.5,1.0,48.5,70.89,70.89,0.0,70.89,39.437,30.1841,42.5781,0.20096,1.0618,1.0,1.0169,1.0796,1.0,28.343,0.0,0.0,5.764,6.71,10.487,9.195,3.535,11.787,16.476,0.0,0.0,0.804,0.498,0.967,1.282,0.263,1.087,2.988,4.383,8.834,0.0,0.0,4.767,2.309,9.929,5.139,2.309,9.929,12.972,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base-versions-multiple-sf.xml,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.18,9910.42,6088.0,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 -base.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.64,9896.04,6061.71,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-balanced.xml,91.04,78.838,72.4888,79.6269,0.21019,0.9925,1.0,1.0176,1.01,1.0,59.8946,0.0,0.0,29.724,10.153,10.343,47.37,5.526,11.674,27.04,1.578,0.0,0.804,0.482,0.963,1.282,0.263,1.087,31.044,10.42,8.246,0.0,0.0,49.474,5.671,9.307,53.335,5.671,9.307,20.986,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,173.58,10828.43,6176.47,1.01,55.6,1.0,55.6,90.93,90.93,0.0,50.12,1.0,50.12,90.93,90.93,0.0,90.93,79.167,72.7007,79.9558,0.20928,0.9925,1.0,1.0176,1.01,1.0,60.1004,0.0,0.0,29.708,10.162,10.487,47.344,5.53,11.818,27.232,1.578,0.0,0.804,0.482,0.965,1.282,0.263,1.087,31.034,10.427,8.331,0.0,0.0,49.458,5.674,9.388,53.317,5.674,9.388,21.116,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis-control-type-timer.xml,94.29,78.393,74.6549,79.1775,0.21019,0.9925,1.0,1.0176,1.01,1.0,61.9288,0.0,0.0,29.851,10.094,10.343,47.572,5.497,11.675,27.04,1.065,0.0,0.804,0.482,0.963,1.282,0.263,1.087,29.724,11.503,8.243,0.0,0.0,47.37,6.264,9.305,51.066,6.264,9.305,20.99,4.195,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,173.2,10740.91,6140.1,1.01,55.6,1.0,55.6,94.16,94.16,0.0,50.12,1.0,50.12,94.16,94.16,0.0,94.16,78.722,74.8649,79.5063,0.20928,0.9925,1.0,1.0176,1.01,1.0,62.134,0.0,0.0,29.836,10.102,10.487,47.547,5.502,11.818,27.232,1.065,0.0,0.804,0.482,0.965,1.282,0.263,1.087,29.714,11.507,8.328,0.0,0.0,47.353,6.267,9.385,51.048,6.267,9.385,21.12,4.196,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis-no-additional-runtime.xml,89.94,77.647,70.535,78.424,0.21019,0.9925,1.0,1.0176,1.01,1.0,58.0026,0.0,0.0,30.065,9.995,10.343,47.912,5.451,11.675,27.039,0.205,0.0,0.804,0.481,0.963,1.282,0.263,1.087,30.733,10.567,8.243,0.0,0.0,48.977,5.763,9.305,52.799,5.763,9.305,20.991,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,172.73,10605.21,6078.9,1.01,55.6,1.0,55.6,89.83,89.83,0.0,50.12,1.0,50.12,89.83,89.83,0.0,89.83,77.975,70.7444,78.7519,0.20928,0.9925,1.0,1.0176,1.01,1.0,58.207,0.0,0.0,30.049,10.003,10.487,47.886,5.455,11.819,27.231,0.205,0.0,0.805,0.481,0.964,1.282,0.263,1.087,30.723,10.573,8.327,0.0,0.0,48.96,5.766,9.385,52.78,5.766,9.385,21.121,0.0,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis-no-outdoor-air-control.xml,95.57,78.393,75.6712,79.1775,0.21019,0.9925,1.0,1.0176,1.01,1.0,62.3722,0.0,0.0,29.851,10.094,10.343,47.572,5.497,11.675,27.04,1.065,0.0,0.804,0.482,0.963,1.282,0.263,1.087,32.475,11.027,8.243,0.0,0.0,51.754,6.005,9.305,55.792,6.005,9.305,20.989,2.937,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,182.31,11306.21,6140.1,1.01,55.6,1.0,55.6,95.44,95.44,0.0,50.12,1.0,50.12,95.44,95.44,0.0,95.44,78.722,75.8813,79.5063,0.20928,0.9925,1.0,1.0176,1.01,1.0,62.5758,0.0,0.0,29.836,10.102,10.487,47.547,5.502,11.818,27.232,1.065,0.0,0.804,0.482,0.965,1.282,0.263,1.087,32.463,11.033,8.329,0.0,0.0,51.734,6.009,9.386,55.771,6.009,9.386,21.119,2.937,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis-supplemental-fan-exhaust-synchronized.xml,86.3,78.393,68.3279,79.1775,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.6028,0.0,0.0,29.851,10.094,10.343,47.572,5.497,11.675,27.04,1.065,0.0,0.804,0.482,0.963,1.282,0.263,1.087,28.253,10.235,8.244,0.0,0.0,45.026,5.574,9.306,48.539,5.574,9.306,20.988,0.607,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.67,10025.74,6140.1,1.01,55.6,1.0,55.6,86.21,86.21,0.0,50.12,1.0,50.12,86.21,86.21,0.0,86.21,78.722,68.5391,79.5063,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.8086,0.0,0.0,29.836,10.102,10.487,47.547,5.502,11.818,27.232,1.065,0.0,0.804,0.482,0.965,1.282,0.263,1.087,28.243,10.242,8.33,0.0,0.0,45.008,5.578,9.387,48.52,5.578,9.387,21.118,0.607,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,84.98,78.393,67.2844,79.1775,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8268,0.0,0.0,29.851,10.094,10.343,47.572,5.497,11.675,27.04,1.065,0.0,0.804,0.482,0.963,1.282,0.263,1.087,27.334,10.228,8.244,0.0,0.0,43.561,5.57,9.306,46.96,5.57,9.306,20.988,0.49,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,157.79,9785.5,6140.1,1.01,55.6,1.0,55.6,84.89,84.89,0.0,50.12,1.0,50.12,84.89,84.89,0.0,84.89,78.722,67.4938,79.5063,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.0322,0.0,0.0,29.836,10.102,10.487,47.547,5.502,11.818,27.232,1.065,0.0,0.804,0.482,0.965,1.282,0.263,1.087,27.324,10.232,8.33,0.0,0.0,43.543,5.573,9.387,46.941,5.573,9.387,21.118,0.49,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis.xml,90.49,78.393,71.6444,79.1775,0.21019,0.9925,1.0,1.0176,1.01,1.0,59.565,0.0,0.0,29.851,10.094,10.343,47.572,5.497,11.675,27.04,1.065,0.0,0.804,0.482,0.963,1.282,0.263,1.087,28.789,10.674,8.243,0.0,0.0,45.879,5.813,9.305,49.459,5.813,9.305,20.99,2.948,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,167.21,10369.77,6140.1,1.01,55.6,1.0,55.6,90.37,90.37,0.0,50.12,1.0,50.12,90.37,90.37,0.0,90.37,78.722,71.8534,79.5063,0.20928,0.9925,1.0,1.0176,1.01,1.0,59.7698,0.0,0.0,29.836,10.102,10.487,47.547,5.502,11.818,27.232,1.065,0.0,0.804,0.482,0.965,1.282,0.263,1.087,28.779,10.679,8.328,0.0,0.0,45.862,5.816,9.385,49.441,5.816,9.385,21.12,2.948,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-erv-atre-asre.xml,79.17,79.426,63.5132,80.2208,0.21019,0.9925,1.0,1.0176,1.01,1.0,53.4462,0.0,0.0,29.557,10.231,10.343,47.103,5.563,11.674,27.04,2.255,0.0,0.804,0.483,0.963,1.282,0.263,1.087,21.888,10.593,8.241,0.0,0.0,34.882,5.76,9.302,37.604,5.76,9.302,20.997,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,135.92,8544.92,6224.51,1.01,55.6,1.0,55.6,79.11,79.11,0.0,50.12,1.0,50.12,79.11,79.11,0.0,79.11,79.755,63.725,80.5496,0.20928,0.9925,1.0,1.0176,1.01,1.0,53.652,0.0,0.0,29.541,10.24,10.487,47.077,5.567,11.818,27.232,2.255,0.0,0.804,0.483,0.965,1.282,0.263,1.087,21.878,10.601,8.326,0.0,0.0,34.865,5.763,9.383,37.586,5.763,9.383,21.127,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-erv.xml,79.2,79.426,63.5319,80.2208,0.21019,0.9925,1.0,1.0176,1.01,1.0,53.4604,0.0,0.0,29.557,10.231,10.343,47.103,5.563,11.674,27.04,2.255,0.0,0.804,0.483,0.963,1.282,0.263,1.087,21.905,10.595,8.241,0.0,0.0,34.909,5.761,9.302,37.633,5.761,9.302,20.997,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,135.99,8549.43,6224.51,1.01,55.6,1.0,55.6,79.14,79.14,0.0,50.12,1.0,50.12,79.14,79.14,0.0,79.14,79.755,63.7456,80.5496,0.20928,0.9925,1.0,1.0176,1.01,1.0,53.6652,0.0,0.0,29.541,10.24,10.487,47.077,5.567,11.818,27.232,2.255,0.0,0.804,0.483,0.965,1.282,0.263,1.087,21.895,10.604,8.326,0.0,0.0,34.892,5.765,9.383,37.615,5.765,9.383,21.127,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-exhaust.xml,87.35,78.393,69.1632,79.1775,0.21019,0.9925,1.0,1.0176,1.01,1.0,57.2836,0.0,0.0,29.851,10.094,10.343,47.572,5.497,11.675,27.04,1.065,0.0,0.804,0.482,0.963,1.282,0.263,1.087,28.741,10.292,8.244,0.0,0.0,45.804,5.605,9.306,49.378,5.605,9.306,20.988,0.897,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,164.04,10172.74,6140.1,1.01,55.6,1.0,55.6,87.25,87.25,0.0,50.12,1.0,50.12,87.25,87.25,0.0,87.25,78.722,69.3726,79.5063,0.20928,0.9925,1.0,1.0176,1.01,1.0,57.489,0.0,0.0,29.836,10.102,10.487,47.547,5.502,11.818,27.232,1.065,0.0,0.804,0.482,0.965,1.282,0.263,1.087,28.731,10.297,8.33,0.0,0.0,45.786,5.608,9.387,49.359,5.608,9.387,21.118,0.897,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-hrv-asre.xml,79.57,79.426,63.8332,80.2208,0.21019,0.9925,1.0,1.0176,1.01,1.0,53.6558,0.0,0.0,29.557,10.231,10.343,47.103,5.563,11.674,27.04,2.255,0.0,0.804,0.483,0.963,1.282,0.263,1.087,22.061,10.741,8.241,0.0,0.0,35.158,5.84,9.302,37.901,5.84,9.302,20.997,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,136.68,8593.08,6224.51,1.01,55.6,1.0,55.6,79.51,79.51,0.0,50.12,1.0,50.12,79.51,79.51,0.0,79.51,79.755,64.0469,80.5496,0.20928,0.9925,1.0,1.0176,1.01,1.0,53.8616,0.0,0.0,29.541,10.24,10.487,47.077,5.567,11.818,27.232,2.255,0.0,0.804,0.483,0.965,1.282,0.263,1.087,22.051,10.75,8.326,0.0,0.0,35.141,5.844,9.383,37.883,5.844,9.383,21.127,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-hrv.xml,79.59,79.426,63.8466,80.2208,0.21019,0.9925,1.0,1.0176,1.01,1.0,53.6666,0.0,0.0,29.557,10.231,10.343,47.103,5.563,11.674,27.04,2.255,0.0,0.804,0.483,0.963,1.282,0.263,1.087,22.075,10.741,8.241,0.0,0.0,35.179,5.84,9.302,37.924,5.84,9.302,20.997,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,136.74,8596.54,6224.51,1.01,55.6,1.0,55.6,79.53,79.53,0.0,50.12,1.0,50.12,79.53,79.53,0.0,79.53,79.755,64.0597,80.5496,0.20928,0.9925,1.0,1.0176,1.01,1.0,53.8714,0.0,0.0,29.541,10.24,10.487,47.077,5.567,11.818,27.232,2.255,0.0,0.804,0.483,0.965,1.282,0.263,1.087,22.064,10.75,8.326,0.0,0.0,35.161,5.844,9.383,37.905,5.844,9.383,21.127,1.793,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-multiple.xml,83.33,79.056,66.5368,79.847,0.21016,0.9925,1.0,1.0176,1.01,1.0,56.147,0.0,0.0,29.664,10.184,10.343,47.274,5.566,11.674,27.04,1.826,0.0,1.609,0.961,0.963,2.564,0.526,1.087,24.669,9.627,8.246,0.0,0.0,39.315,5.2620000000000005,9.307,42.383,4.82,9.307,20.985,3.009,0.0,2.174,0.484,1.042,2.1886,0.806,7.618,0.0,0.92,0.0,146.48,9308.12,6291.58,1.01,55.61,1.0,55.61,83.25,83.25,0.0,50.1,1.0,50.1,83.25,83.25,0.0,83.25,79.385,66.7479,80.1758,0.20925,0.9925,1.0,1.0176,1.01,1.0,56.3536,0.0,0.0,29.648,10.194,10.487,47.247,5.572,11.818,27.232,1.826,0.0,1.609,0.961,0.965,2.564,0.526,1.087,24.66,9.633,8.331,0.0,0.0,39.3,5.267,9.388,42.366,4.823,9.388,21.115,3.009,0.0,2.174,0.484,1.042,2.1886,0.806,7.618,0.0,0.92,0.0 +base-mechvent-supply.xml,86.8,78.393,68.7279,79.1775,0.21019,0.9925,1.0,1.0176,1.01,1.0,56.9406,0.0,0.0,29.851,10.094,10.343,47.572,5.497,11.675,27.04,1.065,0.0,0.804,0.482,0.963,1.282,0.263,1.087,28.176,10.423,8.243,0.0,0.0,44.902,5.676,9.305,48.406,5.676,9.305,20.989,0.897,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.86,10037.71,6140.1,1.01,55.6,1.0,55.6,86.71,86.71,0.0,50.12,1.0,50.12,86.71,86.71,0.0,86.71,78.722,68.9387,79.5063,0.20928,0.9925,1.0,1.0176,1.01,1.0,57.1464,0.0,0.0,29.836,10.102,10.487,47.547,5.502,11.818,27.232,1.065,0.0,0.804,0.482,0.965,1.282,0.263,1.087,28.166,10.427,8.33,0.0,0.0,44.885,5.679,9.387,48.388,5.679,9.387,21.119,0.897,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-whole-house-fan.xml,83.94,77.47,65.6763,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,54.9052,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,28.007,8.385,8.25,0.0,0.0,44.632,4.574,9.312,48.115,3.902,9.312,20.972,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,160.82,9850.02,6064.37,1.01,55.6,1.0,55.6,83.85,83.85,0.0,50.12,1.0,50.12,83.85,83.85,0.0,83.85,77.798,65.8845,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,55.1094,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.997,8.389,8.334,0.0,0.0,44.616,4.577,9.392,48.097,3.905,9.392,21.102,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-misc-generators.xml,84.07,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,0.9745,54.5012,1.389,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,198.03,12129.25,6064.37,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,83.98,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,0.9746,54.706,1.389,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-pv-battery.xml,45.99,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,0.5331,55.8902,26.887,0.793,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,130.08,7967.75,6064.37,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,46.08,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,0.5347,56.095,26.887,0.788,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-pv.xml,44.77,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,0.5189,55.8902,26.887,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,131.9,8078.73,6064.37,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,44.87,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,0.5207,56.095,26.887,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-versions-multiple-mf.xml,70.89,39.437,30.1841,42.5781,0.20096,1.0618,1.0,1.0169,1.0796,1.0,28.343,0.0,0.0,5.764,6.71,10.487,9.195,3.535,11.787,16.476,0.0,0.0,0.804,0.498,0.967,1.282,0.263,1.087,2.988,4.383,8.834,0.0,0.0,4.767,2.309,9.929,5.139,2.309,9.929,12.972,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,84.12,2868.38,3158.34,1.0796,50.32,1.0,50.32,70.89,70.89,0.0,48.5,1.0,48.5,70.89,70.89,0.0,70.89,39.437,30.1841,42.5781,0.20096,1.0618,1.0,1.0169,1.0796,1.0,28.343,0.0,0.0,5.764,6.71,10.487,9.195,3.535,11.787,16.476,0.0,0.0,0.804,0.498,0.967,1.282,0.263,1.087,2.988,4.383,8.834,0.0,0.0,4.767,2.309,9.929,5.139,2.309,9.929,12.972,1.007,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base-versions-multiple-sf.xml,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.11,9910.42,6090.66,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0 +base.xml,86.27,77.47,67.5024,78.2452,0.21019,0.9925,1.0,1.0176,1.01,1.0,55.8902,0.0,0.0,30.116,9.972,10.343,47.993,5.44,11.675,27.039,0.0,0.0,0.804,0.481,0.963,1.282,0.263,1.087,27.914,10.291,8.243,0.0,0.0,44.484,5.614,9.305,47.955,5.614,9.305,20.991,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0,161.57,9896.04,6064.37,1.01,55.6,1.0,55.6,86.17,86.17,0.0,50.12,1.0,50.12,86.17,86.17,0.0,86.17,77.798,67.7086,78.5731,0.20928,0.9925,1.0,1.0176,1.01,1.0,56.095,0.0,0.0,30.1,9.98,10.487,47.967,5.445,11.819,27.231,0.0,0.0,0.805,0.481,0.964,1.282,0.263,1.087,27.904,10.294,8.327,0.0,0.0,44.467,5.616,9.385,47.937,5.616,9.385,21.121,0.063,0.0,1.087,0.242,1.042,1.0943,0.403,3.809,0.0,0.92,0.0