diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml index 9f795844e..37c8ec639 100644 --- a/.github/workflows/config.yml +++ b/.github/workflows/config.yml @@ -170,12 +170,37 @@ jobs: runs-on: ubuntu-latest needs: [run-sample-files1-tests, run-sample-files2-tests, run-real-home-tests, run-other-tests] steps: - - name: Merge Artifacts - uses: actions/upload-artifact/merge@v4 + - uses: actions/checkout@v4 + with: + ref: ${{ github.head_ref }} + + - name: Download all results + uses: actions/download-artifact@v4 with: - name: results + path: test_results pattern: test_results_* - delete-merged: true + merge-multiple: true + + - name: Delete artifacts + uses: geekyeggo/delete-artifact@v5 + with: + name: test_results_* + + - name: Merge results + run: | + mkdir workflow/tests/test_results + cp -r test_results/*.csv workflow/tests/test_results + cd workflow/tests + pip install pandas + python ../../hpxml-measures/workflow/tests/merge.py test_results/sample_files1.csv test_results/sample_files2.csv test_results/sample_files.csv + rm test_results/sample_files1.csv + rm test_results/sample_files2.csv + + - name: Store results + uses: actions/upload-artifact@v4 + with: + path: workflow/tests/test_results + name: test_results compare-results: if: github.event_name == 'pull_request' @@ -205,14 +230,14 @@ jobs: - name: Download feature results uses: actions/download-artifact@v4 with: - path: results - name: results + path: test_results + name: test_results - name: Compare results run: | cp -r base_results/*.csv workflow/tests/base_results - mkdir workflow/tests/results - cp -r results/*.csv workflow/tests/results + mkdir workflow/tests/test_results + cp -r test_results/*.csv workflow/tests/test_results pip install numpy pip install pandas @@ -239,15 +264,15 @@ jobs: - name: Download feature results uses: actions/download-artifact@v4 with: - path: results - name: results + path: test_results + name: test_results - name: Commit latest results shell: bash run: | branch_name="${{ github.head_ref }}" git pull origin $branch_name - cp -r results/*.csv workflow/tests/base_results + cp -r test_results/*.csv workflow/tests/base_results git add workflow/tests/base_results git status if [[ $(git diff --cached --exit-code) ]]; then diff --git a/Changelog.md b/Changelog.md index cc14ddb82..a8c1d93c3 100644 --- a/Changelog.md +++ b/Changelog.md @@ -9,17 +9,19 @@ __New Features__ - The `ElectricAuxiliaryEnergy` input for boilers is no longer used. - **Breaking change**: ERI_Results.csv and ERI_Worksheet.csv combined into a single ERI_Results.csv that better reflects the current ERI calculation components; additional fields (e.g., PEfrac) added and a few renamed/removed. - **Breaking change**: Each `VentilationFan` must have one (and only one) `UsedFor...` element set to true. +- HERS software tests: + - HERS Hot Water test HPXMLs have been updated to be direct EnergyPlus simulations (like the HERS HVAC & DSE tests already were); they are no longer run through ERI simulations. + - HERS HVAC DSE tests now use duct effective R-values instead of nominal insulation R-values to demonstrate that they pass RESNET acceptance criteria. - Allows optional `Ducts/DuctShape` and `Ducts/DuctFractionRectangular` inputs, which affect duct effective R-value used for modeling. - Allows `AverageCeilingHeight` to be optionally provided for infiltration calculations. -- Ground source heat pump model enhancements. - Allows `Roof/RadiantBarrier` to be omitted; defaults to false. -- Adds optional `Slab/extension/GapInsulationRValue` input for cases where a slab has horizontal (under slab) insulation. -- Adds more error-checking for inappropriate inputs (e.g., HVAC SHR=0 or clothes washer IMEF=0). - Allows `FractionDuctArea` as alternative to `DuctSurfaceArea` +- Allows alternative `LabelEnergyUse` (W) input for ceiling fans. +- Allows `Slab/extension/GapInsulationRValue` input for cases where a slab has horizontal (under slab) insulation. +- Ground source heat pump model enhancements. - Now defaults to -20F for `CompressorLockoutTemperature` for variable-speed air-to-air heat pumps. -- Clarifies that Capacity=-1 can be used to autosize HVAC equipment for research purposes or to run tests. - - It should *not* be used for a real home; a warning will be issued when it's used. -- Allow alternative label energy use (W) input for ceiling fans. +- Adds more error-checking for inappropriate inputs (e.g., HVAC SHR=0 or clothes washer IMEF=0). +- Clarifies that HVAC `Capacity=-1` can be used to autosize HVAC equipment for research purposes or to run tests. It should *not* be used for a real home, and a warning will be issued when it's used. __Bugfixes__ - Fixes incorrect Reference Home mechanical ventilation flowrate for attached units (when Aext is not 1). diff --git a/docs/source/testing_framework.rst b/docs/source/testing_framework.rst index 27ebacfe6..3f5d75f23 100644 --- a/docs/source/testing_framework.rst +++ b/docs/source/testing_framework.rst @@ -30,17 +30,16 @@ Or individual tests can be run by specifying the name of the test. A couple exam | ``openstudio es_zerh_test.rb --name=test_epa`` | -Test results in CSV format are created at workflow/tests/test_results. -For many RESNET tests, the Excel spreadsheet test criteria are also implemented in code to automate the process of checking for test failures. -All simulation/HPXML/etc. files generated from running the tests can be found inside the workflow/tests/test_files directory. +Test results in CSV format are created at ``workflow/tests/test_results`` and can be used to populate RESNET Excel spreadsheet forms. +RESNET acceptance criteria are also implemented as part of the tests to check for test failures. -At the completion of the test, there will also be output that denotes the number of failures/errors like so: +At the completion of the test, there will be output that denotes the number of failures/errors like so: ``Finished in 36.067116s, 0.0277 runs/s, 0.9704 assertions/s.`` ``1 runs, 35 assertions, 0 failures, 0 errors, 0 skips`` Software developers may find it convenient to export HPXML files with the same name as the test files included in the repository. -This allows issuing the same commands above to generate test results. +This allows issuing the commands above to generate test results. Official Test Results --------------------- diff --git a/hpxml-measures/.github/workflows/config.yml b/hpxml-measures/.github/workflows/config.yml index b2d3dcf69..8dc9a6fdc 100644 --- a/hpxml-measures/.github/workflows/config.yml +++ b/hpxml-measures/.github/workflows/config.yml @@ -46,7 +46,7 @@ jobs: - name: Store results uses: actions/upload-artifact@v4 with: - path: workflow/tests/results + path: workflow/tests/test_results name: results-unit-tests - name: Build documentation @@ -85,7 +85,7 @@ jobs: - name: Store results uses: actions/upload-artifact@v4 with: - path: workflow/tests/results + path: workflow/tests/test_results name: results-workflow1-tests run-workflow2-tests: @@ -108,7 +108,7 @@ jobs: - name: Store results uses: actions/upload-artifact@v4 with: - path: workflow/tests/results + path: workflow/tests/test_results name: results-workflow2-tests run-windows-tests: @@ -130,12 +130,35 @@ jobs: runs-on: ubuntu-latest needs: [run-workflow1-tests, run-workflow2-tests, run-unit-tests] steps: - - name: Merge Artifacts - uses: actions/upload-artifact/merge@v4 + - uses: actions/checkout@v4 with: - name: results + ref: ${{ github.head_ref }} + + - name: Download all results + uses: actions/download-artifact@v4 + with: + path: test_results pattern: results-* - delete-merged: true + merge-multiple: true + + - name: Delete artifacts + uses: geekyeggo/delete-artifact@v5 + with: + name: results-* + + - name: Merge results + run: | + mkdir workflow/tests/test_results + cp -r test_results/results* workflow/tests/test_results + cd workflow/tests + pip install pandas + for csv in test_results/*1_*.csv; do csv2="${csv/1_/2_}"; csv_out="${csv/1_/_}"; python merge.py $csv $csv2 $csv_out; rm $csv; rm $csv2; done + + - name: Store results + uses: actions/upload-artifact@v4 + with: + path: workflow/tests/test_results + name: test_results compare-results: if: github.event_name == 'pull_request' @@ -165,14 +188,14 @@ jobs: - name: Download feature results uses: actions/download-artifact@v4 with: - path: results - name: results + path: test_results + name: test_results - name: Compare results run: | cp -r base_results/results*.csv workflow/tests/base_results - mkdir workflow/tests/results - cp -r results/results* workflow/tests/results + mkdir workflow/tests/test_results + cp -r test_results/results* workflow/tests/test_results pip install numpy pip install pandas @@ -199,15 +222,15 @@ jobs: - name: Download feature results uses: actions/download-artifact@v4 with: - path: results - name: results + path: test_results + name: test_results - name: Commit latest results shell: bash run: | branch_name="${{ github.head_ref }}" git pull origin $branch_name - cp -r results/results* workflow/tests/base_results + cp -r test_results/results* workflow/tests/base_results git add workflow/tests/base_results git status if [[ $(git diff --cached --exit-code) ]]; then diff --git a/hpxml-measures/.gitignore b/hpxml-measures/.gitignore index f9f806f53..9a9dd072b 100644 --- a/hpxml-measures/.gitignore +++ b/hpxml-measures/.gitignore @@ -1005,7 +1005,7 @@ /workflow/reports /workflow/out.osw /workflow/tests/results -/workflow/tests/run +/workflow/tests/run* /workflow/tests/test* /workflow/sample_files/results /workflow/sample_files/run*/ diff --git a/hpxml-measures/BuildResidentialHPXML/README.md b/hpxml-measures/BuildResidentialHPXML/README.md index cbcc8b564..80bc8246f 100644 --- a/hpxml-measures/BuildResidentialHPXML/README.md +++ b/hpxml-measures/BuildResidentialHPXML/README.md @@ -1805,7 +1805,7 @@ The output heating capacity of the heating system. If not provided, the OS-HPXML **Heating System: Heating Autosizing Factor** -The scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. +The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. - **Name:** ``heating_system_heating_autosizing_factor`` - **Type:** ``Double`` @@ -1814,6 +1814,19 @@ The scaling factor applied to the auto-sizing methodology. If not provided, 1.0
+**Heating System: Heating Autosizing Limit** + +The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used. + +- **Name:** ``heating_system_heating_autosizing_limit`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr`` + +- **Required:** ``false`` + +
+ **Heating System: Fraction Heat Load Served** The heating load served by the heating system. @@ -1931,7 +1944,7 @@ The output cooling capacity of the cooling system. If not provided, the OS-HPXML **Cooling System: Cooling Autosizing Factor** -The scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. +The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. - **Name:** ``cooling_system_cooling_autosizing_factor`` - **Type:** ``Double`` @@ -1940,6 +1953,19 @@ The scaling factor applied to the auto-sizing methodology. If not provided, 1.0
+**Cooling System: Cooling Autosizing Limit** + +The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used. + +- **Name:** ``cooling_system_cooling_autosizing_limit`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr`` + +- **Required:** ``false`` + +
+ **Cooling System: Fraction Cool Load Served** The cooling load served by the cooling system. @@ -2157,7 +2183,7 @@ The output heating capacity of the heat pump. If not provided, the OS-HPXML auto **Heat Pump: Heating Autosizing Factor** -The scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. +The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. - **Name:** ``heat_pump_heating_autosizing_factor`` - **Type:** ``Double`` @@ -2166,6 +2192,19 @@ The scaling factor applied to the auto-sizing methodology. If not provided, 1.0
+**Heat Pump: Heating Autosizing Limit** + +The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used. + +- **Name:** ``heat_pump_heating_autosizing_limit`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr`` + +- **Required:** ``false`` + +
+ **Heat Pump: Heating Capacity Retention Fraction** The output heating capacity of the heat pump at a user-specified temperature (e.g., 17F or 5F) divided by the above nominal heating capacity. Applies to all heat pump types except ground-to-air. If not provided, the OS-HPXML default (see Air-to-Air Heat Pump, Mini-Split Heat Pump, Packaged Terminal Heat Pump, Room Air Conditioner w/ Reverse Cycle) is used. @@ -2207,7 +2246,7 @@ The output cooling capacity of the heat pump. If not provided, the OS-HPXML auto **Heat Pump: Cooling Autosizing Factor** -The scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. +The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. - **Name:** ``heat_pump_cooling_autosizing_factor`` - **Type:** ``Double`` @@ -2216,6 +2255,19 @@ The scaling factor applied to the auto-sizing methodology. If not provided, 1.0
+**Heat Pump: Cooling Autosizing Limit** + +The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used. + +- **Name:** ``heat_pump_cooling_autosizing_limit`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr`` + +- **Required:** ``false`` + +
+ **Heat Pump: Fraction Heat Load Served** The heating load served by the heat pump. @@ -2270,7 +2322,7 @@ The backup type of the heat pump. If 'integrated', represents e.g. built-in elec **Heat Pump: Backup Heating Autosizing Factor** -The scaling factor applied to the auto-sizing methodology if Backup Type is 'integrated'. If not provided, 1.0 is used. If Backup Type is 'separate', use Heating System 2: Heating Autosizing Factor. +The capacity scaling factor applied to the auto-sizing methodology if Backup Type is 'integrated'. If not provided, 1.0 is used. If Backup Type is 'separate', use Heating System 2: Heating Autosizing Factor. - **Name:** ``heat_pump_backup_heating_autosizing_factor`` - **Type:** ``Double`` @@ -2279,6 +2331,19 @@ The scaling factor applied to the auto-sizing methodology if Backup Type is 'int
+**Heat Pump: Backup Heating Autosizing Limit** + +The maximum capacity limit applied to the auto-sizing methodology if Backup Type is 'integrated'. If not provided, no limit is used. If Backup Type is 'separate', use Heating System 2: Heating Autosizing Limit. + +- **Name:** ``heat_pump_backup_heating_autosizing_limit`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr`` + +- **Required:** ``false`` + +
+ **Heat Pump: Backup Fuel Type** The backup fuel type of the heat pump. Only applies if Backup Type is 'integrated'. @@ -2712,7 +2777,7 @@ The output heating capacity of the second heating system. If not provided, the O **Heating System 2: Heating Autosizing Factor** -The scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. +The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. - **Name:** ``heating_system_2_heating_autosizing_factor`` - **Type:** ``Double`` @@ -2721,6 +2786,19 @@ The scaling factor applied to the auto-sizing methodology. If not provided, 1.0
+**Heating System 2: Heating Autosizing Limit** + +The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used. + +- **Name:** ``heating_system_2_heating_autosizing_limit`` +- **Type:** ``Double`` + +- **Units:** ``Btu/hr`` + +- **Required:** ``false`` + +
+ **Heating System 2: Fraction Heat Load Served** The heat load served fraction of the second heating system. Ignored if this heating system serves as a backup system for a heat pump. @@ -2800,6 +2878,19 @@ Enter a date like 'Jun 1 - Oct 31'. If not provided, the OS-HPXML default (see <
+**HVAC Blower: Fan Efficiency** + +The blower fan efficiency at maximum fan speed. Applies only to split (not packaged) systems (i.e., applies to ducted systems as well as ductless mini-split systems). If not provided, the OS-HPXML default (see HPXML Heating Systems, HPXML Cooling Systems, HPXML Heat Pumps) is used. + +- **Name:** ``hvac_blower_fan_watts_per_cfm`` +- **Type:** ``Double`` + +- **Units:** ``W/CFM`` + +- **Required:** ``false`` + +
+ **Ducts: Leakage Units** The leakage units of the ducts. diff --git a/hpxml-measures/BuildResidentialHPXML/measure.rb b/hpxml-measures/BuildResidentialHPXML/measure.rb index e04af4b82..93dbfdc99 100644 --- a/hpxml-measures/BuildResidentialHPXML/measure.rb +++ b/hpxml-measures/BuildResidentialHPXML/measure.rb @@ -1127,7 +1127,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_heating_autosizing_factor', false) arg.setDisplayName('Heating System: Heating Autosizing Factor') - arg.setDescription('The scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used.') + arg.setDescription('The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used.') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_heating_autosizing_limit', false) + arg.setDisplayName('Heating System: Heating Autosizing Limit') + arg.setDescription('The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used.') + arg.setUnits('Btu/hr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_fraction_heat_load_served', true) @@ -1186,7 +1192,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooling_system_cooling_autosizing_factor', false) arg.setDisplayName('Cooling System: Cooling Autosizing Factor') - arg.setDescription('The scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used.') + arg.setDescription('The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used.') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooling_system_cooling_autosizing_limit', false) + arg.setDisplayName('Cooling System: Cooling Autosizing Limit') + arg.setDescription('The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used.') + arg.setUnits('Btu/hr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('cooling_system_fraction_cool_load_served', true) @@ -1325,7 +1337,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_heating_autosizing_factor', false) arg.setDisplayName('Heat Pump: Heating Autosizing Factor') - arg.setDescription('The scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used.') + arg.setDescription('The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used.') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_heating_autosizing_limit', false) + arg.setDisplayName('Heat Pump: Heating Autosizing Limit') + arg.setDescription('The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used.') + arg.setUnits('Btu/hr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_heating_capacity_retention_fraction', false) @@ -1348,7 +1366,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_cooling_autosizing_factor', false) arg.setDisplayName('Heat Pump: Cooling Autosizing Factor') - arg.setDescription('The scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used.') + arg.setDescription('The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used.') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_cooling_autosizing_limit', false) + arg.setDisplayName('Heat Pump: Cooling Autosizing Limit') + arg.setDescription('The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used.') + arg.setUnits('Btu/hr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_fraction_heat_load_served', true) @@ -1379,7 +1403,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_backup_heating_autosizing_factor', false) arg.setDisplayName('Heat Pump: Backup Heating Autosizing Factor') - arg.setDescription("The scaling factor applied to the auto-sizing methodology if Backup Type is '#{HPXML::HeatPumpBackupTypeIntegrated}'. If not provided, 1.0 is used. If Backup Type is '#{HPXML::HeatPumpBackupTypeSeparate}', use Heating System 2: Heating Autosizing Factor.") + arg.setDescription("The capacity scaling factor applied to the auto-sizing methodology if Backup Type is '#{HPXML::HeatPumpBackupTypeIntegrated}'. If not provided, 1.0 is used. If Backup Type is '#{HPXML::HeatPumpBackupTypeSeparate}', use Heating System 2: Heating Autosizing Factor.") + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heat_pump_backup_heating_autosizing_limit', false) + arg.setDisplayName('Heat Pump: Backup Heating Autosizing Limit') + arg.setDescription("The maximum capacity limit applied to the auto-sizing methodology if Backup Type is '#{HPXML::HeatPumpBackupTypeIntegrated}'. If not provided, no limit is used. If Backup Type is '#{HPXML::HeatPumpBackupTypeSeparate}', use Heating System 2: Heating Autosizing Limit.") + arg.setUnits('Btu/hr') args << arg arg = OpenStudio::Measure::OSArgument::makeChoiceArgument('heat_pump_backup_fuel', heat_pump_backup_fuel_choices, true) @@ -1625,7 +1655,13 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_2_heating_autosizing_factor', false) arg.setDisplayName('Heating System 2: Heating Autosizing Factor') - arg.setDescription('The scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used.') + arg.setDescription('The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used.') + args << arg + + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_2_heating_autosizing_limit', false) + arg.setDisplayName('Heating System 2: Heating Autosizing Limit') + arg.setDescription('The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used.') + arg.setUnits('Btu/hr') args << arg arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('heating_system_2_fraction_heat_load_served', true) @@ -1669,6 +1705,12 @@ def arguments(model) # rubocop:disable Lint/UnusedMethodArgument arg.setDescription("Enter a date like 'Jun 1 - Oct 31'. If not provided, the OS-HPXML default (see HPXML HVAC Control) is used. Can also provide '#{HPXML::BuildingAmerica}' to use automatic seasons from the Building America House Simulation Protocols.") args << arg + arg = OpenStudio::Measure::OSArgument::makeDoubleArgument('hvac_blower_fan_watts_per_cfm', false) + arg.setDisplayName('HVAC Blower: Fan Efficiency') + arg.setDescription("The blower fan efficiency at maximum fan speed. Applies only to split (not packaged) systems (i.e., applies to ducted systems as well as ductless #{HPXML::HVACTypeHeatPumpMiniSplit} systems). If not provided, the OS-HPXML default (see HPXML Heating Systems, HPXML Cooling Systems, HPXML Heat Pumps) is used.") + arg.setUnits('W/CFM') + args << arg + duct_leakage_units_choices = OpenStudio::StringVector.new duct_leakage_units_choices << HPXML::UnitsCFM25 duct_leakage_units_choices << HPXML::UnitsCFM50 @@ -3742,6 +3784,7 @@ def self.create(runner, model, args, epw_path, hpxml_path, existing_hpxml_path) set_geothermal_loop(hpxml_bldg, args) set_secondary_heating_systems(hpxml_bldg, args) set_hvac_distribution(hpxml_bldg, args) + set_hvac_blower(hpxml_bldg, args) set_hvac_control(hpxml, hpxml_bldg, args, epw_file, weather) set_ventilation_fans(hpxml_bldg, args) set_water_heating_systems(hpxml_bldg, args) @@ -5217,6 +5260,10 @@ def self.set_heating_systems(hpxml_bldg, args) heating_autosizing_factor = args[:heating_system_heating_autosizing_factor].get end + if args[:heating_system_heating_autosizing_limit].is_initialized + heating_autosizing_limit = args[:heating_system_heating_autosizing_limit].get + end + if [HPXML::HVACTypeElectricResistance].include? heating_system_type heating_system_fuel = HPXML::FuelTypeElectricity else @@ -5264,6 +5311,7 @@ def self.set_heating_systems(hpxml_bldg, args) heating_system_fuel: heating_system_fuel, heating_capacity: heating_capacity, heating_autosizing_factor: heating_autosizing_factor, + heating_autosizing_limit: heating_autosizing_limit, fraction_heat_load_served: fraction_heat_load_served, heating_efficiency_afue: heating_efficiency_afue, heating_efficiency_percent: heating_efficiency_percent, @@ -5288,6 +5336,10 @@ def self.set_cooling_systems(hpxml_bldg, args) cooling_autosizing_factor = args[:cooling_system_cooling_autosizing_factor].get end + if args[:cooling_system_cooling_autosizing_limit].is_initialized + cooling_autosizing_limit = args[:cooling_system_cooling_autosizing_limit].get + end + if args[:cooling_system_cooling_compressor_type].is_initialized if [HPXML::HVACTypeCentralAirConditioner, HPXML::HVACTypeMiniSplitAirConditioner].include? cooling_system_type compressor_type = args[:cooling_system_cooling_compressor_type].get @@ -5353,6 +5405,7 @@ def self.set_cooling_systems(hpxml_bldg, args) cooling_system_fuel: HPXML::FuelTypeElectricity, cooling_capacity: cooling_capacity, cooling_autosizing_factor: cooling_autosizing_factor, + cooling_autosizing_limit: cooling_autosizing_limit, fraction_cool_load_served: args[:cooling_system_fraction_cool_load_served], compressor_type: compressor_type, cooling_shr: cooling_shr, @@ -5420,6 +5473,10 @@ def self.set_heat_pumps(hpxml_bldg, args) heating_autosizing_factor = args[:heat_pump_heating_autosizing_factor].get end + if args[:heat_pump_heating_autosizing_limit].is_initialized + heating_autosizing_limit = args[:heat_pump_heating_autosizing_limit].get + end + if args[:heat_pump_heating_capacity_retention_fraction].is_initialized heating_capacity_retention_fraction = args[:heat_pump_heating_capacity_retention_fraction].get end @@ -5432,6 +5489,10 @@ def self.set_heat_pumps(hpxml_bldg, args) backup_heating_autosizing_factor = args[:heat_pump_backup_heating_autosizing_factor].get end + if args[:heat_pump_backup_heating_autosizing_limit].is_initialized + backup_heating_autosizing_limit = args[:heat_pump_backup_heating_autosizing_limit].get + end + if args[:heat_pump_backup_type] == HPXML::HeatPumpBackupTypeIntegrated backup_type = args[:heat_pump_backup_type] backup_heating_fuel = args[:heat_pump_backup_fuel] @@ -5477,6 +5538,10 @@ def self.set_heat_pumps(hpxml_bldg, args) cooling_autosizing_factor = args[:heat_pump_cooling_autosizing_factor].get end + if args[:heat_pump_cooling_autosizing_limit].is_initialized + cooling_autosizing_limit = args[:heat_pump_cooling_autosizing_limit].get + end + if args[:heat_pump_cooling_compressor_type].is_initialized if [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit].include? heat_pump_type compressor_type = args[:heat_pump_cooling_compressor_type].get @@ -5535,7 +5600,9 @@ def self.set_heat_pumps(hpxml_bldg, args) heat_pump_fuel: HPXML::FuelTypeElectricity, heating_capacity: heating_capacity, heating_autosizing_factor: heating_autosizing_factor, + heating_autosizing_limit: heating_autosizing_limit, backup_heating_autosizing_factor: backup_heating_autosizing_factor, + backup_heating_autosizing_limit: backup_heating_autosizing_limit, heating_capacity_retention_fraction: heating_capacity_retention_fraction, heating_capacity_retention_temp: heating_capacity_retention_temp, compressor_type: compressor_type, @@ -5543,6 +5610,7 @@ def self.set_heat_pumps(hpxml_bldg, args) cooling_shr: cooling_shr, cooling_capacity: cooling_capacity, cooling_autosizing_factor: cooling_autosizing_factor, + cooling_autosizing_limit: cooling_autosizing_limit, fraction_heat_load_served: fraction_heat_load_served, fraction_cool_load_served: fraction_cool_load_served, backup_type: backup_type, @@ -5717,6 +5785,10 @@ def self.set_secondary_heating_systems(hpxml_bldg, args) heating_autosizing_factor = args[:heating_system_2_heating_autosizing_factor].get end + if args[:heating_system_2_heating_autosizing_limit].is_initialized + heating_autosizing_limit = args[:heating_system_2_heating_autosizing_limit].get + end + if args[:heating_system_2_fuel] == HPXML::HVACTypeElectricResistance heating_system_fuel = HPXML::FuelTypeElectricity else @@ -5742,6 +5814,7 @@ def self.set_secondary_heating_systems(hpxml_bldg, args) heating_system_fuel: heating_system_fuel, heating_capacity: heating_capacity, heating_autosizing_factor: heating_autosizing_factor, + heating_autosizing_limit: heating_autosizing_limit, fraction_heat_load_served: fraction_heat_load_served, heating_efficiency_afue: heating_efficiency_afue, heating_efficiency_percent: heating_efficiency_percent) @@ -5828,6 +5901,31 @@ def self.set_hvac_distribution(hpxml_bldg, args) end end + def self.set_hvac_blower(hpxml_bldg, args) + # Blower fan W/cfm + hpxml_bldg.hvac_systems.each do |hvac_system| + next unless (!hvac_system.distribution_system.nil? && hvac_system.distribution_system.distribution_system_type == HPXML::HVACDistributionTypeAir) || (hvac_system.is_a?(HPXML::HeatPump) && [HPXML::HVACTypeHeatPumpMiniSplit].include?(hvac_system.heat_pump_type)) + + if args[:hvac_blower_fan_watts_per_cfm].is_initialized + fan_watts_per_cfm = args[:hvac_blower_fan_watts_per_cfm].get + end + + if hvac_system.is_a?(HPXML::HeatingSystem) + if [HPXML::HVACTypeFurnace].include?(hvac_system.heating_system_type) + hvac_system.fan_watts_per_cfm = fan_watts_per_cfm + end + elsif hvac_system.is_a?(HPXML::CoolingSystem) + if [HPXML::HVACTypeCentralAirConditioner, HPXML::HVACTypeMiniSplitAirConditioner].include?(hvac_system.cooling_system_type) + hvac_system.fan_watts_per_cfm = fan_watts_per_cfm + end + elsif hvac_system.is_a?(HPXML::HeatPump) + if [HPXML::HVACTypeHeatPumpAirToAir, HPXML::HVACTypeHeatPumpMiniSplit, HPXML::HVACTypeHeatPumpGroundToAir].include?(hvac_system.heat_pump_type) + hvac_system.fan_watts_per_cfm = fan_watts_per_cfm + end + end + end + end + def self.set_duct_leakages(args, hvac_distribution) hvac_distribution.duct_leakage_measurements.add(duct_type: HPXML::DuctTypeSupply, duct_leakage_units: args[:ducts_leakage_units], @@ -6888,10 +6986,14 @@ def self.set_refrigerator(hpxml_bldg, args) usage_multiplier = args[:refrigerator_usage_multiplier].get end + if args[:extra_refrigerator_present] + primary_indicator = true + end + hpxml_bldg.refrigerators.add(id: "Refrigerator#{hpxml_bldg.refrigerators.size + 1}", location: location, rated_annual_kwh: rated_annual_kwh, - primary_indicator: true, + primary_indicator: primary_indicator, usage_multiplier: usage_multiplier) end diff --git a/hpxml-measures/BuildResidentialHPXML/measure.xml b/hpxml-measures/BuildResidentialHPXML/measure.xml index 3663a603d..5071352c3 100644 --- a/hpxml-measures/BuildResidentialHPXML/measure.xml +++ b/hpxml-measures/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.1 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - c3c0c169-df40-4201-8c40-2491d3c416d2 - 2024-04-23T23:55:38Z + b782d66b-066c-47f5-90db-b397e3392d3e + 2024-04-29T21:40:42Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -2324,11 +2324,20 @@ heating_system_heating_autosizing_factor Heating System: Heating Autosizing Factor - The scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. + The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. Double false false + + heating_system_heating_autosizing_limit + Heating System: Heating Autosizing Limit + The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used. + Double + Btu/hr + false + false + heating_system_fraction_heat_load_served Heating System: Fraction Heat Load Served @@ -2471,11 +2480,20 @@ cooling_system_cooling_autosizing_factor Cooling System: Cooling Autosizing Factor - The scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. + The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. Double false false + + cooling_system_cooling_autosizing_limit + Cooling System: Cooling Autosizing Limit + The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used. + Double + Btu/hr + false + false + cooling_system_fraction_cool_load_served Cooling System: Fraction Cool Load Served @@ -2743,8 +2761,17 @@ heat_pump_heating_autosizing_factor Heat Pump: Heating Autosizing Factor - The scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. + The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. + Double + false + false + + + heat_pump_heating_autosizing_limit + Heat Pump: Heating Autosizing Limit + The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used. Double + Btu/hr false false @@ -2778,11 +2805,20 @@ heat_pump_cooling_autosizing_factor Heat Pump: Cooling Autosizing Factor - The scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. + The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. Double false false + + heat_pump_cooling_autosizing_limit + Heat Pump: Cooling Autosizing Limit + The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used. + Double + Btu/hr + false + false + heat_pump_fraction_heat_load_served Heat Pump: Fraction Heat Load Served @@ -2838,8 +2874,17 @@ heat_pump_backup_heating_autosizing_factor Heat Pump: Backup Heating Autosizing Factor - The scaling factor applied to the auto-sizing methodology if Backup Type is 'integrated'. If not provided, 1.0 is used. If Backup Type is 'separate', use Heating System 2: Heating Autosizing Factor. + The capacity scaling factor applied to the auto-sizing methodology if Backup Type is 'integrated'. If not provided, 1.0 is used. If Backup Type is 'separate', use Heating System 2: Heating Autosizing Factor. + Double + false + false + + + heat_pump_backup_heating_autosizing_limit + Heat Pump: Backup Heating Autosizing Limit + The maximum capacity limit applied to the auto-sizing methodology if Backup Type is 'integrated'. If not provided, no limit is used. If Backup Type is 'separate', use Heating System 2: Heating Autosizing Limit. Double + Btu/hr false false @@ -3355,8 +3400,17 @@ heating_system_2_heating_autosizing_factor Heating System 2: Heating Autosizing Factor - The scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. + The capacity scaling factor applied to the auto-sizing methodology. If not provided, 1.0 is used. + Double + false + false + + + heating_system_2_heating_autosizing_limit + Heating System 2: Heating Autosizing Limit + The maximum capacity limit applied to the auto-sizing methodology. If not provided, no limit is used. Double + Btu/hr false false @@ -3422,6 +3476,15 @@ false false + + hvac_blower_fan_watts_per_cfm + HVAC Blower: Fan Efficiency + The blower fan efficiency at maximum fan speed. Applies only to split (not packaged) systems (i.e., applies to ducted systems as well as ductless mini-split systems). If not provided, the OS-HPXML default (see <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-heating-systems'>HPXML Heating Systems</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-cooling-systems'>HPXML Cooling Systems</a>, <a href='https://openstudio-hpxml.readthedocs.io/en/v1.7.0/workflow_inputs.html#hpxml-heat-pumps'>HPXML Heat Pumps</a>) is used. + Double + W/CFM + false + false + ducts_leakage_units Ducts: Leakage Units @@ -7262,7 +7325,7 @@ README.md md readme - DBA0E5FD + 54A95546 README.md.erb @@ -7279,7 +7342,7 @@ measure.rb rb script - 90280349 + A4FCB77B geometry.rb diff --git a/hpxml-measures/Changelog.md b/hpxml-measures/Changelog.md index c2ec6dd86..85a64c342 100644 --- a/hpxml-measures/Changelog.md +++ b/hpxml-measures/Changelog.md @@ -2,6 +2,7 @@ __New Features__ - Updates to HPXML v4.0-rc4. +- Adds BPI-2400 HPXML test files and results; see [Testing Framework](https://openstudio-hpxml.readthedocs.io/en/latest/testing_framework.html) for more information. - Updates per ANSI/RESNET/ICC 301-2022 w/ Addendum C: - **Breaking change**: Replaces `WaterHeatingSystem/NumberofUnitsServed` with `WaterHeatingSystem/extension/NumberofBedroomsServed` for apportioning shared water heater tank losses. - **Breaking change**: Replaces `HotWaterDistribution/extension/SharedRecirculation/NumberofUnitsServed` with `HotWaterDistribution/extension/SharedRecirculation/NumberofBedroomsServed` for apportioning shared recirculation pump energy. @@ -32,7 +33,8 @@ __New Features__ - Updates to using G-Functions from the [G-Function Library for Modeling Vertical Bore Ground Heat Exchanger](https://gdr.openei.org/submissions/1325). - Updated heating/cooling performance curves to reflect newer equipment. - Allows optional `Ducts/DuctShape` and `Ducts/DuctFractionRectangular` inputs, which affect duct effective R-value used for modeling. -- Allows optional `HeatingAutosizingFactor`, `CoolingAutosizingFactor`, `BackupHeatingAutosizingFactor` inputs to scale HVAC equipment autosizing results. +- Allows optional `HeatingAutosizingFactor`, `CoolingAutosizingFactor`, `BackupHeatingAutosizingFactor` inputs to scale HVAC capacities for autosized equipment. +- Allows optional `HeatingAutosizingLimit`, `CoolingAutosizingLimit`, `BackupHeatingAutosizingLimit` inputs to set maximum HVAC capacities ceiling for autosized equipment. - Adds optional `Slab/extension/GapInsulationRValue` input for cases where a slab has horizontal (under slab) insulation. - Allows radiant barriers for additional locations (attic gable walls and floor); reduced emissivity due to dust assumed for radiant barriers on attic floor. - Adds window and skylight `GlassType` options of "low-e, high-solar-gain" and "low-e, low-solar-gain"; updates U-factor/SHGC lookup tables. @@ -44,6 +46,7 @@ __New Features__ - Adds heat pump backup sizing methodology input. - Add soil and moisture type arguments (for determining ground conductivity and diffusivity) and optional geothermal loop arguments for ground source heat pumps. - The "Geometry: Building Number of Units" input is now written to the HPXML `NumberofUnitsInBuilding` element. + - Adds a blower fan efficiency input for specifying fan power W/cfm at maximum speed. - Manual J design load calculations: - Allow additional outdoor design condition inputs: `DailyTemperatureRange` and `HumidityDifference`. - Miscellaneous improvements. diff --git a/hpxml-measures/HPXMLtoOpenStudio/measure.xml b/hpxml-measures/HPXMLtoOpenStudio/measure.xml index 5c98aa10a..b9dd628bb 100644 --- a/hpxml-measures/HPXMLtoOpenStudio/measure.xml +++ b/hpxml-measures/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.1 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - a62520d4-0a3f-41c1-92fe-1cc1ffcc1938 - 2024-04-23T23:55:40Z + b55edf04-941c-413c-bb54-af96ee6e3aac + 2024-04-29T21:40:45Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -304,7 +304,7 @@ hpxml.rb rb resource - 75F7BCC5 + 6B0D03F0 hpxml_defaults.rb @@ -328,7 +328,7 @@ hpxml_schematron/EPvalidator.xml xml resource - 93C62D66 + 2DB8CF14 hpxml_schematron/iso-schematron.xsd @@ -346,7 +346,7 @@ hvac_sizing.rb rb resource - 7BEC5537 + 88CFBA04 lighting.rb @@ -598,7 +598,7 @@ test_defaults.rb rb test - 68C938E6 + D1E090FE test_enclosure.rb @@ -628,7 +628,7 @@ test_hvac_sizing.rb rb test - 89AEE4D3 + A88A7DC3 test_lighting.rb @@ -670,7 +670,7 @@ test_validation.rb rb test - F781C8D3 + 782CDD67 test_water_heater.rb diff --git a/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb b/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb index b40f064b7..5e3686e11 100644 --- a/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml.rb @@ -4280,7 +4280,7 @@ def initialize(hpxml_object, *args) :third_party_certification, :htg_seed_id, :is_shared_system, :number_of_units_served, :shared_loop_watts, :shared_loop_motor_efficiency, :fan_coil_watts, :fan_watts_per_cfm, :airflow_defect_ratio, :fan_watts, :heating_airflow_cfm, :location, :primary_system, - :pilot_light, :pilot_light_btuh, :electric_resistance_distribution, :heating_autosizing_factor] + :pilot_light, :pilot_light_btuh, :electric_resistance_distribution, :heating_autosizing_factor, :heating_autosizing_limit] attr_accessor(*ATTRS) attr_reader(:heating_detailed_performance_data) @@ -4406,6 +4406,7 @@ def to_doc(building) XMLHelper.add_extension(heating_system, 'AirflowDefectRatio', @airflow_defect_ratio, :float, @airflow_defect_ratio_isdefaulted) unless @airflow_defect_ratio.nil? XMLHelper.add_extension(heating_system, 'HeatingAirflowCFM', @heating_airflow_cfm, :float, @heating_airflow_cfm_isdefaulted) unless @heating_airflow_cfm.nil? XMLHelper.add_extension(heating_system, 'HeatingAutosizingFactor', @heating_autosizing_factor, :float, @heating_autosizing_factor_isdefaulted) unless @heating_autosizing_factor.nil? + XMLHelper.add_extension(heating_system, 'HeatingAutosizingLimit', @heating_autosizing_limit, :float, @heating_autosizing_limit_isdefaulted) unless @heating_autosizing_limit.nil? XMLHelper.add_extension(heating_system, 'HeatingSeedId', @htg_seed_id, :string) unless @htg_seed_id.nil? if @primary_system primary_heating_system = XMLHelper.insert_element(primary_systems, 'PrimaryHeatingSystem') @@ -4446,6 +4447,7 @@ def from_doc(heating_system) @airflow_defect_ratio = XMLHelper.get_value(heating_system, 'extension/AirflowDefectRatio', :float) @heating_airflow_cfm = XMLHelper.get_value(heating_system, 'extension/HeatingAirflowCFM', :float) @heating_autosizing_factor = XMLHelper.get_value(heating_system, 'extension/HeatingAutosizingFactor', :float) + @heating_autosizing_limit = XMLHelper.get_value(heating_system, 'extension/HeatingAutosizingLimit', :float) @htg_seed_id = XMLHelper.get_value(heating_system, 'extension/HeatingSeedId', :string) primary_heating_system = HPXML::get_idref(XMLHelper.get_element(heating_system, '../PrimarySystems/PrimaryHeatingSystem')) if primary_heating_system == @id @@ -4491,7 +4493,7 @@ def initialize(hpxml_object, *args) :fan_watts_per_cfm, :charge_defect_ratio, :cooling_airflow_cfm, :location, :primary_system, :integrated_heating_system_fuel, :integrated_heating_system_capacity, :integrated_heating_system_efficiency_percent, :integrated_heating_system_fraction_heat_load_served, :integrated_heating_system_airflow_cfm, :htg_seed_id, :crankcase_heater_watts, - :cooling_autosizing_factor] + :cooling_autosizing_factor, :cooling_autosizing_limit] attr_accessor(*ATTRS) attr_reader(:cooling_detailed_performance_data) @@ -4608,6 +4610,7 @@ def to_doc(building) XMLHelper.add_extension(cooling_system, 'FanCoilWatts', @fan_coil_watts, :float) unless @fan_coil_watts.nil? XMLHelper.add_extension(cooling_system, 'CrankcaseHeaterPowerWatts', @crankcase_heater_watts, :float, @crankcase_heater_watts_isdefaulted) unless @crankcase_heater_watts.nil? XMLHelper.add_extension(cooling_system, 'CoolingAutosizingFactor', @cooling_autosizing_factor, :float, @cooling_autosizing_factor_isdefaulted) unless @cooling_autosizing_factor.nil? + XMLHelper.add_extension(cooling_system, 'CoolingAutosizingLimit', @cooling_autosizing_limit, :float, @cooling_autosizing_limit_isdefaulted) unless @cooling_autosizing_limit.nil? XMLHelper.add_extension(cooling_system, 'CoolingSeedId', @clg_seed_id, :string) unless @clg_seed_id.nil? XMLHelper.add_extension(cooling_system, 'HeatingSeedId', @htg_seed_id, :string) unless @htg_seed_id.nil? if @primary_system @@ -4652,6 +4655,7 @@ def from_doc(cooling_system) @fan_coil_watts = XMLHelper.get_value(cooling_system, 'extension/FanCoilWatts', :float) @crankcase_heater_watts = XMLHelper.get_value(cooling_system, 'extension/CrankcaseHeaterPowerWatts', :float) @cooling_autosizing_factor = XMLHelper.get_value(cooling_system, 'extension/CoolingAutosizingFactor', :float) + @cooling_autosizing_limit = XMLHelper.get_value(cooling_system, 'extension/CoolingAutosizingLimit', :float) @clg_seed_id = XMLHelper.get_value(cooling_system, 'extension/CoolingSeedId', :string) @htg_seed_id = XMLHelper.get_value(cooling_system, 'extension/HeatingSeedId', :string) primary_cooling_system = HPXML::get_idref(XMLHelper.get_element(cooling_system, '../PrimarySystems/PrimaryCoolingSystem')) @@ -4807,7 +4811,8 @@ def initialize(hpxml_object, *args) :shared_loop_motor_efficiency, :airflow_defect_ratio, :charge_defect_ratio, :heating_airflow_cfm, :cooling_airflow_cfm, :location, :primary_heating_system, :primary_cooling_system, :heating_capacity_retention_fraction, :heating_capacity_retention_temp, :crankcase_heater_watts, - :geothermal_loop_idref, :cooling_autosizing_factor, :heating_autosizing_factor, :backup_heating_autosizing_factor] + :geothermal_loop_idref, :cooling_autosizing_factor, :heating_autosizing_factor, :backup_heating_autosizing_factor, + :cooling_autosizing_limit, :heating_autosizing_limit, :backup_heating_autosizing_limit] attr_accessor(*ATTRS) attr_reader(:cooling_detailed_performance_data) attr_reader(:heating_detailed_performance_data) @@ -4989,6 +4994,9 @@ def to_doc(building) XMLHelper.add_extension(heat_pump, 'CoolingAutosizingFactor', @cooling_autosizing_factor, :float, @cooling_autosizing_factor_isdefaulted) unless @cooling_autosizing_factor.nil? XMLHelper.add_extension(heat_pump, 'HeatingAutosizingFactor', @heating_autosizing_factor, :float, @heating_autosizing_factor_isdefaulted) unless @heating_autosizing_factor.nil? XMLHelper.add_extension(heat_pump, 'BackupHeatingAutosizingFactor', @backup_heating_autosizing_factor, :float, @backup_heating_autosizing_factor_isdefaulted) unless @backup_heating_autosizing_factor.nil? + XMLHelper.add_extension(heat_pump, 'CoolingAutosizingLimit', @cooling_autosizing_limit, :float, @cooling_autosizing_limit_isdefaulted) unless @cooling_autosizing_limit.nil? + XMLHelper.add_extension(heat_pump, 'HeatingAutosizingLimit', @heating_autosizing_limit, :float, @heating_autosizing_limit_isdefaulted) unless @heating_autosizing_limit.nil? + XMLHelper.add_extension(heat_pump, 'BackupHeatingAutosizingLimit', @backup_heating_autosizing_limit, :float, @backup_heating_autosizing_limit_isdefaulted) unless @backup_heating_autosizing_limit.nil? XMLHelper.add_extension(heat_pump, 'HeatingSeedId', @htg_seed_id, :string) unless @htg_seed_id.nil? XMLHelper.add_extension(heat_pump, 'CoolingSeedId', @clg_seed_id, :string) unless @clg_seed_id.nil? if @primary_heating_system @@ -5053,6 +5061,9 @@ def from_doc(heat_pump) @cooling_autosizing_factor = XMLHelper.get_value(heat_pump, 'extension/CoolingAutosizingFactor', :float) @heating_autosizing_factor = XMLHelper.get_value(heat_pump, 'extension/HeatingAutosizingFactor', :float) @backup_heating_autosizing_factor = XMLHelper.get_value(heat_pump, 'extension/BackupHeatingAutosizingFactor', :float) + @cooling_autosizing_limit = XMLHelper.get_value(heat_pump, 'extension/CoolingAutosizingLimit', :float) + @heating_autosizing_limit = XMLHelper.get_value(heat_pump, 'extension/HeatingAutosizingLimit', :float) + @backup_heating_autosizing_limit = XMLHelper.get_value(heat_pump, 'extension/BackupHeatingAutosizingLimit', :float) @htg_seed_id = XMLHelper.get_value(heat_pump, 'extension/HeatingSeedId', :string) @clg_seed_id = XMLHelper.get_value(heat_pump, 'extension/CoolingSeedId', :string) primary_heating_system = HPXML::get_idref(XMLHelper.get_element(heat_pump, '../PrimarySystems/PrimaryHeatingSystem')) diff --git a/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index c3e30c210..b80c8797c 100644 --- a/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/hpxml-measures/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -821,6 +821,8 @@ Expected 1 element(s) for xpath: HeatingSystemType[ElectricResistance | Furnace | WallFurnace | FloorFurnace | Boiler | Stove | SpaceHeater | Fireplace] Expected 0 or 1 element(s) for xpath: extension/HeatingAutosizingFactor HeatingAutosizingFactor should be greater than 0.0 + Expected 0 or 1 element(s) for xpath: extension/HeatingAutosizingLimit + HeatingAutosizingLimit should be greater than 0.0 @@ -1026,7 +1028,7 @@ Expected 0 or 1 element(s) for xpath: extension/PilotLightBtuh - + [CoolingSystem] @@ -1035,6 +1037,8 @@ Expected CoolingSystemType to be 'central air conditioner' or 'room air conditioner' or 'evaporative cooler' or 'mini-split' or 'chiller' or 'cooling tower' or 'packaged terminal air conditioner' Expected 0 or 1 element(s) for xpath: extension/CoolingAutosizingFactor CoolingAutosizingFactor should be greater than 0.0 + Expected 0 or 1 element(s) for xpath: extension/CoolingAutosizingLimit + CoolingAutosizingLimit should be greater than 0.0 @@ -1223,6 +1227,10 @@ Expected 0 or 1 element(s) for xpath: extension/HeatingAutosizingFactor CoolingAutosizingFactor should be greater than 0.0 HeatingAutosizingFactor should be greater than 0.0 + Expected 0 or 1 element(s) for xpath: extension/CoolingAutosizingLimit + Expected 0 or 1 element(s) for xpath: extension/HeatingAutosizingLimit + CoolingAutosizingLimit should be greater than 0.0 + HeatingAutosizingLimit should be greater than 0.0 @@ -1406,7 +1414,7 @@ Cooling capacity should typically be greater than or equal to 1000 Btu/hr. - + [HeatPumpCapacityRetention] @@ -1441,6 +1449,8 @@ Expected 0 or 1 element(s) for xpath: BackupHeatingCapacity Expected 0 or 1 element(s) for xpath: extension/BackupHeatingAutosizingFactor BackupHeatingAutosizingFactor should be greater than 0.0 + Expected 0 or 1 element(s) for xpath: extension/BackupHeatingAutosizingLimit + BackupHeatingAutosizingLimit should be greater than 0.0 Percent efficiency should typically be greater than or equal to 0.5. AFUE should typically be greater than or equal to 0.5. @@ -1458,6 +1468,7 @@ Expected 0 element(s) for xpath: BackupAnnualHeatingEfficiency Expected 0 element(s) for xpath: BackupHeatingCapacity Expected 0 element(s) for xpath: extension/BackupHeatingAutosizingFactor + Expected 0 element(s) for xpath: extension/BackupHeatingAutosizingLimit diff --git a/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 473145e6c..337470f5a 100644 --- a/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/hpxml-measures/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -46,7 +46,7 @@ def self.calculate(runner, weather, hpxml_bldg, cfa, hvac_systems, update_hpxml: apply_hvac_heat_pump_logic(hvac_sizing_values, hvac_cooling, frac_heat_load_served, frac_cool_load_served) apply_hvac_equipment_adjustments(mj, runner, hvac_sizing_values, weather, hvac_heating, hvac_cooling, hvac_system) apply_hvac_installation_quality(mj, hvac_sizing_values, hvac_heating, hvac_cooling, frac_heat_load_served, frac_cool_load_served) - apply_hvac_autosizing_factors(hvac_sizing_values, hvac_heating, hvac_cooling) + apply_hvac_autosizing_factors_and_limits(hvac_sizing_values, hvac_heating, hvac_cooling) apply_hvac_fixed_capacities(hvac_sizing_values, hvac_heating, hvac_cooling) apply_hvac_ground_loop(mj, runner, hvac_sizing_values, weather, hvac_cooling) apply_hvac_finalize_airflows(hvac_sizing_values, hvac_heating, hvac_cooling) @@ -1898,18 +1898,39 @@ def self.apply_hvac_installation_quality(mj, hvac_sizing_values, hvac_heating, h end end - def self.apply_hvac_autosizing_factors(hvac_sizing_values, hvac_heating, hvac_cooling) + def self.apply_hvac_autosizing_factors_and_limits(hvac_sizing_values, hvac_heating, hvac_cooling) if not hvac_cooling.nil? - hvac_sizing_values.Cool_Capacity *= hvac_cooling.cooling_autosizing_factor - hvac_sizing_values.Cool_Airflow *= hvac_cooling.cooling_autosizing_factor - hvac_sizing_values.Cool_Capacity_Sens *= hvac_cooling.cooling_autosizing_factor + cooling_autosizing_limit = hvac_cooling.cooling_autosizing_limit + if cooling_autosizing_limit.nil? + cooling_autosizing_limit = 1 / Constants.small + end + + cooling_autosizing_factor = [hvac_cooling.cooling_autosizing_factor, cooling_autosizing_limit / hvac_sizing_values.Cool_Capacity].min + + hvac_sizing_values.Cool_Capacity *= cooling_autosizing_factor + hvac_sizing_values.Cool_Airflow *= cooling_autosizing_factor + hvac_sizing_values.Cool_Capacity_Sens *= cooling_autosizing_factor end if not hvac_heating.nil? - hvac_sizing_values.Heat_Capacity *= hvac_heating.heating_autosizing_factor - hvac_sizing_values.Heat_Airflow *= hvac_heating.heating_autosizing_factor + heating_autosizing_limit = hvac_heating.heating_autosizing_limit + if heating_autosizing_limit.nil? + heating_autosizing_limit = 1 / Constants.small + end + + heating_autosizing_factor = [hvac_heating.heating_autosizing_factor, heating_autosizing_limit / hvac_sizing_values.Heat_Capacity].min + + hvac_sizing_values.Heat_Capacity *= heating_autosizing_factor + hvac_sizing_values.Heat_Airflow *= heating_autosizing_factor end if (hvac_cooling.is_a? HPXML::HeatPump) && (hvac_cooling.backup_type == HPXML::HeatPumpBackupTypeIntegrated) - hvac_sizing_values.Heat_Capacity_Supp *= hvac_cooling.backup_heating_autosizing_factor + backup_heating_autosizing_limit = hvac_cooling.backup_heating_autosizing_limit + if backup_heating_autosizing_limit.nil? + backup_heating_autosizing_limit = 1 / Constants.small + end + + backup_heating_autosizing_factor = [hvac_cooling.backup_heating_autosizing_factor, backup_heating_autosizing_limit / hvac_sizing_values.Heat_Capacity_Supp].min + + hvac_sizing_values.Heat_Capacity_Supp *= backup_heating_autosizing_factor end end diff --git a/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb b/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb index 63604d8b3..744dc0246 100644 --- a/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/hpxml-measures/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1178,21 +1178,21 @@ def test_central_air_conditioners hpxml_bldg.cooling_systems[0].crankcase_heater_watts = 40.0 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_central_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 12.0, 40.0, 1.0) + _test_default_central_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, nil, -0.11, -0.22, 12345, 12.0, 40.0, 1.0) # Test defaults - SEER2 hpxml_bldg.cooling_systems[0].cooling_efficiency_seer = nil hpxml_bldg.cooling_systems[0].cooling_efficiency_seer2 = 11.4 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_central_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 12.0, 40.0, 1.0) + _test_default_central_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, nil, -0.11, -0.22, 12345, 12.0, 40.0, 1.0) # Test autosizing with factors hpxml_bldg.cooling_systems[0].cooling_capacity = nil hpxml_bldg.cooling_systems[0].cooling_autosizing_factor = 1.2 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_central_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, nil, 12.0, 40.0, 1.2) + _test_default_central_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, nil, -0.11, -0.22, nil, 12.0, 40.0, 1.2) # Test defaults hpxml_bldg.cooling_systems[0].cooling_shr = nil @@ -1202,10 +1202,11 @@ def test_central_air_conditioners hpxml_bldg.cooling_systems[0].airflow_defect_ratio = nil hpxml_bldg.cooling_systems[0].cooling_capacity = nil hpxml_bldg.cooling_systems[0].cooling_autosizing_factor = nil + hpxml_bldg.cooling_systems[0].cooling_autosizing_limit = nil hpxml_bldg.cooling_systems[0].crankcase_heater_watts = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_central_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.73, HPXML::HVACCompressorTypeSingleStage, 0.5, 0, 0, nil, 12.0, 50.0, 1.0) + _test_default_central_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.73, HPXML::HVACCompressorTypeSingleStage, 0.5, nil, 0, 0, nil, 12.0, 50.0, 1.0) end def test_room_air_conditioners @@ -1216,23 +1217,24 @@ def test_room_air_conditioners hpxml_bldg.cooling_systems[0].crankcase_heater_watts = 40.0 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.88, 12345, 40.0, 1.0) + _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.88, nil, 12345, 40.0, 1.0) # Test autosizing with factors hpxml_bldg.cooling_systems[0].cooling_capacity = nil hpxml_bldg.cooling_systems[0].cooling_autosizing_factor = 1.2 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.88, nil, 40.0, 1.2) + _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.88, nil, nil, 40.0, 1.2) # Test defaults hpxml_bldg.cooling_systems[0].cooling_shr = nil hpxml_bldg.cooling_systems[0].cooling_capacity = nil hpxml_bldg.cooling_systems[0].crankcase_heater_watts = nil hpxml_bldg.cooling_systems[0].cooling_autosizing_factor = nil + hpxml_bldg.cooling_systems[0].cooling_autosizing_limit = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.65, nil, 0.0, 1.0) + _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.65, nil, nil, 0.0, 1.0) end def test_evaporative_coolers @@ -1241,21 +1243,22 @@ def test_evaporative_coolers hpxml_bldg.cooling_systems[0].cooling_capacity = 12345 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_evap_cooler_values(default_hpxml_bldg.cooling_systems[0], 12345, 1.0) + _test_default_evap_cooler_values(default_hpxml_bldg.cooling_systems[0], nil, 12345, 1.0) # Test autosizing with factors hpxml_bldg.cooling_systems[0].cooling_capacity = nil hpxml_bldg.cooling_systems[0].cooling_autosizing_factor = 1.2 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_evap_cooler_values(default_hpxml_bldg.cooling_systems[0], nil, 1.2) + _test_default_evap_cooler_values(default_hpxml_bldg.cooling_systems[0], nil, nil, 1.2) # Test defaults hpxml_bldg.cooling_systems[0].cooling_capacity = nil hpxml_bldg.cooling_systems[0].cooling_autosizing_factor = nil + hpxml_bldg.cooling_systems[0].cooling_autosizing_limit = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_evap_cooler_values(default_hpxml_bldg.cooling_systems[0], nil, 1.0) + _test_default_evap_cooler_values(default_hpxml_bldg.cooling_systems[0], nil, nil, 1.0) end def test_mini_split_air_conditioners @@ -1270,14 +1273,14 @@ def test_mini_split_air_conditioners hpxml_bldg.cooling_systems[0].compressor_type = HPXML::HVACCompressorTypeVariableSpeed XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mini_split_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.78, 0.66, -0.11, -0.22, 12345, 19.0, 40.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0) + _test_default_mini_split_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.78, 0.66, nil, -0.11, -0.22, 12345, 19.0, 40.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0) # Test autosizing with factors hpxml_bldg.cooling_systems[0].cooling_capacity = nil hpxml_bldg.cooling_systems[0].cooling_autosizing_factor = 1.2 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mini_split_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.78, 0.66, -0.11, -0.22, nil, 19.0, 40.0, HPXML::HVACCompressorTypeVariableSpeed, 1.2) + _test_default_mini_split_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.78, 0.66, nil, -0.11, -0.22, nil, 19.0, 40.0, HPXML::HVACCompressorTypeVariableSpeed, 1.2) # Test defaults hpxml_bldg.cooling_systems[0].cooling_shr = nil @@ -1288,22 +1291,23 @@ def test_mini_split_air_conditioners hpxml_bldg.cooling_systems[0].crankcase_heater_watts = nil hpxml_bldg.cooling_systems[0].compressor_type = nil hpxml_bldg.cooling_systems[0].cooling_autosizing_factor = nil + hpxml_bldg.cooling_systems[0].cooling_autosizing_limit = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mini_split_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.73, 0.18, 0, 0, nil, 19.0, 50.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0) + _test_default_mini_split_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.73, 0.18, nil, 0, 0, nil, 19.0, 50.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0) # Test defaults w/ ductless hpxml_bldg.cooling_systems[0].distribution_system.delete XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mini_split_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.73, 0.07, 0, 0, nil, 19.0, 50.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0) + _test_default_mini_split_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.73, 0.07, nil, 0, 0, nil, 19.0, 50.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0) # Test defaults w/ ductless - SEER2 hpxml_bldg.cooling_systems[0].cooling_efficiency_seer = nil hpxml_bldg.cooling_systems[0].cooling_efficiency_seer2 = 13.3 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mini_split_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.73, 0.07, 0, 0, nil, 13.3, 50.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0) + _test_default_mini_split_air_conditioner_values(default_hpxml_bldg.cooling_systems[0], 0.73, 0.07, nil, 0, 0, nil, 13.3, 50.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0) end def test_ptac @@ -1314,23 +1318,24 @@ def test_ptac hpxml_bldg.cooling_systems[0].crankcase_heater_watts = 40.0 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.75, 12345, 40.0, 1.0) + _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.75, nil, 12345, 40.0, 1.0) # Test autosizing with factors hpxml_bldg.cooling_systems[0].cooling_capacity = nil hpxml_bldg.cooling_systems[0].cooling_autosizing_factor = 1.2 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.75, nil, 40.0, 1.2) + _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.75, nil, nil, 40.0, 1.2) # Test defaults hpxml_bldg.cooling_systems[0].cooling_shr = nil hpxml_bldg.cooling_systems[0].cooling_capacity = nil hpxml_bldg.cooling_systems[0].crankcase_heater_watts = nil hpxml_bldg.cooling_systems[0].cooling_autosizing_factor = nil + hpxml_bldg.cooling_systems[0].cooling_autosizing_limit = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.65, nil, 0.0, 1.0) + _test_default_room_air_conditioner_ptac_values(default_hpxml_bldg.cooling_systems[0], 0.65, nil, nil, 0.0, 1.0) end def test_furnaces @@ -1343,14 +1348,14 @@ def test_furnaces hpxml_bldg.heating_systems[0].pilot_light_btuh = 999 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_furnace_values(default_hpxml_bldg.heating_systems[0], 0.66, -0.22, 12345, true, 999, 1.0) + _test_default_furnace_values(default_hpxml_bldg.heating_systems[0], 0.66, nil, -0.22, 12345, true, 999, 1.0) # Test autosizing with factors hpxml_bldg.heating_systems[0].heating_capacity = nil hpxml_bldg.heating_systems[0].heating_autosizing_factor = 1.2 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_furnace_values(default_hpxml_bldg.heating_systems[0], 0.66, -0.22, nil, true, 999, 1.2) + _test_default_furnace_values(default_hpxml_bldg.heating_systems[0], 0.66, nil, -0.22, nil, true, 999, 1.2) # Test defaults hpxml_bldg.heating_systems[0].fan_watts_per_cfm = nil @@ -1358,15 +1363,16 @@ def test_furnaces hpxml_bldg.heating_systems[0].heating_capacity = nil hpxml_bldg.heating_systems[0].pilot_light_btuh = nil hpxml_bldg.heating_systems[0].heating_autosizing_factor = nil + hpxml_bldg.heating_systems[0].heating_autosizing_limit = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_furnace_values(default_hpxml_bldg.heating_systems[0], 0.375, 0, nil, true, 500, 1.0) + _test_default_furnace_values(default_hpxml_bldg.heating_systems[0], 0.375, nil, 0, nil, true, 500, 1.0) # Test defaults w/o pilot hpxml_bldg.heating_systems[0].pilot_light = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_furnace_values(default_hpxml_bldg.heating_systems[0], 0.375, 0, nil, false, nil, 1.0) + _test_default_furnace_values(default_hpxml_bldg.heating_systems[0], 0.375, nil, 0, nil, false, nil, 1.0) # Test defaults w/ gravity distribution system hpxml, hpxml_bldg = _create_hpxml('base-hvac-furnace-gas-only.xml') @@ -1376,7 +1382,7 @@ def test_furnaces hpxml_bldg.heating_systems[0].heating_capacity = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_furnace_values(default_hpxml_bldg.heating_systems[0], 0.0, 0, nil, false, nil, 1.0) + _test_default_furnace_values(default_hpxml_bldg.heating_systems[0], 0.0, nil, 0, nil, false, nil, 1.0) end def test_wall_furnaces @@ -1386,27 +1392,29 @@ def test_wall_furnaces hpxml_bldg.heating_systems[0].heating_capacity = 12345 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_wall_furnace_values(default_hpxml_bldg.heating_systems[0], 22, 12345, 1.0) + _test_default_wall_furnace_values(default_hpxml_bldg.heating_systems[0], 22, nil, 12345, 1.0) # Test autosizing with factors hpxml_bldg.heating_systems[0].heating_capacity = nil hpxml_bldg.heating_systems[0].heating_autosizing_factor = 1.2 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_wall_furnace_values(default_hpxml_bldg.heating_systems[0], 22, nil, 1.2) + _test_default_wall_furnace_values(default_hpxml_bldg.heating_systems[0], 22, nil, nil, 1.2) # Test defaults hpxml_bldg.heating_systems[0].fan_watts = nil hpxml_bldg.heating_systems[0].heating_capacity = nil hpxml_bldg.heating_systems[0].heating_autosizing_factor = nil + hpxml_bldg.heating_systems[0].heating_autosizing_limit = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_wall_furnace_values(default_hpxml_bldg.heating_systems[0], 0, nil, 1.0) + _test_default_wall_furnace_values(default_hpxml_bldg.heating_systems[0], 0, nil, nil, 1.0) # Test defaults w/o pilot + hpxml_bldg.heating_systems[0].pilot_light = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_wall_furnace_values(default_hpxml_bldg.heating_systems[0], 0, nil, 1.0) + _test_default_wall_furnace_values(default_hpxml_bldg.heating_systems[0], 0, nil, nil, 1.0) end def test_floor_furnaces @@ -1418,28 +1426,29 @@ def test_floor_furnaces hpxml_bldg.heating_systems[0].pilot_light_btuh = 999 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_floor_furnace_values(default_hpxml_bldg.heating_systems[0], 22, 12345, true, 999, 1.0) + _test_default_floor_furnace_values(default_hpxml_bldg.heating_systems[0], 22, nil, 12345, true, 999, 1.0) # Test autosizing with factors hpxml_bldg.heating_systems[0].heating_capacity = nil hpxml_bldg.heating_systems[0].heating_autosizing_factor = 1.2 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_floor_furnace_values(default_hpxml_bldg.heating_systems[0], 22, nil, true, 999, 1.2) + _test_default_floor_furnace_values(default_hpxml_bldg.heating_systems[0], 22, nil, nil, true, 999, 1.2) # Test defaults hpxml_bldg.heating_systems[0].fan_watts = nil hpxml_bldg.heating_systems[0].pilot_light_btuh = nil hpxml_bldg.heating_systems[0].heating_autosizing_factor = nil + hpxml_bldg.heating_systems[0].heating_autosizing_limit = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_floor_furnace_values(default_hpxml_bldg.heating_systems[0], 0, nil, true, 500, 1.0) + _test_default_floor_furnace_values(default_hpxml_bldg.heating_systems[0], 0, 706, nil, true, 500, 1.0) # Test defaults w/o pilot hpxml_bldg.heating_systems[0].pilot_light = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_floor_furnace_values(default_hpxml_bldg.heating_systems[0], 0, nil, false, nil, 1.0) + _test_default_floor_furnace_values(default_hpxml_bldg.heating_systems[0], 0, 706, nil, false, nil, 1.0) end def test_electric_resistance @@ -1480,6 +1489,7 @@ def test_boilers hpxml_bldg.heating_systems[0].heating_capacity = nil hpxml_bldg.heating_systems[0].pilot_light_btuh = nil hpxml_bldg.heating_systems[0].heating_autosizing_factor = nil + hpxml_bldg.heating_systems[0].heating_autosizing_limit = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() _test_default_boiler_values(default_hpxml_bldg.heating_systems[0], 170.0, nil, true, 500, 1.0) @@ -1502,29 +1512,29 @@ def test_stoves hpxml_bldg.heating_systems[0].pilot_light_btuh = 999 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_stove_values(default_hpxml_bldg.heating_systems[0], 22, 12345, true, 999, 1.0) + _test_default_stove_values(default_hpxml_bldg.heating_systems[0], 22, nil, 12345, true, 999, 1.0) # Test autosizing with factors hpxml_bldg.heating_systems[0].heating_capacity = nil hpxml_bldg.heating_systems[0].heating_autosizing_factor = 1.2 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_stove_values(default_hpxml_bldg.heating_systems[0], 22, nil, true, 999, 1.2) + _test_default_stove_values(default_hpxml_bldg.heating_systems[0], 22, nil, nil, true, 999, 1.2) # Test defaults hpxml_bldg.heating_systems[0].fan_watts = nil - hpxml_bldg.heating_systems[0].heating_capacity = nil hpxml_bldg.heating_systems[0].pilot_light_btuh = nil hpxml_bldg.heating_systems[0].heating_autosizing_factor = nil + hpxml_bldg.heating_systems[0].heating_autosizing_limit = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_stove_values(default_hpxml_bldg.heating_systems[0], 40, nil, true, 500, 1.0) + _test_default_stove_values(default_hpxml_bldg.heating_systems[0], 40, nil, nil, true, 500, 1.0) # Test defaults w/o pilot hpxml_bldg.heating_systems[0].pilot_light = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_stove_values(default_hpxml_bldg.heating_systems[0], 40, nil, false, nil, 1.0) + _test_default_stove_values(default_hpxml_bldg.heating_systems[0], 40, nil, nil, false, nil, 1.0) end def test_space_heaters @@ -1534,22 +1544,23 @@ def test_space_heaters hpxml_bldg.heating_systems[0].heating_capacity = 12345 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_portable_heater_values(default_hpxml_bldg.heating_systems[0], 22, 12345, 1.0) + _test_default_portable_heater_values(default_hpxml_bldg.heating_systems[0], 22, nil, 12345, 1.0) # Test autosizing with factors hpxml_bldg.heating_systems[0].heating_capacity = nil hpxml_bldg.heating_systems[0].heating_autosizing_factor = 1.2 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_portable_heater_values(default_hpxml_bldg.heating_systems[0], 22, nil, 1.2) + _test_default_portable_heater_values(default_hpxml_bldg.heating_systems[0], 22, nil, nil, 1.2) # Test defaults hpxml_bldg.heating_systems[0].fan_watts = nil hpxml_bldg.heating_systems[0].heating_capacity = nil hpxml_bldg.heating_systems[0].heating_autosizing_factor = nil + hpxml_bldg.heating_systems[0].heating_autosizing_limit = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_portable_heater_values(default_hpxml_bldg.heating_systems[0], 0, nil, 1.0) + _test_default_portable_heater_values(default_hpxml_bldg.heating_systems[0], 0, nil, nil, 1.0) end def test_fireplaces @@ -1561,29 +1572,30 @@ def test_fireplaces hpxml_bldg.heating_systems[0].pilot_light_btuh = 999 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_fireplace_values(default_hpxml_bldg.heating_systems[0], 22, 12345, true, 999, 1.0) + _test_default_fireplace_values(default_hpxml_bldg.heating_systems[0], 22, nil, 12345, true, 999, 1.0) # Test autosizing with factors hpxml_bldg.heating_systems[0].heating_capacity = nil hpxml_bldg.heating_systems[0].heating_autosizing_factor = 1.2 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_fireplace_values(default_hpxml_bldg.heating_systems[0], 22, nil, true, 999, 1.2) + _test_default_fireplace_values(default_hpxml_bldg.heating_systems[0], 22, nil, nil, true, 999, 1.2) # Test defaults hpxml_bldg.heating_systems[0].fan_watts = nil hpxml_bldg.heating_systems[0].heating_capacity = nil hpxml_bldg.heating_systems[0].pilot_light_btuh = nil hpxml_bldg.heating_systems[0].heating_autosizing_factor = nil + hpxml_bldg.heating_systems[0].heating_autosizing_limit = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_fireplace_values(default_hpxml_bldg.heating_systems[0], 0, nil, true, 500, 1.0) + _test_default_fireplace_values(default_hpxml_bldg.heating_systems[0], 0, nil, nil, true, 500, 1.0) # Test defaults w/o pilot hpxml_bldg.heating_systems[0].pilot_light = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_fireplace_values(default_hpxml_bldg.heating_systems[0], 0, nil, false, nil, 1.0) + _test_default_fireplace_values(default_hpxml_bldg.heating_systems[0], 0, nil, nil, false, nil, 1.0) end def test_air_source_heat_pumps @@ -1604,7 +1616,7 @@ def test_air_source_heat_pumps hpxml_bldg.heat_pumps[0].crankcase_heater_watts = 40.0 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 23456, nil, 34567, 14.0, 8.0, 0.1, 2.0, 40.0, 1.0, 1.0, 1.0) + _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, nil, nil, -0.11, -0.22, 12345, 23456, nil, 34567, 14.0, 8.0, 0.1, 2.0, 40.0, 1.0, 1.0, 1.0) # Test w/ heating capacity 17F hpxml_bldg.heat_pumps[0].heating_capacity_17F = 9876 @@ -1612,7 +1624,7 @@ def test_air_source_heat_pumps hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 23456, 9876, 34567, 14.0, 8.0, nil, nil, 40.0, 1.0, 1.0, 1.0) + _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, nil, nil, -0.11, -0.22, 12345, 23456, 9876, 34567, 14.0, 8.0, nil, nil, 40.0, 1.0, 1.0, 1.0) # Test defaults - SEER2/HSPF2 hpxml_bldg.heat_pumps[0].cooling_efficiency_seer = nil @@ -1621,7 +1633,7 @@ def test_air_source_heat_pumps hpxml_bldg.heat_pumps[0].heating_efficiency_hspf2 = 6.8 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, 12345, 23456, 9876, 34567, 14.0, 8.0, nil, nil, 40.0, 1.0, 1.0, 1.0) + _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, nil, nil, -0.11, -0.22, 12345, 23456, 9876, 34567, 14.0, 8.0, nil, nil, 40.0, 1.0, 1.0, 1.0) # Test autosizing with factors hpxml_bldg.heat_pumps[0].cooling_capacity = nil @@ -1633,7 +1645,7 @@ def test_air_source_heat_pumps hpxml_bldg.heat_pumps[0].backup_heating_autosizing_factor = 1.1 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, nil, nil, nil, nil, 14.0, 8.0, 0.528, 5.0, 40.0, 1.5, 1.2, 1.1) + _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, nil, nil, -0.11, -0.22, nil, nil, nil, nil, 14.0, 8.0, 0.528, 5.0, 40.0, 1.5, 1.2, 1.1) # Test defaults hpxml_bldg.heat_pumps[0].cooling_shr = nil @@ -1649,9 +1661,12 @@ def test_air_source_heat_pumps hpxml_bldg.heat_pumps[0].heating_autosizing_factor = nil hpxml_bldg.heat_pumps[0].cooling_autosizing_factor = nil hpxml_bldg.heat_pumps[0].backup_heating_autosizing_factor = nil + hpxml_bldg.heat_pumps[0].heating_autosizing_limit = nil + hpxml_bldg.heat_pumps[0].cooling_autosizing_limit = nil + hpxml_bldg.heat_pumps[0].backup_heating_autosizing_limit = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.73, HPXML::HVACCompressorTypeSingleStage, 0.5, 0, 0, nil, nil, nil, nil, 14.0, 8.0, 0.425, 5.0, 50.0, 1.0, 1.0, 1.0) + _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.73, HPXML::HVACCompressorTypeSingleStage, 0.5, nil, nil, 0, 0, nil, nil, nil, nil, 14.0, 8.0, 0.425, 5.0, 50.0, 1.0, 1.0, 1.0) # Test w/ detailed performance data hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml') @@ -1666,7 +1681,7 @@ def test_air_source_heat_pumps hpxml_bldg.heat_pumps[0].crankcase_heater_watts = 40.0 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, nil, nil, nil, nil, 14.0, 8.0, 0.1, 2.0, 40.0, 1.0, 1.0, 1.0) + _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, nil, nil, -0.11, -0.22, nil, nil, nil, nil, 14.0, 8.0, 0.1, 2.0, 40.0, 1.0, 1.0, 1.0) hpxml_bldg.heat_pumps[0].heating_capacity_retention_fraction = nil hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil @@ -1674,12 +1689,12 @@ def test_air_source_heat_pumps max_cap_at_47f = hpxml_bldg.heat_pumps[0].heating_detailed_performance_data.find { |dp| dp.outdoor_temperature == 47.0 && dp.capacity_description == HPXML::CapacityDescriptionMaximum }.capacity XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, nil, nil, nil, nil, 14.0, 8.0, (max_cap_at_5f / max_cap_at_47f).round(5), 5.0, 40.0, 1.0, 1.0, 1.0) + _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, nil, nil, -0.11, -0.22, nil, nil, nil, nil, 14.0, 8.0, (max_cap_at_5f / max_cap_at_47f).round(5), 5.0, 40.0, 1.0, 1.0, 1.0) hpxml_bldg.heat_pumps[0].heating_capacity_17F = 9876 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, -0.11, -0.22, nil, nil, 9876, nil, 14.0, 8.0, nil, nil, 40.0, 1.0, 1.0, 1.0) + _test_default_air_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.88, HPXML::HVACCompressorTypeVariableSpeed, 0.66, nil, nil, -0.11, -0.22, nil, nil, 9876, nil, 14.0, 8.0, nil, nil, 40.0, 1.0, 1.0, 1.0) # Test w/ detailed performance data and autosizing heating_capacity_fractions = [0.35, 1.0, 0.2, 0.75, 0.1, 0.65] @@ -1722,7 +1737,7 @@ def test_pthp hpxml_bldg.heat_pumps[0].crankcase_heater_watts = 40.0 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_pthp_values(default_hpxml_bldg.heat_pumps[0], 0.88, 12345, 23456, nil, 0.1, 2.0, 40.0, 1.0, 1.0, 1.0) + _test_default_pthp_values(default_hpxml_bldg.heat_pumps[0], 0.88, nil, nil, 12345, 23456, nil, 0.1, 2.0, 40.0, 1.0, 1.0, 1.0) # Test w/ heating capacity 17F hpxml_bldg.heat_pumps[0].heating_capacity_17F = 9876 @@ -1730,19 +1745,18 @@ def test_pthp hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_pthp_values(default_hpxml_bldg.heat_pumps[0], 0.88, 12345, 23456, 9876, nil, nil, 40.0, 1.0, 1.0, 1.0) + _test_default_pthp_values(default_hpxml_bldg.heat_pumps[0], 0.88, nil, nil, 12345, 23456, 9876, nil, nil, 40.0, 1.0, 1.0, 1.0) # Test autosizing with factors hpxml_bldg.heat_pumps[0].cooling_capacity = nil hpxml_bldg.heat_pumps[0].heating_capacity = nil hpxml_bldg.heat_pumps[0].heating_capacity_17F = nil - hpxml_bldg.heat_pumps[0].backup_heating_capacity = nil hpxml_bldg.heat_pumps[0].heating_autosizing_factor = 1.5 hpxml_bldg.heat_pumps[0].cooling_autosizing_factor = 1.2 hpxml_bldg.heat_pumps[0].backup_heating_autosizing_factor = 1.1 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_pthp_values(default_hpxml_bldg.heat_pumps[0], 0.88, nil, nil, nil, 0.425, 5.0, 40.0, 1.5, 1.2, 1.1) + _test_default_pthp_values(default_hpxml_bldg.heat_pumps[0], 0.88, nil, nil, nil, nil, nil, 0.425, 5.0, 40.0, 1.5, 1.2, 1.1) # Test defaults hpxml_bldg.heat_pumps[0].cooling_shr = nil @@ -1754,9 +1768,12 @@ def test_pthp hpxml_bldg.heat_pumps[0].heating_autosizing_factor = nil hpxml_bldg.heat_pumps[0].cooling_autosizing_factor = nil hpxml_bldg.heat_pumps[0].backup_heating_autosizing_factor = nil + hpxml_bldg.heat_pumps[0].heating_autosizing_limit = nil + hpxml_bldg.heat_pumps[0].cooling_autosizing_limit = nil + hpxml_bldg.heat_pumps[0].backup_heating_autosizing_limit = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_pthp_values(default_hpxml_bldg.heat_pumps[0], 0.65, nil, nil, nil, 0.425, 5.0, 0.0, 1.0, 1.0, 1.0) + _test_default_pthp_values(default_hpxml_bldg.heat_pumps[0], 0.65, nil, nil, nil, nil, nil, 0.425, 5.0, 0.0, 1.0, 1.0, 1.0) end def test_mini_split_heat_pumps @@ -1775,7 +1792,7 @@ def test_mini_split_heat_pumps hpxml_bldg.heat_pumps[0].compressor_type = HPXML::HVACCompressorTypeVariableSpeed XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.78, 0.66, -0.11, -0.22, 12345, 23456, nil, 34567, 19.0, 10.0, 0.1, 2.0, 40.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0, 1.0, 1.0) + _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.78, 0.66, nil, nil, -0.11, -0.22, 12345, 23456, nil, 34567, 19.0, 10.0, 0.1, 2.0, 40.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0, 1.0, 1.0) # Test w/ heating capacity 17F hpxml_bldg.heat_pumps[0].heating_capacity_17F = 9876 @@ -1783,7 +1800,7 @@ def test_mini_split_heat_pumps hpxml_bldg.heat_pumps[0].heating_capacity_retention_temp = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.78, 0.66, -0.11, -0.22, 12345, 23456, 9876, 34567, 19.0, 10.0, nil, nil, 40.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0, 1.0, 1.0) + _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.78, 0.66, nil, nil, -0.11, -0.22, 12345, 23456, 9876, 34567, 19.0, 10.0, nil, nil, 40.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0, 1.0, 1.0) # Test autosizing with factors hpxml_bldg.heat_pumps[0].cooling_capacity = nil @@ -1795,7 +1812,7 @@ def test_mini_split_heat_pumps hpxml_bldg.heat_pumps[0].backup_heating_autosizing_factor = 1.1 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.78, 0.66, -0.11, -0.22, nil, nil, nil, nil, 19.0, 10.0, 0.62, 5.0, 40.0, HPXML::HVACCompressorTypeVariableSpeed, 1.5, 1.2, 1.1) + _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.78, 0.66, nil, nil, -0.11, -0.22, nil, nil, nil, nil, 19.0, 10.0, 0.62, 5.0, 40.0, HPXML::HVACCompressorTypeVariableSpeed, 1.5, 1.2, 1.1) # Test defaults hpxml_bldg.heat_pumps[0].cooling_shr = nil @@ -1811,24 +1828,27 @@ def test_mini_split_heat_pumps hpxml_bldg.heat_pumps[0].heating_autosizing_factor = nil hpxml_bldg.heat_pumps[0].cooling_autosizing_factor = nil hpxml_bldg.heat_pumps[0].backup_heating_autosizing_factor = nil + hpxml_bldg.heat_pumps[0].heating_autosizing_limit = nil + hpxml_bldg.heat_pumps[0].cooling_autosizing_limit = nil + hpxml_bldg.heat_pumps[0].backup_heating_autosizing_limit = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.73, 0.18, 0, 0, nil, nil, nil, nil, 19.0, 10.0, 0.62, 5.0, 50.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0, 1.0, 1.0) + _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.73, 0.18, nil, nil, 0, 0, nil, nil, nil, nil, 19.0, 10.0, 0.62, 5.0, 50.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0, 1.0, 1.0) # Test defaults w/ ductless and no backup hpxml_bldg.heat_pumps[0].distribution_system.delete XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.73, 0.07, 0, 0, nil, nil, nil, nil, 19.0, 10.0, 0.62, 5.0, 50.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0, 1.0, 1.0) + _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.73, 0.07, nil, nil, 0, 0, nil, nil, nil, nil, 19.0, 10.0, 0.62, 5.0, 50.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0, 1.0, 1.0) - # Test defaults w/ ductless - SEER2/HSPF2 + # Test defaults - SEER2/HSPF2 hpxml_bldg.heat_pumps[0].cooling_efficiency_seer = nil hpxml_bldg.heat_pumps[0].cooling_efficiency_seer2 = 13.3 hpxml_bldg.heat_pumps[0].heating_efficiency_hspf = nil hpxml_bldg.heat_pumps[0].heating_efficiency_hspf2 = 6.8 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.73, 0.07, 0, 0, nil, nil, nil, nil, 13.3, 7.56, 0.51, 5.0, 50.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0, 1.0, 1.0) + _test_default_mini_split_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 0.73, 0.07, nil, nil, 0, 0, nil, nil, nil, nil, 13.3, 7.56, 0.51, 5.0, 50.0, HPXML::HVACCompressorTypeVariableSpeed, 1.0, 1.0, 1.0) end def test_heat_pump_temperatures @@ -1928,7 +1948,7 @@ def test_ground_source_heat_pumps hpxml_bldg.heat_pumps[0].backup_heating_capacity = 34567 XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_ground_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 9.9, 0.66, -0.22, 12345, 23456, 34567) + _test_default_ground_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 9.9, 0.66, nil, nil, -0.22, 12345, 23456, 34567) # Test defaults hpxml_bldg.heat_pumps[0].pump_watts_per_ton = nil @@ -1939,7 +1959,7 @@ def test_ground_source_heat_pumps hpxml_bldg.heat_pumps[0].backup_heating_capacity = nil XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _default_hpxml, default_hpxml_bldg = _test_measure() - _test_default_ground_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 30.0, 0.375, 0, nil, nil, nil) + _test_default_ground_to_air_heat_pump_values(default_hpxml_bldg.heat_pumps[0], 30.0, 0.375, nil, nil, 0, nil, nil, nil) end def test_geothermal_loops @@ -4449,11 +4469,16 @@ def _test_default_furniture_mass_values(furniture_mass, area_fraction, type) assert_equal(type, furniture_mass.type) end - def _test_default_central_air_conditioner_values(cooling_system, shr, compressor_type, fan_watts_per_cfm, charge_defect_ratio, + def _test_default_central_air_conditioner_values(cooling_system, shr, compressor_type, fan_watts_per_cfm, cooling_airflow_cfm, charge_defect_ratio, airflow_defect_ratio, cooling_capacity, cooling_efficiency_seer, crankcase_heater_watts, cooling_autosizing_factor) assert_equal(shr, cooling_system.cooling_shr) assert_equal(compressor_type, cooling_system.compressor_type) assert_equal(fan_watts_per_cfm, cooling_system.fan_watts_per_cfm) + if cooling_airflow_cfm.nil? # nil implies an autosized value + assert(cooling_system.cooling_airflow_cfm > 0) + else + assert_in_delta(cooling_airflow_cfm, cooling_system.cooling_airflow_cfm, 1.0) + end assert_equal(charge_defect_ratio, cooling_system.charge_defect_ratio) assert_equal(airflow_defect_ratio, cooling_system.airflow_defect_ratio) assert_equal(crankcase_heater_watts, cooling_system.crankcase_heater_watts) @@ -4470,8 +4495,13 @@ def _test_default_central_air_conditioner_values(cooling_system, shr, compressor end end - def _test_default_room_air_conditioner_ptac_values(cooling_system, shr, cooling_capacity, crankcase_heater_watts, cooling_autosizing_factor) + def _test_default_room_air_conditioner_ptac_values(cooling_system, shr, cooling_airflow_cfm, cooling_capacity, crankcase_heater_watts, cooling_autosizing_factor) assert_equal(shr, cooling_system.cooling_shr) + if cooling_airflow_cfm.nil? # nil implies an autosized value + assert(cooling_system.cooling_airflow_cfm > 0) + else + assert_in_delta(cooling_airflow_cfm, cooling_system.cooling_airflow_cfm, 1.0) + end assert_equal(crankcase_heater_watts, cooling_system.crankcase_heater_watts) assert_equal(cooling_autosizing_factor, cooling_system.cooling_autosizing_factor) if cooling_capacity.nil? @@ -4481,7 +4511,12 @@ def _test_default_room_air_conditioner_ptac_values(cooling_system, shr, cooling_ end end - def _test_default_evap_cooler_values(cooling_system, cooling_capacity, cooling_autosizing_factor) + def _test_default_evap_cooler_values(cooling_system, cooling_airflow_cfm, cooling_capacity, cooling_autosizing_factor) + if cooling_airflow_cfm.nil? # nil implies an autosized value + assert(cooling_system.cooling_airflow_cfm > 0) + else + assert_in_delta(cooling_airflow_cfm, cooling_system.cooling_airflow_cfm, 1.0) + end assert_equal(cooling_autosizing_factor, cooling_system.cooling_autosizing_factor) if cooling_capacity.nil? assert(cooling_system.cooling_capacity > 0) @@ -4490,10 +4525,15 @@ def _test_default_evap_cooler_values(cooling_system, cooling_capacity, cooling_a end end - def _test_default_mini_split_air_conditioner_values(cooling_system, shr, fan_watts_per_cfm, charge_defect_ratio, airflow_defect_ratio, + def _test_default_mini_split_air_conditioner_values(cooling_system, shr, fan_watts_per_cfm, cooling_airflow_cfm, charge_defect_ratio, airflow_defect_ratio, cooling_capacity, cooling_efficiency_seer, crankcase_heater_watts, compressor_type, cooling_autosizing_factor) assert_equal(shr, cooling_system.cooling_shr) assert_equal(fan_watts_per_cfm, cooling_system.fan_watts_per_cfm) + if cooling_airflow_cfm.nil? # nil implies an autosized value + assert(cooling_system.cooling_airflow_cfm > 0) + else + assert_in_delta(cooling_airflow_cfm, cooling_system.cooling_airflow_cfm, 1.0) + end assert_equal(charge_defect_ratio, cooling_system.charge_defect_ratio) assert_equal(airflow_defect_ratio, cooling_system.airflow_defect_ratio) assert_equal(crankcase_heater_watts, cooling_system.crankcase_heater_watts) @@ -4511,9 +4551,14 @@ def _test_default_mini_split_air_conditioner_values(cooling_system, shr, fan_wat assert_equal(compressor_type, cooling_system.compressor_type) end - def _test_default_furnace_values(heating_system, fan_watts_per_cfm, airflow_defect_ratio, heating_capacity, + def _test_default_furnace_values(heating_system, fan_watts_per_cfm, heating_airflow_cfm, airflow_defect_ratio, heating_capacity, pilot_light, pilot_light_btuh, heating_autosizing_factor) assert_equal(fan_watts_per_cfm, heating_system.fan_watts_per_cfm) + if heating_airflow_cfm.nil? # nil implies an autosized value + assert(heating_system.heating_airflow_cfm > 0) + else + assert_in_delta(heating_airflow_cfm, heating_system.heating_airflow_cfm, 1.0) + end assert_equal(airflow_defect_ratio, heating_system.airflow_defect_ratio) assert_equal(heating_autosizing_factor, heating_system.heating_autosizing_factor) if heating_capacity.nil? @@ -4529,8 +4574,13 @@ def _test_default_furnace_values(heating_system, fan_watts_per_cfm, airflow_defe end end - def _test_default_wall_furnace_values(heating_system, fan_watts, heating_capacity, heating_autosizing_factor) + def _test_default_wall_furnace_values(heating_system, fan_watts, heating_airflow_cfm, heating_capacity, heating_autosizing_factor) assert_equal(fan_watts, heating_system.fan_watts) + if heating_airflow_cfm.nil? # nil implies an autosized value + assert(heating_system.heating_airflow_cfm > 0) + else + assert_in_delta(heating_airflow_cfm, heating_system.heating_airflow_cfm, 1.0) + end assert_equal(heating_autosizing_factor, heating_system.heating_autosizing_factor) if heating_capacity.nil? assert(heating_system.heating_capacity > 0) @@ -4539,8 +4589,13 @@ def _test_default_wall_furnace_values(heating_system, fan_watts, heating_capacit end end - def _test_default_floor_furnace_values(heating_system, fan_watts, heating_capacity, pilot_light, pilot_light_btuh, heating_autosizing_factor) + def _test_default_floor_furnace_values(heating_system, fan_watts, heating_airflow_cfm, heating_capacity, pilot_light, pilot_light_btuh, heating_autosizing_factor) assert_equal(fan_watts, heating_system.fan_watts) + if heating_airflow_cfm.nil? # nil implies an autosized value + assert(heating_system.heating_airflow_cfm > 0) + else + assert_in_delta(heating_airflow_cfm, heating_system.heating_airflow_cfm, 1.0) + end assert_equal(heating_autosizing_factor, heating_system.heating_autosizing_factor) if heating_capacity.nil? assert(heating_system.heating_capacity > 0) @@ -4575,8 +4630,13 @@ def _test_default_boiler_values(heating_system, eae, heating_capacity, pilot_lig end end - def _test_default_stove_values(heating_system, fan_watts, heating_capacity, pilot_light, pilot_light_btuh, heating_autosizing_factor) + def _test_default_stove_values(heating_system, fan_watts, heating_airflow_cfm, heating_capacity, pilot_light, pilot_light_btuh, heating_autosizing_factor) assert_equal(fan_watts, heating_system.fan_watts) + if heating_airflow_cfm.nil? # nil implies an autosized value + assert(heating_system.heating_airflow_cfm > 0) + else + assert_in_delta(heating_airflow_cfm, heating_system.heating_airflow_cfm, 1.0) + end assert_equal(heating_autosizing_factor, heating_system.heating_autosizing_factor) if heating_capacity.nil? assert(heating_system.heating_capacity > 0) @@ -4591,8 +4651,13 @@ def _test_default_stove_values(heating_system, fan_watts, heating_capacity, pilo end end - def _test_default_portable_heater_values(heating_system, fan_watts, heating_capacity, heating_autosizing_factor) + def _test_default_portable_heater_values(heating_system, fan_watts, heating_airflow_cfm, heating_capacity, heating_autosizing_factor) assert_equal(fan_watts, heating_system.fan_watts) + if heating_airflow_cfm.nil? # nil implies an autosized value + assert(heating_system.heating_airflow_cfm > 0) + else + assert_in_delta(heating_airflow_cfm, heating_system.heating_airflow_cfm, 1.0) + end assert_equal(heating_autosizing_factor, heating_system.heating_autosizing_factor) if heating_capacity.nil? assert(heating_system.heating_capacity > 0) @@ -4601,8 +4666,13 @@ def _test_default_portable_heater_values(heating_system, fan_watts, heating_capa end end - def _test_default_fixed_heater_values(heating_system, fan_watts, heating_capacity) + def _test_default_fixed_heater_values(heating_system, fan_watts, heating_airflow_cfm, heating_capacity) assert_equal(fan_watts, heating_system.fan_watts) + if heating_airflow_cfm.nil? # nil implies an autosized value + assert(heating_system.heating_airflow_cfm > 0) + else + assert_equal(heating_airflow_cfm, heating_system.heating_airflow_cfm) + end if heating_capacity.nil? assert(heating_system.heating_capacity > 0) else @@ -4610,8 +4680,13 @@ def _test_default_fixed_heater_values(heating_system, fan_watts, heating_capacit end end - def _test_default_fireplace_values(heating_system, fan_watts, heating_capacity, pilot_light, pilot_light_btuh, heating_autosizing_factor) + def _test_default_fireplace_values(heating_system, fan_watts, heating_airflow_cfm, heating_capacity, pilot_light, pilot_light_btuh, heating_autosizing_factor) assert_equal(fan_watts, heating_system.fan_watts) + if heating_airflow_cfm.nil? # nil implies an autosized value + assert(heating_system.heating_airflow_cfm > 0) + else + assert_in_delta(heating_airflow_cfm, heating_system.heating_airflow_cfm, 1.0) + end assert_equal(heating_autosizing_factor, heating_system.heating_autosizing_factor) if heating_capacity.nil? assert(heating_system.heating_capacity > 0) @@ -4626,8 +4701,10 @@ def _test_default_fireplace_values(heating_system, fan_watts, heating_capacity, end end - def _test_default_air_to_air_heat_pump_values(heat_pump, shr, compressor_type, fan_watts_per_cfm, charge_defect_ratio, - airflow_defect_ratio, cooling_capacity, heating_capacity, + def _test_default_air_to_air_heat_pump_values(heat_pump, shr, compressor_type, fan_watts_per_cfm, + cooling_airflow_cfm, heating_airflow_cfm, + charge_defect_ratio, airflow_defect_ratio, + cooling_capacity, heating_capacity, heating_capacity_17F, backup_heating_capacity, cooling_efficiency_seer, heating_efficiency_hspf, heating_capacity_retention_fraction, heating_capacity_retention_temp, @@ -4636,6 +4713,16 @@ def _test_default_air_to_air_heat_pump_values(heat_pump, shr, compressor_type, f assert_equal(shr, heat_pump.cooling_shr) assert_equal(compressor_type, heat_pump.compressor_type) assert_equal(fan_watts_per_cfm, heat_pump.fan_watts_per_cfm) + if cooling_airflow_cfm.nil? # nil implies an autosized value + assert(heat_pump.cooling_airflow_cfm > 0) + else + assert_in_delta(cooling_airflow_cfm, heat_pump.cooling_airflow_cfm, 1.0) + end + if heating_airflow_cfm.nil? # nil implies an autosized value + assert(heat_pump.heating_airflow_cfm > 0) + else + assert_in_delta(heating_airflow_cfm, heat_pump.heating_airflow_cfm, 1.0) + end assert_equal(charge_defect_ratio, heat_pump.charge_defect_ratio) assert_equal(airflow_defect_ratio, heat_pump.airflow_defect_ratio) assert_equal(crankcase_heater_watts, heat_pump.crankcase_heater_watts) @@ -4707,11 +4794,21 @@ def _test_default_detailed_performance_capacities(heat_pump, heating_nominal_cap end end - def _test_default_pthp_values(heat_pump, shr, cooling_capacity, heating_capacity, heating_capacity_17F, + def _test_default_pthp_values(heat_pump, shr, heating_airflow_cfm, cooling_airflow_cfm, cooling_capacity, heating_capacity, heating_capacity_17F, heating_capacity_retention_fraction, heating_capacity_retention_temp, crankcase_heater_watts, heating_autosizing_factor, cooling_autosizing_factor, backup_heating_autosizing_factor) assert_equal(shr, heat_pump.cooling_shr) + if heating_airflow_cfm.nil? # nil implies an autosized value + assert(heat_pump.heating_airflow_cfm > 0) + else + assert_in_delta(heating_airflow_cfm, heat_pump.heating_airflow_cfm, 1.0) + end + if cooling_airflow_cfm.nil? # nil implies an autosized value + assert(heat_pump.cooling_airflow_cfm > 0) + else + assert_in_delta(cooling_airflow_cfm, heat_pump.cooling_airflow_cfm, 1.0) + end assert_equal(crankcase_heater_watts, heat_pump.crankcase_heater_watts) assert_equal(heating_autosizing_factor, heat_pump.heating_autosizing_factor) assert_equal(cooling_autosizing_factor, heat_pump.cooling_autosizing_factor) @@ -4743,7 +4840,7 @@ def _test_default_pthp_values(heat_pump, shr, cooling_capacity, heating_capacity end end - def _test_default_mini_split_heat_pump_values(heat_pump, shr, fan_watts_per_cfm, charge_defect_ratio, + def _test_default_mini_split_heat_pump_values(heat_pump, shr, fan_watts_per_cfm, heating_airflow_cfm, cooling_airflow_cfm, charge_defect_ratio, airflow_defect_ratio, cooling_capacity, heating_capacity, heating_capacity_17F, backup_heating_capacity, cooling_efficiency_seer, heating_efficiency_hspf, @@ -4752,6 +4849,16 @@ def _test_default_mini_split_heat_pump_values(heat_pump, shr, fan_watts_per_cfm, cooling_autosizing_factor, backup_heating_autosizing_factor) assert_equal(shr, heat_pump.cooling_shr) assert_equal(fan_watts_per_cfm, heat_pump.fan_watts_per_cfm) + if heating_airflow_cfm.nil? # nil implies an autosized value + assert(heat_pump.heating_airflow_cfm > 0) + else + assert_in_delta(heating_airflow_cfm, heat_pump.heating_airflow_cfm, 1.0) + end + if cooling_airflow_cfm.nil? # nil implies an autosized value + assert(heat_pump.cooling_airflow_cfm > 0) + else + assert_in_delta(cooling_airflow_cfm, heat_pump.cooling_airflow_cfm, 1.0) + end assert_equal(charge_defect_ratio, heat_pump.charge_defect_ratio) assert_equal(airflow_defect_ratio, heat_pump.airflow_defect_ratio) assert_equal(crankcase_heater_watts, heat_pump.crankcase_heater_watts) @@ -4820,11 +4927,21 @@ def _test_default_heat_pump_temperature_values(heat_pump, compressor_lockout_tem end end - def _test_default_ground_to_air_heat_pump_values(heat_pump, pump_watts_per_ton, fan_watts_per_cfm, + def _test_default_ground_to_air_heat_pump_values(heat_pump, pump_watts_per_ton, fan_watts_per_cfm, heating_airflow_cfm, cooling_airflow_cfm, airflow_defect_ratio, cooling_capacity, heating_capacity, backup_heating_capacity) assert_equal(pump_watts_per_ton, heat_pump.pump_watts_per_ton) assert_equal(fan_watts_per_cfm, heat_pump.fan_watts_per_cfm) + if heating_airflow_cfm.nil? # nil implies an autosized value + assert(heat_pump.heating_airflow_cfm > 0) + else + assert_equal(heating_airflow_cfm, heat_pump.heating_airflow_cfm) + end + if cooling_airflow_cfm.nil? # nil implies an autosized value + assert(heat_pump.cooling_airflow_cfm > 0) + else + assert_equal(cooling_airflow_cfm, heat_pump.cooling_airflow_cfm) + end assert_equal(airflow_defect_ratio, heat_pump.airflow_defect_ratio) if cooling_capacity.nil? assert(heat_pump.cooling_capacity > 0) diff --git a/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb b/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb index e2284e60f..3b4c3d03b 100644 --- a/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb +++ b/hpxml-measures/HPXMLtoOpenStudio/tests/test_hvac_sizing.rb @@ -13,7 +13,7 @@ def setup @sample_files_path = File.join(@root_path, 'workflow', 'sample_files') @test_files_path = File.join(@root_path, 'workflow', 'tests') @tmp_hpxml_path = File.join(@sample_files_path, 'tmp.xml') - @results_dir = File.join(@test_files_path, 'results') + @results_dir = File.join(@test_files_path, 'test_results') FileUtils.mkdir_p @results_dir end @@ -630,6 +630,8 @@ def test_autosizing_factors args_hash = {} args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + bhaf = 2.0 - haf # use a reverse factor for backup heating sizing + # Test air conditioner + furnace hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.heating_systems[0].heating_capacity = nil @@ -665,13 +667,12 @@ def test_autosizing_factors hpxml_bldg.heat_pumps[0].heating_capacity = nil hpxml_bldg.heat_pumps[0].cooling_capacity = nil hpxml_bldg.heat_pumps[0].heating_autosizing_factor = haf - # use a reverse factor for backup heating sizing - hpxml_bldg.heat_pumps[0].backup_heating_autosizing_factor = (2.0 - haf) + hpxml_bldg.heat_pumps[0].backup_heating_autosizing_factor = bhaf hpxml_bldg.heat_pumps[0].cooling_autosizing_factor = caf XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _model, _hpxml, hpxml_bldg = _test_measure(args_hash) assert_in_epsilon(hpxml_bldg.heat_pumps[0].heating_capacity, htg_cap_orig * haf, 0.001) - assert_in_epsilon(hpxml_bldg.heat_pumps[0].backup_heating_capacity, backup_htg_cap_orig * (2.0 - haf), 0.001) + assert_in_epsilon(hpxml_bldg.heat_pumps[0].backup_heating_capacity, backup_htg_cap_orig * bhaf, 0.001) assert_in_epsilon(hpxml_bldg.heat_pumps[0].cooling_capacity, clg_cap_orig * caf, 0.001) # Test heat pump w/ detailed performance @@ -689,15 +690,38 @@ def test_autosizing_factors hpxml_bldg.heat_pumps[0].cooling_capacity = nil hpxml_bldg.heat_pumps[0].heating_autosizing_factor = haf hpxml_bldg.heat_pumps[0].cooling_autosizing_factor = caf - # use a reverse factor for backup heating sizing - hpxml_bldg.heat_pumps[0].backup_heating_autosizing_factor = (2.0 - haf) + hpxml_bldg.heat_pumps[0].backup_heating_autosizing_factor = bhaf + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + assert_in_epsilon(hpxml_bldg.heat_pumps[0].heating_capacity, htg_cap_orig * haf, 0.001) + assert_in_epsilon(hpxml_bldg.heat_pumps[0].backup_heating_capacity, backup_htg_cap_orig * bhaf, 0.001) + assert_in_epsilon(hpxml_bldg.heat_pumps[0].cooling_capacity, clg_cap_orig * caf, 0.001) + + # Test heat pump with separate backup heating + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml') + hpxml_bldg.heat_pumps[0].heating_capacity = nil + hpxml_bldg.heat_pumps[0].cooling_capacity = nil + hpxml_bldg.heating_systems[0].heating_capacity = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + htg_cap_orig = hpxml_bldg.heat_pumps[0].heating_capacity + clg_cap_orig = hpxml_bldg.heat_pumps[0].cooling_capacity + backup_htg_cap_orig = hpxml_bldg.heating_systems[0].heating_capacity + # apply autosizing factor + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml') + hpxml_bldg.heat_pumps[0].heating_capacity = nil + hpxml_bldg.heat_pumps[0].cooling_capacity = nil + hpxml_bldg.heating_systems[0].heating_capacity = nil + hpxml_bldg.heat_pumps[0].heating_autosizing_factor = haf + hpxml_bldg.heat_pumps[0].cooling_autosizing_factor = caf + hpxml_bldg.heating_systems[0].heating_autosizing_factor = bhaf XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) _model, _hpxml, hpxml_bldg = _test_measure(args_hash) assert_in_epsilon(hpxml_bldg.heat_pumps[0].heating_capacity, htg_cap_orig * haf, 0.001) - assert_in_epsilon(hpxml_bldg.heat_pumps[0].backup_heating_capacity, backup_htg_cap_orig * (2.0 - haf), 0.001) + assert_in_epsilon(hpxml_bldg.heating_systems[0].heating_capacity, backup_htg_cap_orig * bhaf, 0.001) assert_in_epsilon(hpxml_bldg.heat_pumps[0].cooling_capacity, clg_cap_orig * caf, 0.001) - # Test allow fixed capacity + # Test allow increased fixed capacity hpxml, hpxml_bldg = _create_hpxml('base-hvac-undersized.xml') hpxml_bldg.header.allow_increased_fixed_capacities = true # apply autosizing factor @@ -711,31 +735,144 @@ def test_autosizing_factors assert_operator(hpxml_bldg.cooling_systems[0].cooling_capacity, :>, clg_cap) end end + end - # Test heat pump with separate back up heating - hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml') - hpxml_bldg.heat_pumps[0].heating_capacity = nil - hpxml_bldg.heat_pumps[0].cooling_capacity = nil - hpxml_bldg.heating_systems[0].heating_capacity = nil - XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) - _model, _hpxml, hpxml_bldg = _test_measure(args_hash) - htg_cap_orig = hpxml_bldg.heat_pumps[0].heating_capacity - clg_cap_orig = hpxml_bldg.heat_pumps[0].cooling_capacity - backup_htg_cap_orig = hpxml_bldg.heating_systems[0].heating_capacity - # apply autosizing factor - hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml') - hpxml_bldg.heat_pumps[0].heating_capacity = nil - hpxml_bldg.heat_pumps[0].cooling_capacity = nil - hpxml_bldg.heating_systems[0].heating_capacity = nil - # use a reverse factor for backup heating sizing - hpxml_bldg.heat_pumps[0].heating_autosizing_factor = 0.8 - hpxml_bldg.heat_pumps[0].cooling_autosizing_factor = 1.5 - hpxml_bldg.heating_systems[0].heating_autosizing_factor = 1.2 - XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) - _model, _hpxml, hpxml_bldg = _test_measure(args_hash) - assert_in_epsilon(hpxml_bldg.heat_pumps[0].heating_capacity, htg_cap_orig * 0.8, 0.001) - assert_in_epsilon(hpxml_bldg.heating_systems[0].heating_capacity, backup_htg_cap_orig * 1.2, 0.001) - assert_in_epsilon(hpxml_bldg.heat_pumps[0].cooling_capacity, clg_cap_orig * 1.5, 0.001) + def test_autosizing_limits + clg_autosizing_limits = { true => 1000, false => 100000 } + htg_autosizing_limits = { true => 1200, false => 120000 } + for clg_limit, cal in clg_autosizing_limits + for htg_limit, hal in htg_autosizing_limits + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(@tmp_hpxml_path) + + bhal = hal + 500.0 # use a similar limit for backup heating sizing + + # Test air conditioner + furnace + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.heating_systems[0].heating_capacity = nil + hpxml_bldg.cooling_systems[0].cooling_capacity = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + htg_cap_orig = hpxml_bldg.heating_systems[0].heating_capacity + clg_cap_orig = hpxml_bldg.cooling_systems[0].cooling_capacity + # apply autosizing limit + hpxml, hpxml_bldg = _create_hpxml('base.xml') + hpxml_bldg.heating_systems[0].heating_capacity = nil + hpxml_bldg.cooling_systems[0].cooling_capacity = nil + hpxml_bldg.heating_systems[0].heating_autosizing_limit = hal + hpxml_bldg.cooling_systems[0].cooling_autosizing_limit = cal + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + if htg_limit + assert_in_epsilon(hpxml_bldg.heating_systems[0].heating_capacity, hal, 0.001) + else + assert_in_epsilon(hpxml_bldg.heating_systems[0].heating_capacity, htg_cap_orig, 0.001) + end + if clg_limit + assert_in_epsilon(hpxml_bldg.cooling_systems[0].cooling_capacity, cal, 0.001) + else + assert_in_epsilon(hpxml_bldg.cooling_systems[0].cooling_capacity, clg_cap_orig, 0.001) + end + + # Test heat pump + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.heat_pumps[0].backup_heating_capacity = nil + hpxml_bldg.heat_pumps[0].heating_capacity = nil + hpxml_bldg.heat_pumps[0].cooling_capacity = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + htg_cap_orig = hpxml_bldg.heat_pumps[0].heating_capacity + clg_cap_orig = hpxml_bldg.heat_pumps[0].cooling_capacity + backup_htg_cap_orig = hpxml_bldg.heat_pumps[0].backup_heating_capacity + # apply autosizing limit + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-1-speed.xml') + hpxml_bldg.heat_pumps[0].backup_heating_capacity = nil + hpxml_bldg.heat_pumps[0].heating_capacity = nil + hpxml_bldg.heat_pumps[0].cooling_capacity = nil + hpxml_bldg.heat_pumps[0].heating_autosizing_limit = hal + hpxml_bldg.heat_pumps[0].backup_heating_autosizing_limit = bhal + hpxml_bldg.heat_pumps[0].cooling_autosizing_limit = cal + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + if htg_limit + assert_in_epsilon(hpxml_bldg.heat_pumps[0].heating_capacity, hal, 0.001) + assert_in_epsilon(hpxml_bldg.heat_pumps[0].backup_heating_capacity, bhal, 0.001) + else + assert_in_epsilon(hpxml_bldg.heat_pumps[0].heating_capacity, htg_cap_orig, 0.001) + assert_in_epsilon(hpxml_bldg.heat_pumps[0].backup_heating_capacity, backup_htg_cap_orig, 0.001) + end + if clg_limit + assert_in_epsilon(hpxml_bldg.heat_pumps[0].cooling_capacity, cal, 0.001) + else + assert_in_epsilon(hpxml_bldg.heat_pumps[0].cooling_capacity, clg_cap_orig, 0.001) + end + + # Test heat pump w/ detailed performance + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml') + hpxml_bldg.heat_pumps[0].backup_heating_capacity = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + htg_cap_orig = hpxml_bldg.heat_pumps[0].heating_capacity + clg_cap_orig = hpxml_bldg.heat_pumps[0].cooling_capacity + backup_htg_cap_orig = hpxml_bldg.heat_pumps[0].backup_heating_capacity + # apply autosizing limit + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml') + hpxml_bldg.heat_pumps[0].backup_heating_capacity = nil + hpxml_bldg.heat_pumps[0].heating_capacity = nil + hpxml_bldg.heat_pumps[0].cooling_capacity = nil + hpxml_bldg.heat_pumps[0].heating_autosizing_limit = hal + hpxml_bldg.heat_pumps[0].cooling_autosizing_limit = cal + hpxml_bldg.heat_pumps[0].backup_heating_autosizing_limit = bhal + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + if htg_limit + assert_in_epsilon(hpxml_bldg.heat_pumps[0].heating_capacity, hal, 0.001) + assert_in_epsilon(hpxml_bldg.heat_pumps[0].backup_heating_capacity, bhal, 0.001) + else + assert_in_epsilon(hpxml_bldg.heat_pumps[0].heating_capacity, htg_cap_orig, 0.001) + assert_in_epsilon(hpxml_bldg.heat_pumps[0].backup_heating_capacity, backup_htg_cap_orig, 0.001) + end + if clg_limit + assert_in_epsilon(hpxml_bldg.heat_pumps[0].cooling_capacity, cal, 0.001) + else + assert_in_epsilon(hpxml_bldg.heat_pumps[0].cooling_capacity, clg_cap_orig, 0.001) + end + + # Test heat pump with separate backup heating + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml') + hpxml_bldg.heat_pumps[0].heating_capacity = nil + hpxml_bldg.heat_pumps[0].cooling_capacity = nil + hpxml_bldg.heating_systems[0].heating_capacity = nil + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + htg_cap_orig = hpxml_bldg.heat_pumps[0].heating_capacity + clg_cap_orig = hpxml_bldg.heat_pumps[0].cooling_capacity + backup_htg_cap_orig = hpxml_bldg.heating_systems[0].heating_capacity + # apply autosizing factor + hpxml, hpxml_bldg = _create_hpxml('base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml') + hpxml_bldg.heat_pumps[0].heating_capacity = nil + hpxml_bldg.heat_pumps[0].cooling_capacity = nil + hpxml_bldg.heating_systems[0].heating_capacity = nil + # use a reverse factor for backup heating sizing + hpxml_bldg.heat_pumps[0].heating_autosizing_limit = hal + hpxml_bldg.heat_pumps[0].cooling_autosizing_limit = cal + hpxml_bldg.heating_systems[0].heating_autosizing_limit = bhal + XMLHelper.write_file(hpxml.to_doc, @tmp_hpxml_path) + _model, _hpxml, hpxml_bldg = _test_measure(args_hash) + if htg_limit + assert_in_epsilon(hpxml_bldg.heat_pumps[0].heating_capacity, hal, 0.001) + assert_in_epsilon(hpxml_bldg.heating_systems[0].heating_capacity, bhal, 0.001) + else + assert_in_epsilon(hpxml_bldg.heat_pumps[0].heating_capacity, htg_cap_orig, 0.001) + assert_in_epsilon(hpxml_bldg.heating_systems[0].heating_capacity, backup_htg_cap_orig, 0.001) + end + if clg_limit + assert_in_epsilon(hpxml_bldg.heat_pumps[0].cooling_capacity, cal, 0.001) + else + assert_in_epsilon(hpxml_bldg.heat_pumps[0].cooling_capacity, clg_cap_orig, 0.001) + end + end + end end def test_manual_j_detailed_sizing_inputs diff --git a/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb b/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb index 05c9ad776..4a95a05c6 100644 --- a/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/hpxml-measures/HPXMLtoOpenStudio/tests/test_validation.rb @@ -1670,6 +1670,7 @@ def test_ruby_warning_messages hpxml, hpxml_bldg = _create_hpxml('base.xml') hpxml_bldg.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/occupancy-stochastic.csv') hpxml_bldg.header.schedules_filepaths << File.join(File.dirname(__FILE__), '../resources/schedule_files/occupancy-non-stochastic.csv') + hpxml_bldg.refrigerators[0].primary_indicator = true hpxml_bldg.refrigerators[0].constant_coefficients = '-0.487, -0.340, -0.370, -0.361, -0.515, -0.684, -0.471, -0.159, -0.079, -0.417, -0.411, -0.386, -0.240, -0.314, -0.160, -0.121, -0.469, -0.412, -0.091, 0.077, -0.118, -0.247, -0.445, -0.544' hpxml_bldg.refrigerators[0].temperature_coefficients = '0.019, 0.016, 0.017, 0.016, 0.018, 0.021, 0.019, 0.015, 0.015, 0.019, 0.018, 0.018, 0.016, 0.017, 0.015, 0.015, 0.020, 0.020, 0.017, 0.014, 0.016, 0.017, 0.019, 0.020' hpxml_bldg.refrigerators.add(id: "Refrigerator#{hpxml_bldg.refrigerators.size + 1}", diff --git a/hpxml-measures/docs/source/index.rst b/hpxml-measures/docs/source/index.rst index cecae8084..1596ff2f5 100644 --- a/hpxml-measures/docs/source/index.rst +++ b/hpxml-measures/docs/source/index.rst @@ -14,6 +14,7 @@ OpenStudio-HPXML documentation usage_instructions workflow_inputs workflow_outputs + testing_framework.rst Indices and tables ================== diff --git a/hpxml-measures/docs/source/testing_framework.rst b/hpxml-measures/docs/source/testing_framework.rst new file mode 100644 index 000000000..103845eb4 --- /dev/null +++ b/hpxml-measures/docs/source/testing_framework.rst @@ -0,0 +1,49 @@ +Testing Framework +================= + +A large number of tests are automatically run for every code change in the GitHub repository. + +The current set of tests include: + +- Successful simulations for all sample files +- ASHRAE 140 +- RESNET® HERS® HVAC tests +- RESNET HERS DSE tests +- RESNET HERS Hot Water tests + +OpenStudio-HPXML can be used to meet BPI-2400 software tests. + +Running Tests Locally +--------------------- + +All ASHRAE 140 tests can be run using: + +| ``openstudio test_ashrae_140.rb`` +| + +All RESNET HERS tests can be run using: + +| ``openstudio test_hers.rb`` +| + +Or individual tests can be run by specifying the name of the test. For example: + +| ``openstudio test_hers.rb --name=test_hers_hvac`` +| + +Test results in CSV format are created at ``workflow/tests/test_results`` and can be used to populate RESNET Excel spreadsheet forms. +RESNET acceptance criteria are also implemented as part of the tests to check for test failures. + +At the completion of the test, there will be output that denotes the number of failures/errors like so: + +``Finished in 36.067116s, 0.0277 runs/s, 0.9704 assertions/s.`` +``1 runs, 35 assertions, 0 failures, 0 errors, 0 skips`` + +Software developers may find it convenient to export HPXML files with the same name as the test files included in the repository. +This allows issuing the commands above to generate test results. + +Official Test Results +--------------------- + +The official OpenStudio-HPXML test results can be found in any release or any checkout of the code at ``workflow/tests/base_results``. +The results are based on using the HPXML files found under ``workflow/tests``. diff --git a/hpxml-measures/docs/source/workflow_inputs.rst b/hpxml-measures/docs/source/workflow_inputs.rst index 5a312c790..baa8c6042 100644 --- a/hpxml-measures/docs/source/workflow_inputs.rst +++ b/hpxml-measures/docs/source/workflow_inputs.rst @@ -1632,7 +1632,8 @@ Each electric resistance heating system is entered as a ``/HPXML/Building/Buildi ``HeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Heating output capacity ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac > 0, <= 1 Yes Efficiency ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served - ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing scaling factor + ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing capacity multiplier + ``extension/HeatingAutosizingLimit`` double Btu/hr > 0 No Heating autosizing capacity limit ============================================================= ======= ====== ================== ======== ============== ========== .. [#] ElectricDistribution choices are "baseboard", "radiant floor", or "radiant ceiling". @@ -1663,7 +1664,8 @@ Each central furnace is entered as a ``/HPXML/Building/BuildingDetails/Systems/H ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed [#]_ ``extension/AirflowDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed airflows [#]_ - ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing scaling factor + ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing capacity multiplier + ``extension/HeatingAutosizingLimit`` double Btu/hr > 0 No Heating autosizing capacity limit ====================================================== ======= ========= =============== ======== ============== ================================================ .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". @@ -1703,7 +1705,8 @@ Each wall furnace is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac > 0, <= 1 Yes Rated efficiency ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power - ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing scaling factor + ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing capacity multiplier + ``extension/HeatingAutosizingLimit`` double Btu/hr > 0 No Heating autosizing capacity limit ========================================================== ======= ====== =============== ======== ============== ================ .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". @@ -1731,7 +1734,8 @@ Each floor furnace is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVA ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac > 0, <= 1 Yes Rated efficiency ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power - ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing scaling factor + ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing capacity multiplier + ``extension/HeatingAutosizingLimit`` double Btu/hr > 0 No Heating autosizing capacity limit =========================================================== ======= ====== =============== ======== ============== ================ .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". @@ -1761,7 +1765,8 @@ Each in-unit boiler is entered as a ``/HPXML/Building/BuildingDetails/Systems/HV ``AnnualHeatingEfficiency[Units="AFUE"]/Value`` double frac > 0, <= 1 Yes Rated efficiency ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served ``ElectricAuxiliaryEnergy`` double kWh/yr >= 0 No See [#]_ Electric auxiliary energy - ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing scaling factor + ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing capacity multiplier + ``extension/HeatingAutosizingLimit`` double Btu/hr > 0 No Heating autosizing capacity limit ===================================================== ======= ========= =============== ======== ============== ========================================= .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". @@ -1807,7 +1812,8 @@ Each shared boiler (serving multiple dwelling units) is entered as a ``/HPXML/Bu ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served ``ElectricAuxiliaryEnergy`` or ``extension/SharedLoopWatts`` double kWh/yr or W >= 0 No See [#]_ Electric auxiliary energy or shared loop power ``ElectricAuxiliaryEnergy`` or ``extension/FanCoilWatts`` double kWh/yr or W >= 0 No [#]_ Electric auxiliary energy or fan coil power - ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing scaling factor + ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing capacity multiplier + ``extension/HeatingAutosizingLimit`` double Btu/hr > 0 No Heating autosizing capacity limit ============================================================ ======= =========== =============== ======== ================== ========================================= .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". @@ -1847,7 +1853,8 @@ Each stove is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC/HVACPl ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac > 0, <= 1 Yes Efficiency ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served ``extension/FanPowerWatts`` double W >= 0 No 40 Fan power - ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing scaling factor + ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing capacity multiplier + ``extension/HeatingAutosizingLimit`` double Btu/hr > 0 No Heating autosizing capacity limit ==================================================== ======= ====== =============== ======== ============== =================== .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". @@ -1873,7 +1880,8 @@ Each space heater is entered as a ``/HPXML/Building/BuildingDetails/Systems/HVAC ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac > 0, <= 1 Yes Efficiency ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power - ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing scaling factor + ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing capacity multiplier + ``extension/HeatingAutosizingLimit`` double Btu/hr > 0 No Heating autosizing capacity limit ================================================== ======= ====== =============== ======== ============== =================== .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". @@ -1902,7 +1910,8 @@ Instead of modeling fireplaces as serving a fraction of the heating load, firepl ``AnnualHeatingEfficiency[Units="Percent"]/Value`` double frac > 0, <= 1 Yes Efficiency ``FractionHeatLoadServed`` double frac >= 0, <= 1 [#]_ See [#]_ Fraction of heating load served ``extension/FanPowerWatts`` double W >= 0 No 0 Fan power - ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing scaling factor + ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing capacity multiplier + ``extension/HeatingAutosizingLimit`` double Btu/hr > 0 No Heating autosizing capacity limit ======================================================== ======= ====== =============== ======== ============== =================== .. [#] HeatingSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". @@ -1951,7 +1960,8 @@ Each central air conditioner is entered as a ``/HPXML/Building/BuildingDetails/S ``extension/AirflowDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed airflows [#]_ ``extension/ChargeDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 50.0 Crankcase heater power - ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing scaling factor + ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing capacity multiplier + ``extension/CoolingAutosizingLimit`` double Btu/hr > 0 No Cooling autosizing capacity limit ================================================================ ======= =========== ======================= ======== ============== =========================================================== .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". @@ -1996,7 +2006,8 @@ Each room air conditioner is entered as a ``/HPXML/Building/BuildingDetails/Syst ``SensibleHeatFraction`` double frac > 0.5, <= 1 No 0.65 Sensible heat fraction ``IntegratedHeatingSystemFuel`` string See [#]_ No Fuel type of integrated heater ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 0.0 Crankcase heater power - ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing scaling factor + ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing capacity multiplier + ``extension/CoolingAutosizingLimit`` double Btu/hr > 0 No Cooling autosizing capacity limit ============================================================== ====== ====== ==================== ======== ============== ============================================ .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load. @@ -2036,7 +2047,8 @@ Each packaged terminal air conditioner (PTAC) is entered as a ``/HPXML/Building/ ``SensibleHeatFraction`` double frac > 0.5, <= 1 No 0.65 Sensible heat fraction ``IntegratedHeatingSystemFuel`` string See [#]_ No Fuel type of integrated heater ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 0.0 Crankcase heater power - ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing scaling factor + ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing capacity multiplier + ``extension/CoolingAutosizingLimit`` double Btu/hr > 0 No Cooling autosizing capacity limit ============================================================== ====== ====== ================================= ======== ============== ========================================== .. [#] Cooling capacity autosized per ACCA Manual J/S based on cooling design load. @@ -2073,7 +2085,8 @@ Each evaporative cooler is entered as a ``/HPXML/Building/BuildingDetails/System ``CoolingSystemFuel`` string electricity Yes Fuel type ``CoolingCapacity`` double Btu/hr >= 0 No autosized [#]_ Cooling output capacity ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served - ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing scaling factor + ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing capacity multiplier + ``extension/CoolingAutosizingLimit`` double Btu/hr > 0 No Cooling autosizing capacity limit ====================================== ======== ====== ================== ======== ============== ================================== .. [#] If DistributionSystem provided, HVACDistribution type must be :ref:`hvac_distribution_air` (type: "regular velocity") or :ref:`hvac_distribution_dse`. @@ -2105,7 +2118,8 @@ Each mini-split air conditioner is entered as a ``/HPXML/Building/BuildingDetail ``extension/AirflowDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed airflows [#]_ ``extension/ChargeDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 50.0 Crankcase heater power - ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing scaling factor + ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing capacity multiplier + ``extension/CoolingAutosizingLimit`` double Btu/hr > 0 No Cooling autosizing capacity limit ================================================================ ======== ====== =============== ======== ============== =========================================================== .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". @@ -2150,7 +2164,8 @@ Each shared chiller (serving multiple dwelling units) is entered as a ``/HPXML/B ``AnnualCoolingEfficiency[Units="kW/ton"]/Value`` double kW/ton > 0 Yes Rated efficiency ``extension/SharedLoopWatts`` double W >= 0 Yes Pumping and fan power serving the system ``extension/FanCoilWatts`` double W >= 0 See [#]_ Fan coil power - ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing scaling factor + ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing capacity multiplier + ``extension/CoolingAutosizingLimit`` double Btu/hr > 0 No Cooling autosizing capacity limit ================================================= ======== ====== =============== ======== ========= ========================================= .. [#] HVACDistribution type must be :ref:`hvac_distribution_hydronic` (type: "radiator", "baseboard", "radiant floor", "radiant ceiling", or "water loop") or :ref:`hvac_distribution_air` (type: "fan coil"). @@ -2180,7 +2195,8 @@ Each shared cooling tower (serving multiple dwelling units) is entered as a ``/H ``CoolingSystemFuel`` string electricity Yes Fuel type ``FractionCoolLoadServed`` double frac >= 0, <= 1 [#]_ Yes Fraction of cooling load served ``extension/SharedLoopWatts`` double W >= 0 Yes Pumping and fan power serving the system - ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing scaling factor + ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing capacity multiplier + ``extension/CoolingAutosizingLimit`` double Btu/hr > 0 No Cooling autosizing capacity limit ===================================== ======== ====== =============== ======== ========= ========================================= .. [#] HVACDistribution type must be :ref:`hvac_distribution_hydronic` (type: "water loop"). @@ -2238,8 +2254,10 @@ Each air-to-air heat pump is entered as a ``/HPXML/Building/BuildingDetails/Syst ``extension/AirflowDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed airflows [#]_ ``extension/ChargeDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 50.0 Crankcase heater power - ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing scaling factor - ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing scaling factor + ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing capacity multiplier + ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing capacity multiplier + ``extension/CoolingAutosizingLimit`` double Btu/hr > 0 No Cooling autosizing capacity limit + ``extension/HeatingAutosizingLimit`` double Btu/hr > 0 No Heating autosizing capacity limit ================================================================ ======= ======== ======================== ======== ============== ================================================= .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". @@ -2316,8 +2334,10 @@ Each ``HeatPump`` is expected to represent a single outdoor unit, whether connec ``extension/AirflowDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed airflows [#]_ ``extension/ChargeDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 50.0 Crankcase heater power - ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing scaling factor - ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing scaling factor + ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing capacity multiplier + ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing capacity multiplier + ``extension/CoolingAutosizingLimit`` double Btu/hr > 0 No Cooling autosizing capacity limit + ``extension/HeatingAutosizingLimit`` double Btu/hr > 0 No Heating autosizing capacity limit ================================================================ ======== ======== ======================== ======== ============== ============================================== .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". @@ -2379,8 +2399,10 @@ Each packaged terminal heat pump is entered as a ``/HPXML/Building/BuildingDetai ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No 0.425 | 5 Heating output capacity retention at cold temperature [#]_ ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 0.0 Crankcase heater power - ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing scaling factor - ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing scaling factor + ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing capacity multiplier + ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing capacity multiplier + ``extension/CoolingAutosizingLimit`` double Btu/hr > 0 No Cooling autosizing capacity limit + ``extension/HeatingAutosizingLimit`` double Btu/hr > 0 No Heating autosizing capacity limit =============================================================== ======== ======== =========================== ======== ============== ============================================== .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`). @@ -2421,8 +2443,10 @@ Each room air conditioner with reverse cycle is entered as a ``/HPXML/Building/B ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 Yes Rated heating efficiency ``extension/HeatingCapacityRetention[Fraction | Temperature]`` double frac | F >= 0, < 1 | <= 17 No 0.425 | 5 Heating output capacity retention at cold temperature [#]_ ``extension/CrankcaseHeaterPowerWatts`` double W >= 0 No 0.0 Crankcase heater power - ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing scaling factor - ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing scaling factor + ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing capacity multiplier + ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing capacity multiplier + ``extension/CoolingAutosizingLimit`` double Btu/hr > 0 No Cooling autosizing capacity limit + ``extension/HeatingAutosizingLimit`` double Btu/hr > 0 No Heating autosizing capacity limit =============================================================== ======== ======== ======================================= ======== ============== ============================================== .. [#] Heating capacity autosized per ACCA Manual J/S based on heating design load (unless a different HeatPumpSizingMethodology was selected in :ref:`hvac_sizing_control`). @@ -2469,8 +2493,10 @@ Each ground-to-air heat pump is entered as a ``/HPXML/Building/BuildingDetails/S ``extension/FanPowerWattsPerCFM`` double W/cfm >= 0 No See [#]_ Blower fan efficiency at maximum fan speed ``extension/AirflowDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed airflows [#]_ ``extension/ChargeDefectRatio`` double frac >= -0.9, <= 9 No 0.0 Deviation between design/installed refrigerant charges [#]_ - ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing scaling factor - ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing scaling factor + ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing capacity multiplier + ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing capacity multiplier + ``extension/CoolingAutosizingLimit`` double Btu/hr > 0 No Cooling autosizing capacity limit + ``extension/HeatingAutosizingLimit`` double Btu/hr > 0 No Heating autosizing capacity limit =============================================== ======== ====== =============== ======== ============== ============================================== .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". @@ -2526,8 +2552,10 @@ Each water-loop-to-air heat pump is entered as a ``/HPXML/Building/BuildingDetai ``BackupType`` string See [#]_ No Type of backup heating ``AnnualCoolingEfficiency[Units="EER"]/Value`` double Btu/Wh > 0 See [#]_ Rated cooling efficiency ``AnnualHeatingEfficiency[Units="COP"]/Value`` double W/W > 0 See [#]_ Rated heating efficiency - ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing scaling factor - ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing scaling factor + ``extension/CoolingAutosizingFactor`` double frac > 0 No 1.0 Cooling autosizing capacity multiplier + ``extension/HeatingAutosizingFactor`` double frac > 0 No 1.0 Heating autosizing capacity multiplier + ``extension/CoolingAutosizingLimit`` double Btu/hr > 0 No Cooling autosizing capacity limit + ``extension/HeatingAutosizingLimit`` double Btu/hr > 0 No Heating autosizing capacity limit =============================================== ======== ====== ================= ======== ============== ============================================== .. [#] UnitLocation choices are "conditioned space", "basement - unconditioned", "basement - conditioned", "attic - unvented", "attic - vented", "garage", "crawlspace - unvented", "crawlspace - vented", "crawlspace - conditioned", "other exterior", "other housing unit", "other heated space", "other multifamily buffer space", "other non-freezing space", "roof deck", "manufactured home belly", or "unconditioned space". @@ -2586,7 +2614,8 @@ If a backup type of "integrated" is provided, additional information is entered ``BackupSystemFuel`` string See [#]_ Yes Integrated backup heating fuel type ``BackupAnnualHeatingEfficiency[Units="Percent" or Units="AFUE"]/Value`` double frac > 0, <= 1 Yes Integrated backup heating efficiency ``BackupHeatingCapacity`` double Btu/hr >= 0 No autosized [#]_ Integrated backup heating output capacity - ``extension/BackupHeatingAutosizingFactor`` double frac > 0 No 1.0 Backup Heating autosizing scaling factor + ``extension/BackupHeatingAutosizingFactor`` double frac > 0 No 1.0 Backup Heating autosizing capacity multiplier + ``extension/BackupHeatingAutosizingLimit`` double Btu/hr > 0 No Backup Heating autosizing capacity limit ============================================================================= ======== ====== =========== ======== ============== ========================================== .. [#] BackupSystemFuel choices are "electricity", "natural gas", "fuel oil", "fuel oil 1", "fuel oil 2", "fuel oil 4", "fuel oil 5/6", "diesel", "propane", "kerosene", "coal", "coke", "bituminous coal", "wood", or "wood pellets". diff --git a/hpxml-measures/tasks.rb b/hpxml-measures/tasks.rb index af6a27b45..9e067b3e2 100644 --- a/hpxml-measures/tasks.rb +++ b/hpxml-measures/tasks.rb @@ -95,10 +95,15 @@ def create_hpxmls end hpxml = HPXML.new(hpxml_path: hpxml_path) - if hpxml_path.include? 'ASHRAE_Standard_140' + if hpxml_path.include?('ASHRAE_Standard_140') || hpxml_path.include?('HERS_HVAC') || hpxml_path.include?('HERS_DSE') apply_hpxml_modification_ashrae_140(hpxml) + if hpxml_path.include?('HERS_HVAC') || hpxml_path.include?('HERS_DSE') + apply_hpxml_modification_hers_hvac_dse(hpxml_path, hpxml) + end + elsif hpxml_path.include?('HERS_Hot_Water') + apply_hpxml_modification_hers_hot_water(hpxml) else - apply_hpxml_modification(File.basename(hpxml_path), hpxml) + apply_hpxml_modification_sample_files(hpxml_path, hpxml) end hpxml_doc = hpxml.to_doc() @@ -128,6 +133,7 @@ def create_hpxmls def apply_hpxml_modification_ashrae_140(hpxml) # Set detailed HPXML values for ASHRAE 140 test files + hpxml_bldg = hpxml.buildings[0] # ------------ # # HPXML Header # @@ -137,95 +143,149 @@ def apply_hpxml_modification_ashrae_140(hpxml) hpxml.header.created_date_and_time = Time.new(2000, 1, 1, 0, 0, 0, '-07:00').strftime('%Y-%m-%dT%H:%M:%S%:z') # Hard-code to prevent diffs hpxml.header.apply_ashrae140_assumptions = true - hpxml.buildings.each do |hpxml_bldg| - # --------------------- # - # HPXML BuildingSummary # - # --------------------- # + # --------------------- # + # HPXML BuildingSummary # + # --------------------- # - hpxml_bldg.site.azimuth_of_front_of_home = nil + hpxml_bldg.site.azimuth_of_front_of_home = nil - # --------------- # - # HPXML Enclosure # - # --------------- # + # --------------- # + # HPXML Enclosure # + # --------------- # - hpxml_bldg.attics[0].vented_attic_ach = 2.4 - hpxml_bldg.foundations.reverse_each do |foundation| - foundation.delete + hpxml_bldg.attics[0].vented_attic_ach = 2.4 + hpxml_bldg.foundations.reverse_each do |foundation| + foundation.delete + end + hpxml_bldg.roofs.each do |roof| + if roof.roof_color == HPXML::ColorReflective + roof.solar_absorptance = 0.2 + else + roof.solar_absorptance = 0.6 end - hpxml_bldg.roofs.each do |roof| - if roof.roof_color == HPXML::ColorReflective - roof.solar_absorptance = 0.2 - else - roof.solar_absorptance = 0.6 - end - roof.emittance = 0.9 - roof.roof_color = nil + roof.emittance = 0.9 + roof.roof_color = nil + end + (hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |wall| + if wall.color == HPXML::ColorReflective + wall.solar_absorptance = 0.2 + else + wall.solar_absorptance = 0.6 end - (hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |wall| - if wall.color == HPXML::ColorReflective - wall.solar_absorptance = 0.2 + wall.emittance = 0.9 + wall.color = nil + if wall.is_a?(HPXML::Wall) + if wall.attic_wall_type == HPXML::AtticWallTypeGable + wall.insulation_assembly_r_value = 2.15 else - wall.solar_absorptance = 0.6 - end - wall.emittance = 0.9 - wall.color = nil - if wall.is_a?(HPXML::Wall) - if wall.attic_wall_type == HPXML::AtticWallTypeGable - wall.insulation_assembly_r_value = 2.15 - else - wall.interior_finish_type = HPXML::InteriorFinishGypsumBoard - wall.interior_finish_thickness = 0.5 - end + wall.interior_finish_type = HPXML::InteriorFinishGypsumBoard + wall.interior_finish_thickness = 0.5 end end - hpxml_bldg.floors.each do |floor| - next unless floor.is_ceiling + end + hpxml_bldg.floors.each do |floor| + next unless floor.is_ceiling - floor.interior_finish_type = HPXML::InteriorFinishGypsumBoard - floor.interior_finish_thickness = 0.5 - end - hpxml_bldg.foundation_walls.each do |fwall| - if fwall.insulation_interior_r_value == 0 - fwall.interior_finish_type = HPXML::InteriorFinishNone - else - fwall.interior_finish_type = HPXML::InteriorFinishGypsumBoard - fwall.interior_finish_thickness = 0.5 - end - end - if hpxml_bldg.doors.size == 1 - hpxml_bldg.doors[0].area /= 2.0 - hpxml_bldg.doors << hpxml_bldg.doors[0].dup - hpxml_bldg.doors[1].azimuth = 0 - hpxml_bldg.doors[1].id = 'Door2' + floor.interior_finish_type = HPXML::InteriorFinishGypsumBoard + floor.interior_finish_thickness = 0.5 + end + hpxml_bldg.foundation_walls.each do |fwall| + if fwall.insulation_interior_r_value == 0 + fwall.interior_finish_type = HPXML::InteriorFinishNone + else + fwall.interior_finish_type = HPXML::InteriorFinishGypsumBoard + fwall.interior_finish_thickness = 0.5 end - hpxml_bldg.windows.each do |window| - next if window.overhangs_depth.nil? + end + if hpxml_bldg.doors.size == 1 + hpxml_bldg.doors[0].area /= 2.0 + hpxml_bldg.doors << hpxml_bldg.doors[0].dup + hpxml_bldg.doors[1].azimuth = 0 + hpxml_bldg.doors[1].id = 'Door2' + end + hpxml_bldg.windows.each do |window| + next if window.overhangs_depth.nil? - window.overhangs_distance_to_bottom_of_window = 6.0 - end + window.overhangs_distance_to_bottom_of_window = 6.0 + end - # ---------- # - # HPXML HVAC # - # ---------- # + # ---------- # + # HPXML HVAC # + # ---------- # + if hpxml_bldg.hvac_controls.empty? hpxml_bldg.hvac_controls.add(id: "HVACControl#{hpxml_bldg.hvac_controls.size + 1}", heating_setpoint_temp: 68.0, cooling_setpoint_temp: 78.0) + end - # --------------- # - # HPXML MiscLoads # - # --------------- # + # --------------- # + # HPXML MiscLoads # + # --------------- # - next unless hpxml_bldg.plug_loads[0].kwh_per_year > 0 + return unless hpxml_bldg.plug_loads[0].kwh_per_year > 0 - hpxml_bldg.plug_loads[0].weekday_fractions = '0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660' - hpxml_bldg.plug_loads[0].weekend_fractions = '0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660' - hpxml_bldg.plug_loads[0].monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' + hpxml_bldg.plug_loads[0].weekday_fractions = '0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660' + hpxml_bldg.plug_loads[0].weekend_fractions = '0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660' + hpxml_bldg.plug_loads[0].monthly_multipliers = '1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0' +end + +def apply_hpxml_modification_hers_hvac_dse(hpxml_path, hpxml) + # Set detailed HPXML values for HERS HVAC/DSE test files + hpxml_bldg = hpxml.buildings[0] + + if hpxml_path.include? 'HERS_HVAC' + hpxml_bldg.hvac_distributions.clear + hpxml_bldg.hvac_distributions.add(id: 'HVACDistribution1', + distribution_system_type: HPXML::HVACDistributionTypeDSE, + annual_heating_dse: 1.0, + annual_cooling_dse: 1.0) + end + if hpxml_path.include? 'HERS_DSE' + # For DSE tests, use effective R-values instead of nominal R-values to match the test specs. + hpxml_bldg.hvac_distributions[0].ducts.each do |duct| + next if duct.duct_insulation_r_value.nil? + + if duct.duct_insulation_r_value == 0 + duct.duct_insulation_r_value = nil + duct.duct_effective_r_value = 1.5 + elsif duct.duct_insulation_r_value == 6 + duct.duct_insulation_r_value = nil + duct.duct_effective_r_value = 7 + else + fail 'Unexpected error.' + end + end end end -def apply_hpxml_modification(hpxml_file, hpxml) +def apply_hpxml_modification_hers_hot_water(hpxml) + # Set detailed HPXML values for HERS Hot Water test files + hpxml_bldg = hpxml.buildings[0] + + hpxml.header.xml_generated_by = 'tasks.rb' + hpxml.header.created_date_and_time = Time.new(2000, 1, 1, 0, 0, 0, '-07:00').strftime('%Y-%m-%dT%H:%M:%S%:z') # Hard-code to prevent diffs + + (hpxml_bldg.roofs + hpxml_bldg.walls + hpxml_bldg.rim_joists).each do |surface| + surface.solar_absorptance = 0.75 + surface.emittance = 0.9 + if surface.is_a? HPXML::Roof + surface.roof_color = nil + else + surface.color = nil + end + end + + hpxml_bldg.hvac_distributions.clear + hpxml_bldg.hvac_distributions.add(id: 'HVACDistribution1', + distribution_system_type: HPXML::HVACDistributionTypeDSE, + annual_heating_dse: 1.0, + annual_cooling_dse: 1.0) +end + +def apply_hpxml_modification_sample_files(hpxml_path, hpxml) # Set detailed HPXML values for sample files + hpxml_file = File.basename(hpxml_path) hpxml_bldg = hpxml.buildings[0] # ------------ # @@ -1351,11 +1411,7 @@ def apply_hpxml_modification(hpxml_file, hpxml) end end end - if hpxml_file.include? 'install-quality' - hpxml_bldg.hvac_systems.each do |hvac_system| - hvac_system.fan_watts_per_cfm = 0.365 - end - elsif ['base-hvac-setpoints-daily-setbacks.xml'].include? hpxml_file + if ['base-hvac-setpoints-daily-setbacks.xml'].include? hpxml_file hpxml_bldg.hvac_controls[0].heating_setback_temp = 66 hpxml_bldg.hvac_controls[0].heating_setback_hours_per_week = 7 * 7 hpxml_bldg.hvac_controls[0].heating_setback_start_hour = 23 # 11pm @@ -1680,7 +1736,8 @@ def apply_hpxml_modification(hpxml_file, hpxml) location: HPXML::LocationConditionedSpace) end if ['base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml', - 'base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml'].include? hpxml_file + 'base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-airflow.xml', + 'base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml'].include? hpxml_file # Switch backup boiler with hydronic distribution to backup furnace with air distribution hpxml_bldg.heating_systems[0].heating_system_type = HPXML::HVACTypeFurnace hpxml_bldg.hvac_distributions[0].distribution_system_type = HPXML::HVACDistributionTypeAir @@ -1704,6 +1761,13 @@ def apply_hpxml_modification(hpxml_file, hpxml) if hpxml_file.include? 'base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml' hpxml_bldg.geothermal_loops[0].shank_spacing = 2.5 end + if hpxml_file.include? 'HERS_HVAC' + hpxml_bldg.hvac_distributions.clear + hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", + distribution_system_type: HPXML::HVACDistributionTypeDSE, + annual_heating_dse: 1.0, + annual_cooling_dse: 1.0) + end # ------------------ # # HPXML WaterHeating # diff --git a/hpxml-measures/workflow/hpxml_inputs.json b/hpxml-measures/workflow/hpxml_inputs.json index 307c61bfd..ac210cf06 100644 --- a/hpxml-measures/workflow/hpxml_inputs.json +++ b/hpxml-measures/workflow/hpxml_inputs.json @@ -100,7 +100,6 @@ "heat_pump_heating_efficiency": 0, "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_efficiency": 0, - "heat_pump_cooling_sensible_heat_fraction": 0, "heat_pump_fraction_heat_load_served": 0, "heat_pump_fraction_cool_load_served": 0, "heat_pump_backup_type": "none", @@ -143,7 +142,7 @@ "dwhr_facilities_connected": "none", "water_fixtures_shower_low_flow": false, "water_fixtures_sink_low_flow": false, - "water_fixtures_usage_multiplier": 0, + "water_fixtures_usage_multiplier": null, "solar_thermal_system_type": "none", "solar_thermal_collector_area": 0, "solar_thermal_collector_loop_type": "liquid indirect", @@ -360,6 +359,247 @@ "roof_color": "reflective", "wall_color": "reflective" }, + "tests/HERS_HVAC/HVAC1a.xml": { + "parent_hpxml": "tests/ASHRAE_Standard_140/L100AL.xml", + "heating_system_type": "Furnace", + "heating_system_fuel": "natural gas", + "heating_system_heating_capacity": 56100, + "heating_system_heating_efficiency": 0.78, + "heating_system_fraction_heat_load_served": 1.0, + "cooling_system_type": "central air conditioner", + "cooling_system_cooling_capacity": 38300, + "cooling_system_cooling_efficiency": 10, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_fraction_cool_load_served": 1, + "hvac_blower_fan_watts_per_cfm": 0.5 + }, + "tests/HERS_HVAC/HVAC1b.xml": { + "parent_hpxml": "tests/HERS_HVAC/HVAC1a.xml", + "cooling_system_cooling_efficiency": 13 + }, + "tests/HERS_HVAC/HVAC2a.xml": { + "parent_hpxml": "tests/HERS_HVAC/HVAC1a.xml", + "weather_station_epw_filepath": "USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw" + }, + "tests/HERS_HVAC/HVAC2b.xml": { + "parent_hpxml": "tests/HERS_HVAC/HVAC2a.xml", + "heating_system_heating_efficiency": 0.9 + }, + "tests/HERS_HVAC/HVAC2c.xml": { + "parent_hpxml": "tests/HERS_HVAC/HVAC2a.xml", + "heating_system_type": "none", + "cooling_system_type": "none", + "heat_pump_type": "air-to-air", + "heat_pump_cooling_capacity": 56100, + "heat_pump_heating_capacity": 56100, + "heat_pump_backup_type": "integrated", + "heat_pump_backup_fuel": "electricity", + "heat_pump_backup_heating_capacity": 34121, + "heat_pump_backup_heating_efficiency": 1.0, + "heat_pump_fraction_heat_load_served": 1.0, + "heat_pump_fraction_cool_load_served": 1.0, + "heat_pump_heating_efficiency_type": "HSPF", + "heat_pump_heating_efficiency": 6.8, + "heat_pump_cooling_efficiency_type": "SEER", + "heat_pump_cooling_efficiency": 10 + }, + "tests/HERS_HVAC/HVAC2d.xml": { + "parent_hpxml": "tests/HERS_HVAC/HVAC2c.xml", + "heat_pump_heating_efficiency": 9.85, + "heat_pump_cooling_efficiency": 13 + }, + "tests/HERS_HVAC/HVAC2e.xml": { + "parent_hpxml": "tests/HERS_HVAC/HVAC2a.xml", + "heating_system_fuel": "electricity", + "heating_system_heating_efficiency": 1.0 + }, + "tests/HERS_DSE/HVAC3a.xml": { + "parent_hpxml": "tests/ASHRAE_Standard_140/L322XC.xml", + "geometry_foundation_type": "UnconditionedBasement", + "geometry_unit_cfa": 1539, + "air_leakage_value": 0.67, + "floor_over_foundation_assembly_r": 13.85, + "heating_system_type": "Furnace", + "heating_system_fuel": "natural gas", + "heating_system_heating_capacity": 46600, + "heating_system_heating_efficiency": 0.78, + "heating_system_fraction_heat_load_served": 1.0, + "cooling_system_type": "central air conditioner", + "cooling_system_cooling_capacity": 38400, + "cooling_system_cooling_efficiency": 10, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_fraction_cool_load_served": 1, + "hvac_blower_fan_watts_per_cfm": 0.5, + "ducts_supply_insulation_r": 0, + "ducts_supply_location": "conditioned space", + "ducts_supply_surface_area": 308, + "ducts_return_insulation_r": 0, + "ducts_return_location": "conditioned space", + "ducts_return_surface_area": 77 + }, + "tests/HERS_DSE/HVAC3b.xml": { + "parent_hpxml": "tests/HERS_DSE/HVAC3a.xml", + "heating_system_heating_capacity": 56000, + "ducts_supply_location": "basement - unconditioned", + "ducts_return_location": "basement - unconditioned" + }, + "tests/HERS_DSE/HVAC3c.xml": { + "parent_hpxml": "tests/HERS_DSE/HVAC3b.xml", + "heating_system_heating_capacity": 49000, + "ducts_supply_insulation_r": 6, + "ducts_return_insulation_r": 6 + }, + "tests/HERS_DSE/HVAC3d.xml": { + "parent_hpxml": "tests/HERS_DSE/HVAC3c.xml", + "heating_system_heating_capacity": 61000, + "ducts_supply_leakage_to_outside_value": 125.0, + "ducts_return_leakage_to_outside_value": 125.0 + }, + "tests/HERS_DSE/HVAC3e.xml": { + "parent_hpxml": "tests/ASHRAE_Standard_140/L100AL.xml", + "heating_system_type": "Furnace", + "heating_system_fuel": "natural gas", + "heating_system_heating_capacity": 46600, + "heating_system_heating_efficiency": 0.78, + "heating_system_fraction_heat_load_served": 1.0, + "cooling_system_type": "central air conditioner", + "cooling_system_cooling_capacity": 38400, + "cooling_system_cooling_efficiency": 10, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_fraction_cool_load_served": 1, + "hvac_blower_fan_watts_per_cfm": 0.5, + "ducts_supply_insulation_r": 0, + "ducts_supply_location": "conditioned space", + "ducts_supply_surface_area": 308, + "ducts_return_insulation_r": 0, + "ducts_return_location": "conditioned space", + "ducts_return_surface_area": 77 + }, + "tests/HERS_DSE/HVAC3f.xml": { + "parent_hpxml": "tests/HERS_DSE/HVAC3e.xml", + "cooling_system_cooling_capacity": 49900, + "ducts_supply_location": "attic - vented", + "ducts_return_location": "attic - vented" + }, + "tests/HERS_DSE/HVAC3g.xml": { + "parent_hpxml": "tests/HERS_DSE/HVAC3f.xml", + "cooling_system_cooling_capacity": 42200, + "ducts_supply_insulation_r": 6, + "ducts_return_insulation_r": 6 + }, + "tests/HERS_DSE/HVAC3h.xml": { + "parent_hpxml": "tests/HERS_DSE/HVAC3g.xml", + "cooling_system_cooling_capacity": 55000, + "ducts_supply_leakage_to_outside_value": 125.0, + "ducts_return_leakage_to_outside_value": 125.0 + }, + "tests/HERS_Hot_Water/L100AD-HW-01.xml": { + "parent_hpxml": "tests/ASHRAE_Standard_140/L100AC.xml", + "geometry_unit_num_occupants": null, + "air_leakage_units": "EffectiveLeakageArea", + "air_leakage_value": 79.8, + "weather_station_epw_filepath": "USA_MN_Duluth.Intl.AP.727450_TMY3.epw", + "geometry_unit_num_bedrooms": 2, + "wall_assembly_r": 17.54, + "floor_over_foundation_assembly_r": 30.3, + "ceiling_assembly_r": 38.46, + "door_rvalue": 2.86, + "window_shgc": 0.4, + "window_ufactor": 0.35, + "window_interior_shading_winter": null, + "window_interior_shading_summer": null, + "heating_system_type": "Furnace", + "heating_system_fuel": "natural gas", + "heating_system_heating_efficiency": 0.78, + "heating_system_fraction_heat_load_served": 1.0, + "cooling_system_type": "central air conditioner", + "cooling_system_cooling_efficiency": 13, + "cooling_system_cooling_efficiency_type": "SEER", + "cooling_system_fraction_cool_load_served": 1, + "water_heater_type": "storage water heater", + "water_heater_fuel_type": "natural gas", + "water_heater_tank_volume": 40.0, + "water_heater_efficiency_type": "EnergyFactor", + "water_heater_efficiency": 0.56, + "water_heater_recovery_efficiency": 0.78, + "water_heater_location": "conditioned space", + "clothes_washer_present": true, + "clothes_dryer_present": true, + "dishwasher_present": true, + "refrigerator_present": true, + "cooking_range_oven_present": true, + "lighting_present": true, + "misc_plug_loads_other_annual_kwh": null, + "misc_plug_loads_other_frac_sensible": null, + "misc_plug_loads_other_frac_latent": null, + "misc_plug_loads_television_present": true, + "lighting_interior_fraction_cfl": 0.1 + }, + "tests/HERS_Hot_Water/L100AD-HW-02.xml": { + "parent_hpxml": "tests/HERS_Hot_Water/L100AD-HW-01.xml", + "geometry_unit_num_bedrooms": 4 + }, + "tests/HERS_Hot_Water/L100AD-HW-03.xml": { + "parent_hpxml": "tests/HERS_Hot_Water/L100AD-HW-01.xml", + "water_heater_efficiency": 0.62 + }, + "tests/HERS_Hot_Water/L100AD-HW-04.xml": { + "parent_hpxml": "tests/HERS_Hot_Water/L100AD-HW-02.xml", + "water_fixtures_shower_low_flow": true, + "water_fixtures_sink_low_flow": true + }, + "tests/HERS_Hot_Water/L100AD-HW-05.xml": { + "parent_hpxml": "tests/HERS_Hot_Water/L100AD-HW-02.xml", + "hot_water_distribution_system_type": "Recirculation", + "hot_water_distribution_recirc_control_type": "no control", + "hot_water_distribution_recirc_branch_piping_length": 10, + "hot_water_distribution_recirc_pump_power": 50, + "hot_water_distribution_pipe_r": 3 + }, + "tests/HERS_Hot_Water/L100AD-HW-06.xml": { + "parent_hpxml": "tests/HERS_Hot_Water/L100AD-HW-05.xml", + "hot_water_distribution_recirc_control_type": "manual demand control" + }, + "tests/HERS_Hot_Water/L100AD-HW-07.xml": { + "parent_hpxml": "tests/HERS_Hot_Water/L100AD-HW-02.xml", + "dwhr_facilities_connected": "all", + "dwhr_equal_flow": true, + "dwhr_efficiency": 0.54 + }, + "tests/HERS_Hot_Water/L100AM-HW-01.xml": { + "parent_hpxml": "tests/HERS_Hot_Water/L100AD-HW-01.xml", + "weather_station_epw_filepath": "USA_FL_Miami.Intl.AP.722020_TMY3.epw", + "wall_assembly_r": 12.20, + "floor_over_foundation_assembly_r": 15.63, + "ceiling_assembly_r": 28.57, + "window_shgc": 0.4, + "window_ufactor": 1.2, + "door_rvalue": 0.83 + }, + "tests/HERS_Hot_Water/L100AM-HW-02.xml": { + "parent_hpxml": "tests/HERS_Hot_Water/L100AD-HW-02.xml", + "weather_station_epw_filepath": "USA_FL_Miami.Intl.AP.722020_TMY3.epw" + }, + "tests/HERS_Hot_Water/L100AM-HW-03.xml": { + "parent_hpxml": "tests/HERS_Hot_Water/L100AD-HW-03.xml", + "weather_station_epw_filepath": "USA_FL_Miami.Intl.AP.722020_TMY3.epw" + }, + "tests/HERS_Hot_Water/L100AM-HW-04.xml": { + "parent_hpxml": "tests/HERS_Hot_Water/L100AD-HW-04.xml", + "weather_station_epw_filepath": "USA_FL_Miami.Intl.AP.722020_TMY3.epw" + }, + "tests/HERS_Hot_Water/L100AM-HW-05.xml": { + "parent_hpxml": "tests/HERS_Hot_Water/L100AD-HW-05.xml", + "weather_station_epw_filepath": "USA_FL_Miami.Intl.AP.722020_TMY3.epw" + }, + "tests/HERS_Hot_Water/L100AM-HW-06.xml": { + "parent_hpxml": "tests/HERS_Hot_Water/L100AD-HW-06.xml", + "weather_station_epw_filepath": "USA_FL_Miami.Intl.AP.722020_TMY3.epw" + }, + "tests/HERS_Hot_Water/L100AM-HW-07.xml": { + "parent_hpxml": "tests/HERS_Hot_Water/L100AD-HW-07.xml", + "weather_station_epw_filepath": "USA_FL_Miami.Intl.AP.722020_TMY3.epw" + }, "sample_files/base.xml": { "simulation_control_timestep": 60, "site_type": "suburban", @@ -469,7 +709,6 @@ "heat_pump_heating_efficiency": 0, "heat_pump_cooling_efficiency_type": "SEER", "heat_pump_cooling_efficiency": 0, - "heat_pump_cooling_sensible_heat_fraction": 0, "heat_pump_fraction_heat_load_served": 0, "heat_pump_fraction_cool_load_served": 0, "heat_pump_backup_type": "none", @@ -1687,7 +1926,10 @@ "heat_pump_backup_heating_capacity": null, "heat_pump_cooling_autosizing_factor": 1.7, "heat_pump_heating_autosizing_factor": 1.4, - "heat_pump_backup_heating_autosizing_factor": 0.9 + "heat_pump_backup_heating_autosizing_factor": 0.9, + "heat_pump_cooling_autosizing_limit": 53000, + "heat_pump_heating_autosizing_limit": 44000, + "heat_pump_backup_heating_autosizing_limit": 28000 }, "sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml" @@ -1768,9 +2010,13 @@ "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml", "heat_pump_cooling_capacity": null, "heat_pump_heating_capacity": null, + "heating_system_2_heating_capacity": null, "heat_pump_cooling_autosizing_factor": 1.7, "heat_pump_heating_autosizing_factor": 1.4, - "heating_system_2_heating_autosizing_factor": 0.9 + "heating_system_2_heating_autosizing_factor": 0.9, + "heat_pump_cooling_autosizing_limit": 53000, + "heat_pump_heating_autosizing_limit": 44000, + "heating_system_2_heating_autosizing_limit": 29000 }, "sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml", @@ -1904,7 +2150,8 @@ "sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml": { "parent_hpxml": "sample_files/base-hvac-central-ac-only-1-speed.xml", "cooling_system_cooling_capacity": null, - "cooling_system_cooling_autosizing_factor": 1.7 + "cooling_system_cooling_autosizing_factor": 1.7, + "cooling_system_cooling_autosizing_limit": 37000 }, "sample_files/base-hvac-central-ac-only-1-speed-seer2.xml": { "parent_hpxml": "sample_files/base-hvac-central-ac-only-1-speed.xml", @@ -2131,7 +2378,8 @@ "sample_files/base-hvac-furnace-gas-only-autosize-factor.xml": { "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml", "heating_system_heating_capacity": null, - "heating_system_heating_autosizing_factor": 1.4 + "heating_system_heating_autosizing_factor": 1.4, + "heating_system_heating_autosizing_limit": 45000 }, "sample_files/base-hvac-furnace-gas-only-pilot.xml": { "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml", @@ -2217,59 +2465,70 @@ "sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml", "heat_pump_airflow_defect_ratio": -0.25, - "heat_pump_charge_defect_ratio": -0.25 + "heat_pump_charge_defect_ratio": -0.25, + "hvac_blower_fan_watts_per_cfm": 0.365 }, "sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml", "heat_pump_airflow_defect_ratio": -0.25, - "heat_pump_charge_defect_ratio": -0.25 + "heat_pump_charge_defect_ratio": -0.25, + "hvac_blower_fan_watts_per_cfm": 0.365 }, "sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml", "heat_pump_airflow_defect_ratio": -0.25, - "heat_pump_charge_defect_ratio": -0.25 + "heat_pump_charge_defect_ratio": -0.25, + "hvac_blower_fan_watts_per_cfm": 0.365 }, "sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml": { "parent_hpxml": "sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml", "heat_pump_airflow_defect_ratio": -0.25, - "heat_pump_charge_defect_ratio": -0.25 + "heat_pump_charge_defect_ratio": -0.25, + "hvac_blower_fan_watts_per_cfm": 0.365 }, "sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml": { "parent_hpxml": "sample_files/base.xml", "heating_system_airflow_defect_ratio": -0.25, "cooling_system_airflow_defect_ratio": -0.25, - "cooling_system_charge_defect_ratio": -0.25 + "cooling_system_charge_defect_ratio": -0.25, + "hvac_blower_fan_watts_per_cfm": 0.365 }, "sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml": { "parent_hpxml": "sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml", "heating_system_airflow_defect_ratio": -0.25, "cooling_system_airflow_defect_ratio": -0.25, - "cooling_system_charge_defect_ratio": -0.25 + "cooling_system_charge_defect_ratio": -0.25, + "hvac_blower_fan_watts_per_cfm": 0.365 }, "sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml": { "parent_hpxml": "sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml", "heating_system_airflow_defect_ratio": -0.25, "cooling_system_airflow_defect_ratio": -0.25, - "cooling_system_charge_defect_ratio": -0.25 + "cooling_system_charge_defect_ratio": -0.25, + "hvac_blower_fan_watts_per_cfm": 0.365 }, "sample_files/base-hvac-install-quality-furnace-gas-only.xml": { "parent_hpxml": "sample_files/base-hvac-furnace-gas-only.xml", - "heating_system_airflow_defect_ratio": -0.25 + "heating_system_airflow_defect_ratio": -0.25, + "hvac_blower_fan_watts_per_cfm": 0.365 }, "sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml": { "parent_hpxml": "sample_files/base-hvac-ground-to-air-heat-pump.xml", "heat_pump_airflow_defect_ratio": -0.25, - "heat_pump_charge_defect_ratio": -0.25 + "heat_pump_charge_defect_ratio": -0.25, + "hvac_blower_fan_watts_per_cfm": 0.365 }, "sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml", "cooling_system_airflow_defect_ratio": -0.25, - "cooling_system_charge_defect_ratio": -0.25 + "cooling_system_charge_defect_ratio": -0.25, + "hvac_blower_fan_watts_per_cfm": 0.365 }, "sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ducted.xml", "heat_pump_airflow_defect_ratio": -0.25, - "heat_pump_charge_defect_ratio": -0.25 + "heat_pump_charge_defect_ratio": -0.25, + "hvac_blower_fan_watts_per_cfm": 0.365 }, "sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml": { "parent_hpxml": "sample_files/base.xml", @@ -2392,6 +2651,15 @@ "heat_pump_backup_heating_efficiency": 0, "heat_pump_is_ducted": false }, + "sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml": { + "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless.xml", + "heat_pump_cooling_capacity": null, + "heat_pump_heating_capacity": null, + "heat_pump_cooling_autosizing_factor": 1.7, + "heat_pump_heating_autosizing_factor": 1.4, + "heat_pump_cooling_autosizing_limit": 41000, + "heat_pump_heating_autosizing_limit": 33000 + }, "sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml": { "parent_hpxml": "sample_files/base-hvac-mini-split-heat-pump-ductless.xml", "heat_pump_cooling_compressor_type": "variable speed", diff --git a/hpxml-measures/workflow/sample_files/base-appliances-coal.xml b/hpxml-measures/workflow/sample_files/base-appliances-coal.xml index 1a1db0c16..f6ed71610 100644 --- a/hpxml-measures/workflow/sample_files/base-appliances-coal.xml +++ b/hpxml-measures/workflow/sample_files/base-appliances-coal.xml @@ -460,7 +460,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml b/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml index e830b9123..34fc9d332 100644 --- a/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +++ b/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml @@ -416,7 +416,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml b/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml index fcadd5267..520b3f004 100644 --- a/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +++ b/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml @@ -416,7 +416,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml b/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml index 446754472..1141d472a 100644 --- a/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +++ b/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier-multiple.xml @@ -416,7 +416,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml b/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml index 04b735d5c..1dfe026b2 100644 --- a/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml +++ b/hpxml-measures/workflow/sample_files/base-appliances-dehumidifier.xml @@ -416,7 +416,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml b/hpxml-measures/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml index 9deaf74d2..339cb533b 100644 --- a/hpxml-measures/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml +++ b/hpxml-measures/workflow/sample_files/base-appliances-freezer-temperature-dependent-schedule.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-appliances-gas.xml b/hpxml-measures/workflow/sample_files/base-appliances-gas.xml index 4e82368ad..5234c47f8 100644 --- a/hpxml-measures/workflow/sample_files/base-appliances-gas.xml +++ b/hpxml-measures/workflow/sample_files/base-appliances-gas.xml @@ -460,7 +460,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-appliances-modified.xml b/hpxml-measures/workflow/sample_files/base-appliances-modified.xml index e8fb375bd..69441baa1 100644 --- a/hpxml-measures/workflow/sample_files/base-appliances-modified.xml +++ b/hpxml-measures/workflow/sample_files/base-appliances-modified.xml @@ -461,7 +461,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-appliances-oil.xml b/hpxml-measures/workflow/sample_files/base-appliances-oil.xml index d6a7c24fb..8115dc874 100644 --- a/hpxml-measures/workflow/sample_files/base-appliances-oil.xml +++ b/hpxml-measures/workflow/sample_files/base-appliances-oil.xml @@ -460,7 +460,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-appliances-propane.xml b/hpxml-measures/workflow/sample_files/base-appliances-propane.xml index ce6a0133a..1277d4908 100644 --- a/hpxml-measures/workflow/sample_files/base-appliances-propane.xml +++ b/hpxml-measures/workflow/sample_files/base-appliances-propane.xml @@ -460,7 +460,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml b/hpxml-measures/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml index 342bd740a..d3eff0e9a 100644 --- a/hpxml-measures/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml +++ b/hpxml-measures/workflow/sample_files/base-appliances-refrigerator-temperature-dependent-schedule.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true -0.487, -0.340, -0.370, -0.361, -0.515, -0.684, -0.471, -0.159, -0.079, -0.417, -0.411, -0.386, -0.240, -0.314, -0.160, -0.121, -0.469, -0.412, -0.091, 0.077, -0.118, -0.247, -0.445, -0.544 0.019, 0.016, 0.017, 0.016, 0.018, 0.021, 0.019, 0.015, 0.015, 0.019, 0.018, 0.018, 0.016, 0.017, 0.015, 0.015, 0.020, 0.020, 0.017, 0.014, 0.016, 0.017, 0.019, 0.020 diff --git a/hpxml-measures/workflow/sample_files/base-appliances-wood.xml b/hpxml-measures/workflow/sample_files/base-appliances-wood.xml index 41bc0d49d..4cd6c90d0 100644 --- a/hpxml-measures/workflow/sample_files/base-appliances-wood.xml +++ b/hpxml-measures/workflow/sample_files/base-appliances-wood.xml @@ -460,7 +460,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml b/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml index 00cbb06bc..898d621e7 100644 --- a/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml +++ b/hpxml-measures/workflow/sample_files/base-atticroof-cathedral.xml @@ -424,7 +424,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml b/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml index a9451ba74..82c43dd9c 100644 --- a/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml +++ b/hpxml-measures/workflow/sample_files/base-atticroof-conditioned.xml @@ -541,7 +541,6 @@ basement - conditioned 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml b/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml index 60541cdc2..369111233 100644 --- a/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml +++ b/hpxml-measures/workflow/sample_files/base-atticroof-flat.xml @@ -424,7 +424,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml b/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml index d9ab22182..e5833d19e 100644 --- a/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml +++ b/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier-ceiling.xml @@ -418,7 +418,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml b/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml index 4070a5a8d..a8177d212 100644 --- a/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml +++ b/hpxml-measures/workflow/sample_files/base-atticroof-radiant-barrier.xml @@ -420,7 +420,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml b/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml index 6f762035e..15d8bcd67 100644 --- a/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +++ b/hpxml-measures/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml b/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml index fafe24892..19f084788 100644 --- a/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml +++ b/hpxml-measures/workflow/sample_files/base-atticroof-vented.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml b/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml index 7e6d9da5f..74bb1605f 100644 --- a/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml +++ b/hpxml-measures/workflow/sample_files/base-battery-scheduled.xml @@ -481,7 +481,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-battery.xml b/hpxml-measures/workflow/sample_files/base-battery.xml index 57ede7482..ce9bc48b3 100644 --- a/hpxml-measures/workflow/sample_files/base-battery.xml +++ b/hpxml-measures/workflow/sample_files/base-battery.xml @@ -478,7 +478,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml index d2e6a2a74..507b91a7a 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml @@ -377,7 +377,6 @@ other multifamily buffer space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml index 6a3364fe5..4d6eb407f 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml @@ -396,7 +396,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml index 379f99953..bd5e75dca 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml @@ -489,7 +489,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml index 021e45ea7..771bae909 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml @@ -377,7 +377,6 @@ other non-freezing space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml index b3b49e44c..0b61ae323 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml @@ -377,7 +377,6 @@ other heated space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml index c77849f8c..52d864a9b 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml @@ -377,7 +377,6 @@ other housing unit 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-infil-compartmentalization-test.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-infil-compartmentalization-test.xml index 5e85a1139..da823a8bc 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-infil-compartmentalization-test.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-infil-compartmentalization-test.xml @@ -373,7 +373,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-residents-1.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-residents-1.xml index bf11d6a92..a6e32dd55 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-residents-1.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-residents-1.xml @@ -373,7 +373,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml index b0f3ea0c5..c7892766f 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml @@ -347,7 +347,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml index 278b0f1fc..565c94c81 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml @@ -379,7 +379,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml index faa84591c..e6ad08137 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml @@ -349,7 +349,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml index abb4be9a2..67b107acc 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml @@ -401,7 +401,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml index dbd94b2a2..d6a965d53 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml @@ -396,7 +396,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml index 8619f46f3..4eec1e357 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml @@ -328,7 +328,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml index 85109407b..1e08671b3 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml @@ -359,7 +359,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml index 681c3ce55..9ec2538f4 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml @@ -326,7 +326,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml index c278bec0e..46cdb4591 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml @@ -344,7 +344,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml index 21f1e8afc..18c0a737e 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml @@ -329,7 +329,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml index 4e3360eab..da074eaac 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml @@ -377,7 +377,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml index 537c5a8b8..303e2fe66 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml @@ -328,7 +328,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml index bd83c9208..c401164d1 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml @@ -359,7 +359,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml index a8d7e39c4..c166379d2 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml @@ -329,7 +329,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml index 0e5046104..c4b7b38bb 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml @@ -377,7 +377,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml index e4d1973cc..1f92e7e8a 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml @@ -372,7 +372,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-generator.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-generator.xml index 491757147..73d2c6088 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-generator.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-generator.xml @@ -382,7 +382,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml index 40d637aab..619ade9c3 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml @@ -374,7 +374,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml index 5fa2fc053..428810f11 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml @@ -396,7 +396,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml index b1ec5e271..c37a71047 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml @@ -380,7 +380,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-multiple.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-multiple.xml index 0c48f80cd..9328bace5 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-multiple.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-multiple.xml @@ -592,7 +592,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml index ce8d8f4ee..b2ca2ea70 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml @@ -411,7 +411,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent.xml index d1fdf62a8..93d97f34b 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent.xml @@ -395,7 +395,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-pv-battery.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-pv-battery.xml index 48460f394..bca0b03eb 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-pv-battery.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-pv-battery.xml @@ -410,7 +410,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-pv.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-pv.xml index 665159456..98d42006f 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-pv.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-pv.xml @@ -391,7 +391,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml index 9636250fb..665cf89f0 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml @@ -373,7 +373,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml index bf2d965b6..77a88d89b 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml @@ -382,7 +382,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml index 2cec4d721..8849fcc52 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml @@ -385,7 +385,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml index d3cb270a6..866b9af36 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml @@ -382,7 +382,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater.xml index 74a0d731b..25da4ad59 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater.xml @@ -375,7 +375,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit.xml index 55726dab4..999041f15 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-unit.xml @@ -370,7 +370,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-whole-building.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-whole-building.xml index 13aa4bc7c..a5397b8e5 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-mf-whole-building.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-mf-whole-building.xml @@ -436,7 +436,6 @@ conditioned space 650.0 - true @@ -940,7 +939,6 @@ conditioned space 650.0 - true @@ -1332,7 +1330,6 @@ conditioned space 650.0 - true @@ -1724,7 +1721,6 @@ conditioned space 650.0 - true @@ -2173,7 +2169,6 @@ conditioned space 650.0 - true @@ -2622,7 +2617,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml index 85c78c0ef..588cd11a2 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-2stories.xml @@ -521,7 +521,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml index e056b3479..c20994411 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-atticroof-cathedral.xml @@ -469,7 +469,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml index 8275c2031..c8316acf4 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit-infil-compartmentalization-test.xml @@ -521,7 +521,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit.xml b/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit.xml index 8418c4add..7e9375da8 100644 --- a/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit.xml +++ b/hpxml-measures/workflow/sample_files/base-bldgtype-sfa-unit.xml @@ -521,7 +521,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml b/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml index 038031352..a4e43a2da 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless-outside.xml @@ -414,7 +414,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml b/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml index 4c87424d7..0b00b741c 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-combi-tankless.xml @@ -414,7 +414,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml b/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml index de58b4c22..78cee55f1 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-2-speed.xml @@ -448,7 +448,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml b/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml index 6341bed98..2ce2c7b6e 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-gshp.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml b/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml index a9a6bb54b..ebe4de80c 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-hpwh.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml b/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml index f5ce43157..2d79b5c35 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-tankless.xml @@ -446,7 +446,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml b/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml index 3f1e774cb..4a461090d 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-desuperheater-var-speed.xml @@ -448,7 +448,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml b/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml index 9fa0674e5..a76998ca7 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-desuperheater.xml @@ -448,7 +448,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml b/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml index d3911a0e2..09d4a45b4 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-dwhr.xml @@ -467,7 +467,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml b/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml index 41ac7e10d..fd35a4a0b 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-indirect-detailed-setpoints.xml @@ -417,7 +417,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml b/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml index 16a3f2399..5c23629ad 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-indirect-dse.xml @@ -415,7 +415,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml b/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml index df50265c1..8b8de6fdc 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-indirect-outside.xml @@ -415,7 +415,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml b/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml index bbe2a2b38..1373591d3 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-indirect-standbyloss.xml @@ -419,7 +419,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml b/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml index b9085eac4..a5384ac11 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-indirect-with-solar-fraction.xml @@ -423,7 +423,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml b/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml index 13c79a78d..28ff927b8 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-indirect.xml @@ -415,7 +415,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml b/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml index 483d7a1fd..c9ad9a55c 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-jacket-electric.xml @@ -467,7 +467,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml b/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml index 9848ea40f..2658e49ff 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-jacket-gas.xml @@ -468,7 +468,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml b/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml index 6b8ed53bf..1074377e2 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-jacket-hpwh.xml @@ -466,7 +466,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml b/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml index 3c6d9e56c..47541a363 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-jacket-indirect.xml @@ -420,7 +420,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml b/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml index 9f6f7994b..969407d78 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-low-flow-fixtures.xml @@ -464,7 +464,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml b/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml index da2712ebd..9d2440ba0 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-multiple.xml @@ -473,7 +473,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-none.xml b/hpxml-measures/workflow/sample_files/base-dhw-none.xml index 93aa3c12b..3e63f3076 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-none.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-none.xml @@ -399,7 +399,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml b/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml index 410668d7b..84ada0ecf 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand-scheduled.xml @@ -470,7 +470,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml b/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml index 96e849a7d..9e850a9b2 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-recirc-demand.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml b/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml index 5466913e9..b606f99e9 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-recirc-manual.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml b/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml index e4c5e4f66..1de36f1ae 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-recirc-nocontrol.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml b/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml index edb7b321c..b14e43b29 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-recirc-temperature.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml b/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml index 0513b99ec..2a7ff4889 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-recirc-timer.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml b/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml index b001a5723..babc1b6ce 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-evacuated-tube.xml @@ -477,7 +477,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml b/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml index 6012b847e..d670933d2 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-flat-plate.xml @@ -477,7 +477,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml b/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml index dd37e8e43..94d37c641 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-solar-direct-ics.xml @@ -477,7 +477,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml b/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml index 4687fd272..b2432d2a5 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-solar-fraction.xml @@ -470,7 +470,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml b/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml index 76d5e9627..26b549730 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml @@ -477,7 +477,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml b/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml index 1a91f93d4..c562d15b3 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-solar-thermosyphon-flat-plate.xml @@ -477,7 +477,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml index 0d998bf9f..71d407e0e 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-coal.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml index 63a5dbe45..bc6d885bf 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-detailed-setpoints.xml @@ -464,7 +464,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml index de8b0c664..079ad823e 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-elec-uef.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml index 63bff7a17..9d14d3d8b 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-outside.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml index fd84b30e2..da581e24f 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef-fhr.xml @@ -464,7 +464,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml index 3b2264790..05979c0b2 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-gas-uef.xml @@ -464,7 +464,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml index a6a98e6c6..3d9bbe7cd 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-gas.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml index 67d90a724..c430e8ae3 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-detailed-schedules.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml index 269133422..e8451736e 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml index 8e1b22476..4f0667d29 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-outside.xml @@ -461,7 +461,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml index d4fa2d27f..929df7915 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml index 3eafcd3e1..66db65077 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar-fraction.xml @@ -469,7 +469,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml index 2558ccf27..3814f3422 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump-with-solar.xml @@ -476,7 +476,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml index eb834b3e4..41fd9a0e9 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-heat-pump.xml @@ -461,7 +461,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml index b5f2d4373..a5c98aa1d 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml @@ -468,7 +468,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml index 028d57030..8c005568c 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-model-type-stratified.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml index 4c2f40a3d..e1a79857c 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-oil.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml b/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml index f03321a66..8de4d754f 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tank-wood.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml b/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml index f6b183b6a..898f06e59 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tankless-detailed-setpoints.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml b/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml index f93a2b223..fc2ca40e9 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-outside.xml @@ -461,7 +461,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml b/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml index c1f89dc2c..cf93b27cf 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric-uef.xml @@ -460,7 +460,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml b/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml index 205b47702..c4c55fbc2 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tankless-electric.xml @@ -460,7 +460,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml b/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml index e50244f8b..912ea6c70 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-uef.xml @@ -460,7 +460,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml b/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml index 44a50590d..e92d79908 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar-fraction.xml @@ -468,7 +468,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml b/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml index c08621dc5..45588944a 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas-with-solar.xml @@ -475,7 +475,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml b/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml index ebf2b67a4..68ed6dc23 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tankless-gas.xml @@ -460,7 +460,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml b/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml index b13df84ee..21ac87d84 100644 --- a/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml +++ b/hpxml-measures/workflow/sample_files/base-dhw-tankless-propane.xml @@ -460,7 +460,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml b/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml index 8f2c288bb..651fba3ce 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-2stories-garage.xml @@ -569,7 +569,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml b/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml index 4f7950712..e717df432 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-2stories.xml @@ -489,7 +489,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml b/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml index 140b18471..957280d26 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-beds-1.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml b/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml index f337dca55..9f35b0635 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-beds-2.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml b/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml index d46e283a6..a85b44fc8 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-beds-4.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml b/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml index 0567b955c..f226b42e4 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-beds-5.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml b/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml index 0ad8be5a2..bbf57fe1a 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-ceilingtypes.xml @@ -486,7 +486,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml b/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml index 7bd1f29da..55c68d06c 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-floortypes.xml @@ -429,7 +429,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml b/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml index 5383660af..42bde7314 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-garage.xml @@ -543,7 +543,6 @@ garage 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml b/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml index 749da0a62..5c19c4ead 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml b/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml index 90bc43638..ba7bfd13d 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml b/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml index 23da7907f..6512487d8 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-infil-cfm50.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml b/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml index 25c2793d3..41b08bbb6 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-infil-ela.xml @@ -458,7 +458,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml b/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml index 6ff461ec3..8d085527f 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-infil-flue.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml b/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml index 7ba0336bb..33ae95260 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-ach.xml @@ -461,7 +461,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml b/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml index 328efa6de..56fe53929 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-infil-natural-cfm.xml @@ -461,7 +461,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml b/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml index f01ec0147..27db939eb 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-orientations.xml @@ -469,7 +469,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml b/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml index 4d8c41c11..b0d5b1344 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-overhangs.xml @@ -482,7 +482,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml b/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml index b71797edf..4b7a9733b 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-rooftypes.xml @@ -600,7 +600,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml b/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml index d0997d98b..c03575602 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-skylights-physical-properties.xml @@ -499,7 +499,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml b/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml index 6f7d1a08a..8316035f1 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-skylights-shading.xml @@ -500,7 +500,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml b/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml index bad68c83a..f1b91464e 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-skylights-storms.xml @@ -498,7 +498,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml b/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml index f62f55091..af0953320 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-skylights.xml @@ -490,7 +490,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml b/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml index c1fcb00b6..3a91e495e 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-split-level.xml @@ -416,7 +416,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml b/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml index 570912e86..4182b2b4d 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-thermal-mass.xml @@ -475,7 +475,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml b/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml index 5f8dd9db3..6d5f7544c 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-walltypes.xml @@ -775,7 +775,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml b/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml index d7cb536b6..2f1505522 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-windows-natural-ventilation-availability.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml b/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml index 2ae299e92..d88277b51 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-windows-none.xml @@ -404,7 +404,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml b/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml index 965bed690..42fdede72 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-windows-physical-properties.xml @@ -474,7 +474,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml b/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml index fda3af67b..314dde3d3 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading-seasons.xml @@ -470,7 +470,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml b/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml index 313edabbf..6473fd568 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-windows-shading.xml @@ -477,7 +477,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml b/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml index 47de61044..7f11d66b8 100644 --- a/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml +++ b/hpxml-measures/workflow/sample_files/base-enclosure-windows-storms.xml @@ -478,7 +478,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml b/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml index c0e287268..bfdeddeee 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-ambient.xml @@ -403,7 +403,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml b/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml index 1f84fb094..42aab74b4 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-basement-garage.xml @@ -550,7 +550,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml b/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml index c9c07b070..692cf8ae4 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-no-skirt.xml @@ -405,7 +405,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-skirt.xml b/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-skirt.xml index 677bbdd68..0825c165a 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-skirt.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-belly-wing-skirt.xml @@ -405,7 +405,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-complex.xml b/hpxml-measures/workflow/sample_files/base-foundation-complex.xml index 216d0ff00..2b053bd90 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-complex.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-complex.xml @@ -562,7 +562,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml b/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml index 3a3c9aab1..9bf7de8d7 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation-full.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml b/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml index ecfdab5df..34436c309 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml b/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml index b00a9274a..5c65fdacc 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml b/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml index 37c121d68..1f9dea4c5 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-conditioned-crawlspace.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml b/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml index 6819e72b1..851fd7a49 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-multiple.xml @@ -575,7 +575,6 @@ basement - unconditioned 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-slab.xml b/hpxml-measures/workflow/sample_files/base-foundation-slab.xml index 99adcb8ec..903f9e3c9 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-slab.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-slab.xml @@ -417,7 +417,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml b/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml index 9294075fe..04f866fc7 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-above-grade.xml @@ -511,7 +511,6 @@ basement - unconditioned 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml b/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml index 7c88ae5fd..161004924 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml @@ -468,7 +468,6 @@ basement - unconditioned 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml b/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml index edd11be59..5ede3aab2 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml @@ -477,7 +477,6 @@ basement - unconditioned 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml b/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml index 7c5414961..e8848fa6e 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-unconditioned-basement.xml @@ -476,7 +476,6 @@ basement - unconditioned 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml b/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml index a3d67bb81..3bb3e2fbc 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-unvented-crawlspace.xml @@ -478,7 +478,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml b/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml index 1ad843133..fb558e224 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml @@ -467,7 +467,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml b/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml index d0900e835..45b3b60ca 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-vented-crawlspace.xml @@ -481,7 +481,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml b/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml index e8318223f..b60f819a2 100644 --- a/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml +++ b/hpxml-measures/workflow/sample_files/base-foundation-walkout-basement.xml @@ -523,7 +523,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml index 754335e7e..a7ed9a16e 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml @@ -351,6 +351,9 @@ 1.7 1.4 0.9 + 53000.0 + 44000.0 + 28000.0 @@ -467,7 +470,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml index 8e479f045..3644a2688 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml @@ -458,7 +458,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml index 1c5fbf9b8..52e803dfd 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml index b30825e47..a5da33760 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml index b39c872b1..97ecc6530 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml @@ -472,7 +472,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml index 7b8aa4a5c..aa7eabaa0 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml @@ -467,7 +467,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml index a9d6be280..1587283b7 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml @@ -467,7 +467,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml index cf55f5c4f..589b0e614 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml @@ -467,7 +467,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml index 759cc40df..ff367c4a1 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml @@ -470,7 +470,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml index 4bb9e4cb4..52fa00a0a 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml @@ -496,7 +496,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml index 63fe19801..ffa543996 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml @@ -485,7 +485,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml index 0857eb82f..7f2c8ed4b 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml @@ -484,7 +484,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml index 0d128e62f..64298b058 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml @@ -324,10 +324,9 @@ - + natural gas - 60000.0 AFUE 0.8 @@ -335,6 +334,7 @@ 200.0 0.9 + 29000.0 @@ -363,6 +363,8 @@ 1.7 1.4 + 53000.0 + 44000.0 @@ -374,9 +376,39 @@ - - baseboard - + + regular velocity + + supply + + CFM25 + 75.0 + to outside + + + + return + + CFM25 + 25.0 + to outside + + + + + supply + 4.0 + attic - unvented + 150.0 + + + + return + 0.0 + attic - unvented + 50.0 + + @@ -401,14 +433,14 @@ - + supply 4.0 attic - unvented 150.0 - + return 0.0 attic - unvented @@ -487,7 +519,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml index 78441492f..fb7c46b0c 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml @@ -514,7 +514,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml index 0a8fef775..6fa8d857b 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml @@ -553,7 +553,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml index b7b6808da..fe19bd50d 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml @@ -517,7 +517,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml index 3477cf851..317806ca9 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml @@ -555,7 +555,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml index f338803cc..eab541e26 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml @@ -537,7 +537,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml index 6cd1dc3af..4b6d22ffc 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -555,7 +555,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml index e727d3d8b..c5b02424f 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml @@ -470,7 +470,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml index 40f341e43..70f115199 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml @@ -541,7 +541,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml index 8ba7a67df..c82f1ffca 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml @@ -470,7 +470,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml index 2cf7b098e..f7dd0c7ff 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml @@ -467,7 +467,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml b/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml index f3f6f5322..6cdd5c7b9 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-autosize-sizing-controls.xml @@ -479,7 +479,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml b/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml index b49a6ee02..42ed55cfc 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-autosize.xml @@ -460,7 +460,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml index 36ecb038d..4b9b9653a 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-boiler-coal-only.xml @@ -416,7 +416,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml index 20898d899..28fa78936 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-boiler-elec-only.xml @@ -416,7 +416,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml index 51760a70c..c90f9954b 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-central-ac-1-speed.xml @@ -471,7 +471,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml b/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml index 4bd0a44f2..1642eb098 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only-pilot.xml @@ -422,7 +422,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml index 802fb9f4d..11a9aed72 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-boiler-gas-only.xml @@ -417,7 +417,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml index 9fbe63616..84b027514 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-boiler-oil-only.xml @@ -416,7 +416,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml index 0d586e946..6f042a096 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-boiler-propane-only.xml @@ -416,7 +416,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml index a55112c93..17824f612 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-boiler-wood-only.xml @@ -416,7 +416,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml index 8d0e2a0af..b02bd7c19 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-autosize-factor.xml @@ -333,6 +333,7 @@ 0.73 1.7 + 37000.0 @@ -448,7 +449,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml index d09511cee..a3676fc47 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml @@ -446,7 +446,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml index 90e19dd3d..686cdf4bd 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml @@ -446,7 +446,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml index 140ad6d59..b92b426d7 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml @@ -446,7 +446,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml index d5744e285..2bbe83122 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml @@ -483,7 +483,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml index ff131bd85..df37397c0 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-detailed-performance.xml @@ -484,7 +484,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml index 48466a632..842a71dc8 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml @@ -449,7 +449,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml index c132758ff..5e04b079c 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml @@ -446,7 +446,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml index 1c93890c3..8c4fd60e6 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml @@ -481,7 +481,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-dse.xml b/hpxml-measures/workflow/sample_files/base-hvac-dse.xml index 9365d923a..3124b82ca 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-dse.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-dse.xml @@ -432,7 +432,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml b/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml index b5160710a..920f84c41 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml @@ -469,7 +469,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml index e7a73efbe..ab4571e57 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml @@ -468,7 +468,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml index 454e365a1..bbabdb039 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml @@ -468,7 +468,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml index 9a6fefcbb..fd763be4a 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml @@ -468,7 +468,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml b/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml index 555a19bc6..e429c086e 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml @@ -467,7 +467,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml b/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml index 04a0d35b2..b7fc20109 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-fractions.xml @@ -490,7 +490,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml b/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml index 0ecaed9d6..c68b27c6a 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ducts-area-multipliers.xml @@ -468,7 +468,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml b/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml index 7424d7639..605a5b82d 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ducts-buried.xml @@ -464,7 +464,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ducts-defaults.xml b/hpxml-measures/workflow/sample_files/base-hvac-ducts-defaults.xml index ce8680564..904f3d29d 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ducts-defaults.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ducts-defaults.xml @@ -472,7 +472,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml b/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml index 91bb02cd8..4030fca38 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ducts-effective-rvalue.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml b/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml index 945a49aad..edb1fc4cc 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml b/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml index ae632ddd5..a44a0a5db 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ducts-leakage-percent.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ducts-shape-mixed.xml b/hpxml-measures/workflow/sample_files/base-hvac-ducts-shape-mixed.xml index 80b13b2fb..2e85a566b 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ducts-shape-mixed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ducts-shape-mixed.xml @@ -468,7 +468,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml b/hpxml-measures/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml index ecc03f607..e38220f32 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml @@ -464,7 +464,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ducts-shape-round.xml b/hpxml-measures/workflow/sample_files/base-hvac-ducts-shape-round.xml index 86dae3e9b..2ee656af9 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ducts-shape-round.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ducts-shape-round.xml @@ -464,7 +464,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml index 6ae4f066d..f6fd025fe 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-elec-resistance-only.xml @@ -407,7 +407,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml b/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml index a38012775..2afd8acc3 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-furnace-gas.xml @@ -455,7 +455,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml b/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml index 609738213..627d593db 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml @@ -434,7 +434,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml index 90828e1dd..46cf00bc1 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-evap-cooler-only.xml @@ -401,7 +401,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml index feb232bbf..8bba9811c 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-fireplace-wood-only.xml @@ -410,7 +410,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml index 1c19ccf10..e96abf796 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml @@ -415,7 +415,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml index c8d343fc9..f8b9d9463 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-furnace-coal-only.xml @@ -446,7 +446,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml index 97952f17e..db5c96c0e 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-central-ac-1-speed.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml index f6678e190..43acfe7d2 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-furnace-elec-only.xml @@ -446,7 +446,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml index f32af86dc..b7e12f1eb 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-2-speed.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml index 3f915c03c..24b89b54e 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml index da15d4e47..b6b1e767b 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-central-ac-var-speed.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml index 6e7713c0a..8c1b01683 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-autosize-factor.xml @@ -333,6 +333,7 @@ 1.0 1.4 + 45000.0 @@ -448,7 +449,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml index 211d5feb5..48f52c985 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-detailed-setpoints.xml @@ -448,7 +448,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml index e1c3842fe..d95e32fc0 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only-pilot.xml @@ -451,7 +451,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml index 730f4e1ef..c6acf73c3 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-only.xml @@ -446,7 +446,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml index cc4a4a7bb..099491f80 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-furnace-gas-room-ac.xml @@ -460,7 +460,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml index 3a8894af8..15f289eb1 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-furnace-oil-only.xml @@ -446,7 +446,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml index 41db42476..2bc8e9209 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-furnace-propane-only.xml @@ -446,7 +446,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml index 86a0c94de..b23bf6074 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-furnace-wood-only.xml @@ -446,7 +446,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml b/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml index 13b7d5683..6cca2858a 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-furnace-x3-dse.xml @@ -476,7 +476,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml index d77fcb8dd..b32f84eac 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml @@ -454,7 +454,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml b/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml index 436af8eb8..de29fbb15 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml @@ -493,7 +493,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml index eadbef110..3c0ced3ef 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml @@ -461,7 +461,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml b/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml index 4cec7aa87..b086c3ac9 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml index 59711d0f0..92e3c1fe4 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml @@ -470,7 +470,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml index ecd239d68..92ac58d90 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml @@ -470,7 +470,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml index 42dba79e8..bf2e43bc9 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml @@ -560,7 +560,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml index edec19384..3cefacf98 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml @@ -470,7 +470,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml index 89a2eee28..5353f3cde 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml @@ -471,7 +471,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml index 04556bd83..552fa27ae 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml @@ -471,7 +471,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml index 670136298..e86a131cb 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml @@ -471,7 +471,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml index 4f0e462c3..31b466048 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-furnace-gas-only.xml @@ -450,7 +450,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml index 8ce720b2f..13f6ea985 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml @@ -466,7 +466,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml index 2209092b9..973f9532d 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml @@ -450,7 +450,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml index 1c3aa8df0..93786959c 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml @@ -469,7 +469,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml index 3819ab7e6..11b0b0362 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml @@ -445,7 +445,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml index 6b2464f90..fec006615 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml @@ -444,7 +444,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml index bf0ecfe9e..dc65ad029 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml @@ -445,7 +445,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml index 3b10e5872..c8247e07f 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml @@ -406,7 +406,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml index de4a1a414..5a336693f 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml @@ -457,7 +457,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml index 6cba39435..72caad6ee 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml @@ -553,7 +553,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml index efa8cd6e0..4c6aaf3c0 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml @@ -555,7 +555,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml index ec0ccac46..823d50891 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml @@ -467,7 +467,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml index 668e1a568..a58c7b93d 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml @@ -464,7 +464,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml index cd96b115c..ce5328a7f 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml @@ -469,7 +469,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml index 9c3ac762f..23740e724 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml @@ -466,7 +466,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml new file mode 100644 index 000000000..f4fff28c4 --- /dev/null +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml @@ -0,0 +1,511 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + single-family detached + 2.0 + 1.0 + 8.0 + 3 + 2 + 2700.0 + 21600.0 + + + + + 2006 + 5B + + + + USA_CO_Denver.Intl.AP.725650_TMY3 + + USA_CO_Denver.Intl.AP.725650_TMY3.epw + + + + + + + + 50.0 + + ACH + 3.0 + + 21600.0 + + + + + + + + false + + + false + + + + + + + + + + + true + + + + + + + + + + + attic - unvented + 1509.3 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + conditioned space + + + + 1200.0 + wood siding + 0.7 + 0.92 + + gypsum board + + + + 23.0 + + + + + outside + attic - unvented + gable + + + + 225.0 + wood siding + 0.7 + 0.92 + + + 4.0 + + + + + + + ground + basement - conditioned + 8.0 + 1200.0 + 8.0 + 7.0 + + gypsum board + + + + + continuous - exterior + 8.9 + 0.0 + 8.0 + + + continuous - interior + 0.0 + + + + + + + + attic - unvented + conditioned space + ceiling + + + + 1350.0 + + gypsum board + + + + 39.3 + + + + + + + basement - conditioned + 1350.0 + 4.0 + 150.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 108.0 + 0 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 90 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 108.0 + 180 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + 72.0 + 270 + 0.33 + 0.45 + + + 0.7 + 0.85 + + 0.67 + + + + + + + + 40.0 + 180 + 4.4 + + + + + + + + + + + + + mini-split + electricity + 0.73 + 1.0 + 1.0 + + SEER + 19.0 + + + HSPF + 10.0 + + + + 0.6 + 17.0 + + 1.7 + 1.4 + 41000.0 + 33000.0 + + + + + + 68.0 + 78.0 + + + + + + electricity + storage water heater + conditioned space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + conditioned space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + conditioned space + electricity + 3.73 + true + 150.0 + + + + conditioned space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + conditioned space + 650.0 + + + + conditioned space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + interior + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.4 + + + + + + + exterior + 0.1 + + + + + + + exterior + 0.25 + + + + + + + + + TV other + + kWh/year + 620.0 + + + + + other + + kWh/year + 2457.0 + + + 0.855 + 0.045 + + + + +
+
\ No newline at end of file diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml index 23efc268c..d3d7b0f39 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml @@ -434,7 +434,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml index 3123ae226..e13fc8cad 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml @@ -470,7 +470,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml index 21d697de8..40eaf9271 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml @@ -473,7 +473,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml index 824e81b8c..139df10e5 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-backup-stove.xml @@ -437,7 +437,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml index 8d9be637f..347a37c78 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml @@ -507,7 +507,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml index 923db14ba..275daaf95 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml @@ -509,7 +509,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml index 4183f6122..64b82a740 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml @@ -415,7 +415,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml index 8ac2fe37e..001d2f368 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml @@ -420,7 +420,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml b/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml index ab73c71cc..82c9c43ec 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-multiple.xml @@ -843,7 +843,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-none.xml b/hpxml-measures/workflow/sample_files/base-hvac-none.xml index 8da41aed7..fa099ad11 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-none.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-none.xml @@ -337,7 +337,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml b/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml index c2ad0be46..fd280430c 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml @@ -414,7 +414,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml b/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml index b02603fd5..7708e8832 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml @@ -414,7 +414,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml b/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml index c85475b20..69eccb1c5 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-ptac.xml @@ -406,7 +406,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml b/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml index 6cfeb4244..fb8521bce 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-pthp-heating-capacity-17f.xml @@ -422,7 +422,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml b/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml index 942403c00..8e3d8e1e2 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-pthp.xml @@ -427,7 +427,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml b/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml index 48b7e6e24..e19e9d769 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-33percent.xml @@ -406,7 +406,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml b/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml index 9a6d9f8b2..324d73498 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-ceer.xml @@ -406,7 +406,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml b/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml index 2371d1f31..c94b869b3 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only-detailed-setpoints.xml @@ -408,7 +408,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml index bbef4edbd..5c5ff96d9 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-room-ac-only.xml @@ -406,7 +406,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml b/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml index 0ed6fb16c..5109ed10d 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-heating.xml @@ -414,7 +414,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml b/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml index 6f5b930b7..3b38d2f2e 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml @@ -427,7 +427,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml b/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml index 71b1ea75c..228ab30d0 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-seasons.xml @@ -474,7 +474,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml b/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml index a2f60b8db..a67fb44e1 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-schedules.xml @@ -466,7 +466,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml b/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml index 51f5a191f..e05c8e62d 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-setpoints-daily-setbacks.xml @@ -470,7 +470,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml b/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml index 406098ecf..fd9dc1504 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-setpoints.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-space-heater-gas-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-space-heater-gas-only.xml index c28c18bf3..99738be55 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-space-heater-gas-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-space-heater-gas-only.xml @@ -410,7 +410,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml index 7fa1d2518..fc574f0c3 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-stove-oil-only.xml @@ -410,7 +410,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml index 5066d74fe..a09abec8c 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml @@ -410,7 +410,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml b/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml index ba8e41d21..057e281ee 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-undersized.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml b/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml index bb3222652..cbc502876 100644 --- a/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +++ b/hpxml-measures/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml @@ -410,7 +410,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml b/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml index 27bbb54f1..e5543eac1 100644 --- a/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml +++ b/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml b/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml index cb9d595b0..9be8dc3c8 100644 --- a/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml +++ b/hpxml-measures/workflow/sample_files/base-lighting-ceiling-fans.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml b/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml index 4ab3c81f3..d4f7bd784 100644 --- a/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml +++ b/hpxml-measures/workflow/sample_files/base-lighting-holiday.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml b/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml index 3c8f9dacc..4a15c5147 100644 --- a/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml +++ b/hpxml-measures/workflow/sample_files/base-lighting-kwh-per-year.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml b/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml index 5e83c628e..2188cacb2 100644 --- a/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml +++ b/hpxml-measures/workflow/sample_files/base-lighting-mixed.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml b/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml index 96dd4a7da..a831bfef7 100644 --- a/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml +++ b/hpxml-measures/workflow/sample_files/base-lighting-none-ceiling-fans.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-lighting-none.xml b/hpxml-measures/workflow/sample_files/base-lighting-none.xml index 0ee63f6cb..16dc346f0 100644 --- a/hpxml-measures/workflow/sample_files/base-lighting-none.xml +++ b/hpxml-measures/workflow/sample_files/base-lighting-none.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml b/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml index f13b2d873..63013466e 100644 --- a/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml +++ b/hpxml-measures/workflow/sample_files/base-location-AMY-2012.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml b/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml index 54bc18e88..559a9ed43 100644 --- a/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml +++ b/hpxml-measures/workflow/sample_files/base-location-baltimore-md.xml @@ -478,7 +478,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml b/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml index 3c8fcffe6..25b1cb9f5 100644 --- a/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml +++ b/hpxml-measures/workflow/sample_files/base-location-capetown-zaf.xml @@ -471,7 +471,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml b/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml index 2ee7c7079..f89e165d5 100644 --- a/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml +++ b/hpxml-measures/workflow/sample_files/base-location-dallas-tx.xml @@ -416,7 +416,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-location-detailed.xml b/hpxml-measures/workflow/sample_files/base-location-detailed.xml index d2be95a01..7e5259b83 100644 --- a/hpxml-measures/workflow/sample_files/base-location-detailed.xml +++ b/hpxml-measures/workflow/sample_files/base-location-detailed.xml @@ -472,7 +472,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml b/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml index f1c53f00c..0fe6f4bd6 100644 --- a/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml +++ b/hpxml-measures/workflow/sample_files/base-location-duluth-mn.xml @@ -475,7 +475,6 @@ basement - unconditioned 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml b/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml index 2a985a165..b45d89186 100644 --- a/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml +++ b/hpxml-measures/workflow/sample_files/base-location-helena-mt.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml b/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml index 44d2c4d11..856819978 100644 --- a/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml +++ b/hpxml-measures/workflow/sample_files/base-location-honolulu-hi.xml @@ -416,7 +416,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml b/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml index a193ea60b..c6331b898 100644 --- a/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml +++ b/hpxml-measures/workflow/sample_files/base-location-miami-fl.xml @@ -416,7 +416,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml b/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml index 589fa96d8..bf3bcbf98 100644 --- a/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml +++ b/hpxml-measures/workflow/sample_files/base-location-phoenix-az.xml @@ -416,7 +416,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-location-portland-or.xml b/hpxml-measures/workflow/sample_files/base-location-portland-or.xml index a781074cc..8b286227d 100644 --- a/hpxml-measures/workflow/sample_files/base-location-portland-or.xml +++ b/hpxml-measures/workflow/sample_files/base-location-portland-or.xml @@ -481,7 +481,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml b/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml index 851205188..aa9707d64 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-balanced.xml @@ -474,7 +474,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml b/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml index b756e3c6a..1df9d3048 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-bath-kitchen-fans.xml @@ -490,7 +490,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml b/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml index a192f4ac1..b407e2d50 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml @@ -481,7 +481,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml b/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml index c6257b406..d2b3d7fd5 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-cfis-dse.xml @@ -448,7 +448,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml b/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml index 1d3850d19..a580ca3e3 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml @@ -450,7 +450,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml b/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml index cdf83fbb2..86aee35f8 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml @@ -486,7 +486,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml b/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml index 21b03c908..66f32265d 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml @@ -486,7 +486,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml b/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml index b16a40bf9..29b9aa76d 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-cfis.xml @@ -478,7 +478,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml b/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml index 432a9daf3..fecda46cf 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-erv-atre-asre.xml @@ -476,7 +476,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml b/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml index 71318c876..3d8ec851b 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-erv.xml @@ -476,7 +476,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml b/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml index ef8691195..d84bc17e0 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-exhaust-rated-flow-rate.xml @@ -474,7 +474,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml b/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml index ef8691195..d84bc17e0 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-exhaust.xml @@ -474,7 +474,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml b/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml index 987bf2777..ec92b92cc 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-hrv-asre.xml @@ -475,7 +475,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml b/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml index bc41c3b58..48317f9c2 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-hrv.xml @@ -475,7 +475,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml b/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml index db279eeda..0065c3ffc 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-multiple.xml @@ -719,7 +719,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml b/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml index a1c56e2ae..995fdc500 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-supply.xml @@ -474,7 +474,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml b/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml index 7c5592871..c8d41da1e 100644 --- a/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml +++ b/hpxml-measures/workflow/sample_files/base-mechvent-whole-house-fan.xml @@ -472,7 +472,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml b/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml index b7720acf7..065e63677 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-additional-properties.xml @@ -474,7 +474,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml b/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml index 09d7a0f01..62c2d4ba9 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-bills-pv-detailed-only.xml @@ -515,7 +515,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml b/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml index d6a6b911b..413c15c9e 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-bills-pv-mixed.xml @@ -497,7 +497,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml b/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml index 00569ec13..fa2cd58ba 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-bills-pv.xml @@ -560,7 +560,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-bills.xml b/hpxml-measures/workflow/sample_files/base-misc-bills.xml index 09fc37f68..d0b3aeb5a 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-bills.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-bills.xml @@ -472,7 +472,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-emissions.xml b/hpxml-measures/workflow/sample_files/base-misc-emissions.xml index 5d1dcc453..34e8dabc5 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-emissions.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-emissions.xml @@ -560,7 +560,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml b/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml index 6be54c039..f795cf066 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-generators-battery-scheduled.xml @@ -497,7 +497,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml b/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml index 057deef52..a0c7fc18d 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-generators-battery.xml @@ -494,7 +494,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-generators.xml b/hpxml-measures/workflow/sample_files/base-misc-generators.xml index c40c94f3b..58c5d00aa 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-generators.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-generators.xml @@ -478,7 +478,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml b/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml index de210aba3..4d4bac8f9 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-ground-conductivity.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml b/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml index dcc401dd1..5ec885cab 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-loads-none.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml b/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml index 2bae6749e..943e94b70 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading-bldgtype-multifamily.xml @@ -420,7 +420,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml b/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml index 47d7c9360..1fa4385c2 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-neighbor-shading.xml @@ -475,7 +475,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml b/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml index cb3dffbbf..d2930b0d5 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-shielding-of-home.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-unit-multiplier.xml b/hpxml-measures/workflow/sample_files/base-misc-unit-multiplier.xml index 7874c288a..391cc7f4e 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-unit-multiplier.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-unit-multiplier.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml b/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml index 340cf4fdf..227fbe0d0 100644 --- a/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml +++ b/hpxml-measures/workflow/sample_files/base-misc-usage-multiplier.xml @@ -479,7 +479,6 @@ conditioned space 650.0 - true 0.9 diff --git a/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml b/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml index a7f664fd4..e87ced837 100644 --- a/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml +++ b/hpxml-measures/workflow/sample_files/base-pv-battery-ah.xml @@ -506,7 +506,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml b/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml index 4707f617d..5cb3e6662 100644 --- a/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml +++ b/hpxml-measures/workflow/sample_files/base-pv-battery-garage.xml @@ -580,7 +580,6 @@ garage 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml b/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml index 2ba16abf8..55a8b1a16 100644 --- a/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml +++ b/hpxml-measures/workflow/sample_files/base-pv-battery-round-trip-efficiency.xml @@ -507,7 +507,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml b/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml index ebc02fe04..e9c09a409 100644 --- a/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml +++ b/hpxml-measures/workflow/sample_files/base-pv-battery-scheduled.xml @@ -509,7 +509,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-pv-battery.xml b/hpxml-measures/workflow/sample_files/base-pv-battery.xml index 9506d6576..681e6bc9a 100644 --- a/hpxml-measures/workflow/sample_files/base-pv-battery.xml +++ b/hpxml-measures/workflow/sample_files/base-pv-battery.xml @@ -506,7 +506,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml b/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml index cfbd0e160..f6928a42e 100644 --- a/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml +++ b/hpxml-measures/workflow/sample_files/base-pv-generators-battery-scheduled.xml @@ -525,7 +525,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml b/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml index 657ff5f6a..619834e7a 100644 --- a/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml +++ b/hpxml-measures/workflow/sample_files/base-pv-generators-battery.xml @@ -522,7 +522,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-pv-generators.xml b/hpxml-measures/workflow/sample_files/base-pv-generators.xml index 56eeed538..13f44d076 100644 --- a/hpxml-measures/workflow/sample_files/base-pv-generators.xml +++ b/hpxml-measures/workflow/sample_files/base-pv-generators.xml @@ -506,7 +506,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-pv.xml b/hpxml-measures/workflow/sample_files/base-pv.xml index 0bfa53b43..9fc450370 100644 --- a/hpxml-measures/workflow/sample_files/base-pv.xml +++ b/hpxml-measures/workflow/sample_files/base-pv.xml @@ -490,7 +490,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml b/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml index 75f026a6d..0c03c6452 100644 --- a/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml +++ b/hpxml-measures/workflow/sample_files/base-residents-0-runperiod-1-month.xml @@ -469,7 +469,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-residents-0.xml b/hpxml-measures/workflow/sample_files/base-residents-0.xml index 5559ee2de..9b3100941 100644 --- a/hpxml-measures/workflow/sample_files/base-residents-0.xml +++ b/hpxml-measures/workflow/sample_files/base-residents-0.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-residents-1.xml b/hpxml-measures/workflow/sample_files/base-residents-1.xml index 33155d517..92e1087a9 100644 --- a/hpxml-measures/workflow/sample_files/base-residents-1.xml +++ b/hpxml-measures/workflow/sample_files/base-residents-1.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-residents-5.xml b/hpxml-measures/workflow/sample_files/base-residents-5.xml index 16c70d4d3..748aea7f7 100644 --- a/hpxml-measures/workflow/sample_files/base-residents-5.xml +++ b/hpxml-measures/workflow/sample_files/base-residents-5.xml @@ -437,7 +437,6 @@ - true diff --git a/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml b/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml index ad64e5b68..f460477d8 100644 --- a/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml +++ b/hpxml-measures/workflow/sample_files/base-schedules-detailed-all-10-mins.xml @@ -464,7 +464,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml b/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml index 18b704a50..09131f1e5 100644 --- a/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml +++ b/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps-power-outage.xml @@ -475,7 +475,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml b/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml index 0b684bfc7..bea19dd86 100644 --- a/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml +++ b/hpxml-measures/workflow/sample_files/base-schedules-detailed-mixed-timesteps.xml @@ -464,7 +464,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml b/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml index ffc1e366f..6fed15c36 100644 --- a/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml +++ b/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-10-mins.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml b/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml index 31e53d88f..0aeaab4e2 100644 --- a/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml +++ b/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-power-outage.xml @@ -476,7 +476,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml b/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml index 714891142..4da53dc63 100644 --- a/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml +++ b/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic-vacancy.xml @@ -475,7 +475,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml b/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml index b70a07a57..e4ce714ee 100644 --- a/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml +++ b/hpxml-measures/workflow/sample_files/base-schedules-detailed-occupancy-stochastic.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml b/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml index 69952698b..7962559b8 100644 --- a/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml +++ b/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-schedules.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml b/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml index abc283700..ae329a609 100644 --- a/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml +++ b/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints-daily-setbacks.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml b/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml index fdd052719..0631c6cba 100644 --- a/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml +++ b/hpxml-measures/workflow/sample_files/base-schedules-detailed-setpoints.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml b/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml index 9354f6375..f4b2bb851 100644 --- a/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml +++ b/hpxml-measures/workflow/sample_files/base-schedules-simple-power-outage.xml @@ -511,7 +511,6 @@ conditioned space 650.0 - true 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 diff --git a/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml b/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml index fdf79411e..662f38664 100644 --- a/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml +++ b/hpxml-measures/workflow/sample_files/base-schedules-simple-vacancy.xml @@ -510,7 +510,6 @@ conditioned space 650.0 - true 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 diff --git a/hpxml-measures/workflow/sample_files/base-schedules-simple.xml b/hpxml-measures/workflow/sample_files/base-schedules-simple.xml index e3c6947bd..2a5e06134 100644 --- a/hpxml-measures/workflow/sample_files/base-schedules-simple.xml +++ b/hpxml-measures/workflow/sample_files/base-schedules-simple.xml @@ -500,7 +500,6 @@ conditioned space 650.0 - true 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 0.040, 0.039, 0.038, 0.037, 0.036, 0.036, 0.038, 0.040, 0.041, 0.041, 0.040, 0.040, 0.042, 0.042, 0.042, 0.041, 0.044, 0.048, 0.050, 0.048, 0.047, 0.046, 0.044, 0.041 diff --git a/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml b/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml index 88a7c3253..34e04daa0 100644 --- a/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml +++ b/hpxml-measures/workflow/sample_files/base-simcontrol-calendar-year-custom.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml b/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml index 87fb37d40..150eae9d6 100644 --- a/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml +++ b/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-custom.xml @@ -471,7 +471,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml b/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml index 91b2c7832..de213e4e3 100644 --- a/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml +++ b/hpxml-measures/workflow/sample_files/base-simcontrol-daylight-saving-disabled.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml b/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml index 5cc4ff0c4..cf5759190 100644 --- a/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml +++ b/hpxml-measures/workflow/sample_files/base-simcontrol-runperiod-1-month.xml @@ -517,7 +517,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml b/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml index fc8d69d2d..6cbc3a68b 100644 --- a/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml +++ b/hpxml-measures/workflow/sample_files/base-simcontrol-temperature-capacitance-multiplier.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml b/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml index 18be44c98..284f11a71 100644 --- a/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml +++ b/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml b/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml index bf382931c..c3fe2097c 100644 --- a/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml +++ b/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml @@ -465,7 +465,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml b/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml index 4e95a96ad..d31446891 100644 --- a/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml +++ b/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-10-mins.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml b/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml index 8dac6719d..220ea2517 100644 --- a/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml +++ b/hpxml-measures/workflow/sample_files/base-simcontrol-timestep-30-mins.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/hpxml-measures/workflow/sample_files/base.xml b/hpxml-measures/workflow/sample_files/base.xml index 6c56e006f..775b81de0 100644 --- a/hpxml-measures/workflow/sample_files/base.xml +++ b/hpxml-measures/workflow/sample_files/base.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-02.xml b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3a.xml similarity index 54% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-02.xml rename to hpxml-measures/workflow/tests/HERS_DSE/HVAC3a.xml index db20222f8..920413d4b 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-02.xml +++ b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3a.xml @@ -8,20 +8,11 @@ - - 2014 - + true - - -
- MN - 00000 -
-
proposed workscope @@ -30,35 +21,26 @@ stand-alone no units above or below - - electricity - natural gas - + + 0.0 + single-family detached 1.0 1.0 8.0 - 4 + 3 1539.0 + 12312.0 - - - L100AD-HW-02.xml - - - - 2006 - 7 - - Duluth, MN + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - USA_MN_Duluth.Intl.AP.727450_TMY3.epw + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw @@ -66,10 +48,9 @@ - 50.0 - ACH - 3.0 + ACHnatural + 0.67 12312.0 @@ -83,9 +64,14 @@ - SLA - 0.003333 + ACHnatural + 2.4 + + + + + @@ -118,6 +104,64 @@ + + + + outside + basement - unconditioned + 42.7 + 0 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - unconditioned + 20.3 + 90 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - unconditioned + 42.7 + 180 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - unconditioned + 20.3 + 270 + wood siding + 0.6 + 0.9 + + + 5.01 + + + @@ -240,10 +284,108 @@ + + + + ground + basement - unconditioned + 7.25 + 413.2 + 0 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - unconditioned + 7.25 + 195.8 + 90 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - unconditioned + 7.25 + 413.2 + 180 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - unconditioned + 7.25 + 195.8 + 270 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + - outside + basement - unconditioned conditioned space floor @@ -252,7 +394,7 @@ 1539.0 - 14.15 + 13.85 @@ -274,6 +416,33 @@ + + + + basement - unconditioned + 1539.0 + 4.0 + 168.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + @@ -281,8 +450,12 @@ 0 1.039 0.67 + + + 1.0 + 1.0 + 0.0 - residential @@ -291,8 +464,12 @@ 90 1.039 0.67 + + + 1.0 + 1.0 + 0.0 - residential @@ -301,8 +478,12 @@ 180 1.039 0.67 + + + 1.0 + 1.0 + 0.0 - residential @@ -311,8 +492,12 @@ 270 1.039 0.67 + + + 1.0 + 1.0 + 0.0 - residential @@ -336,6 +521,10 @@ + + + + @@ -343,15 +532,14 @@ natural gas - -1.0 + 46600.0 AFUE 0.78 1.0 - 0.58 - -0.25 + 0.5 @@ -359,22 +547,21 @@ central air conditioner electricity - -1.0 + 38400.0 1.0 SEER - 13.0 + 10.0 - -0.25 - -0.25 - 0.58 + 0.5 - manual thermostat + 68.0 + 78.0 @@ -398,182 +585,41 @@ - + supply - 0.0 + 1.5 conditioned space 308.0 - + return - 0.0 + 1.5 conditioned space 77.0 - 1 - 1539.0 - - - - natural gas - storage water heater - conditioned space - false - 40.0 - 1.0 - 0.56 - 0.78 - - - - - - 88.46 - - - - 0.0 - - - - - shower head - false - - - - faucet - false - - - - - - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - - - - false - conditioned space - electricity - 2.62 - timer - - - - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - - - - conditioned space - 709.0 - - - - conditioned space - electricity - false - - - - false - - - - - - interior - 0.1 - - - - - - - interior - 0.0 - - - - - - - interior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-01.xml b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3b.xml similarity index 54% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-01.xml rename to hpxml-measures/workflow/tests/HERS_DSE/HVAC3b.xml index 93b449847..b4a2d102e 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-01.xml +++ b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3b.xml @@ -8,20 +8,11 @@ - - 2014 - + true - - -
- MN - 00000 -
-
proposed workscope @@ -30,35 +21,26 @@ stand-alone no units above or below - - electricity - natural gas - + + 0.0 + single-family detached 1.0 1.0 8.0 - 2 + 3 1539.0 + 12312.0 - - - L100AD-HW-01.xml - - - - 2006 - 7 - - Duluth, MN + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 - USA_MN_Duluth.Intl.AP.727450_TMY3.epw + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw @@ -66,10 +48,9 @@ - 50.0 - ACH - 3.0 + ACHnatural + 0.67 12312.0 @@ -83,9 +64,14 @@ - SLA - 0.003333 + ACHnatural + 2.4 + + + + + @@ -118,6 +104,64 @@ + + + + outside + basement - unconditioned + 42.7 + 0 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - unconditioned + 20.3 + 90 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - unconditioned + 42.7 + 180 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - unconditioned + 20.3 + 270 + wood siding + 0.6 + 0.9 + + + 5.01 + + + @@ -240,10 +284,108 @@ + + + + ground + basement - unconditioned + 7.25 + 413.2 + 0 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - unconditioned + 7.25 + 195.8 + 90 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - unconditioned + 7.25 + 413.2 + 180 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - unconditioned + 7.25 + 195.8 + 270 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + - outside + basement - unconditioned conditioned space floor @@ -252,7 +394,7 @@ 1539.0 - 14.15 + 13.85 @@ -274,6 +416,33 @@ + + + + basement - unconditioned + 1539.0 + 4.0 + 168.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + @@ -281,8 +450,12 @@ 0 1.039 0.67 + + + 1.0 + 1.0 + 0.0 - residential @@ -291,8 +464,12 @@ 90 1.039 0.67 + + + 1.0 + 1.0 + 0.0 - residential @@ -301,8 +478,12 @@ 180 1.039 0.67 + + + 1.0 + 1.0 + 0.0 - residential @@ -311,8 +492,12 @@ 270 1.039 0.67 + + + 1.0 + 1.0 + 0.0 - residential @@ -336,6 +521,10 @@ + + + + @@ -343,15 +532,14 @@ natural gas - -1.0 + 56000.0 AFUE 0.78 1.0 - 0.58 - -0.25 + 0.5 @@ -359,22 +547,21 @@ central air conditioner electricity - -1.0 + 38400.0 1.0 SEER - 13.0 + 10.0 - -0.25 - -0.25 - 0.58 + 0.5 - manual thermostat + 68.0 + 78.0 @@ -398,182 +585,41 @@ - + supply - 0.0 - conditioned space + 1.5 + basement - unconditioned 308.0 - + return - 0.0 - conditioned space + 1.5 + basement - unconditioned 77.0 - 1 - 1539.0 - - - - natural gas - storage water heater - conditioned space - false - 40.0 - 1.0 - 0.56 - 0.78 - - - - - - 88.46 - - - - 0.0 - - - - - shower head - false - - - - faucet - false - - - - - - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - - - - false - conditioned space - electricity - 2.62 - timer - - - - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - - - - conditioned space - 673.0 - - - - conditioned space - electricity - false - - - - false - - - - - - interior - 0.1 - - - - - - - interior - 0.0 - - - - - - - interior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + +
\ No newline at end of file diff --git a/hpxml-measures/workflow/tests/HERS_DSE/HVAC3c.xml b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3c.xml new file mode 100644 index 000000000..d8b10ebcb --- /dev/null +++ b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3c.xml @@ -0,0 +1,625 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + + + outside + basement - unconditioned + 42.7 + 0 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - unconditioned + 20.3 + 90 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - unconditioned + 42.7 + 180 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - unconditioned + 20.3 + 270 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + ground + basement - unconditioned + 7.25 + 413.2 + 0 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - unconditioned + 7.25 + 195.8 + 90 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - unconditioned + 7.25 + 413.2 + 180 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - unconditioned + 7.25 + 195.8 + 270 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + + + basement - unconditioned + conditioned space + floor + + + + 1539.0 + + + 13.85 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + basement - unconditioned + 1539.0 + 4.0 + 168.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + + + + + + + + + + natural gas + 49000.0 + + AFUE + 0.78 + + 1.0 + + 0.5 + + + + + + central air conditioner + electricity + 38400.0 + 1.0 + + SEER + 10.0 + + + 0.5 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 7.0 + basement - unconditioned + 308.0 + + + + return + 7.0 + basement - unconditioned + 77.0 + + + + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + \ No newline at end of file diff --git a/hpxml-measures/workflow/tests/HERS_DSE/HVAC3d.xml b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3d.xml new file mode 100644 index 000000000..7c672e3fa --- /dev/null +++ b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3d.xml @@ -0,0 +1,625 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + + + outside + basement - unconditioned + 42.7 + 0 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - unconditioned + 20.3 + 90 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - unconditioned + 42.7 + 180 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + outside + basement - unconditioned + 20.3 + 270 + wood siding + 0.6 + 0.9 + + + 5.01 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + ground + basement - unconditioned + 7.25 + 413.2 + 0 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - unconditioned + 7.25 + 195.8 + 90 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - unconditioned + 7.25 + 413.2 + 180 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + ground + basement - unconditioned + 7.25 + 195.8 + 270 + 6.0 + 6.583 + + none + + + + + continuous - exterior + 0.0 + + + continuous - interior + 0.0 + + + + + + + + basement - unconditioned + conditioned space + floor + + + + 1539.0 + + + 13.85 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + basement - unconditioned + 1539.0 + 4.0 + 168.0 + + + + 0.0 + 0.0 + + + + + + 0.0 + 0.0 + + + + 0.0 + 0.0 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + + + + + + + + + + natural gas + 61000.0 + + AFUE + 0.78 + + 1.0 + + 0.5 + + + + + + central air conditioner + electricity + 38400.0 + 1.0 + + SEER + 10.0 + + + 0.5 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 125.0 + to outside + + + + return + + CFM25 + 125.0 + to outside + + + + + supply + 7.0 + basement - unconditioned + 308.0 + + + + return + 7.0 + basement - unconditioned + 77.0 + + + + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + \ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3e.xml similarity index 62% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml rename to hpxml-measures/workflow/tests/HERS_DSE/HVAC3e.xml index 8293a1da9..fe30c8397 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml +++ b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3e.xml @@ -8,20 +8,11 @@ - - 2019 - + true - - -
- FL - 00000 -
-
proposed workscope @@ -30,35 +21,26 @@ stand-alone no units above or below - - electricity - natural gas - + + 0.0 + single-family detached 1.0 1.0 8.0 - 2 + 3 1539.0 + 12312.0 - - - L100AC.xml - - - - 2006 - 1A - - Miami, FL + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 - USA_FL_Miami.Intl.AP.722020_TMY3.epw + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw @@ -66,10 +48,9 @@ - 50.0 - ACH - 3.0 + ACHnatural + 0.67 12312.0 @@ -83,9 +64,14 @@ - SLA - 0.003333 + ACHnatural + 2.4 + + + + + @@ -281,8 +267,12 @@ 0 1.039 0.67 + + + 1.0 + 1.0 + 0.0 - residential @@ -291,8 +281,12 @@ 90 1.039 0.67 + + + 1.0 + 1.0 + 0.0 - residential @@ -301,8 +295,12 @@ 180 1.039 0.67 + + + 1.0 + 1.0 + 0.0 - residential @@ -311,8 +309,12 @@ 270 1.039 0.67 + + + 1.0 + 1.0 + 0.0 - residential @@ -336,6 +338,10 @@ + + + + @@ -343,15 +349,14 @@ natural gas - -1.0 + 46600.0 AFUE 0.78 1.0 - 0.58 - -0.25 + 0.5 @@ -359,22 +364,21 @@ central air conditioner electricity - -1.0 + 38400.0 1.0 SEER - 13.0 + 10.0 - -0.25 - -0.25 - 0.58 + 0.5 - manual thermostat + 68.0 + 78.0 @@ -398,182 +402,41 @@ - + supply - 0.0 + 1.5 conditioned space 308.0 - + return - 0.0 + 1.5 conditioned space 77.0 - 1 - 1539.0 - - - - natural gas - storage water heater - conditioned space - false - 40.0 - 1.0 - 0.56 - 0.78 - - - - - - 88.46 - - - - 0.0 - - - - - shower head - false - - - - faucet - false - - - - - - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - - - - false - conditioned space - electricity - 2.62 - timer - - - - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - - - - conditioned space - 673.0 - - - - conditioned space - electricity - false - - - - false - - - - - - interior - 0.1 - - - - - - - interior - 0.0 - - - - - - - interior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + +
\ No newline at end of file diff --git a/hpxml-measures/workflow/tests/HERS_DSE/HVAC3f.xml b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3f.xml new file mode 100644 index 000000000..7c58b3909 --- /dev/null +++ b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3f.xml @@ -0,0 +1,442 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + + + + + + + + + + natural gas + 46600.0 + + AFUE + 0.78 + + 1.0 + + 0.5 + + + + + + central air conditioner + electricity + 49900.0 + 1.0 + + SEER + 10.0 + + + 0.5 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 1.5 + attic - vented + 308.0 + + + + return + 1.5 + attic - vented + 77.0 + + + + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + \ No newline at end of file diff --git a/hpxml-measures/workflow/tests/HERS_DSE/HVAC3g.xml b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3g.xml new file mode 100644 index 000000000..44b920f14 --- /dev/null +++ b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3g.xml @@ -0,0 +1,442 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + + + + + + + + + + natural gas + 46600.0 + + AFUE + 0.78 + + 1.0 + + 0.5 + + + + + + central air conditioner + electricity + 42200.0 + 1.0 + + SEER + 10.0 + + + 0.5 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 0.0 + to outside + + + + return + + CFM25 + 0.0 + to outside + + + + + supply + 7.0 + attic - vented + 308.0 + + + + return + 7.0 + attic - vented + 77.0 + + + + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + \ No newline at end of file diff --git a/hpxml-measures/workflow/tests/HERS_DSE/HVAC3h.xml b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3h.xml new file mode 100644 index 000000000..d8fbff3b7 --- /dev/null +++ b/hpxml-measures/workflow/tests/HERS_DSE/HVAC3h.xml @@ -0,0 +1,442 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + + + + + + + + + + natural gas + 46600.0 + + AFUE + 0.78 + + 1.0 + + 0.5 + + + + + + central air conditioner + electricity + 55000.0 + 1.0 + + SEER + 10.0 + + + 0.5 + + + + + + 68.0 + 78.0 + + + + + + regular velocity + + supply + + CFM25 + 125.0 + to outside + + + + return + + CFM25 + 125.0 + to outside + + + + + supply + 7.0 + attic - vented + 308.0 + + + + return + 7.0 + attic - vented + 77.0 + + + + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + \ No newline at end of file diff --git a/hpxml-measures/workflow/tests/HERS_HVAC/HVAC1a.xml b/hpxml-measures/workflow/tests/HERS_HVAC/HVAC1a.xml new file mode 100644 index 000000000..5099a5684 --- /dev/null +++ b/hpxml-measures/workflow/tests/HERS_HVAC/HVAC1a.xml @@ -0,0 +1,412 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + + + + + + + + + + natural gas + 56100.0 + + AFUE + 0.78 + + 1.0 + + 0.5 + + + + + + central air conditioner + electricity + 38300.0 + 1.0 + + SEER + 10.0 + + + 0.5 + + + + + + 68.0 + 78.0 + + + + + DSE + + 1.0 + 1.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + \ No newline at end of file diff --git a/hpxml-measures/workflow/tests/HERS_HVAC/HVAC1b.xml b/hpxml-measures/workflow/tests/HERS_HVAC/HVAC1b.xml new file mode 100644 index 000000000..d709802ed --- /dev/null +++ b/hpxml-measures/workflow/tests/HERS_HVAC/HVAC1b.xml @@ -0,0 +1,412 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3 + + USA_NV_Las.Vegas-McCarran.Intl.AP.723860_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + + + + + + + + + + natural gas + 56100.0 + + AFUE + 0.78 + + 1.0 + + 0.5 + + + + + + central air conditioner + electricity + 38300.0 + 1.0 + + SEER + 13.0 + + + 0.5 + + + + + + 68.0 + 78.0 + + + + + DSE + + 1.0 + 1.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + \ No newline at end of file diff --git a/hpxml-measures/workflow/tests/HERS_HVAC/HVAC2a.xml b/hpxml-measures/workflow/tests/HERS_HVAC/HVAC2a.xml new file mode 100644 index 000000000..e5c7b4462 --- /dev/null +++ b/hpxml-measures/workflow/tests/HERS_HVAC/HVAC2a.xml @@ -0,0 +1,412 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + + + + + + + + + + natural gas + 56100.0 + + AFUE + 0.78 + + 1.0 + + 0.5 + + + + + + central air conditioner + electricity + 38300.0 + 1.0 + + SEER + 10.0 + + + 0.5 + + + + + + 68.0 + 78.0 + + + + + DSE + + 1.0 + 1.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + \ No newline at end of file diff --git a/hpxml-measures/workflow/tests/HERS_HVAC/HVAC2b.xml b/hpxml-measures/workflow/tests/HERS_HVAC/HVAC2b.xml new file mode 100644 index 000000000..1911cf636 --- /dev/null +++ b/hpxml-measures/workflow/tests/HERS_HVAC/HVAC2b.xml @@ -0,0 +1,412 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + + + + + + + + + + natural gas + 56100.0 + + AFUE + 0.9 + + 1.0 + + 0.5 + + + + + + central air conditioner + electricity + 38300.0 + 1.0 + + SEER + 10.0 + + + 0.5 + + + + + + 68.0 + 78.0 + + + + + DSE + + 1.0 + 1.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + \ No newline at end of file diff --git a/hpxml-measures/workflow/tests/HERS_HVAC/HVAC2c.xml b/hpxml-measures/workflow/tests/HERS_HVAC/HVAC2c.xml new file mode 100644 index 000000000..bbccca493 --- /dev/null +++ b/hpxml-measures/workflow/tests/HERS_HVAC/HVAC2c.xml @@ -0,0 +1,408 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + + + + + + + air-to-air + electricity + 56100.0 + 56100.0 + integrated + electricity + + Percent + 1.0 + + 34121.0 + 1.0 + 1.0 + + SEER + 10.0 + + + HSPF + 6.8 + + + 0.5 + + + + + + 68.0 + 78.0 + + + + + DSE + + 1.0 + 1.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + \ No newline at end of file diff --git a/hpxml-measures/workflow/tests/HERS_HVAC/HVAC2d.xml b/hpxml-measures/workflow/tests/HERS_HVAC/HVAC2d.xml new file mode 100644 index 000000000..bd2227e66 --- /dev/null +++ b/hpxml-measures/workflow/tests/HERS_HVAC/HVAC2d.xml @@ -0,0 +1,408 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + + + + + + + air-to-air + electricity + 56100.0 + 56100.0 + integrated + electricity + + Percent + 1.0 + + 34121.0 + 1.0 + 1.0 + + SEER + 13.0 + + + HSPF + 9.85 + + + 0.5 + + + + + + 68.0 + 78.0 + + + + + DSE + + 1.0 + 1.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + \ No newline at end of file diff --git a/hpxml-measures/workflow/tests/HERS_HVAC/HVAC2e.xml b/hpxml-measures/workflow/tests/HERS_HVAC/HVAC2e.xml new file mode 100644 index 000000000..f5ee24050 --- /dev/null +++ b/hpxml-measures/workflow/tests/HERS_HVAC/HVAC2e.xml @@ -0,0 +1,412 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + true + + + + + + proposed workscope + + + + + stand-alone + no units above or below + + + 0.0 + + + single-family detached + 1.0 + 1.0 + 8.0 + 3 + 1539.0 + 12312.0 + + + + + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3 + + USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw + + + + + + + + + ACHnatural + 0.67 + + 12312.0 + + + + + + + + true + + + + ACHnatural + 2.4 + + + + + + + + + + + + attic - vented + 811.1 + 0 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + attic - vented + 811.1 + 180 + asphalt or fiberglass shingles + 0.6 + 0.9 + 4.0 + + + 1.99 + + + + + + + outside + conditioned space + + + + 456.0 + 0 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 90 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 456.0 + 180 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + conditioned space + + + + 216.0 + 270 + wood siding + 0.6 + 0.9 + + gypsum board + 0.5 + + + + 11.76 + + + + + outside + attic - vented + gable + + + + 60.8 + 90 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + outside + attic - vented + gable + + + + 60.8 + 270 + wood siding + 0.6 + 0.9 + + + 2.15 + + + + + + + outside + conditioned space + floor + + + + 1539.0 + + + 14.15 + + + + + attic - vented + conditioned space + ceiling + + + + 1539.0 + + gypsum board + 0.5 + + + + 18.45 + + + + + + + 90.0 + 0 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 90 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 90.0 + 180 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + 45.0 + 270 + 1.039 + 0.67 + + + 1.0 + 1.0 + + 0.0 + + + + + + + + 20.0 + 180 + 3.04 + + + + + 20.0 + 0 + 3.04 + + + + + + + + + + + + + + + + + electricity + 56100.0 + + AFUE + 1.0 + + 1.0 + + 0.5 + + + + + + central air conditioner + electricity + 38300.0 + 1.0 + + SEER + 10.0 + + + 0.5 + + + + + + 68.0 + 78.0 + + + + + DSE + + 1.0 + 1.0 + + + + + + + other + + kWh/year + 7302.0 + + + 0.822 + 0.178 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 0.0203, 0.0203, 0.0203, 0.0203, 0.0203, 0.0339, 0.0426, 0.0852, 0.0497, 0.0304, 0.0304, 0.0406, 0.0304, 0.0254, 0.0264, 0.0264, 0.0386, 0.0416, 0.0447, 0.0700, 0.0700, 0.0731, 0.0731, 0.0660 + 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0 + + + + + + \ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-01.xml similarity index 62% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml rename to hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-01.xml index 569ab9bf1..afeabc4ef 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml +++ b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-01.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - 2019 - - - + - - -
- MN - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 2 1539.0 + 12312.0 - - - L100AC.xml - - - - 2006 - 7 - - Duluth, MN + USA_MN_Duluth.Intl.AP.727450_TMY3 USA_MN_Duluth.Intl.AP.727450_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - conditioned space - 673.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-02.xml b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-02.xml similarity index 62% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-02.xml rename to hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-02.xml index b1613faf5..561c75f12 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-02.xml +++ b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-02.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - 2019 - - - + - - -
- MN - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AD-HW-01.xml - - - - 2006 - 7 - - Duluth, MN + USA_MN_Duluth.Intl.AP.727450_TMY3 USA_MN_Duluth.Intl.AP.727450_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-03.xml b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-03.xml similarity index 62% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-03.xml rename to hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-03.xml index 164ffa739..16487b354 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-03.xml +++ b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-03.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - 2014 - - - + - - -
- MN - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 2 1539.0 + 12312.0 - - - L100AD-HW-03.xml - - - - 2006 - 7 - - Duluth, MN + USA_MN_Duluth.Intl.AP.727450_TMY3 USA_MN_Duluth.Intl.AP.727450_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.62 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - conditioned space - 673.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-04.xml b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-04.xml similarity index 62% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-04.xml rename to hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-04.xml index 9b69df95f..07bdb8ed8 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-04.xml +++ b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-04.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - 2019 - - - + - - -
- MN - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AD-HW-02.xml - - - - 2006 - 7 - - Duluth, MN + USA_MN_Duluth.Intl.AP.727450_TMY3 USA_MN_Duluth.Intl.AP.727450_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-05.xml b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-05.xml similarity index 63% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-05.xml rename to hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-05.xml index a90179900..d3ae82914 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-05.xml +++ b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-05.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - 2019 - - - + - - -
- MN - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AD-HW-02.xml - - - - 2006 - 7 - - Duluth, MN + USA_MN_Duluth.Intl.AP.727450_TMY3 USA_MN_Duluth.Intl.AP.727450_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,18 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + no control - 156.92 10.0 50.0 @@ -458,49 +369,23 @@ - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -552,31 +437,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-06.xml b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-06.xml similarity index 63% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-06.xml rename to hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-06.xml index 3010aabbd..edbbe68e3 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-06.xml +++ b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-06.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - 2019 - - - + - - -
- MN - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AD-HW-05.xml - - - - 2006 - 7 - - Duluth, MN + USA_MN_Duluth.Intl.AP.727450_TMY3 USA_MN_Duluth.Intl.AP.727450_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,18 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + manual demand control - 156.92 10.0 50.0 @@ -458,49 +369,23 @@ - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -552,31 +437,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-07.xml b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-07.xml similarity index 62% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-07.xml rename to hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-07.xml index f6b24f6ee..494d3de6c 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-07.xml +++ b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AD-HW-07.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - 2019 - - - + - - -
- MN - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AD-HW-02.xml - - - - 2006 - 7 - - Duluth, MN + USA_MN_Duluth.Intl.AP.727450_TMY3 USA_MN_Duluth.Intl.AP.727450_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - all true @@ -460,49 +367,23 @@ - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -554,31 +435,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-01.xml b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-01.xml similarity index 62% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-01.xml rename to hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-01.xml index 01b0ca327..07f55f1a6 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-01.xml +++ b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-01.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - 2014 - - - + - - -
- FL - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 2 1539.0 + 12312.0 - - - L100AM-HW-01.xml - - - - 2006 - 1A - - Miami, FL + USA_FL_Miami.Intl.AP.722020_TMY3 USA_FL_Miami.Intl.AP.722020_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 12.2 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 12.2 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 12.2 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 12.2 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 15.63 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 28.57 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 1.2 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 1.2 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 1.2 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 1.2 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 0.83 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - conditioned space - 673.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-02.xml b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-02.xml similarity index 62% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-02.xml rename to hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-02.xml index 136f26b32..90a48c5e3 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-02.xml +++ b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-02.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - 2014 - - - + - - -
- FL - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AM-HW-02.xml - - - - 2006 - 1A - - Miami, FL + USA_FL_Miami.Intl.AP.722020_TMY3 USA_FL_Miami.Intl.AP.722020_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-03.xml b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-03.xml similarity index 62% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-03.xml rename to hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-03.xml index 1caae47a8..6b59575d8 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-03.xml +++ b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-03.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - 2014 - - - + - - -
- FL - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 2 1539.0 + 12312.0 - - - L100AM-HW-03.xml - - - - 2006 - 1A - - Miami, FL + USA_FL_Miami.Intl.AP.722020_TMY3 USA_FL_Miami.Intl.AP.722020_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.62 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - conditioned space - 673.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-04.xml b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-04.xml similarity index 62% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-04.xml rename to hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-04.xml index 2a0450107..6ce0b2acc 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-04.xml +++ b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-04.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - 2019 - - - + - - -
- FL - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AM-HW-02.xml - - - - 2006 - 1A - - Miami, FL + USA_FL_Miami.Intl.AP.722020_TMY3 USA_FL_Miami.Intl.AP.722020_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-05.xml b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-05.xml similarity index 63% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-05.xml rename to hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-05.xml index c42f85b5d..b94288e81 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-05.xml +++ b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-05.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - 2019 - - - + - - -
- FL - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AM-HW-02.xml - - - - 2006 - 1A - - Miami, FL + USA_FL_Miami.Intl.AP.722020_TMY3 USA_FL_Miami.Intl.AP.722020_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,18 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + no control - 156.92 10.0 50.0 @@ -458,49 +369,23 @@ - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -552,31 +437,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-06.xml b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-06.xml similarity index 63% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-06.xml rename to hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-06.xml index acb464f4b..e0f973da7 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-06.xml +++ b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-06.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - 2019 - - - + - - -
- FL - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AM-HW-05.xml - - - - 2006 - 1A - - Miami, FL + USA_FL_Miami.Intl.AP.722020_TMY3 USA_FL_Miami.Intl.AP.722020_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,18 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + manual demand control - 156.92 10.0 50.0 @@ -458,49 +369,23 @@ - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -552,31 +437,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-07.xml b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-07.xml similarity index 62% rename from workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-07.xml rename to hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-07.xml index 4f1f142ac..c6fc7a364 100644 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-07.xml +++ b/hpxml-measures/workflow/tests/HERS_Hot_Water/L100AM-HW-07.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - 2019 - - - + - - -
- FL - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AM-HW-02.xml - - - - 2006 - 1A - - Miami, FL + USA_FL_Miami.Intl.AP.722020_TMY3 USA_FL_Miami.Intl.AP.722020_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - all true @@ -460,49 +367,23 @@ - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -554,31 +435,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/hpxml-measures/workflow/tests/base_results/results_hers_dse.csv b/hpxml-measures/workflow/tests/base_results/results_hers_dse.csv new file mode 100644 index 000000000..5d9f2c980 --- /dev/null +++ b/hpxml-measures/workflow/tests/base_results/results_hers_dse.csv @@ -0,0 +1,9 @@ +Test Case,Heat/Cool (kWh or therm),HVAC Fan (kWh) +HVAC3a.xml,560.83,453.09 +HVAC3e.xml,6335.32,980.03 +HVAC3b.xml,677.0,660.0 +HVAC3c.xml,588.34,525.48 +HVAC3d.xml,640.83,624.83 +HVAC3f.xml,7992.34,1236.76 +HVAC3g.xml,6754.41,1042.16 +HVAC3h.xml,7519.91,1137.99 diff --git a/hpxml-measures/workflow/tests/base_results/results_hers_hot_water.csv b/hpxml-measures/workflow/tests/base_results/results_hers_hot_water.csv new file mode 100644 index 000000000..005598ee3 --- /dev/null +++ b/hpxml-measures/workflow/tests/base_results/results_hers_hot_water.csv @@ -0,0 +1,15 @@ +Test Case,DHW Energy (therms),Recirc Pump (kWh) +L100AD-HW-01.xml,194.9,0.0 +L100AD-HW-02.xml,259.5,0.0 +L100AD-HW-03.xml,174.1,0.0 +L100AD-HW-04.xml,251.2,0.0 +L100AD-HW-05.xml,548.5,439.6 +L100AD-HW-06.xml,227.5,5.9 +L100AD-HW-07.xml,206.5,0.0 +L100AM-HW-01.xml,110.3,0.0 +L100AM-HW-02.xml,135.7,0.0 +L100AM-HW-03.xml,90.9,0.0 +L100AM-HW-04.xml,132.5,0.0 +L100AM-HW-05.xml,295.8,439.6 +L100AM-HW-06.xml,122.7,5.9 +L100AM-HW-07.xml,120.4,0.0 diff --git a/hpxml-measures/workflow/tests/base_results/results_hers_hvac.csv b/hpxml-measures/workflow/tests/base_results/results_hers_hvac.csv new file mode 100644 index 000000000..002d588ba --- /dev/null +++ b/hpxml-measures/workflow/tests/base_results/results_hers_hvac.csv @@ -0,0 +1,8 @@ +Test Case,HVAC (kWh or therm),HVAC Fan (kWh) +HVAC1a.xml,6277.29,805.36 +HVAC1b.xml,4660.42,805.36 +HVAC2a.xml,639.46,623.66 +HVAC2b.xml,554.19,623.66 +HVAC2c.xml,7623.36,1192.21 +HVAC2d.xml,4619.68,1192.21 +HVAC2e.xml,14617.8,623.66 diff --git a/hpxml-measures/workflow/tests/base_results/results_simulations1_bills.csv b/hpxml-measures/workflow/tests/base_results/results_simulations1_bills.csv deleted file mode 100644 index ca723f25e..000000000 --- a/hpxml-measures/workflow/tests/base_results/results_simulations1_bills.csv +++ /dev/null @@ -1,221 +0,0 @@ -HPXML,Utility Bills: Bills: Total (USD),Utility Bills: Bills: Electricity: Fixed (USD),Utility Bills: Bills: Electricity: Energy (USD),Utility Bills: Bills: Electricity: PV Credit (USD),Utility Bills: Bills: Electricity: Total (USD),Utility Bills: Bills: Natural Gas: Fixed (USD),Utility Bills: Bills: Natural Gas: Energy (USD),Utility Bills: Bills: Natural Gas: Total (USD),Utility Bills: Bills: Fuel Oil: Fixed (USD),Utility Bills: Bills: Fuel Oil: Energy (USD),Utility Bills: Bills: Fuel Oil: Total (USD),Utility Bills: Bills: Propane: Fixed (USD),Utility Bills: Bills: Propane: Energy (USD),Utility Bills: Bills: Propane: Total (USD),Utility Bills: Bills: Wood Cord: Fixed (USD),Utility Bills: Bills: Wood Cord: Energy (USD),Utility Bills: Bills: Wood Cord: Total (USD),Utility Bills: Bills: Wood Pellets: Fixed (USD),Utility Bills: Bills: Wood Pellets: Energy (USD),Utility Bills: Bills: Wood Pellets: Total (USD),Utility Bills: Bills: Coal: Fixed (USD),Utility Bills: Bills: Coal: Energy (USD),Utility Bills: Bills: Coal: Total (USD) -base-appliances-coal.xml,1815.36,144.0,1214.74,0.0,1358.74,144.0,239.61,383.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.01,73.01 -base-appliances-dehumidifier-ief-portable.xml,1517.32,144.0,1211.03,0.0,1355.03,144.0,18.29,162.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-whole-home.xml,1518.07,144.0,1211.91,0.0,1355.91,144.0,18.16,162.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-multiple.xml,1515.7,144.0,1208.99,0.0,1352.99,144.0,18.71,162.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier.xml,1516.22,144.0,1210.07,0.0,1354.07,144.0,18.15,162.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-freezer-temperature-dependent-schedule.xml,1892.65,144.0,1365.19,0.0,1509.19,144.0,239.46,383.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-gas.xml,1793.91,144.0,1214.74,0.0,1358.74,144.0,291.17,435.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,1873.57,144.0,1349.11,0.0,1493.11,144.0,236.46,380.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,1596.04,144.0,1043.72,0.0,1187.72,144.0,264.32,408.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-oil.xml,1912.58,144.0,1214.74,0.0,1358.74,144.0,239.61,383.61,0.0,170.23,170.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-propane.xml,1874.47,144.0,1214.74,0.0,1358.74,144.0,239.61,383.61,0.0,0.0,0.0,0.0,132.12,132.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-refrigerator-temperature-dependent-schedule.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,1815.36,144.0,1214.74,0.0,1358.74,144.0,239.61,383.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.01,73.01,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,1879.71,144.0,1312.49,0.0,1456.49,144.0,279.22,423.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,2028.81,144.0,1490.28,0.0,1634.28,144.0,250.53,394.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,1786.56,144.0,1283.88,0.0,1427.88,144.0,214.68,358.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier-ceiling.xml,1574.88,144.0,1233.22,0.0,1377.22,144.0,53.66,197.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,1550.28,144.0,1216.21,0.0,1360.21,144.0,46.07,190.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-unvented-insulated-roof.xml,1827.35,144.0,1292.8,0.0,1436.8,144.0,246.55,390.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,1849.09,144.0,1307.84,0.0,1451.84,144.0,253.25,397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,1911.44,144.0,1376.85,0.0,1520.85,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-battery.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,1306.55,144.0,888.7,0.0,1032.7,144.0,129.85,273.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml,969.32,144.0,825.32,0.0,969.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,1285.69,144.0,920.61,0.0,1064.61,144.0,77.08,221.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,1434.51,144.0,883.18,0.0,1027.18,144.0,263.33,407.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,1198.81,144.0,891.66,0.0,1035.66,144.0,19.15,163.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,1219.77,144.0,915.29,0.0,1059.29,144.0,16.48,160.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-infil-compartmentalization-test.xml,1250.69,144.0,954.68,0.0,1098.68,144.0,8.01,152.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-residents-1.xml,983.59,144.0,680.82,0.0,824.82,144.0,14.77,158.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,1270.05,144.0,972.28,0.0,1116.28,144.0,9.77,153.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,1299.87,144.0,1001.42,0.0,1145.42,144.0,10.45,154.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,1280.51,144.0,983.25,0.0,1127.25,144.0,9.26,153.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,1438.62,144.0,1143.01,0.0,1287.01,144.0,7.61,151.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1291.27,144.0,995.66,0.0,1139.66,144.0,7.61,151.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,1133.54,144.0,837.09,0.0,981.09,144.0,8.45,152.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,1135.21,144.0,838.17,0.0,982.17,144.0,9.04,153.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,1134.94,144.0,838.9,0.0,982.9,144.0,8.04,152.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,1139.03,144.0,844.98,0.0,988.98,144.0,6.05,150.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,1135.02,144.0,839.01,0.0,983.01,144.0,8.01,152.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,1133.14,144.0,838.56,0.0,982.56,144.0,6.58,150.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,1112.39,144.0,968.39,0.0,1112.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,1140.09,144.0,996.09,0.0,1140.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,1121.05,144.0,977.05,0.0,1121.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1279.86,144.0,1135.86,0.0,1279.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,1133.93,144.0,989.93,0.0,1133.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-generator.xml,1634.67,144.0,952.69,0.0,1096.69,144.0,9.43,153.43,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1184.05,144.0,1040.05,0.0,1184.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1054.82,144.0,605.36,0.0,749.36,144.0,161.46,305.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-laundry-room.xml,1028.0,144.0,598.7,0.0,742.7,144.0,141.3,285.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1630.56,144.0,1121.2,0.0,1265.2,144.0,221.36,365.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1342.7,144.0,997.03,0.0,1141.03,144.0,57.67,201.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent.xml,1321.4,144.0,991.82,0.0,1135.82,144.0,41.58,185.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-pv-battery.xml,385.04,144.0,984.74,-897.13,231.61,144.0,9.43,153.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-pv.xml,352.88,144.0,952.69,-897.25,199.45,144.0,9.43,153.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,991.98,144.0,674.91,0.0,818.91,144.0,29.07,173.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml,914.58,144.0,564.54,0.0,708.54,144.0,62.04,206.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,1069.68,144.0,639.77,0.0,783.77,144.0,141.91,285.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,1069.68,144.0,639.77,0.0,783.77,144.0,141.91,285.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-water-heater.xml,1029.46,144.0,599.55,0.0,743.55,144.0,141.91,285.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit.xml,1250.12,144.0,952.69,0.0,1096.69,144.0,9.43,153.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-whole-building.xml,8846.94,864.0,7982.94,0.0,8846.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-2stories.xml,1747.62,144.0,1274.28,0.0,1418.28,144.0,185.34,329.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-atticroof-cathedral.xml,2323.84,144.0,1395.45,0.0,1539.45,144.0,640.39,784.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,1527.6,144.0,1093.11,0.0,1237.11,144.0,146.49,290.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit.xml,1527.6,144.0,1093.11,0.0,1237.11,144.0,146.49,290.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless-outside.xml,1398.73,144.0,784.24,0.0,928.24,144.0,326.49,470.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,1411.6,144.0,784.5,0.0,928.5,144.0,339.1,483.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,1303.82,144.0,1159.82,0.0,1303.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,1556.27,144.0,1412.27,0.0,1556.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,1672.32,144.0,1091.05,0.0,1235.05,144.0,293.27,437.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,1365.76,144.0,1221.76,0.0,1365.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,1277.1,144.0,1133.1,0.0,1277.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,1366.95,144.0,1222.95,0.0,1366.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,1765.19,144.0,1230.6,0.0,1374.6,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-detailed-setpoints.xml,1428.27,144.0,784.35,0.0,928.35,144.0,355.92,499.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-outside.xml,1444.5,144.0,784.24,0.0,928.24,144.0,372.26,516.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,1432.21,144.0,784.32,0.0,928.32,144.0,359.89,503.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,1346.98,144.0,784.44,0.0,928.44,144.0,274.54,418.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,1429.67,144.0,784.35,0.0,928.35,144.0,357.32,501.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,1839.03,144.0,1302.16,0.0,1446.16,144.0,248.87,392.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,1678.2,144.0,987.01,0.0,1131.01,144.0,403.19,547.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,1669.37,144.0,1087.76,0.0,1231.76,144.0,293.61,437.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-indirect.xml,1427.52,144.0,784.37,0.0,928.37,144.0,355.15,499.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,1840.46,144.0,1305.87,0.0,1449.87,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-multiple.xml,1404.47,144.0,855.15,0.0,999.15,144.0,261.32,405.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,1437.44,144.0,899.01,0.0,1043.01,144.0,250.43,394.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand-scheduled.xml,1846.76,144.0,1312.17,0.0,1456.17,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,1846.76,144.0,1312.17,0.0,1456.17,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,1831.35,144.0,1296.76,0.0,1440.76,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,2387.33,144.0,1852.74,0.0,1996.74,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,2209.31,144.0,1674.72,0.0,1818.72,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,2387.33,144.0,1852.74,0.0,1996.74,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,1635.27,144.0,1100.68,0.0,1244.68,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,1582.67,144.0,1048.18,0.0,1192.18,144.0,246.49,390.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,1637.97,144.0,1103.38,0.0,1247.38,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,1635.27,144.0,1097.83,0.0,1241.83,144.0,249.44,393.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,1581.67,144.0,1050.96,0.0,1194.96,144.0,242.71,386.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,1572.11,144.0,1037.61,0.0,1181.61,144.0,246.5,390.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,1754.42,144.0,988.65,0.0,1132.65,144.0,248.58,392.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.19,229.19 -base-dhw-tank-detailed-setpoints.xml,1848.12,144.0,1313.6,0.0,1457.6,144.0,246.52,390.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,1850.86,144.0,1316.82,0.0,1460.82,144.0,246.04,390.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,1700.69,144.0,981.49,0.0,1125.49,144.0,431.2,575.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,1682.83,144.0,987.5,0.0,1131.5,144.0,407.33,551.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,1682.83,144.0,987.5,0.0,1131.5,144.0,407.33,551.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,1687.09,144.0,988.65,0.0,1132.65,144.0,410.44,554.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,1646.99,144.0,1057.08,0.0,1201.08,144.0,301.91,445.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1640.74,144.0,1050.3,0.0,1194.3,144.0,302.44,446.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,1767.08,144.0,1228.1,0.0,1372.1,144.0,250.98,394.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,1640.74,144.0,1050.3,0.0,1194.3,144.0,302.44,446.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,1575.84,144.0,1022.43,0.0,1166.43,144.0,265.41,409.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,1585.13,144.0,1043.57,0.0,1187.57,144.0,253.56,397.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,1673.11,144.0,1092.51,0.0,1236.51,144.0,292.6,436.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1828.34,144.0,1296.58,0.0,1440.58,144.0,243.76,387.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,1832.49,144.0,1293.65,0.0,1437.65,144.0,250.84,394.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,2059.63,144.0,988.65,0.0,1132.65,144.0,248.58,392.58,0.0,534.4,534.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,1754.42,144.0,988.65,0.0,1132.65,144.0,248.58,392.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.19,229.19,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,1638.76,144.0,981.49,0.0,1125.49,144.0,369.27,513.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,1860.63,144.0,1321.65,0.0,1465.65,144.0,250.98,394.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,1856.79,144.0,1317.81,0.0,1461.81,144.0,250.98,394.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,1860.63,144.0,1321.65,0.0,1465.65,144.0,250.98,394.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,1622.76,144.0,981.49,0.0,1125.49,144.0,353.27,497.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,1561.96,144.0,981.49,0.0,1125.49,144.0,292.47,436.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,1548.3,144.0,996.79,0.0,1140.79,144.0,263.51,407.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,1639.01,144.0,981.49,0.0,1125.49,144.0,369.52,513.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,1824.22,144.0,981.49,0.0,1125.49,144.0,250.98,394.98,0.0,0.0,0.0,0.0,303.75,303.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,2074.8,144.0,1513.74,0.0,1657.74,144.0,273.06,417.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,2250.13,144.0,1638.09,0.0,1782.09,144.0,324.04,468.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,1672.72,144.0,1122.21,0.0,1266.21,144.0,262.51,406.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,1761.97,144.0,1219.45,0.0,1363.45,144.0,254.52,398.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,1933.96,144.0,1407.21,0.0,1551.21,144.0,238.75,382.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-5.xml,2018.67,144.0,1499.72,0.0,1643.72,144.0,230.95,374.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-ceilingtypes.xml,2041.35,144.0,1341.63,0.0,1485.63,144.0,411.72,555.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,1780.01,144.0,1081.58,0.0,1225.58,144.0,410.43,554.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-garage.xml,1820.42,144.0,1261.19,0.0,1405.19,144.0,271.23,415.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,1931.5,144.0,1318.17,0.0,1462.17,144.0,325.33,469.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,1863.72,144.0,1314.61,0.0,1458.61,144.0,261.11,405.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,1927.38,144.0,1317.96,0.0,1461.96,144.0,321.42,465.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,1927.38,144.0,1317.96,0.0,1461.96,144.0,321.42,465.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,1850.47,144.0,1313.26,0.0,1457.26,144.0,249.21,393.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,1846.07,144.0,1308.32,0.0,1452.32,144.0,249.75,393.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,1844.66,144.0,1309.14,0.0,1453.14,144.0,247.52,391.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,1901.71,144.0,1352.56,0.0,1496.56,144.0,261.15,405.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,1862.17,144.0,1316.14,0.0,1460.14,144.0,258.03,402.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,1871.68,144.0,1339.85,0.0,1483.85,144.0,243.83,387.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,1871.27,144.0,1343.12,0.0,1487.12,144.0,240.15,384.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,1485.14,144.0,1072.74,0.0,1216.74,144.0,124.4,268.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-thermal-mass.xml,1845.07,144.0,1312.01,0.0,1456.01,144.0,245.06,389.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,2006.6,144.0,1281.04,0.0,1425.04,144.0,437.56,581.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,1810.92,144.0,1275.54,0.0,1419.54,144.0,247.38,391.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-none.xml,1809.86,144.0,1246.63,0.0,1390.63,144.0,275.23,419.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,1937.33,144.0,1322.08,0.0,1466.08,144.0,327.25,471.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,1848.4,144.0,1314.89,0.0,1458.89,144.0,245.51,389.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,1786.44,144.0,1229.3,0.0,1373.3,144.0,269.14,413.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,1845.7,144.0,1294.61,0.0,1438.61,144.0,263.09,407.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-ambient.xml,1584.73,144.0,1104.49,0.0,1248.49,144.0,192.24,336.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-basement-garage.xml,1697.81,144.0,1190.77,0.0,1334.77,144.0,219.04,363.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-belly-wing-no-skirt.xml,1594.45,144.0,1081.08,0.0,1225.08,144.0,225.37,369.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-belly-wing-skirt.xml,1590.44,144.0,1081.18,0.0,1225.18,144.0,221.26,365.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-complex.xml,2091.63,144.0,1368.47,0.0,1512.47,144.0,435.16,579.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation-full.xml,1831.1,144.0,1330.59,0.0,1474.59,144.0,212.51,356.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,1840.92,144.0,1320.46,0.0,1464.46,144.0,232.46,376.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,1824.63,144.0,1298.28,0.0,1442.28,144.0,238.35,382.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,1540.46,144.0,1055.05,0.0,1199.05,144.0,197.41,341.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-multiple.xml,1506.03,144.0,1075.28,0.0,1219.28,144.0,142.75,286.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-slab.xml,1475.37,144.0,1068.29,0.0,1212.29,144.0,119.08,263.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement-above-grade.xml,1520.05,144.0,1078.66,0.0,1222.66,144.0,153.39,297.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement-assembly-r.xml,1477.15,144.0,1057.54,0.0,1201.54,144.0,131.61,275.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement-wall-insulation.xml,1564.3,144.0,1057.01,0.0,1201.01,144.0,219.29,363.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement.xml,1506.42,144.0,1075.42,0.0,1219.42,144.0,143.0,287.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unvented-crawlspace.xml,1498.95,144.0,1090.86,0.0,1234.86,144.0,120.09,264.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-vented-crawlspace-above-grade.xml,1529.08,144.0,1095.89,0.0,1239.89,144.0,145.19,289.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-vented-crawlspace.xml,1524.37,144.0,1090.34,0.0,1234.34,144.0,146.03,290.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-walkout-basement.xml,1923.24,144.0,1330.18,0.0,1474.18,144.0,305.06,449.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml,1803.78,144.0,1659.78,0.0,1803.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1403.45,144.0,1259.45,0.0,1403.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1848.34,144.0,1704.34,0.0,1848.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1687.72,144.0,1543.72,0.0,1687.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1844.16,144.0,1700.16,0.0,1844.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1850.61,144.0,1706.61,0.0,1850.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,1848.34,144.0,1704.34,0.0,1848.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,1682.67,144.0,1538.67,0.0,1682.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,1630.67,144.0,1486.67,0.0,1630.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1887.52,144.0,1436.23,0.0,1580.23,144.0,163.29,307.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1885.76,144.0,1390.54,0.0,1534.54,144.0,207.22,351.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1891.72,144.0,1440.38,0.0,1584.38,144.0,163.34,307.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,1810.55,144.0,1366.32,0.0,1510.32,144.0,156.23,300.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1897.3,144.0,1448.47,0.0,1592.47,144.0,160.83,304.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,1739.29,144.0,1595.29,0.0,1739.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,1725.25,144.0,1581.25,0.0,1725.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,1724.49,144.0,1580.49,0.0,1724.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,2019.75,144.0,1875.75,0.0,2019.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,1722.95,144.0,1578.95,0.0,1722.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,1670.11,144.0,1526.11,0.0,1670.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,1718.84,144.0,1574.84,0.0,1718.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,1660.35,144.0,1516.35,0.0,1660.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,1666.59,144.0,1522.59,0.0,1666.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,1920.79,144.0,1552.94,0.0,1696.94,144.0,79.85,223.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-autosize.xml,1861.66,144.0,1320.81,0.0,1464.81,144.0,252.85,396.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-coal-only.xml,1563.0,144.0,1117.83,0.0,1261.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,301.17,301.17 -base-hvac-boiler-elec-only.xml,1953.05,144.0,1809.05,0.0,1953.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,1818.1,144.0,1314.52,0.0,1458.52,144.0,215.58,359.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only-pilot.xml,1668.39,144.0,1114.22,0.0,1258.22,144.0,266.17,410.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,1615.89,144.0,1114.22,0.0,1258.22,144.0,213.67,357.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,1964.06,144.0,1117.83,0.0,1261.83,0.0,0.0,0.0,0.0,702.23,702.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,1805.47,144.0,1113.38,0.0,1257.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,548.09,548.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,1560.25,144.0,1113.38,0.0,1257.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,302.87,302.87,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-autosize-factor.xml,1429.13,144.0,1285.13,0.0,1429.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,1442.98,144.0,1298.98,0.0,1442.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,1443.46,144.0,1299.46,0.0,1443.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,1381.53,144.0,1237.53,0.0,1381.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,1398.25,144.0,1254.25,0.0,1398.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed-detailed-performance.xml,1372.3,144.0,1228.3,0.0,1372.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,1357.21,144.0,1213.21,0.0,1357.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,1357.14,144.0,1213.14,0.0,1357.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1891.41,144.0,1747.41,0.0,1891.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/hpxml-measures/workflow/tests/base_results/results_simulations1_energy.csv b/hpxml-measures/workflow/tests/base_results/results_simulations1_energy.csv deleted file mode 100644 index 5da9604f0..000000000 --- a/hpxml-measures/workflow/tests/base_results/results_simulations1_energy.csv +++ /dev/null @@ -1,221 +0,0 @@ -HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Permanent Spa Heater (MBtu),End Use: Electricity: Permanent Spa Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Permanent Spa Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu) -base-appliances-coal.xml,60.584,60.584,33.099,33.099,22.619,0.0,0.0,0.0,0.0,4.867,0.0,0.666,0.0,0.0,4.518,0.564,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-portable.xml,34.855,34.855,33.089,33.089,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.029,0.0,0.0,9.286,1.539,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.407,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-ief-whole-home.xml,34.865,34.865,33.113,33.113,1.752,0.0,0.0,0.0,0.0,0.0,0.0,0.029,0.0,0.0,9.283,1.538,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.434,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier-multiple.xml,34.838,34.838,33.034,33.034,1.805,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.0,0.0,9.276,1.537,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.207,0.0,0.363,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-dehumidifier.xml,34.815,34.815,33.063,33.063,1.751,0.0,0.0,0.0,0.0,0.0,0.0,0.029,0.0,0.0,9.277,1.537,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.207,0.0,0.393,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-freezer-temperature-dependent-schedule.xml,59.803,59.803,37.198,37.198,22.605,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,4.536,0.567,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,1.276,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-gas.xml,60.584,60.584,33.099,33.099,27.486,0.0,0.0,0.0,0.0,0.0,0.0,0.666,0.0,0.0,4.518,0.564,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.619,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-modified.xml,59.082,59.082,36.76,36.76,22.321,0.0,0.0,0.0,0.0,0.0,0.0,0.657,0.0,0.0,4.536,0.567,9.536,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.637,0.365,1.519,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-none.xml,53.39,53.39,28.439,28.439,24.951,0.0,0.0,0.0,0.0,0.0,0.0,0.734,0.0,0.0,4.082,0.497,7.785,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-oil.xml,60.584,60.584,33.099,33.099,22.619,4.867,0.0,0.0,0.0,0.0,0.0,0.666,0.0,0.0,4.518,0.564,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-propane.xml,60.584,60.584,33.099,33.099,22.619,0.0,4.867,0.0,0.0,0.0,0.0,0.666,0.0,0.0,4.518,0.564,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-refrigerator-temperature-dependent-schedule.xml,59.08,59.08,35.803,35.803,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-appliances-wood.xml,60.584,60.584,33.099,33.099,22.619,0.0,0.0,4.867,0.0,0.0,0.0,0.666,0.0,0.0,4.518,0.564,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-cathedral.xml,62.12,62.12,35.762,35.762,26.358,0.0,0.0,0.0,0.0,0.0,0.0,0.776,0.0,0.0,4.306,0.533,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,64.256,64.256,40.607,40.607,23.65,0.0,0.0,0.0,0.0,0.0,0.0,0.696,0.0,0.0,5.098,0.653,8.919,0.0,0.0,5.748,0.0,0.398,0.0,0.0,0.0,0.0,2.076,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,11.178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,55.248,55.248,34.983,34.983,20.265,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,3.779,0.457,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier-ceiling.xml,38.873,38.873,33.696,33.696,5.177,0.0,0.0,0.0,0.0,0.0,0.0,0.086,0.0,0.0,10.127,1.674,6.712,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.181,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-radiant-barrier.xml,37.676,37.676,33.231,33.231,4.445,0.0,0.0,0.0,0.0,0.0,0.0,0.074,0.0,0.0,9.738,1.608,6.711,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.185,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-unvented-insulated-roof.xml,58.499,58.499,35.226,35.226,23.274,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,3.918,0.474,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-atticroof-vented.xml,59.542,59.542,35.635,35.635,23.906,0.0,0.0,0.0,0.0,0.0,0.0,0.704,0.0,0.0,4.105,0.502,9.188,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-battery-scheduled.xml,60.815,60.815,37.537,37.537,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.735,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-battery.xml,59.08,59.08,35.803,35.803,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,36.473,36.473,24.215,24.215,12.258,0.0,0.0,0.0,0.0,0.0,0.0,0.203,0.0,0.0,1.623,0.163,9.672,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,1.688,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml,22.488,22.488,22.488,22.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.565,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.057,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,32.361,32.361,25.084,25.084,7.277,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,2.195,0.262,9.557,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.083,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,48.923,48.923,24.065,24.065,24.858,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,1.494,0.139,9.755,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,1.399,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,26.103,26.103,24.296,24.296,1.808,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.0,0.0,1.65,0.168,9.582,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,26.496,26.496,24.94,24.94,1.556,0.0,0.0,0.0,0.0,0.0,0.0,0.026,0.0,0.0,2.107,0.256,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.144,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-infil-compartmentalization-test.xml,26.769,26.769,26.013,26.013,0.756,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.0,0.0,2.988,0.428,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.19,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-residents-1.xml,19.945,19.945,18.551,18.551,1.395,0.0,0.0,0.0,0.0,0.0,0.0,0.023,0.0,0.0,2.488,0.33,4.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.165,0.0,0.0,0.169,0.22,0.912,1.184,0.0,1.506,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,27.414,27.414,26.492,26.492,0.922,0.0,0.0,0.0,0.0,0.0,0.0,0.045,0.0,0.0,3.231,0.637,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,28.273,28.273,27.286,27.286,0.986,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.894,0.734,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,27.665,27.665,26.791,26.791,0.874,0.0,0.0,0.0,0.0,0.0,0.0,0.105,0.0,0.0,3.47,0.637,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,31.863,31.863,31.144,31.144,0.718,0.0,0.0,0.0,0.0,0.0,0.046,0.045,0.0,0.0,7.74,0.734,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.848,27.848,27.13,27.13,0.718,0.0,0.0,0.0,0.0,0.0,0.046,0.045,0.0,0.0,3.725,0.734,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,23.606,23.606,22.809,22.809,0.798,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,23.691,23.691,22.838,22.838,0.853,0.0,0.0,0.0,0.0,0.0,0.0,0.068,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,23.617,23.617,22.858,22.858,0.759,0.0,0.0,0.0,0.0,0.0,0.0,0.088,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,23.595,23.595,23.024,23.024,0.572,0.0,0.0,0.0,0.0,0.0,0.179,0.075,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,23.617,23.617,22.861,22.861,0.756,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,23.47,23.47,22.849,22.849,0.621,0.0,0.0,0.0,0.0,0.0,0.04,0.039,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,26.386,26.386,26.386,26.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.206,0.629,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,27.141,27.141,27.141,27.141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.864,0.725,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,26.622,26.622,26.622,26.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.442,0.629,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,30.949,30.949,30.949,30.949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.673,0.725,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,26.973,26.973,26.973,26.973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.696,0.725,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-generator.xml,41.016,34.191,25.959,19.134,0.89,0.0,14.167,0.0,0.0,0.0,0.0,0.015,0.0,0.0,2.945,0.419,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.824,0.0,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.339,28.339,28.339,28.339,0.0,0.0,0.0,0.0,0.0,0.0,0.242,0.374,0.0,0.0,2.265,2.877,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,31.736,31.736,16.495,16.495,15.242,0.0,0.0,0.0,0.0,0.0,0.0,0.014,0.0,0.0,2.995,0.43,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.189,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.817,0.0,14.425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-laundry-room.xml,29.652,29.652,16.313,16.313,13.339,0.0,0.0,0.0,0.0,0.0,0.0,0.017,0.0,0.0,2.85,0.4,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.18,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.029,0.0,12.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,51.446,51.446,30.55,30.55,20.896,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,2.845,0.248,9.563,0.0,0.0,2.025,0.0,0.206,3.704,0.948,0.166,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.732,0.0,0.0,0.0,0.0,12.164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,32.611,32.611,27.167,27.167,5.444,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,2.682,0.361,9.536,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.045,0.0,2.156,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.489,0.0,0.0,0.0,0.0,3.955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent.xml,30.95,30.95,27.025,27.025,3.925,0.0,0.0,0.0,0.0,0.0,0.0,0.065,0.0,0.0,2.588,0.341,9.545,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.0,0.0,2.125,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-pv-battery.xml,27.726,3.278,26.835,2.387,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.015,0.0,0.0,2.945,0.419,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.876,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-pv.xml,26.849,2.401,25.959,1.511,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.015,0.0,0.0,2.945,0.419,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.0,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,21.134,21.134,18.39,18.39,2.744,0.0,0.0,0.0,0.0,0.0,0.0,0.045,0.0,0.0,2.17,0.266,2.925,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.116,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml,21.239,21.239,15.382,15.382,5.856,0.0,0.0,0.0,0.0,0.0,0.0,0.029,0.0,0.0,2.366,0.306,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.154,0.0,0.0,0.146,0.197,0.817,1.129,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.757,0.0,4.099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,30.829,30.829,17.432,17.432,13.396,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,2.87,0.404,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.179,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.086,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,30.829,30.829,17.432,17.432,13.396,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,2.87,0.404,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.179,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.086,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-water-heater.xml,29.733,29.733,16.336,16.336,13.396,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,2.87,0.404,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.179,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.086,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit.xml,26.849,26.849,25.959,25.959,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.015,0.0,0.0,2.945,0.419,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-whole-building.xml,217.516,217.516,217.516,217.516,0.0,0.0,0.0,0.0,0.0,0.0,34.288,0.0,0.0,0.0,22.669,0.0,55.567,0.0,0.0,14.641,0.0,1.364,0.0,0.0,0.0,0.0,12.716,0.0,0.0,1.912,2.192,0.0,9.172,0.0,12.693,50.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-2stories.xml,52.217,52.217,34.721,34.721,17.496,0.0,0.0,0.0,0.0,0.0,0.0,0.515,0.0,0.0,3.475,0.517,9.076,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-atticroof-cathedral.xml,98.475,98.475,38.023,38.023,60.452,0.0,0.0,0.0,0.0,0.0,0.0,1.779,0.0,0.0,5.234,0.816,9.084,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.044,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,43.613,43.613,29.785,29.785,13.829,0.0,0.0,0.0,0.0,0.0,0.0,0.229,0.0,0.0,2.847,0.383,9.286,0.0,0.0,3.266,0.0,0.27,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,5.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit.xml,43.613,43.613,29.785,29.785,13.829,0.0,0.0,0.0,0.0,0.0,0.0,0.229,0.0,0.0,2.847,0.383,9.286,0.0,0.0,3.266,0.0,0.27,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,5.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless-outside.xml,52.189,52.189,21.369,21.369,30.82,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.147,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.532,0.0,10.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,53.386,53.386,21.376,21.376,32.011,0.0,0.0,0.0,0.0,0.0,0.0,0.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.722,0.0,10.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,31.602,31.602,31.602,31.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.23,0.596,6.809,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-gshp.xml,38.481,38.481,38.481,38.481,0.0,0.0,0.0,0.0,0.0,0.0,5.979,0.955,0.0,0.0,3.01,0.812,6.588,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-hpwh.xml,57.413,57.413,29.729,29.729,27.684,0.0,0.0,0.0,0.0,0.0,0.0,0.815,0.0,0.0,4.52,0.564,2.7,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-tankless.xml,33.29,33.29,33.29,33.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.569,0.962,6.796,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.898,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-var-speed.xml,30.874,30.874,30.874,30.874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.874,0.259,6.774,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater.xml,33.322,33.322,33.322,33.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.623,0.976,6.755,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-dwhr.xml,56.809,56.809,33.531,33.531,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,6.742,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-detailed-setpoints.xml,54.97,54.97,21.372,21.372,33.598,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.152,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.279,0.0,13.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-dse.xml,60.222,60.222,21.41,21.41,38.812,0.0,0.0,0.0,0.0,0.0,0.0,0.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.151,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.408,0.0,13.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-outside.xml,56.51,56.51,21.369,21.369,35.141,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.147,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.532,0.0,14.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,55.344,55.344,21.371,21.371,33.974,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.153,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.068,0.0,13.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,47.29,47.29,21.374,21.374,25.916,0.0,0.0,0.0,0.0,0.0,0.0,0.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.147,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.237,0.0,4.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,55.102,55.102,21.372,21.372,33.73,0.0,0.0,0.0,0.0,0.0,0.0,0.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.151,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.327,0.0,13.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,58.974,58.974,35.481,35.481,23.493,0.0,0.0,0.0,0.0,0.0,0.0,0.691,0.0,0.0,4.391,0.544,8.716,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-gas.xml,64.954,64.954,26.894,26.894,38.06,0.0,0.0,0.0,0.0,0.0,0.0,0.702,0.0,0.0,4.494,0.56,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.861,0.0,14.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-hpwh.xml,57.356,57.356,29.639,29.639,27.717,0.0,0.0,0.0,0.0,0.0,0.0,0.816,0.0,0.0,3.949,0.477,3.269,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.063,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-indirect.xml,54.898,54.898,21.372,21.372,33.526,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.15,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.545,0.0,12.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,58.86,58.86,35.582,35.582,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,8.793,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-multiple.xml,47.969,47.969,23.301,23.301,24.669,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,0.0,0.0,0.0,1.928,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.743,0.0,3.925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,48.136,48.136,24.496,24.496,23.64,0.0,0.0,0.0,0.0,0.0,0.0,0.696,0.0,0.0,4.325,0.535,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.0,0.0,0.0,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand-scheduled.xml,59.031,59.031,35.754,35.754,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,8.939,0.026,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-demand.xml,59.031,59.031,35.754,35.754,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,8.939,0.026,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-manual.xml,58.611,58.611,35.334,35.334,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,8.528,0.017,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-nocontrol.xml,73.76,73.76,50.483,50.483,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,22.199,1.495,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-temperature.xml,68.91,68.91,45.632,45.632,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,18.594,0.249,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-recirc-timer.xml,73.76,73.76,50.483,50.483,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,22.199,1.495,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-evacuated-tube.xml,53.269,53.269,29.991,29.991,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.421,0.549,2.875,0.0,0.324,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-flat-plate.xml,51.829,51.829,28.561,28.561,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.433,0.551,1.444,0.0,0.311,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-direct-ics.xml,53.342,53.342,30.065,30.065,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.426,0.55,2.938,0.0,0.327,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-fraction.xml,53.461,53.461,29.913,29.913,23.547,0.0,0.0,0.0,0.0,0.0,0.0,0.693,0.0,0.0,4.385,0.543,3.155,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-indirect-flat-plate.xml,51.548,51.548,28.636,28.636,22.912,0.0,0.0,0.0,0.0,0.0,0.0,0.674,0.0,0.0,4.536,0.567,1.413,0.0,0.306,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,51.542,51.542,28.272,28.272,23.27,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.432,0.551,1.467,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-coal.xml,65.684,65.684,26.938,26.938,23.466,0.0,0.0,0.0,0.0,15.28,0.0,0.691,0.0,0.0,4.542,0.567,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-detailed-setpoints.xml,59.064,59.064,35.793,35.793,23.271,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.418,0.549,9.003,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-elec-uef.xml,59.106,59.106,35.88,35.88,23.226,0.0,0.0,0.0,0.0,0.0,0.0,0.684,0.0,0.0,4.424,0.549,9.086,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-outside.xml,67.449,67.449,26.743,26.743,40.705,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,17.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef-fhr.xml,65.359,65.359,26.907,26.907,38.452,0.0,0.0,0.0,0.0,0.0,0.0,0.699,0.0,0.0,4.508,0.562,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.741,0.0,14.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas-uef.xml,65.359,65.359,26.907,26.907,38.452,0.0,0.0,0.0,0.0,0.0,0.0,0.699,0.0,0.0,4.508,0.562,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.741,0.0,14.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-gas.xml,65.684,65.684,26.938,26.938,38.745,0.0,0.0,0.0,0.0,0.0,0.0,0.691,0.0,0.0,4.542,0.567,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.466,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,57.303,57.303,28.803,28.803,28.5,0.0,0.0,0.0,0.0,0.0,0.0,0.839,0.0,0.0,3.881,0.467,2.49,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.061,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,57.168,57.168,28.618,28.618,28.55,0.0,0.0,0.0,0.0,0.0,0.0,0.84,0.0,0.0,3.858,0.463,2.33,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-outside.xml,57.155,57.155,33.463,33.463,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,6.72,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-uef.xml,57.168,57.168,28.618,28.618,28.55,0.0,0.0,0.0,0.0,0.0,0.0,0.84,0.0,0.0,3.858,0.463,2.33,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,52.914,52.914,27.859,27.859,25.055,0.0,0.0,0.0,0.0,0.0,0.0,0.737,0.0,0.0,4.22,0.518,1.249,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump-with-solar.xml,52.371,52.371,28.435,28.435,23.936,0.0,0.0,0.0,0.0,0.0,0.0,0.704,0.0,0.0,4.57,0.572,1.12,0.0,0.329,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-heat-pump.xml,57.389,57.389,29.768,29.768,27.621,0.0,0.0,0.0,0.0,0.0,0.0,0.813,0.0,0.0,3.941,0.476,3.409,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.339,58.339,35.329,35.329,23.01,0.0,0.0,0.0,0.0,0.0,0.0,0.677,0.0,0.0,4.456,0.554,8.501,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.115,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-model-type-stratified.xml,58.928,58.928,35.249,35.249,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.37,0.541,8.504,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-oil.xml,65.684,65.684,26.938,26.938,23.466,15.28,0.0,0.0,0.0,0.0,0.0,0.691,0.0,0.0,4.542,0.567,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tank-wood.xml,65.684,65.684,26.938,26.938,23.466,0.0,0.0,15.28,0.0,0.0,0.0,0.691,0.0,0.0,4.542,0.567,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-detailed-setpoints.xml,61.602,61.602,26.743,26.743,34.859,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-outside.xml,59.704,59.704,36.012,36.012,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,9.269,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric-uef.xml,59.599,59.599,35.907,35.907,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,9.164,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-electric.xml,59.704,59.704,36.012,36.012,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,9.269,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-uef.xml,60.092,60.092,26.743,26.743,33.349,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,9.657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,54.352,54.352,26.743,26.743,27.609,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,3.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas-with-solar.xml,52.035,52.035,27.16,27.16,24.875,0.0,0.0,0.0,0.0,0.0,0.0,0.686,0.0,0.0,4.474,0.557,0.0,0.0,0.304,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.324,0.0,1.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-gas.xml,61.626,61.626,26.743,26.743,34.882,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,11.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-tankless-propane.xml,61.626,61.626,26.743,26.743,23.692,0.0,11.19,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories-garage.xml,67.023,67.023,41.246,41.246,25.777,0.0,0.0,0.0,0.0,0.0,0.0,0.759,0.0,0.0,6.619,1.099,8.97,0.0,0.0,5.266,0.142,0.373,0.0,0.0,0.0,0.0,2.086,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,10.091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,75.223,75.223,44.634,44.634,30.589,0.0,0.0,0.0,0.0,0.0,0.0,0.9,0.0,0.0,6.507,1.077,8.857,0.0,0.0,6.369,0.0,0.43,0.0,0.0,0.0,0.0,2.078,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,12.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,55.359,55.359,30.578,30.578,24.781,0.0,0.0,0.0,0.0,0.0,0.0,0.729,0.0,0.0,4.16,0.509,5.472,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.203,0.253,1.049,1.262,0.0,1.645,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,57.254,57.254,33.227,33.227,24.027,0.0,0.0,0.0,0.0,0.0,0.0,0.707,0.0,0.0,4.288,0.529,7.281,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.261,0.309,1.281,1.396,0.0,1.88,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,60.881,60.881,38.343,38.343,22.538,0.0,0.0,0.0,0.0,0.0,0.0,0.663,0.0,0.0,4.55,0.569,10.708,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.376,0.421,1.744,1.662,0.0,2.351,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-5.xml,62.665,62.665,40.864,40.864,21.801,0.0,0.0,0.0,0.0,0.0,0.0,0.642,0.0,0.0,4.685,0.589,12.379,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.076,0.0,0.0,0.434,0.477,1.976,1.795,0.0,2.586,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-ceilingtypes.xml,75.422,75.422,36.556,36.556,38.866,0.0,0.0,0.0,0.0,0.0,0.0,1.144,0.0,0.0,4.681,0.589,9.017,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-floortypes.xml,68.214,68.214,29.471,29.471,38.744,0.0,0.0,0.0,0.0,0.0,0.0,1.14,0.0,0.0,3.717,0.434,9.213,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.051,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-garage.xml,59.968,59.968,34.365,34.365,25.603,0.0,0.0,0.0,0.0,0.0,0.0,0.754,0.0,0.0,3.211,0.371,9.116,0.0,0.0,4.507,0.142,0.334,0.0,0.0,0.0,0.0,1.706,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ach-house-pressure.xml,59.08,59.08,35.803,35.803,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm-house-pressure.xml,59.08,59.08,35.803,35.803,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-cfm50.xml,59.08,59.08,35.803,35.803,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-ela.xml,66.628,66.628,35.917,35.917,30.711,0.0,0.0,0.0,0.0,0.0,0.0,0.904,0.0,0.0,4.334,0.533,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,60.468,60.468,35.82,35.82,24.648,0.0,0.0,0.0,0.0,0.0,0.0,0.725,0.0,0.0,4.399,0.545,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-ach.xml,66.253,66.253,35.911,35.911,30.342,0.0,0.0,0.0,0.0,0.0,0.0,0.893,0.0,0.0,4.338,0.534,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,66.253,66.253,35.911,35.911,30.342,0.0,0.0,0.0,0.0,0.0,0.0,0.893,0.0,0.0,4.338,0.534,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,59.308,59.308,35.783,35.783,23.525,0.0,0.0,0.0,0.0,0.0,0.0,0.692,0.0,0.0,4.394,0.545,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-overhangs.xml,59.225,59.225,35.649,35.649,23.576,0.0,0.0,0.0,0.0,0.0,0.0,0.694,0.0,0.0,4.277,0.527,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-rooftypes.xml,59.036,59.036,35.671,35.671,23.365,0.0,0.0,0.0,0.0,0.0,0.0,0.688,0.0,0.0,4.3,0.532,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-physical-properties.xml,61.506,61.506,36.854,36.854,24.652,0.0,0.0,0.0,0.0,0.0,0.0,0.726,0.0,0.0,5.296,0.678,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.077,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-shading.xml,60.219,60.219,35.862,35.862,24.358,0.0,0.0,0.0,0.0,0.0,0.0,0.717,0.0,0.0,4.442,0.551,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights-storms.xml,59.525,59.525,36.508,36.508,23.017,0.0,0.0,0.0,0.0,0.0,0.0,0.677,0.0,0.0,5.035,0.64,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.077,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-skylights.xml,59.267,59.267,36.597,36.597,22.67,0.0,0.0,0.0,0.0,0.0,0.0,0.667,0.0,0.0,5.121,0.653,9.012,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.078,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-split-level.xml,40.973,40.973,29.23,29.23,11.743,0.0,0.0,0.0,0.0,0.0,0.0,0.346,0.0,0.0,3.978,0.486,9.407,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.096,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-thermal-mass.xml,58.883,58.883,35.749,35.749,23.134,0.0,0.0,0.0,0.0,0.0,0.0,0.681,0.0,0.0,4.374,0.543,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-walltypes.xml,76.21,76.21,34.905,34.905,41.305,0.0,0.0,0.0,0.0,0.0,0.0,1.216,0.0,0.0,3.181,0.373,9.02,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.05,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,58.108,58.108,34.756,34.756,23.352,0.0,0.0,0.0,0.0,0.0,0.0,0.687,0.0,0.0,3.522,0.401,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-none.xml,59.95,59.95,33.968,33.968,25.982,0.0,0.0,0.0,0.0,0.0,0.0,0.765,0.0,0.0,2.747,0.314,9.018,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.058,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-physical-properties.xml,66.916,66.916,36.024,36.024,30.892,0.0,0.0,0.0,0.0,0.0,0.0,0.909,0.0,0.0,4.424,0.544,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading-seasons.xml,59.004,59.004,35.828,35.828,23.176,0.0,0.0,0.0,0.0,0.0,0.0,0.682,0.0,0.0,4.44,0.552,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-shading.xml,58.902,58.902,33.496,33.496,25.407,0.0,0.0,0.0,0.0,0.0,0.0,0.748,0.0,0.0,2.372,0.243,9.022,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.045,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-enclosure-windows-storms.xml,60.111,60.111,35.275,35.275,24.836,0.0,0.0,0.0,0.0,0.0,0.0,0.731,0.0,0.0,3.922,0.475,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-ambient.xml,48.242,48.242,30.095,30.095,18.148,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,4.753,0.595,9.2,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.096,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-basement-garage.xml,53.123,53.123,32.446,32.446,20.677,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,4.405,0.546,9.248,0.0,0.0,3.404,0.142,0.277,0.0,0.0,0.0,0.0,2.075,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-belly-wing-no-skirt.xml,50.731,50.731,29.457,29.457,21.274,0.0,0.0,0.0,0.0,0.0,0.0,0.626,0.0,0.0,4.119,0.502,9.201,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.093,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-belly-wing-skirt.xml,50.347,50.347,29.46,29.46,20.887,0.0,0.0,0.0,0.0,0.0,0.0,0.615,0.0,0.0,4.13,0.504,9.201,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.094,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-complex.xml,78.367,78.367,37.288,37.288,41.079,0.0,0.0,0.0,0.0,0.0,0.0,1.209,0.0,0.0,5.26,0.675,9.017,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation-full.xml,56.316,56.316,36.255,36.255,20.061,0.0,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,4.887,0.621,9.012,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.079,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,57.924,57.924,35.98,35.98,21.944,0.0,0.0,0.0,0.0,0.0,0.0,0.646,0.0,0.0,4.603,0.577,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.075,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,57.875,57.875,35.375,35.375,22.5,0.0,0.0,0.0,0.0,0.0,0.0,0.662,0.0,0.0,4.07,0.493,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-conditioned-crawlspace.xml,47.383,47.383,28.748,28.748,18.636,0.0,0.0,0.0,0.0,0.0,0.0,0.548,0.0,0.0,3.577,0.427,9.208,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-multiple.xml,42.774,42.774,29.299,29.299,13.475,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.444,0.556,9.181,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.805,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-slab.xml,40.349,40.349,29.108,29.108,11.241,0.0,0.0,0.0,0.0,0.0,0.0,0.331,0.0,0.0,4.062,0.5,9.199,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.099,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement-above-grade.xml,43.87,43.87,29.391,29.391,14.48,0.0,0.0,0.0,0.0,0.0,0.0,0.426,0.0,0.0,4.536,0.569,9.197,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.746,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement-assembly-r.xml,41.239,41.239,28.816,28.816,12.424,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.087,0.501,9.196,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.749,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement-wall-insulation.xml,49.502,49.502,28.801,28.801,20.701,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,3.718,0.443,9.129,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.985,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unconditioned-basement.xml,42.802,42.802,29.303,29.303,13.499,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.466,0.559,9.189,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.775,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-unvented-crawlspace.xml,41.06,41.06,29.723,29.723,11.336,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.498,0.566,9.296,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.112,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-vented-crawlspace-above-grade.xml,43.567,43.567,29.861,29.861,13.706,0.0,0.0,0.0,0.0,0.0,0.0,0.403,0.0,0.0,4.509,0.566,9.36,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.106,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-vented-crawlspace.xml,43.495,43.495,29.709,29.709,13.785,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.37,0.544,9.369,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.105,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-foundation-walkout-basement.xml,65.042,65.042,36.244,36.244,28.798,0.0,0.0,0.0,0.0,0.0,0.0,0.848,0.0,0.0,4.664,0.584,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml,45.225,45.225,45.225,45.225,0.0,0.0,0.0,0.0,0.0,0.0,9.631,1.135,0.093,0.007,3.405,0.802,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.317,34.317,34.317,34.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.467,0.82,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,46.439,46.439,46.439,46.439,0.0,0.0,0.0,0.0,0.0,0.0,9.833,1.715,0.3,0.027,3.567,0.845,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.063,42.063,42.063,42.063,0.0,0.0,0.0,0.0,0.0,0.0,9.739,1.785,0.302,0.03,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,46.325,46.325,46.325,46.325,0.0,0.0,0.0,0.0,0.0,0.0,9.352,1.54,0.932,0.081,3.454,0.817,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,46.501,46.501,46.501,46.501,0.0,0.0,0.0,0.0,0.0,0.0,9.907,1.715,0.3,0.027,3.554,0.845,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,46.439,46.439,46.439,46.439,0.0,0.0,0.0,0.0,0.0,0.0,9.833,1.715,0.3,0.027,3.567,0.845,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.925,41.925,41.925,41.925,0.0,0.0,0.0,0.0,0.0,0.0,7.695,0.954,0.3,0.02,2.3,0.505,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,40.508,40.508,40.508,40.508,0.0,0.0,0.0,0.0,0.0,0.0,8.062,0.115,0.0,0.0,2.097,0.083,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,54.548,54.548,39.134,39.134,15.414,0.0,0.0,0.0,0.0,0.0,5.408,0.607,0.0,0.058,2.498,0.413,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,57.45,57.45,37.889,37.889,19.561,0.0,0.0,0.0,0.0,0.0,4.321,0.412,0.0,0.073,2.518,0.415,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,54.666,54.666,39.247,39.247,15.419,0.0,0.0,0.0,0.0,0.0,5.49,0.614,0.0,0.058,2.519,0.415,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,51.977,51.977,37.229,37.229,14.748,0.0,0.0,0.0,0.0,0.0,4.785,0.052,0.0,0.054,2.102,0.085,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.748,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.649,54.649,39.467,39.467,15.182,0.0,0.0,0.0,0.0,0.0,5.274,0.581,0.0,0.518,2.527,0.415,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,43.468,43.468,43.468,43.468,0.0,0.0,0.0,0.0,0.0,0.0,9.157,0.915,0.263,0.015,2.824,0.141,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,43.085,43.085,43.085,43.085,0.0,0.0,0.0,0.0,0.0,0.0,9.126,0.848,0.093,0.006,2.758,0.102,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,43.065,43.065,43.065,43.065,0.0,0.0,0.0,0.0,0.0,0.0,9.183,0.843,0.096,0.006,2.683,0.101,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,51.11,51.11,51.11,51.11,0.0,0.0,0.0,0.0,0.0,0.0,10.068,1.158,5.84,0.514,3.283,0.095,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,43.023,43.023,43.023,43.023,0.0,0.0,0.0,0.0,0.0,0.0,9.144,0.847,0.093,0.006,2.679,0.103,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,41.583,41.583,41.583,41.583,0.0,0.0,0.0,0.0,0.0,0.0,8.332,0.497,0.278,0.018,2.197,0.107,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,42.911,42.911,42.911,42.911,0.0,0.0,0.0,0.0,0.0,0.0,9.99,0.309,0.036,0.003,2.318,0.102,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,41.317,41.317,41.317,41.317,0.0,0.0,0.0,0.0,0.0,0.0,8.193,0.471,0.225,0.016,2.154,0.107,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,41.487,41.487,41.487,41.487,0.0,0.0,0.0,0.0,0.0,0.0,8.312,0.449,0.301,0.022,2.149,0.102,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-sizing-controls.xml,49.852,49.852,42.314,42.314,7.538,0.0,0.0,0.0,0.0,0.0,0.0,0.132,0.0,0.0,3.148,0.423,15.674,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.967,0.0,0.0,0.548,0.588,2.435,2.058,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-autosize.xml,59.858,59.858,35.989,35.989,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.702,0.0,0.0,4.463,0.672,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-coal-only.xml,50.537,50.537,30.458,30.458,0.0,0.0,0.0,0.0,0.0,20.078,0.0,0.252,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-elec-only.xml,49.292,49.292,49.292,49.292,0.0,0.0,0.0,0.0,0.0,0.0,18.955,0.13,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,56.168,56.168,35.818,35.818,20.351,0.0,0.0,0.0,0.0,0.0,0.0,0.155,0.0,0.0,4.554,0.957,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only-pilot.xml,55.486,55.486,30.36,30.36,25.127,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,50.53,50.53,30.36,30.36,20.17,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,50.537,50.537,30.458,30.458,0.0,20.078,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,50.529,50.529,30.337,30.337,0.0,0.0,20.192,0.0,0.0,0.0,0.0,0.13,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,50.529,50.529,30.337,30.337,0.0,0.0,0.0,20.192,0.0,0.0,0.0,0.13,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-autosize-factor.xml,35.017,35.017,35.017,35.017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.133,0.854,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,35.394,35.394,35.394,35.394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.434,0.93,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed.xml,35.407,35.407,35.407,35.407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.447,0.93,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-2-speed.xml,33.72,33.72,33.72,33.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.121,0.568,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,34.175,34.175,34.175,34.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.891,0.254,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed-detailed-performance.xml,33.468,33.468,33.468,33.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.335,0.103,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,33.057,33.057,33.057,33.057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.785,0.242,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-var-speed.xml,33.055,33.055,33.055,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.785,0.239,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.613,47.613,47.613,47.613,0.0,0.0,0.0,0.0,0.0,0.0,9.816,1.8,0.303,0.031,4.554,0.957,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/hpxml-measures/workflow/tests/base_results/results_simulations1_hvac.csv b/hpxml-measures/workflow/tests/base_results/results_simulations1_hvac.csv deleted file mode 100644 index bc8d325b2..000000000 --- a/hpxml-measures/workflow/tests/base_results/results_simulations1_hvac.csv +++ /dev/null @@ -1,221 +0,0 @@ -HPXML,HVAC Design Temperature: Heating (F),HVAC Design Temperature: Cooling (F),HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h),HVAC Design Load: Heating: Total (Btu/h),HVAC Design Load: Heating: Ducts (Btu/h),HVAC Design Load: Heating: Windows (Btu/h),HVAC Design Load: Heating: Skylights (Btu/h),HVAC Design Load: Heating: Doors (Btu/h),HVAC Design Load: Heating: Walls (Btu/h),HVAC Design Load: Heating: Roofs (Btu/h),HVAC Design Load: Heating: Floors (Btu/h),HVAC Design Load: Heating: Slabs (Btu/h),HVAC Design Load: Heating: Ceilings (Btu/h),HVAC Design Load: Heating: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Total (Btu/h),HVAC Design Load: Cooling Sensible: Ducts (Btu/h),HVAC Design Load: Cooling Sensible: Windows (Btu/h),HVAC Design Load: Cooling Sensible: Skylights (Btu/h),HVAC Design Load: Cooling Sensible: Doors (Btu/h),HVAC Design Load: Cooling Sensible: Walls (Btu/h),HVAC Design Load: Cooling Sensible: Roofs (Btu/h),HVAC Design Load: Cooling Sensible: Floors (Btu/h),HVAC Design Load: Cooling Sensible: Slabs (Btu/h),HVAC Design Load: Cooling Sensible: Ceilings (Btu/h),HVAC Design Load: Cooling Sensible: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Internal Gains (Btu/h),HVAC Design Load: Cooling Latent: Total (Btu/h),HVAC Design Load: Cooling Latent: Ducts (Btu/h),HVAC Design Load: Cooling Latent: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Latent: Internal Gains (Btu/h) -base-appliances-coal.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-appliances-dehumidifier-ief-portable.xml,25.88,98.42,24000.0,24000.0,0.0,20417.0,1393.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15289.0,75.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0 -base-appliances-dehumidifier-ief-whole-home.xml,25.88,98.42,24000.0,24000.0,0.0,20417.0,1393.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15289.0,75.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0 -base-appliances-dehumidifier-multiple.xml,25.88,98.42,24000.0,24000.0,0.0,20417.0,1393.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15289.0,75.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0 -base-appliances-dehumidifier.xml,25.88,98.42,24000.0,24000.0,0.0,20417.0,1393.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15289.0,75.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0 -base-appliances-freezer-temperature-dependent-schedule.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,21093.0,6140.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,4520.0,132.0,0.0,-668.0,800.0 -base-appliances-gas.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-appliances-modified.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-appliances-none.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-appliances-oil.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-appliances-propane.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-appliances-refrigerator-temperature-dependent-schedule.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-appliances-wood.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-atticroof-cathedral.xml,6.8,91.76,36000.0,24000.0,0.0,30447.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,2408.0,0.0,7063.0,15723.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,948.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-conditioned.xml,6.8,91.76,36000.0,24000.0,0.0,32083.0,778.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,2408.0,724.0,6718.0,19378.0,62.0,12260.0,0.0,207.0,1211.0,650.0,0.0,0.0,764.0,904.0,3320.0,0.0,0.0,0.0,0.0 -base-atticroof-flat.xml,6.8,91.76,36000.0,24000.0,0.0,25336.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,2408.0,0.0,4699.0,12331.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-atticroof-radiant-barrier-ceiling.xml,25.88,98.42,24000.0,24000.0,0.0,25779.0,1424.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1792.0,24755.0,66.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,12169.0,577.0,3320.0,1637.0,438.0,399.0,800.0 -base-atticroof-radiant-barrier.xml,25.88,98.42,24000.0,24000.0,0.0,25779.0,1424.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1792.0,21654.0,68.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,9065.0,577.0,3320.0,1637.0,438.0,399.0,800.0 -base-atticroof-unvented-insulated-roof.xml,6.8,91.76,36000.0,24000.0,0.0,31085.0,4866.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,4190.0,4699.0,19553.0,1896.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-atticroof-vented.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,16582.0,3860.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-battery-scheduled.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-battery.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,6.8,91.76,12000.0,12000.0,0.0,12374.0,5661.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1558.0,8175.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml,6.8,91.76,0.0,0.0,0.0,7340.0,0.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1558.0,8393.0,0.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,6.8,91.76,12000.0,12000.0,0.0,12432.0,5091.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1558.0,9982.0,1589.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,6.8,91.76,12000.0,12000.0,0.0,14621.0,6781.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1558.0,10083.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,6.8,91.76,12000.0,12000.0,0.0,8360.0,3676.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1558.0,8175.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,6.8,91.76,12000.0,12000.0,0.0,7916.0,3457.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1558.0,6281.0,1327.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-infil-compartmentalization-test.xml,6.8,91.76,12000.0,12000.0,0.0,5615.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1261.0,7014.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,169.0,3320.0,621.0,0.0,-179.0,800.0 -base-bldgtype-mf-unit-residents-1.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,6.8,91.76,5911.0,8875.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,6.8,91.76,8673.0,10149.0,0.0,8673.0,2762.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,6.8,91.76,5911.0,8875.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,6.8,91.76,28568.0,10149.0,0.0,6794.0,882.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,6.8,91.76,28568.0,10149.0,0.0,6794.0,882.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,6.8,91.76,5911.0,0.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,6.8,91.76,8673.0,0.0,0.0,8673.0,2762.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,6.8,91.76,5911.0,0.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,6.8,91.76,7083.0,0.0,0.0,7083.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,2729.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,6.8,91.76,5911.0,0.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,6.8,91.76,28568.0,0.0,0.0,6794.0,882.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,6.8,91.76,0.0,8875.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,6.8,91.76,0.0,10149.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,6.8,91.76,0.0,8875.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,6.8,91.76,0.0,10149.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,6.8,91.76,0.0,10149.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-generator.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,6.8,91.76,12000.0,12000.0,12000.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-laundry-room.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,6.8,91.76,12000.0,12000.0,0.0,9336.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,4983.0,8045.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1201.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,6.8,91.76,12000.0,12000.0,0.0,6306.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1953.0,7113.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,268.0,3320.0,2.0,0.0,-798.0,800.0 -base-bldgtype-mf-unit-shared-mechvent.xml,6.8,91.76,12000.0,12000.0,0.0,7909.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,3556.0,7599.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,754.0,3320.0,2.0,0.0,-798.0,800.0 -base-bldgtype-mf-unit-shared-pv-battery.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-pv.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,6364.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,2630.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit-shared-water-heater.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-unit.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 -base-bldgtype-mf-whole-building.xml,6.8,91.76,72000.0,72000.0,0.0,88106.0,0.0,18018.0,0.0,1722.0,10488.0,0.0,2376.0,0.0,3860.0,51642.0,53028.0,0.0,21576.0,0.0,618.0,1104.0,0.0,630.0,0.0,2244.0,6930.0,19920.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-2stories.xml,6.8,91.76,48000.0,36000.0,0.0,28279.0,7515.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1879.0,1447.0,6082.0,17817.0,5082.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1529.0,819.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-atticroof-cathedral.xml,6.8,91.76,48000.0,36000.0,0.0,43862.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1879.0,0.0,6082.0,24069.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,819.0,3320.0,0.0,0.0,0.0,0.0 -base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,6.8,91.76,24000.0,24000.0,0.0,21925.0,8234.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1879.0,1447.0,3126.0,14900.0,5990.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1529.0,419.0,3320.0,356.0,0.0,-444.0,800.0 -base-bldgtype-sfa-unit.xml,6.8,91.76,24000.0,24000.0,0.0,21926.0,8234.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1879.0,1447.0,3126.0,14900.0,5990.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1529.0,420.0,3320.0,356.0,0.0,-444.0,800.0 -base-dhw-combi-tankless-outside.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-combi-tankless.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-desuperheater-2-speed.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-desuperheater-gshp.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-desuperheater-hpwh.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-desuperheater-tankless.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-desuperheater-var-speed.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-desuperheater.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-dwhr.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-indirect-detailed-setpoints.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-indirect-dse.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-indirect-outside.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-indirect-standbyloss.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-indirect-with-solar-fraction.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-indirect.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-jacket-electric.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-jacket-gas.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-jacket-hpwh.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-jacket-indirect.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-low-flow-fixtures.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-multiple.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-none.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-recirc-demand-scheduled.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-recirc-demand.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-recirc-manual.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-recirc-nocontrol.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-recirc-temperature.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-recirc-timer.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-solar-direct-evacuated-tube.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-solar-direct-flat-plate.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-solar-direct-ics.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-solar-fraction.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-solar-indirect-flat-plate.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-solar-thermosyphon-flat-plate.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-coal.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-detailed-setpoints.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-elec-uef.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-gas-outside.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-gas-uef-fhr.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-gas-uef.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-gas.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-heat-pump-outside.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-heat-pump-uef.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-heat-pump-with-solar.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-heat-pump.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-model-type-stratified.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-oil.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tank-wood.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tankless-detailed-setpoints.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tankless-electric-outside.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tankless-electric-uef.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tankless-electric.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tankless-gas-uef.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tankless-gas-with-solar-fraction.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tankless-gas-with-solar.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tankless-gas.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-dhw-tankless-propane.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-2stories-garage.xml,6.8,91.76,48000.0,36000.0,0.0,43900.0,7710.0,15016.0,0.0,575.0,9018.0,0.0,315.0,1768.0,2171.0,7327.0,26147.0,5055.0,14074.0,0.0,207.0,312.0,0.0,-101.0,0.0,2293.0,986.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-2stories.xml,6.8,91.76,48000.0,36000.0,0.0,46518.0,7741.0,15016.0,0.0,575.0,9467.0,0.0,0.0,2408.0,2171.0,9141.0,26728.0,5062.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2293.0,1230.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-1.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19373.0,6080.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,2860.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-2.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19609.0,6086.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3090.0,0.0,0.0,0.0,0.0 -base-enclosure-beds-4.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,20121.0,6138.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3550.0,332.0,0.0,-668.0,1000.0 -base-enclosure-beds-5.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,20365.0,6152.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3780.0,532.0,0.0,-668.0,1200.0 -base-enclosure-ceilingtypes.xml,6.8,91.76,36000.0,24000.0,0.0,45137.0,8943.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,14165.0,4699.0,32663.0,6240.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,14963.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-floortypes.xml,6.8,91.76,36000.0,24000.0,0.0,37755.0,8797.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2341.0,21075.0,6157.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 -base-enclosure-garage.xml,6.8,91.76,36000.0,24000.0,0.0,28943.0,6810.0,5506.0,0.0,575.0,6774.0,0.0,0.0,2408.0,2171.0,4699.0,12679.0,528.0,5579.0,0.0,207.0,122.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-infil-ach-house-pressure.xml,6.8,91.76,36000.0,24000.0,0.0,32882.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4697.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,630.0,3320.0,133.0,0.0,-667.0,800.0 -base-enclosure-infil-cfm-house-pressure.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-infil-cfm50.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-infil-ela.xml,6.8,91.76,36000.0,24000.0,0.0,38096.0,8804.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,9790.0,20562.0,6126.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1314.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-flue.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-infil-natural-ach.xml,6.8,91.76,36000.0,24000.0,0.0,37847.0,8799.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,9547.0,20529.0,6125.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1281.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-infil-natural-cfm.xml,6.8,91.76,36000.0,24000.0,0.0,37847.0,8799.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,9547.0,20529.0,6125.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1281.0,3320.0,0.0,0.0,0.0,0.0 -base-enclosure-orientations.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-overhangs.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-rooftypes.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-skylights-physical-properties.xml,6.8,91.76,36000.0,24000.0,0.0,35230.0,8735.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,24498.0,6173.0,7037.0,4572.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-skylights-shading.xml,6.8,91.76,36000.0,24000.0,0.0,33528.0,8702.0,7508.0,626.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,20618.0,6133.0,7037.0,732.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-skylights-storms.xml,6.8,91.76,36000.0,24000.0,0.0,33600.0,8704.0,7508.0,696.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,22679.0,6141.0,7037.0,2785.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-skylights.xml,6.8,91.76,36000.0,24000.0,0.0,33528.0,8702.0,7508.0,626.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,22899.0,6145.0,7037.0,3001.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-split-level.xml,6.8,91.76,36000.0,24000.0,0.0,29095.0,1695.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2716.0,13454.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2293.0,365.0,3320.0,414.0,0.0,-386.0,800.0 -base-enclosure-thermal-mass.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-walltypes.xml,6.8,91.76,36000.0,24000.0,0.0,35895.0,8752.0,918.0,0.0,575.0,16373.0,0.0,0.0,2408.0,2171.0,4699.0,15096.0,5979.0,979.0,0.0,207.0,1686.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-windows-natural-ventilation-availability.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-windows-none.xml,6.8,91.76,36000.0,24000.0,0.0,26129.0,8448.0,0.0,0.0,575.0,7829.0,0.0,0.0,2408.0,2171.0,4699.0,12717.0,5897.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-windows-physical-properties.xml,6.8,91.76,36000.0,24000.0,0.0,39310.0,8830.0,13788.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,22274.0,6155.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-windows-shading-seasons.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-windows-shading.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15748.0,5998.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-enclosure-windows-storms.xml,6.8,91.76,36000.0,24000.0,0.0,32033.0,8661.0,6680.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,18611.0,6087.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-foundation-ambient.xml,6.8,91.76,36000.0,24000.0,0.0,27866.0,8510.0,7508.0,0.0,575.0,2198.0,0.0,4563.0,0.0,2171.0,2341.0,20035.0,6144.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 -base-foundation-basement-garage.xml,6.8,91.76,36000.0,24000.0,0.0,31587.0,8648.0,7508.0,0.0,603.0,7269.0,0.0,318.0,1768.0,2171.0,3301.0,19420.0,6102.0,7037.0,0.0,198.0,128.0,0.0,-102.0,0.0,2293.0,443.0,3320.0,331.0,0.0,-469.0,800.0 -base-foundation-belly-wing-no-skirt.xml,6.8,91.76,36000.0,24000.0,0.0,21982.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2341.0,13083.0,799.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 -base-foundation-belly-wing-skirt.xml,6.8,91.76,36000.0,24000.0,0.0,21982.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2341.0,13083.0,799.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 -base-foundation-complex.xml,6.8,91.76,36000.0,24000.0,0.0,42766.0,8896.0,7508.0,0.0,575.0,15887.0,0.0,0.0,3031.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-foundation-conditioned-basement-slab-insulation-full.xml,6.8,91.76,36000.0,24000.0,0.0,32142.0,8664.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1685.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-foundation-conditioned-basement-slab-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,32142.0,8664.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1685.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-foundation-conditioned-basement-wall-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,36105.0,8758.0,7508.0,0.0,575.0,9987.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-foundation-conditioned-crawlspace.xml,6.8,91.76,36000.0,24000.0,0.0,22204.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,3315.0,2171.0,3519.0,13595.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,472.0,3320.0,300.0,0.0,-500.0,800.0 -base-foundation-multiple.xml,6.8,91.76,36000.0,24000.0,0.0,23267.0,4935.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2341.0,14577.0,236.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 -base-foundation-slab.xml,6.8,91.76,36000.0,24000.0,0.0,28719.0,1693.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2341.0,13403.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 -base-foundation-unconditioned-basement-above-grade.xml,6.8,91.76,36000.0,24000.0,0.0,23242.0,4944.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2341.0,14578.0,246.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 -base-foundation-unconditioned-basement-assembly-r.xml,6.8,91.76,36000.0,24000.0,0.0,21063.0,4883.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2341.0,14024.0,254.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 -base-foundation-unconditioned-basement-wall-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,24300.0,2059.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2341.0,15378.0,0.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 -base-foundation-unconditioned-basement.xml,6.8,91.76,36000.0,24000.0,0.0,23284.0,4945.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2341.0,14589.0,246.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 -base-foundation-unvented-crawlspace.xml,6.8,91.76,36000.0,24000.0,0.0,22059.0,5838.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2341.0,15478.0,1697.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 -base-foundation-vented-crawlspace-above-grade.xml,6.8,91.76,36000.0,24000.0,0.0,24712.0,7664.0,7508.0,0.0,575.0,2198.0,0.0,2255.0,0.0,2171.0,2341.0,16214.0,2213.0,7037.0,0.0,207.0,232.0,0.0,598.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 -base-foundation-vented-crawlspace.xml,6.8,91.76,36000.0,24000.0,0.0,24391.0,7352.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2341.0,16124.0,2126.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 -base-foundation-walkout-basement.xml,6.8,91.76,36000.0,24000.0,0.0,34876.0,8736.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2885.0,2171.0,6082.0,20239.0,6101.0,7234.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,819.0,3320.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml,6.8,91.76,44500.0,54035.0,28607.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,6.8,91.76,0.0,36000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,6.8,91.76,36000.0,0.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,6.8,91.76,68503.0,68503.0,0.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,6.8,91.76,18000.0,18000.0,60000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,6.8,91.76,18000.0,18000.0,60000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,6.8,91.76,18000.0,18000.0,60000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,6.8,91.76,44500.0,54035.0,60000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,6.8,91.76,18000.0,18000.0,60000.0,40470.0,16270.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,6.8,91.76,31786.0,31786.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,6.8,91.76,72000.0,72000.0,72000.0,38366.0,14166.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,32255.0,18502.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-autosize-sizing-controls.xml,0.0,100.0,32065.0,31213.0,0.0,32065.0,9149.0,7128.0,0.0,545.0,6493.0,0.0,0.0,2286.0,2061.0,4402.0,24088.0,6742.0,7422.0,0.0,318.0,951.0,0.0,0.0,0.0,2714.0,790.0,5150.0,2353.0,420.0,733.0,1200.0 -base-hvac-autosize.xml,6.8,91.76,32885.0,24630.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-boiler-coal-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-boiler-elec-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,6.8,91.76,36000.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-boiler-gas-only-pilot.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-boiler-gas-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-boiler-oil-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-boiler-propane-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-boiler-wood-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-central-ac-only-1-speed-autosize-factor.xml,6.8,91.76,0.0,41870.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-central-ac-only-1-speed-seer2.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-central-ac-only-1-speed.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-central-ac-only-2-speed.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,6.8,91.76,0.0,24120.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-central-ac-only-var-speed-detailed-performance.xml,6.8,91.76,0.0,36000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-central-ac-only-var-speed.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,6.8,91.76,36000.0,24000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 diff --git a/hpxml-measures/workflow/tests/base_results/results_simulations1_loads.csv b/hpxml-measures/workflow/tests/base_results/results_simulations1_loads.csv deleted file mode 100644 index 3b564a8cf..000000000 --- a/hpxml-measures/workflow/tests/base_results/results_simulations1_loads.csv +++ /dev/null @@ -1,221 +0,0 @@ -HPXML,Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu) -base-appliances-coal.xml,21.477,0.0,14.288,9.071,0.614,0.0,0.0,0.0,3.54,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.311,-0.069,5.131,0.0,0.486,0.0,4.793,-8.29,-2.488,0.0,-0.064,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.17,-3.846,-0.109,0.0,3.149,8.28,2.02 -base-appliances-dehumidifier-ief-portable.xml,1.637,0.0,30.837,6.557,0.574,0.0,0.0,0.0,1.741,1.63,0.0,0.0,0.385,4.852,-5.133,0.0,0.0,0.0,1.255,-0.393,1.062,0.205,0.398,0.0,0.045,-3.911,-0.794,0.0,0.557,0.011,0.0,0.0,0.21,2.871,17.037,0.0,0.0,0.0,1.915,-0.388,-0.196,-2.234,-0.081,0.0,0.474,8.955,1.852 -base-appliances-dehumidifier-ief-whole-home.xml,1.621,0.0,30.81,6.557,0.574,0.0,0.0,0.0,1.749,1.636,0.0,0.0,0.388,4.875,-5.151,0.0,0.0,0.0,1.266,-0.397,1.066,0.215,0.399,0.0,0.045,-3.965,-0.799,0.0,0.566,0.017,0.0,0.0,0.213,2.895,17.02,0.0,0.0,0.0,1.926,-0.392,-0.192,-2.226,-0.08,0.0,0.474,8.902,1.846 -base-appliances-dehumidifier-multiple.xml,1.686,0.0,30.807,6.557,0.574,0.0,0.0,0.0,1.732,1.622,0.0,0.0,0.384,4.836,-5.121,0.0,0.0,0.0,1.238,-0.398,1.059,0.199,0.396,0.0,0.046,-3.808,-0.793,0.0,0.552,0.007,0.0,0.0,0.21,2.867,17.05,0.0,0.0,0.0,1.91,-0.392,-0.197,-2.225,-0.082,0.0,0.474,8.937,1.853 -base-appliances-dehumidifier.xml,1.627,0.0,30.778,6.557,0.574,0.0,0.0,0.0,1.747,1.635,0.0,0.0,0.388,4.887,-5.145,0.0,0.0,0.0,1.251,-0.405,1.068,0.221,0.4,0.0,0.045,-3.952,-0.8,0.0,0.565,0.019,0.0,0.0,0.214,2.914,17.026,0.0,0.0,0.0,1.92,-0.399,-0.189,-2.218,-0.079,0.0,0.474,8.866,1.845 -base-appliances-freezer-temperature-dependent-schedule.xml,21.464,0.0,14.409,9.071,0.614,0.0,0.0,0.0,3.542,3.644,0.513,7.524,0.631,10.102,-12.69,0.0,0.0,0.0,8.312,-0.066,4.978,0.0,0.728,0.0,4.788,-8.39,-2.488,0.0,-0.066,-0.453,-0.05,2.709,-0.023,-1.371,11.724,0.0,0.0,0.0,-6.301,-0.062,-1.132,-3.87,-0.163,0.0,3.164,8.469,2.019 -base-appliances-gas.xml,21.477,0.0,14.288,9.071,0.614,0.0,0.0,0.0,3.54,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.311,-0.069,5.131,0.0,0.486,0.0,4.793,-8.29,-2.488,0.0,-0.064,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.17,-3.846,-0.109,0.0,3.149,8.28,2.02 -base-appliances-modified.xml,21.195,0.0,14.381,9.633,0.614,0.0,0.0,0.0,3.544,3.645,0.513,7.527,0.631,10.108,-12.683,0.0,0.0,0.0,8.318,-0.069,5.495,0.0,0.0,0.0,4.738,-8.425,-2.487,0.0,-0.067,-0.454,-0.05,2.707,-0.023,-1.369,11.73,0.0,0.0,0.0,-6.304,-0.065,-1.273,-3.866,0.0,0.0,3.163,8.416,2.02 -base-appliances-none.xml,23.693,0.0,12.572,7.75,0.616,0.0,0.0,0.0,3.505,3.621,0.509,7.456,0.627,10.045,-12.705,0.0,0.0,0.0,8.235,-0.065,5.494,0.0,0.0,0.0,5.232,-6.091,-2.491,0.0,-0.001,-0.404,-0.043,2.854,-0.01,-1.212,11.708,0.0,0.0,0.0,-6.068,-0.06,-1.226,-3.554,0.0,0.0,2.83,5.921,2.016 -base-appliances-oil.xml,21.477,0.0,14.288,9.071,0.614,0.0,0.0,0.0,3.54,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.311,-0.069,5.131,0.0,0.486,0.0,4.793,-8.29,-2.488,0.0,-0.064,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.17,-3.846,-0.109,0.0,3.149,8.28,2.02 -base-appliances-propane.xml,21.477,0.0,14.288,9.071,0.614,0.0,0.0,0.0,3.54,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.311,-0.069,5.131,0.0,0.486,0.0,4.793,-8.29,-2.488,0.0,-0.064,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.17,-3.846,-0.109,0.0,3.149,8.28,2.02 -base-appliances-refrigerator-temperature-dependent-schedule.xml,22.103,0.0,13.916,9.071,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 -base-appliances-wood.xml,21.477,0.0,14.288,9.071,0.614,0.0,0.0,0.0,3.54,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.311,-0.069,5.131,0.0,0.486,0.0,4.793,-8.29,-2.488,0.0,-0.064,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.17,-3.846,-0.109,0.0,3.149,8.28,2.02 -base-atticroof-cathedral.xml,25.005,0.0,13.249,9.071,0.616,0.0,0.0,6.774,0.0,4.233,0.513,7.48,0.634,12.699,-15.652,0.0,0.0,0.0,8.32,-0.094,9.33,0.0,0.729,0.0,0.0,-7.833,-2.496,0.175,0.0,-0.482,-0.045,2.788,-0.012,-1.107,15.648,0.0,0.0,0.0,-6.288,-0.069,-2.029,-4.695,-0.155,0.0,0.0,7.745,2.012 -base-atticroof-conditioned.xml,22.438,0.0,16.445,9.019,0.614,0.0,0.0,4.565,1.167,5.562,0.519,7.664,0.637,14.496,-17.102,0.0,0.0,0.0,8.521,-0.089,7.161,0.0,0.731,0.0,0.343,-8.985,-3.17,0.007,0.021,-0.563,-0.053,2.686,-0.028,-1.671,18.202,0.0,0.0,0.0,-6.374,-0.083,-1.663,-5.275,-0.165,0.0,0.103,8.989,2.578 -base-atticroof-flat.xml,19.226,0.0,11.318,9.071,0.616,0.0,0.0,6.035,0.0,3.612,0.508,7.441,0.624,10.017,-12.688,0.0,0.0,0.0,8.192,-0.08,4.799,0.0,0.726,0.0,0.0,-7.799,-2.489,0.324,0.0,-0.434,-0.048,2.771,-0.018,-1.311,11.72,0.0,0.0,0.0,-6.201,-0.055,-1.126,-3.734,-0.16,0.0,0.0,7.781,2.018 -base-atticroof-radiant-barrier-ceiling.xml,4.846,0.0,33.487,6.557,0.582,0.0,0.0,0.0,7.07,1.549,0.0,0.0,0.334,4.333,-6.058,0.0,0.0,0.0,0.631,-0.423,1.048,0.0,0.401,0.0,0.131,-3.502,-0.871,0.0,3.82,0.175,0.0,0.0,0.218,3.049,16.138,0.0,0.0,0.0,2.05,-0.414,-0.084,-1.995,-0.036,0.0,0.521,8.571,1.775 -base-atticroof-radiant-barrier.xml,4.16,0.0,32.152,6.557,0.581,0.0,0.0,0.0,5.954,1.571,0.0,0.0,0.333,4.338,-5.951,0.0,0.0,0.0,0.81,-0.365,1.037,0.0,0.397,0.0,0.113,-3.442,-0.856,0.0,2.404,0.166,0.0,0.0,0.21,2.976,16.22,0.0,0.0,0.0,2.138,-0.358,-0.119,-2.068,-0.046,0.0,0.501,8.634,1.79 -base-atticroof-unvented-insulated-roof.xml,22.082,0.0,11.714,9.071,0.616,0.0,0.0,0.0,5.662,3.62,0.509,7.455,0.626,10.045,-12.698,0.0,0.0,0.0,8.251,-0.07,4.976,0.0,0.728,0.0,2.958,-7.81,-2.491,0.0,-1.589,-0.398,-0.042,2.873,-0.009,-1.197,11.715,0.0,0.0,0.0,-6.022,-0.061,-1.085,-3.506,-0.157,0.0,1.619,7.768,2.016 -base-atticroof-vented.xml,22.697,0.0,12.597,9.071,0.803,0.0,0.0,0.0,3.878,3.633,0.511,7.49,0.629,10.078,-12.698,0.0,0.0,0.0,8.277,-0.066,5.271,0.0,0.727,0.0,4.615,-7.473,-2.49,0.0,-0.514,-0.424,-0.046,2.791,-0.015,-1.275,11.715,0.0,0.0,0.0,-6.171,-0.062,-1.09,-3.675,-0.16,0.0,2.219,7.491,2.017 -base-battery-scheduled.xml,22.103,0.0,13.916,9.071,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 -base-battery.xml,22.103,0.0,13.916,9.071,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 -base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,11.476,0.0,3.042,9.37,0.731,0.0,0.0,0.0,2.942,3.647,0.0,0.0,0.585,1.315,-1.598,0.0,0.0,2.977,0.0,-0.049,1.674,0.0,0.0,0.0,4.651,-3.529,-1.183,0.0,-0.891,-0.194,0.0,0.0,-0.044,-0.088,1.304,0.0,0.0,-0.905,0.0,-0.046,-0.267,-0.402,0.0,0.0,0.694,3.087,0.843 -base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml,0.0,0.0,0.0,9.37,0.62,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,6.818,0.0,5.159,9.37,0.612,0.0,0.0,0.0,-0.005,3.292,0.0,0.0,1.39,3.735,-4.234,0.0,0.0,4.543,0.0,-0.086,1.253,0.0,0.791,0.0,2.678,-5.509,-1.139,0.0,-0.001,-0.416,0.0,0.0,-0.396,-0.133,3.971,0.0,0.0,-2.921,0.0,-0.082,-0.23,-1.205,-0.123,0.0,0.612,5.301,0.886 -base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,23.28,0.0,2.559,9.37,0.818,0.0,0.0,0.0,5.379,4.201,0.0,0.0,0.793,1.293,-1.714,0.0,0.0,5.429,0.0,-0.077,1.706,0.0,0.0,0.0,11.218,-3.736,-1.243,0.0,-1.133,-0.026,0.0,0.0,-0.042,0.011,1.188,0.0,0.0,-1.14,0.0,-0.074,-0.178,-0.296,0.0,0.0,0.659,2.88,0.782 -base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,1.69,0.0,3.151,9.37,0.637,0.0,0.0,0.0,0.284,3.112,0.0,0.0,0.367,1.367,-1.509,0.0,0.0,0.306,0.0,-0.01,1.682,0.0,0.0,0.0,0.469,-3.319,-1.118,0.0,-0.795,-0.417,0.0,0.0,-0.066,-0.199,1.393,0.0,0.0,-0.811,0.0,-0.007,-0.374,-0.455,0.0,0.0,0.717,3.297,0.907 -base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,1.456,0.0,4.979,9.37,0.593,0.0,0.0,0.0,-0.003,3.151,0.0,0.0,0.363,1.418,-1.434,0.0,0.0,-0.003,0.0,-0.056,1.741,0.0,0.0,0.0,0.407,-3.11,-1.046,0.0,-0.001,-0.487,0.0,0.0,-0.03,-0.32,1.468,0.0,0.0,-0.001,0.0,-0.054,-0.481,-0.645,0.0,0.0,1.081,3.506,0.979 -base-bldgtype-mf-unit-infil-compartmentalization-test.xml,0.706,0.0,8.666,9.37,0.579,0.0,0.0,0.0,-0.017,2.483,0.0,0.0,0.423,3.952,-2.673,0.0,0.0,-0.013,0.0,-0.407,0.996,0.0,0.688,0.0,0.0,-4.03,-0.784,0.0,-0.012,-1.036,0.0,0.0,-0.034,-1.029,5.529,0.0,0.0,-0.009,0.0,-0.397,-0.369,-1.611,-0.367,0.0,0.0,6.855,1.241 -base-bldgtype-mf-unit-residents-1.xml,1.303,0.0,6.943,4.142,0.587,0.0,0.0,0.0,-0.017,2.598,0.0,0.0,0.419,4.075,-3.114,0.0,0.0,-0.015,0.0,-0.34,1.299,0.0,0.747,0.0,0.0,-3.477,-0.932,0.0,-0.012,-0.773,0.0,0.0,-0.01,-0.677,5.088,0.0,0.0,-0.011,0.0,-0.333,-0.386,-1.448,-0.27,0.0,0.0,4.749,1.093 -base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.016,2.517,0.0,0.0,0.421,3.977,-2.775,0.0,0.0,-0.014,0.0,-0.389,1.285,0.0,0.701,0.0,0.0,-4.142,-0.813,0.0,-0.012,-0.979,0.0,0.0,-0.031,-0.967,5.427,0.0,0.0,-0.009,0.0,-0.38,-0.462,-1.595,-0.347,0.0,0.0,6.739,1.212 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,0.883,0.0,9.857,9.37,0.58,0.0,0.0,0.0,-0.016,2.515,0.0,0.0,0.42,3.963,-2.776,0.0,0.0,-0.013,0.0,-0.388,1.285,0.0,0.699,0.0,0.048,-4.125,-0.809,0.0,-0.011,-0.982,0.0,0.0,-0.032,-0.982,5.426,0.0,0.0,-0.008,0.0,-0.379,-0.472,-1.604,-0.349,0.0,1.366,6.756,1.216 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.016,2.517,0.0,0.0,0.421,3.977,-2.775,0.0,0.0,-0.014,0.0,-0.389,1.285,0.0,0.701,0.0,0.0,-4.142,-0.813,0.0,-0.012,-0.979,0.0,0.0,-0.031,-0.967,5.427,0.0,0.0,-0.009,0.0,-0.38,-0.462,-1.595,-0.347,0.0,0.0,6.739,1.212 -base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,0.851,0.0,9.857,9.37,0.58,0.0,0.0,0.0,-0.016,2.515,0.0,0.0,0.42,3.963,-2.776,0.0,0.0,-0.013,0.0,-0.388,1.283,0.0,0.699,0.0,0.018,-4.125,-0.809,0.0,-0.011,-0.982,0.0,0.0,-0.032,-0.982,5.426,0.0,0.0,-0.008,0.0,-0.379,-0.472,-1.604,-0.349,0.0,1.366,6.756,1.216 -base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,0.851,0.0,9.857,9.37,0.58,0.0,0.0,0.0,-0.016,2.515,0.0,0.0,0.42,3.963,-2.776,0.0,0.0,-0.013,0.0,-0.388,1.283,0.0,0.699,0.0,0.018,-4.125,-0.809,0.0,-0.011,-0.982,0.0,0.0,-0.032,-0.982,5.426,0.0,0.0,-0.008,0.0,-0.379,-0.472,-1.604,-0.349,0.0,1.366,6.756,1.216 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.863,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,0.763,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.862,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.642,0.0,0.957,0.0,0.043,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.863,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.862,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.863,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,0.736,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.862,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.017,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,0.0,0.0,8.399,9.37,0.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-0.93,0.0,0.0,-0.036,-0.964,5.279,0.0,0.0,-0.006,0.0,-0.329,-0.455,-1.589,-0.335,0.0,0.0,6.659,1.189 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,0.0,0.0,9.735,9.37,0.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-0.932,0.0,0.0,-0.037,-0.978,5.279,0.0,0.0,-0.005,0.0,-0.327,-0.465,-1.598,-0.337,0.0,1.355,6.675,1.193 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,0.0,0.0,8.399,9.37,0.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-0.93,0.0,0.0,-0.036,-0.964,5.279,0.0,0.0,-0.006,0.0,-0.329,-0.455,-1.589,-0.335,0.0,0.0,6.659,1.189 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,0.0,0.0,9.735,9.37,0.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-0.932,0.0,0.0,-0.037,-0.978,5.279,0.0,0.0,-0.005,0.0,-0.327,-0.465,-1.598,-0.337,0.0,1.355,6.675,1.193 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,0.0,0.0,9.735,9.37,0.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-0.932,0.0,0.0,-0.037,-0.978,5.279,0.0,0.0,-0.005,0.0,-0.327,-0.465,-1.598,-0.337,0.0,1.355,6.675,1.193 -base-bldgtype-mf-unit-shared-generator.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.017,2.516,0.0,0.0,0.421,3.975,-2.774,0.0,0.0,-0.014,0.0,-0.389,1.285,0.0,0.7,0.0,0.0,-4.14,-0.813,0.0,-0.012,-0.981,0.0,0.0,-0.031,-0.969,5.429,0.0,0.0,-0.009,0.0,-0.38,-0.462,-1.595,-0.348,0.0,0.0,6.741,1.212 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,0.831,0.0,8.51,9.37,0.581,0.0,0.0,0.0,-0.016,2.518,0.0,0.0,0.421,3.978,-2.778,0.0,0.0,-0.013,0.0,-0.388,1.286,0.0,0.702,0.0,0.0,-4.146,-0.814,0.0,-0.012,-0.978,0.0,0.0,-0.031,-0.966,5.424,0.0,0.0,-0.009,0.0,-0.379,-0.461,-1.595,-0.347,0.0,0.0,6.736,1.211 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,0.762,0.0,8.777,9.37,2.28,0.0,0.0,0.0,-0.018,2.472,0.0,0.0,0.423,3.953,-2.683,0.0,0.0,-0.014,0.0,-0.418,2.053,0.0,0.0,0.0,0.0,-4.286,-0.791,0.0,-0.013,-1.035,0.0,0.0,-0.031,-1.009,5.519,0.0,0.0,-0.01,0.0,-0.409,-0.842,-1.625,0.0,0.0,0.0,7.093,1.235 -base-bldgtype-mf-unit-shared-laundry-room.xml,0.96,0.0,8.112,9.37,0.573,0.0,0.0,0.0,-0.017,2.532,0.0,0.0,0.42,3.988,-2.868,0.0,0.0,-0.014,0.0,-0.389,2.074,0.0,0.0,0.0,0.0,-3.993,-0.837,0.0,-0.012,-0.932,0.0,0.0,-0.026,-0.906,5.334,0.0,0.0,-0.009,0.0,-0.38,-0.78,-1.56,0.0,0.0,0.0,6.276,1.189 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,8.171,0.0,4.987,9.37,0.617,0.0,0.0,0.0,-0.018,2.764,0.0,0.0,0.405,4.178,-4.251,0.0,0.0,-0.023,0.0,-0.281,0.208,0.0,12.313,0.0,0.0,-5.847,-1.19,0.0,-0.015,-0.128,0.0,0.0,0.065,0.17,3.951,0.0,0.0,-0.019,0.0,-0.275,-0.015,-0.708,-3.999,0.0,0.0,4.95,0.835 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1.391,0.0,7.197,9.37,0.589,0.0,0.0,0.0,-0.017,2.648,0.0,0.0,0.426,4.135,-3.177,0.0,0.0,-0.016,0.0,-0.347,1.421,0.0,1.916,0.0,0.0,-4.68,-0.944,0.0,-0.013,-0.708,0.0,0.0,-0.0,-0.588,5.025,0.0,0.0,-0.012,0.0,-0.339,-0.385,-1.325,-1.703,0.0,0.0,6.182,1.081 -base-bldgtype-mf-unit-shared-mechvent.xml,3.671,0.0,6.944,9.37,0.599,0.0,0.0,0.0,-0.014,2.678,0.0,0.0,0.393,4.005,-3.675,0.0,0.0,-0.016,0.0,-0.241,1.392,0.0,5.294,0.0,0.0,-5.066,-1.041,0.0,-0.011,-0.524,0.0,0.0,-0.004,-0.475,4.528,0.0,0.0,-0.012,0.0,-0.235,-0.31,-1.324,-1.449,0.0,0.0,5.774,0.985 -base-bldgtype-mf-unit-shared-pv-battery.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.017,2.516,0.0,0.0,0.421,3.975,-2.774,0.0,0.0,-0.014,0.0,-0.389,1.285,0.0,0.7,0.0,0.0,-4.14,-0.813,0.0,-0.012,-0.981,0.0,0.0,-0.031,-0.969,5.429,0.0,0.0,-0.009,0.0,-0.38,-0.462,-1.595,-0.348,0.0,0.0,6.741,1.212 -base-bldgtype-mf-unit-shared-pv.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.017,2.516,0.0,0.0,0.421,3.975,-2.774,0.0,0.0,-0.014,0.0,-0.389,1.285,0.0,0.7,0.0,0.0,-4.14,-0.813,0.0,-0.012,-0.981,0.0,0.0,-0.031,-0.969,5.429,0.0,0.0,-0.009,0.0,-0.38,-0.462,-1.595,-0.348,0.0,0.0,6.741,1.212 -base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,2.57,0.0,5.379,9.44,0.282,0.0,0.0,0.0,-0.015,2.661,0.0,0.0,0.374,3.88,-3.845,0.0,0.0,-0.016,0.0,-0.229,1.255,0.0,0.763,0.0,0.0,-1.529,-1.027,0.0,-0.012,-0.484,0.0,0.0,-0.012,-0.521,4.357,0.0,0.0,-0.013,0.0,-0.223,-0.311,-1.2,-0.195,0.0,0.0,3.187,0.998 -base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml,1.642,0.0,6.509,2.731,0.581,0.0,0.0,0.0,-0.017,2.632,0.0,0.0,0.416,4.091,-3.284,0.0,0.0,-0.017,0.0,-0.32,1.631,0.0,0.759,0.0,0.0,-3.311,-0.975,0.0,-0.013,-0.69,0.0,0.0,-0.004,-0.584,4.919,0.0,0.0,-0.013,0.0,-0.313,-0.46,-1.388,-0.241,0.0,0.0,4.294,1.05 -base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,1.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,-0.016,2.547,0.0,0.0,0.419,3.996,-2.907,0.0,0.0,-0.013,0.0,-0.377,1.61,0.0,0.715,0.0,0.0,-4.18,-0.845,0.0,-0.012,-0.915,0.0,0.0,-0.026,-0.894,5.295,0.0,0.0,-0.009,0.0,-0.369,-0.566,-1.562,-0.323,0.0,0.0,6.487,1.18 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,1.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,-0.016,2.547,0.0,0.0,0.419,3.996,-2.907,0.0,0.0,-0.013,0.0,-0.377,1.61,0.0,0.715,0.0,0.0,-4.18,-0.845,0.0,-0.012,-0.915,0.0,0.0,-0.026,-0.894,5.295,0.0,0.0,-0.009,0.0,-0.369,-0.566,-1.562,-0.323,0.0,0.0,6.487,1.18 -base-bldgtype-mf-unit-shared-water-heater.xml,1.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,-0.016,2.547,0.0,0.0,0.419,3.996,-2.907,0.0,0.0,-0.013,0.0,-0.377,1.61,0.0,0.715,0.0,0.0,-4.18,-0.845,0.0,-0.012,-0.915,0.0,0.0,-0.026,-0.894,5.295,0.0,0.0,-0.009,0.0,-0.369,-0.566,-1.562,-0.323,0.0,0.0,6.487,1.18 -base-bldgtype-mf-unit.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.017,2.516,0.0,0.0,0.421,3.975,-2.774,0.0,0.0,-0.014,0.0,-0.389,1.285,0.0,0.7,0.0,0.0,-4.14,-0.813,0.0,-0.012,-0.981,0.0,0.0,-0.031,-0.969,5.429,0.0,0.0,-0.009,0.0,-0.38,-0.462,-1.595,-0.348,0.0,0.0,6.741,1.212 -base-bldgtype-mf-whole-building.xml,34.234,0.0,50.758,55.316,3.606,0.0,0.0,0.0,7.768,18.937,0.0,0.0,2.279,27.645,-27.459,0.0,0.0,7.747,0.0,-1.267,56.52,0.0,0.0,0.0,0.0,-50.237,-7.691,0.0,-1.08,-3.267,0.0,0.0,-0.061,-3.866,29.904,0.0,0.0,-3.845,0.0,-1.242,-13.477,-10.141,0.0,0.0,0.0,51.001,6.95 -base-bldgtype-sfa-unit-2stories.xml,16.605,0.0,9.991,9.106,0.615,0.0,0.0,0.0,2.415,5.063,0.297,4.365,0.638,7.116,-8.592,0.0,0.0,0.0,5.004,-0.07,7.16,0.0,0.729,0.0,2.528,-7.795,-2.489,0.0,0.001,-0.627,-0.025,1.637,-0.014,-1.0,7.905,0.0,0.0,0.0,-3.945,-0.066,-1.645,-3.207,-0.159,0.0,1.436,7.786,2.018 -base-bldgtype-sfa-unit-atticroof-cathedral.xml,57.361,0.0,15.98,9.106,0.623,0.0,0.0,49.493,0.0,2.937,0.289,3.687,0.667,4.711,-5.326,0.0,0.0,0.0,3.418,-0.85,7.541,0.0,0.772,0.0,0.0,-8.484,-2.669,8.562,0.0,-0.155,0.004,1.537,0.121,0.039,5.084,0.0,0.0,0.0,-4.273,-0.813,-0.842,-1.316,-0.093,0.0,0.0,7.077,1.838 -base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,12.953,0.0,7.827,9.221,0.615,0.0,0.0,0.0,2.321,2.366,0.292,4.233,0.624,3.566,-4.314,0.0,0.0,0.0,4.672,-0.047,3.18,0.0,0.726,0.0,3.591,-6.595,-1.805,0.0,0.017,-0.275,-0.026,1.588,-0.017,-0.583,3.96,0.0,0.0,0.0,-4.037,-0.045,-0.748,-1.558,-0.163,0.0,1.727,6.598,1.461 -base-bldgtype-sfa-unit.xml,12.953,0.0,7.827,9.221,0.615,0.0,0.0,0.0,2.321,2.366,0.292,4.233,0.624,3.566,-4.314,0.0,0.0,0.0,4.672,-0.047,3.18,0.0,0.726,0.0,3.591,-6.595,-1.805,0.0,0.017,-0.275,-0.026,1.588,-0.017,-0.583,3.96,0.0,0.0,0.0,-4.037,-0.045,-0.748,-1.558,-0.163,0.0,1.727,6.598,1.461 -base-dhw-combi-tankless-outside.xml,17.356,0.0,0.0,9.173,0.0,0.0,0.0,0.0,3.738,3.637,0.512,7.48,0.63,10.095,-12.691,0.0,0.0,0.0,8.132,-0.074,4.808,0.0,0.728,0.0,0.0,-7.471,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,18.411,0.0,0.0,9.173,0.0,0.0,0.0,0.0,3.736,3.635,0.512,7.475,0.63,10.086,-12.693,0.0,0.0,0.0,8.135,-0.071,5.887,0.0,0.727,0.0,0.0,-7.472,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,0.0,0.0,14.826,9.07,0.666,2.842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.096,-0.443,-0.048,2.737,-0.025,-1.365,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.135,-3.695,-0.162,0.0,3.76,8.507,2.042 -base-dhw-desuperheater-gshp.xml,21.743,0.0,13.634,9.069,0.614,2.868,0.0,0.0,3.554,3.636,0.512,7.502,0.629,10.081,-12.691,0.0,0.0,0.0,8.284,-0.065,4.944,0.0,0.727,0.0,4.278,-7.483,-2.489,0.0,-0.006,-0.44,-0.048,2.752,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.238,-0.062,-1.126,-3.815,-0.161,0.0,2.178,8.389,2.018 -base-dhw-desuperheater-hpwh.xml,26.287,0.0,14.371,9.081,1.812,2.945,0.0,0.0,3.499,3.631,0.511,7.486,0.626,10.057,-12.745,0.0,0.0,0.0,8.314,-0.056,5.011,0.0,0.726,0.0,5.714,-4.329,-2.497,0.0,-0.013,-0.395,-0.042,2.895,-0.01,-1.196,11.668,0.0,0.0,0.0,-6.005,-0.053,-1.071,-3.58,-0.152,0.0,3.133,7.486,2.01 -base-dhw-desuperheater-tankless.xml,0.0,0.0,14.239,9.076,0.0,2.871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.072,-0.437,-0.047,2.753,-0.023,-1.347,11.85,0.0,0.0,0.0,-6.846,-0.067,-1.132,-3.656,-0.161,0.0,3.328,8.236,2.042 -base-dhw-desuperheater-var-speed.xml,0.0,0.0,15.801,9.069,0.666,2.895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.143,-0.443,-0.048,2.737,-0.025,-1.364,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.139,-3.703,-0.162,0.0,4.782,8.522,2.042 -base-dhw-desuperheater.xml,0.0,0.0,14.459,9.069,0.666,2.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.443,-0.048,2.736,-0.025,-1.366,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.139,-3.698,-0.162,0.0,3.368,8.529,2.042 -base-dhw-dwhr.xml,22.103,0.0,13.916,6.631,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 -base-dhw-indirect-detailed-setpoints.xml,17.154,0.0,0.0,9.095,2.376,0.0,0.0,0.0,3.74,3.64,0.512,7.489,0.63,10.094,-12.689,0.0,0.0,0.0,8.132,-0.069,5.893,0.0,0.728,0.0,0.0,-8.792,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-dse.xml,17.197,0.0,0.0,9.098,2.279,0.0,0.0,0.0,3.74,3.639,0.512,7.488,0.63,10.097,-12.683,0.0,0.0,0.0,8.132,-0.072,5.893,0.0,0.728,0.0,0.0,-8.752,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-outside.xml,17.356,0.0,0.0,9.101,3.299,0.0,0.0,0.0,3.738,3.637,0.512,7.48,0.63,10.095,-12.691,0.0,0.0,0.0,8.132,-0.074,4.808,0.0,0.728,0.0,0.0,-7.471,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,16.973,0.0,0.0,9.1,2.704,0.0,0.0,0.0,3.739,3.639,0.512,7.49,0.63,10.097,-12.676,0.0,0.0,0.0,8.128,-0.072,5.894,0.0,0.728,0.0,0.0,-8.988,-2.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,17.989,0.0,0.0,9.076,0.787,0.0,5.9,0.0,3.737,3.636,0.512,7.479,0.63,10.092,-12.691,0.0,0.0,0.0,8.134,-0.073,5.89,0.0,0.727,0.0,0.0,-7.917,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,17.197,0.0,0.0,9.098,2.279,0.0,0.0,0.0,3.74,3.639,0.512,7.488,0.63,10.097,-12.683,0.0,0.0,0.0,8.132,-0.072,5.893,0.0,0.728,0.0,0.0,-8.752,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,22.307,0.0,13.809,9.071,0.296,0.0,0.0,0.0,3.529,3.637,0.512,7.504,0.629,10.084,-12.691,0.0,0.0,0.0,8.289,-0.066,4.982,0.0,0.728,0.0,4.957,-7.626,-2.489,0.0,-0.047,-0.438,-0.048,2.756,-0.019,-1.322,11.723,0.0,0.0,0.0,-6.23,-0.062,-1.118,-3.761,-0.161,0.0,3.06,7.636,2.018 -base-dhw-jacket-gas.xml,22.656,0.0,14.215,9.071,2.729,0.0,0.0,0.0,3.526,3.638,0.512,7.507,0.63,10.086,-12.69,0.0,0.0,0.0,8.294,-0.066,6.048,0.0,0.727,0.0,5.034,-8.434,-2.488,0.0,-0.054,-0.442,-0.049,2.749,-0.02,-1.331,11.724,0.0,0.0,0.0,-6.24,-0.062,-1.395,-3.79,-0.162,0.0,3.139,8.313,2.019 -base-dhw-jacket-hpwh.xml,26.318,0.0,12.096,9.122,1.311,0.0,0.0,0.0,3.497,3.631,0.511,7.486,0.626,10.051,-12.749,0.0,0.0,0.0,8.317,-0.051,5.01,0.0,0.726,0.0,5.714,-4.295,-2.497,0.0,0.016,-0.387,-0.041,2.918,-0.008,-1.179,11.664,0.0,0.0,0.0,-5.969,-0.047,-1.065,-3.402,-0.15,0.0,2.743,5.313,2.01 -base-dhw-jacket-indirect.xml,17.387,0.0,0.0,9.097,1.921,0.0,0.0,0.0,3.74,3.639,0.512,7.487,0.63,10.092,-12.69,0.0,0.0,0.0,8.133,-0.069,5.892,0.0,0.728,0.0,0.0,-8.551,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,22.103,0.0,13.916,8.834,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 -base-dhw-multiple.xml,17.564,0.0,0.0,9.062,2.83,0.0,5.89,0.0,3.737,3.637,0.512,7.485,0.63,10.096,-12.685,0.0,0.0,0.0,8.137,-0.073,5.892,0.0,0.728,0.0,0.0,-8.376,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,22.447,0.0,13.552,0.0,0.0,0.0,0.0,0.0,3.526,3.635,0.512,7.498,0.629,10.081,-12.696,0.0,0.0,0.0,8.284,-0.066,5.493,0.0,0.0,0.0,4.986,-7.268,-2.489,0.0,-0.039,-0.433,-0.047,2.771,-0.018,-1.304,11.717,0.0,0.0,0.0,-6.204,-0.062,-1.252,-3.726,0.0,0.0,3.009,7.299,2.018 -base-dhw-recirc-demand-scheduled.xml,22.103,0.0,13.916,9.013,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 -base-dhw-recirc-demand.xml,22.103,0.0,13.916,9.013,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 -base-dhw-recirc-manual.xml,22.103,0.0,13.916,9.013,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 -base-dhw-recirc-nocontrol.xml,22.103,0.0,13.916,9.105,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 -base-dhw-recirc-temperature.xml,22.103,0.0,13.916,9.105,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 -base-dhw-recirc-timer.xml,22.103,0.0,13.916,9.105,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 -base-dhw-solar-direct-evacuated-tube.xml,22.103,0.0,13.93,9.094,0.628,0.0,6.634,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.783,-0.162,0.0,3.081,7.796,2.018 -base-dhw-solar-direct-flat-plate.xml,22.094,0.0,13.98,9.208,0.696,0.0,8.354,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.982,0.0,0.728,0.0,4.914,-7.808,-2.489,0.0,-0.051,-0.441,-0.049,2.746,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.122,-3.79,-0.162,0.0,3.09,7.855,2.018 -base-dhw-solar-direct-ics.xml,22.103,0.0,13.953,9.131,0.65,0.0,6.625,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.121,-3.784,-0.162,0.0,3.085,7.817,2.018 -base-dhw-solar-fraction.xml,22.359,0.0,13.782,9.071,0.215,0.0,5.896,0.0,3.528,3.637,0.512,7.504,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.066,4.982,0.0,0.727,0.0,4.967,-7.582,-2.489,0.0,-0.046,-0.438,-0.048,2.758,-0.019,-1.32,11.723,0.0,0.0,0.0,-6.228,-0.062,-1.118,-3.756,-0.161,0.0,3.056,7.599,2.018 -base-dhw-solar-indirect-flat-plate.xml,21.755,0.0,14.408,9.186,0.684,0.0,8.35,0.0,3.536,3.64,0.512,7.512,0.63,10.09,-12.69,0.0,0.0,0.0,8.295,-0.066,4.981,0.0,0.728,0.0,4.847,-8.112,-2.488,0.0,-0.06,-0.447,-0.049,2.727,-0.022,-1.353,11.724,0.0,0.0,0.0,-6.272,-0.062,-1.13,-3.852,-0.163,0.0,3.165,8.373,2.019 -base-dhw-solar-thermosyphon-flat-plate.xml,22.095,0.0,13.977,9.2,0.691,0.0,8.316,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.982,0.0,0.728,0.0,4.915,-7.807,-2.489,0.0,-0.051,-0.441,-0.049,2.746,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.121,-3.789,-0.162,0.0,3.089,7.851,2.018 -base-dhw-tank-coal.xml,22.281,0.0,14.415,9.071,3.628,0.0,0.0,0.0,3.529,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.292,-0.066,6.046,0.0,0.727,0.0,4.959,-8.75,-2.488,0.0,-0.06,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.402,-3.827,-0.163,0.0,3.173,8.587,2.02 -base-dhw-tank-detailed-setpoints.xml,22.097,0.0,13.919,9.045,0.624,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.915,-7.803,-2.489,0.0,-0.05,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.121,-3.783,-0.162,0.0,3.079,7.788,2.018 -base-dhw-tank-elec-uef.xml,22.054,0.0,13.942,9.071,0.692,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.088,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.906,-7.842,-2.489,0.0,-0.05,-0.441,-0.049,2.746,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.121,-3.787,-0.162,0.0,3.083,7.817,2.018 -base-dhw-tank-gas-outside.xml,22.496,0.0,13.71,9.071,5.067,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 -base-dhw-tank-gas-uef-fhr.xml,22.542,0.0,14.275,9.071,2.982,0.0,0.0,0.0,3.527,3.638,0.512,7.508,0.63,10.088,-12.69,0.0,0.0,0.0,8.295,-0.066,6.048,0.0,0.727,0.0,5.012,-8.532,-2.488,0.0,-0.056,-0.443,-0.049,2.744,-0.02,-1.334,11.724,0.0,0.0,0.0,-6.245,-0.062,-1.396,-3.801,-0.162,0.0,3.149,8.394,2.019 -base-dhw-tank-gas-uef.xml,22.542,0.0,14.275,9.071,2.982,0.0,0.0,0.0,3.527,3.638,0.512,7.508,0.63,10.088,-12.69,0.0,0.0,0.0,8.295,-0.066,6.048,0.0,0.727,0.0,5.012,-8.532,-2.488,0.0,-0.056,-0.443,-0.049,2.744,-0.02,-1.334,11.724,0.0,0.0,0.0,-6.245,-0.062,-1.396,-3.801,-0.162,0.0,3.149,8.394,2.019 -base-dhw-tank-gas.xml,22.281,0.0,14.415,9.071,3.628,0.0,0.0,0.0,3.529,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.292,-0.066,6.046,0.0,0.727,0.0,4.959,-8.75,-2.488,0.0,-0.06,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.402,-3.827,-0.163,0.0,3.173,8.587,2.02 -base-dhw-tank-heat-pump-detailed-schedules.xml,27.056,0.0,11.821,9.212,1.419,0.0,0.0,0.0,3.482,3.629,0.511,7.489,0.627,10.065,-12.729,0.0,0.0,0.0,8.322,-0.059,5.017,0.0,0.726,0.0,5.863,-3.728,-2.497,0.0,0.028,-0.372,-0.039,2.958,-0.003,-1.112,11.684,0.0,0.0,0.0,-5.895,-0.056,-1.04,-3.264,-0.15,0.0,2.666,4.931,2.01 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,27.094,0.0,11.728,9.127,1.31,0.0,0.0,0.0,3.495,3.633,0.511,7.494,0.627,10.057,-12.76,0.0,0.0,0.0,8.336,-0.043,5.019,0.0,0.726,0.0,5.863,-3.696,-2.5,0.0,0.034,-0.372,-0.039,2.963,-0.004,-1.133,11.654,0.0,0.0,0.0,-5.898,-0.04,-1.048,-3.335,-0.148,0.0,2.665,4.931,2.008 -base-dhw-tank-heat-pump-outside.xml,22.496,0.0,13.71,9.093,2.525,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 -base-dhw-tank-heat-pump-uef.xml,27.094,0.0,11.728,9.127,1.31,0.0,0.0,0.0,3.495,3.633,0.511,7.494,0.627,10.057,-12.76,0.0,0.0,0.0,8.336,-0.043,5.019,0.0,0.726,0.0,5.863,-3.696,-2.5,0.0,0.034,-0.372,-0.039,2.963,-0.004,-1.133,11.654,0.0,0.0,0.0,-5.898,-0.04,-1.048,-3.335,-0.148,0.0,2.665,4.931,2.008 -base-dhw-tank-heat-pump-with-solar-fraction.xml,23.79,0.0,13.144,9.103,0.603,0.0,5.917,0.0,3.518,3.634,0.511,7.496,0.628,10.069,-12.712,0.0,0.0,0.0,8.296,-0.06,4.991,0.0,0.727,0.0,5.241,-6.394,-2.491,0.0,-0.023,-0.42,-0.046,2.811,-0.015,-1.271,11.701,0.0,0.0,0.0,-6.136,-0.056,-1.099,-3.623,-0.158,0.0,2.935,6.764,2.017 -base-dhw-tank-heat-pump-with-solar.xml,22.725,0.0,14.557,9.016,1.969,0.0,8.052,0.0,3.531,3.641,0.512,7.516,0.629,10.08,-12.705,0.0,0.0,0.0,8.31,-0.058,4.989,0.0,0.728,0.0,5.034,-7.328,-2.489,0.0,-0.055,-0.441,-0.049,2.746,-0.021,-1.346,11.708,0.0,0.0,0.0,-6.232,-0.054,-1.125,-3.834,-0.162,0.0,3.186,8.459,2.018 -base-dhw-tank-heat-pump.xml,26.224,0.0,12.074,9.115,1.721,0.0,0.0,0.0,3.499,3.631,0.511,7.488,0.626,10.053,-12.751,0.0,0.0,0.0,8.324,-0.053,5.01,0.0,0.726,0.0,5.701,-4.389,-2.498,0.0,0.015,-0.389,-0.041,2.911,-0.009,-1.183,11.662,0.0,0.0,0.0,-5.972,-0.049,-1.066,-3.436,-0.15,0.0,2.723,5.384,2.009 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,21.846,0.0,13.96,9.117,0.021,0.0,0.0,0.0,3.539,3.643,0.513,7.526,0.631,10.099,-12.683,0.0,0.0,0.0,8.318,-0.062,5.372,0.0,0.776,0.0,4.855,-8.507,-2.504,0.0,-0.051,-0.44,-0.049,2.75,-0.02,-1.329,11.73,0.0,0.0,0.0,-6.238,-0.058,-1.229,-3.779,-0.183,0.0,3.077,7.993,2.005 -base-dhw-tank-model-type-stratified.xml,22.484,0.0,13.718,9.121,0.021,0.0,0.0,0.0,3.527,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.288,-0.065,4.982,0.0,0.727,0.0,4.992,-7.476,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.317,11.723,0.0,0.0,0.0,-6.222,-0.061,-1.116,-3.742,-0.161,0.0,3.045,7.511,2.018 -base-dhw-tank-oil.xml,22.281,0.0,14.415,9.071,3.628,0.0,0.0,0.0,3.529,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.292,-0.066,6.046,0.0,0.727,0.0,4.959,-8.75,-2.488,0.0,-0.06,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.402,-3.827,-0.163,0.0,3.173,8.587,2.02 -base-dhw-tank-wood.xml,22.281,0.0,14.415,9.071,3.628,0.0,0.0,0.0,3.529,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.292,-0.066,6.046,0.0,0.727,0.0,4.959,-8.75,-2.488,0.0,-0.06,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.402,-3.827,-0.163,0.0,3.173,8.587,2.02 -base-dhw-tankless-detailed-setpoints.xml,22.496,0.0,13.71,9.052,0.0,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 -base-dhw-tankless-electric-outside.xml,22.496,0.0,13.71,9.071,0.0,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 -base-dhw-tankless-electric-uef.xml,22.496,0.0,13.71,9.071,0.0,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 -base-dhw-tankless-electric.xml,22.496,0.0,13.71,9.071,0.0,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 -base-dhw-tankless-gas-uef.xml,22.496,0.0,13.71,9.071,0.0,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 -base-dhw-tankless-gas-with-solar-fraction.xml,22.496,0.0,13.71,9.071,0.0,0.0,5.896,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 -base-dhw-tankless-gas-with-solar.xml,22.147,0.0,14.147,9.262,0.0,0.0,8.001,0.0,3.531,3.638,0.512,7.508,0.63,10.086,-12.69,0.0,0.0,0.0,8.292,-0.066,4.982,0.0,0.728,0.0,4.926,-7.776,-2.488,0.0,-0.054,-0.443,-0.049,2.742,-0.021,-1.338,11.724,0.0,0.0,0.0,-6.251,-0.062,-1.124,-3.809,-0.162,0.0,3.121,8.038,2.019 -base-dhw-tankless-gas.xml,22.496,0.0,13.71,9.071,0.0,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 -base-dhw-tankless-propane.xml,22.496,0.0,13.71,9.071,0.0,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 -base-enclosure-2stories-garage.xml,24.463,0.0,21.903,9.049,0.611,0.0,0.0,0.0,3.839,7.588,1.092,5.856,0.687,20.448,-24.934,0.0,0.0,0.865,6.679,-0.176,9.084,0.0,0.761,0.0,3.63,-8.584,-2.924,0.0,-0.098,-0.998,-0.099,1.89,-0.019,-1.437,23.4,0.0,0.0,-0.133,-4.728,-0.167,-1.859,-7.2,-0.157,0.0,3.079,8.467,2.342 -base-enclosure-2stories.xml,29.033,0.0,21.43,8.985,0.613,0.0,0.0,0.0,3.747,7.87,1.07,7.891,0.667,20.489,-25.207,0.0,0.0,0.0,9.005,-0.142,11.263,0.0,0.746,0.0,4.254,-9.649,-3.529,0.0,-0.069,-0.987,-0.093,2.721,-0.015,-1.934,23.358,0.0,0.0,0.0,-6.358,-0.132,-2.384,-7.516,-0.158,0.0,3.001,9.52,2.84 -base-enclosure-beds-1.xml,23.531,0.0,13.026,5.264,0.616,0.0,0.0,0.0,3.513,3.629,0.511,7.48,0.628,10.065,-12.698,0.0,0.0,0.0,8.266,-0.064,4.989,0.0,0.725,0.0,5.207,-6.548,-2.49,0.0,-0.02,-0.418,-0.045,2.818,-0.013,-1.254,11.715,0.0,0.0,0.0,-6.131,-0.06,-1.098,-3.61,-0.158,0.0,2.922,6.535,2.017 -base-enclosure-beds-2.xml,22.814,0.0,13.469,7.209,0.615,0.0,0.0,0.0,3.522,3.633,0.511,7.492,0.629,10.08,-12.696,0.0,0.0,0.0,8.28,-0.068,4.986,0.0,0.727,0.0,5.062,-7.177,-2.49,0.0,-0.035,-0.429,-0.047,2.782,-0.016,-1.287,11.717,0.0,0.0,0.0,-6.183,-0.064,-1.108,-3.695,-0.16,0.0,3.001,7.155,2.017 -base-enclosure-beds-4.xml,21.399,0.0,14.37,10.893,0.614,0.0,0.0,0.0,3.541,3.643,0.513,7.52,0.63,10.096,-12.689,0.0,0.0,0.0,8.306,-0.066,4.978,0.0,0.729,0.0,4.772,-8.422,-2.487,0.0,-0.064,-0.451,-0.05,2.715,-0.023,-1.366,11.724,0.0,0.0,0.0,-6.292,-0.062,-1.133,-3.866,-0.163,0.0,3.158,8.409,2.02 -base-enclosure-beds-5.xml,20.7,0.0,14.831,12.689,0.614,0.0,0.0,0.0,3.55,3.647,0.513,7.535,0.632,10.113,-12.683,0.0,0.0,0.0,8.322,-0.069,4.976,0.0,0.73,0.0,4.629,-9.048,-2.487,0.0,-0.079,-0.462,-0.052,2.682,-0.025,-1.397,11.73,0.0,0.0,0.0,-6.342,-0.065,-1.143,-3.948,-0.165,0.0,3.237,9.032,2.02 -base-enclosure-ceilingtypes.xml,36.897,0.0,14.938,9.071,0.619,0.0,0.0,0.0,17.238,3.595,0.505,7.239,0.622,9.985,-12.816,0.0,0.0,0.0,7.722,-0.092,5.18,0.0,0.734,0.0,7.102,-7.963,-2.534,0.0,0.156,-0.304,-0.029,2.934,0.015,-0.903,11.597,0.0,0.0,0.0,-6.045,-0.082,-0.964,-3.523,-0.137,0.0,2.845,7.61,1.973 -base-enclosure-floortypes.xml,36.793,0.0,10.912,9.178,0.621,0.0,0.0,0.0,3.452,3.645,0.0,0.0,0.673,9.524,-13.017,0.0,0.0,29.112,0.0,-0.232,2.58,0.0,0.786,0.0,7.894,-6.525,-1.567,0.0,0.409,-0.064,0.0,0.0,0.1,0.968,10.952,0.0,0.0,-7.868,0.0,-0.227,-0.225,-1.994,-0.084,0.0,2.625,5.458,1.079 -base-enclosure-garage.xml,24.303,0.0,9.146,9.071,0.725,0.0,0.0,0.0,3.527,3.788,0.502,5.84,0.613,8.188,-6.671,0.0,0.0,0.0,6.563,-0.046,5.454,0.0,0.0,0.0,4.607,-5.766,-2.495,0.0,0.113,-0.27,-0.033,2.467,0.004,-1.083,8.261,0.0,0.0,0.0,-5.594,-0.043,-1.19,-2.578,0.0,0.0,1.591,5.629,2.012 -base-enclosure-infil-ach-house-pressure.xml,22.103,0.0,13.916,9.071,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 -base-enclosure-infil-cfm-house-pressure.xml,22.103,0.0,13.916,9.071,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 -base-enclosure-infil-cfm50.xml,22.103,0.0,13.916,9.071,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 -base-enclosure-infil-ela.xml,29.161,0.0,13.503,9.071,0.617,0.0,0.0,0.0,3.482,3.641,0.512,7.491,0.632,10.108,-12.721,0.0,0.0,0.0,8.299,-0.07,10.723,0.0,0.726,0.0,6.364,-7.837,-2.497,0.0,-0.003,-0.393,-0.042,2.87,-0.007,-1.168,11.693,0.0,0.0,0.0,-6.048,-0.066,-2.335,-3.493,-0.153,0.0,3.046,7.74,2.01 -base-enclosure-infil-flue.xml,23.404,0.0,13.825,9.071,0.615,0.0,0.0,0.0,3.518,3.635,0.512,7.501,0.629,10.084,-12.691,0.0,0.0,0.0,8.293,-0.068,6.051,0.0,0.727,0.0,5.183,-7.804,-2.489,0.0,-0.044,-0.434,-0.048,2.775,-0.018,-1.3,11.723,0.0,0.0,0.0,-6.199,-0.064,-1.381,-3.716,-0.16,0.0,3.072,7.777,2.018 -base-enclosure-infil-natural-ach.xml,28.811,0.0,13.522,9.071,0.617,0.0,0.0,0.0,3.482,3.639,0.512,7.49,0.631,10.103,-12.71,0.0,0.0,0.0,8.3,-0.07,10.434,0.0,0.726,0.0,6.292,-7.831,-2.496,0.0,-0.007,-0.397,-0.042,2.863,-0.008,-1.18,11.703,0.0,0.0,0.0,-6.056,-0.066,-2.283,-3.506,-0.154,0.0,3.047,7.746,2.012 -base-enclosure-infil-natural-cfm.xml,28.811,0.0,13.522,9.071,0.617,0.0,0.0,0.0,3.482,3.639,0.512,7.49,0.631,10.103,-12.71,0.0,0.0,0.0,8.3,-0.07,10.434,0.0,0.726,0.0,6.292,-7.831,-2.496,0.0,-0.007,-0.397,-0.042,2.863,-0.008,-1.18,11.703,0.0,0.0,0.0,-6.056,-0.066,-2.283,-3.506,-0.154,0.0,3.047,7.746,2.012 -base-enclosure-orientations.xml,22.338,0.0,13.824,9.071,0.615,0.0,0.0,0.0,3.526,3.634,0.511,7.498,0.863,10.076,-12.691,0.0,0.0,0.0,8.279,-0.066,4.981,0.0,0.727,0.0,4.961,-7.799,-2.489,0.0,-0.046,-0.438,-0.048,2.755,-0.149,-1.32,11.723,0.0,0.0,0.0,-6.227,-0.062,-1.119,-3.764,-0.161,0.0,3.058,7.782,2.018 -base-enclosure-overhangs.xml,22.386,0.0,13.359,9.071,0.615,0.0,0.0,0.0,3.524,3.633,0.511,7.486,0.629,9.998,-12.285,0.0,0.0,0.0,8.258,-0.069,4.983,0.0,0.727,0.0,4.966,-7.809,-2.49,0.0,-0.029,-0.427,-0.046,2.779,-0.016,-1.333,11.091,0.0,0.0,0.0,-6.176,-0.065,-1.112,-3.719,-0.16,0.0,2.963,7.772,2.017 -base-enclosure-rooftypes.xml,22.185,0.0,13.441,9.071,0.615,0.0,0.0,0.0,3.641,3.635,0.512,7.5,0.629,10.079,-12.691,0.0,0.0,0.0,8.281,-0.064,4.98,0.0,0.727,0.0,4.918,-7.799,-2.489,0.0,-0.301,-0.436,-0.048,2.761,-0.019,-1.315,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.12,-3.759,-0.161,0.0,2.788,7.782,2.018 -base-enclosure-skylights-physical-properties.xml,23.407,0.0,17.39,9.071,0.614,0.0,0.0,0.0,3.524,3.651,0.514,7.559,0.633,10.115,-12.626,2.713,-2.174,0.0,8.437,-0.07,5.004,0.0,0.73,0.0,5.211,-7.78,-2.485,0.0,-0.145,-0.495,-0.056,2.637,-0.033,-1.464,11.705,-0.052,3.749,0.0,-6.527,-0.065,-1.133,-3.968,-0.167,0.0,3.832,7.805,2.023 -base-enclosure-skylights-shading.xml,23.128,0.0,13.994,9.071,0.615,0.0,0.0,0.0,3.512,3.633,0.511,7.501,0.629,10.073,-12.685,1.146,-0.321,0.0,8.293,-0.065,4.991,0.0,0.728,0.0,5.124,-7.8,-2.489,0.0,-0.049,-0.435,-0.048,2.767,-0.018,-1.311,11.717,-0.492,0.431,0.0,-6.219,-0.061,-1.113,-3.735,-0.161,0.0,3.106,7.781,2.018 -base-enclosure-skylights-storms.xml,21.855,0.0,16.371,9.071,0.614,0.0,0.0,0.0,3.54,3.654,0.514,7.556,0.633,10.123,-12.643,0.856,-1.409,0.0,8.403,-0.068,4.988,0.0,0.729,0.0,4.88,-7.781,-2.485,0.0,-0.126,-0.488,-0.055,2.642,-0.032,-1.457,11.715,0.261,2.537,0.0,-6.485,-0.064,-1.142,-3.986,-0.167,0.0,3.594,7.804,2.022 -base-enclosure-skylights.xml,21.524,0.0,16.722,9.071,0.613,0.0,0.0,0.0,3.548,3.66,0.515,7.569,0.634,10.135,-12.639,0.764,-1.653,0.0,8.432,-0.068,4.988,0.0,0.73,0.0,4.814,-7.78,-2.485,0.0,-0.137,-0.496,-0.056,2.622,-0.034,-1.479,11.709,0.263,2.973,0.0,-6.529,-0.064,-1.147,-4.028,-0.167,0.0,3.661,7.805,2.022 -base-enclosure-split-level.xml,11.142,0.0,12.038,9.291,0.608,0.0,0.0,0.0,3.947,3.838,0.0,0.0,0.688,10.048,-12.17,0.0,0.0,0.0,7.976,-0.144,2.769,0.0,0.773,0.0,0.333,-5.953,-1.448,0.0,-0.056,-0.569,0.0,0.0,-0.016,-0.629,12.086,0.0,0.0,0.0,-1.538,-0.141,-0.555,-3.487,-0.164,0.0,0.116,6.061,1.198 -base-enclosure-thermal-mass.xml,21.966,0.0,13.77,9.071,0.615,0.0,0.0,0.0,3.53,3.635,0.512,7.484,0.629,10.105,-12.697,0.0,0.0,0.0,8.257,-0.104,4.974,0.0,0.726,0.0,4.873,-7.799,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.345,11.731,0.0,0.0,0.0,-6.227,-0.1,-1.126,-3.852,-0.162,0.0,3.019,7.782,2.019 -base-enclosure-walltypes.xml,39.202,0.0,9.241,9.071,0.622,0.0,0.0,0.0,3.327,16.957,0.473,7.138,0.836,1.295,-1.58,0.0,0.0,0.0,7.332,-0.052,5.152,0.0,0.731,0.0,7.872,-8.03,-2.552,0.0,0.284,-0.594,-0.008,3.408,-0.083,-0.07,1.661,0.0,0.0,0.0,-4.955,-0.046,-0.95,-0.49,-0.122,0.0,1.87,7.535,1.955 -base-enclosure-windows-natural-ventilation-availability.xml,22.173,0.0,10.057,9.071,0.618,0.0,0.0,0.0,3.53,3.637,0.512,7.514,0.629,10.084,-12.691,0.0,0.0,0.0,8.34,-0.064,4.981,0.0,0.728,0.0,4.932,-7.8,-2.489,0.0,0.038,-0.377,-0.039,2.955,-0.004,-1.132,11.723,0.0,0.0,0.0,-5.942,-0.06,-1.04,-8.097,-0.151,0.0,2.529,7.775,2.018 -base-enclosure-windows-none.xml,24.658,0.0,7.645,9.071,0.619,0.0,0.0,0.0,3.446,5.149,0.499,7.206,0.6,0.0,0.0,0.0,0.0,0.0,7.48,-0.044,4.956,0.0,0.722,0.0,5.01,-7.91,-2.517,0.0,0.203,-0.365,-0.022,3.226,0.016,0.0,0.0,0.0,0.0,0.0,-5.147,-0.042,-1.094,0.0,-0.142,0.0,1.41,7.662,1.991 -base-enclosure-windows-physical-properties.xml,29.334,0.0,13.819,9.071,0.617,0.0,0.0,0.0,3.465,3.628,0.511,7.479,0.63,19.599,-16.819,0.0,0.0,0.0,8.386,-0.085,5.078,0.0,0.73,0.0,6.416,-7.855,-2.5,0.0,0.016,-0.371,-0.039,2.872,-0.0,-4.822,14.292,0.0,0.0,0.0,-6.099,-0.08,-1.03,-3.405,-0.151,0.0,3.153,7.721,2.007 -base-enclosure-windows-shading-seasons.xml,22.006,0.0,14.026,9.071,0.614,0.0,0.0,0.0,3.532,3.638,0.512,7.492,0.63,10.091,-12.691,0.0,0.0,0.0,8.231,-0.074,4.982,0.0,0.728,0.0,4.895,-7.8,-2.489,0.0,-0.068,-0.459,-0.051,2.685,-0.024,-1.234,12.133,0.0,0.0,0.0,-6.385,-0.07,-1.138,-3.918,-0.164,0.0,3.099,7.783,2.018 -base-enclosure-windows-shading.xml,24.124,0.0,5.939,9.071,0.623,0.0,0.0,0.0,3.569,3.693,0.519,7.538,0.642,10.695,-11.796,0.0,0.0,0.0,8.473,-0.062,5.081,0.0,0.74,0.0,5.302,-8.057,-2.554,0.0,0.39,-0.07,0.004,3.608,0.068,-3.437,2.903,0.0,0.0,0.0,-4.567,-0.058,-0.854,-2.599,-0.113,0.0,1.38,7.506,1.953 -base-enclosure-windows-storms.xml,23.583,0.0,11.954,9.071,0.617,0.0,0.0,0.0,3.489,3.602,0.507,7.402,0.621,8.59,-9.448,0.0,0.0,0.0,8.025,-0.063,4.977,0.0,0.724,0.0,5.177,-7.814,-2.492,0.0,0.024,-0.387,-0.041,2.884,-0.007,-0.665,8.68,0.0,0.0,0.0,-5.952,-0.059,-1.094,-3.54,-0.156,0.0,2.669,7.763,2.015 -base-foundation-ambient.xml,17.238,0.0,15.194,9.178,0.607,0.0,0.0,0.0,3.801,3.819,0.0,0.0,0.766,10.502,-11.429,0.0,0.0,10.2,0.0,-0.475,2.295,0.0,0.784,0.0,3.97,-5.901,-1.423,0.0,-0.074,-0.542,0.0,0.0,0.037,-0.067,12.54,0.0,0.0,-3.676,0.0,-0.469,-0.371,-2.655,-0.155,0.0,3.518,6.113,1.223 -base-foundation-basement-garage.xml,19.633,0.0,13.863,9.2,0.614,0.0,0.0,0.0,3.644,4.733,0.514,5.492,0.701,9.836,-12.62,0.0,0.0,0.833,6.112,-0.045,3.456,0.0,0.734,0.0,4.519,-6.729,-1.88,0.0,-0.022,-0.614,-0.052,1.963,-0.035,-1.092,11.668,0.0,0.0,-0.122,-4.547,-0.041,-0.743,-3.612,-0.163,0.0,3.204,6.731,1.525 -base-foundation-belly-wing-no-skirt.xml,20.2,0.0,12.485,9.178,0.609,0.0,0.0,0.0,3.982,5.368,0.0,0.0,0.754,8.708,-11.203,0.0,0.0,10.285,0.0,-0.374,2.354,0.0,0.792,0.0,6.619,-6.017,-1.452,0.0,0.33,-0.565,0.0,0.0,0.048,0.15,9.491,0.0,0.0,-3.367,0.0,-0.368,-0.36,-2.432,-0.14,0.0,2.749,5.995,1.194 -base-foundation-belly-wing-skirt.xml,19.833,0.0,12.536,9.178,0.608,0.0,0.0,0.0,3.985,5.372,0.0,0.0,0.755,8.715,-11.178,0.0,0.0,9.978,0.0,-0.368,2.347,0.0,0.791,0.0,6.502,-6.004,-1.45,0.0,0.321,-0.577,0.0,0.0,0.045,0.127,9.516,0.0,0.0,-3.299,0.0,-0.362,-0.365,-2.451,-0.141,0.0,2.756,6.008,1.196 -base-foundation-complex.xml,39.005,0.0,17.298,9.071,0.618,0.0,0.0,0.0,3.42,3.664,0.521,19.569,0.652,10.158,-12.86,0.0,0.0,0.0,8.681,-0.12,6.404,0.0,0.74,0.0,8.27,-8.008,-2.548,0.0,0.042,-0.344,-0.042,3.886,0.001,-0.923,11.551,0.0,0.0,0.0,-4.502,-0.112,-1.173,-3.978,-0.134,0.0,3.68,7.566,1.959 -base-foundation-conditioned-basement-slab-insulation-full.xml,19.046,0.0,15.844,9.071,0.613,0.0,0.0,0.0,3.617,3.702,0.521,8.198,0.644,10.264,-12.674,0.0,0.0,0.0,4.764,-0.069,4.997,0.0,0.733,0.0,4.309,-7.798,-2.489,0.0,-0.098,-0.475,-0.054,2.229,-0.029,-1.44,11.74,0.0,0.0,0.0,-3.664,-0.063,-1.134,-4.076,-0.165,0.0,3.428,7.789,2.018 -base-foundation-conditioned-basement-slab-insulation.xml,20.835,0.0,14.67,9.071,0.614,0.0,0.0,0.0,3.559,3.658,0.515,7.807,0.633,10.134,-12.689,0.0,0.0,0.0,6.855,-0.061,4.979,0.0,0.729,0.0,4.667,-7.791,-2.487,0.0,-0.074,-0.458,-0.051,2.565,-0.025,-1.391,11.724,0.0,0.0,0.0,-5.239,-0.057,-1.131,-3.887,-0.163,0.0,3.217,7.792,2.02 -base-foundation-conditioned-basement-wall-insulation.xml,21.363,0.0,12.46,9.071,0.615,0.0,0.0,0.0,3.562,3.665,0.516,6.088,0.636,10.163,-12.703,0.0,0.0,0.0,8.943,-0.072,4.999,0.0,0.732,0.0,4.79,-7.81,-2.491,0.0,0.011,-0.395,-0.042,1.15,-0.009,-1.203,11.711,0.0,0.0,0.0,-6.427,-0.067,-1.088,-3.491,-0.158,0.0,2.859,7.771,2.016 -base-foundation-conditioned-crawlspace.xml,17.68,0.0,10.551,9.178,0.615,0.0,0.0,0.0,3.708,3.604,0.507,5.098,0.623,9.804,-12.663,0.0,0.0,0.0,9.972,-0.063,3.499,0.0,0.729,0.0,0.0,-6.0,-1.462,0.0,0.052,-0.444,-0.049,1.826,-0.02,-1.118,11.69,0.0,0.0,0.0,-3.74,-0.059,-0.812,-3.588,-0.159,0.0,0.0,5.996,1.183 -base-foundation-multiple.xml,12.789,0.0,13.881,9.122,0.696,0.0,0.0,0.0,3.981,3.865,0.0,0.0,0.777,10.555,-11.241,0.0,0.0,5.336,0.0,-0.386,2.665,0.0,0.0,0.0,2.137,-3.832,-1.416,0.0,-0.107,-0.682,0.0,0.0,-0.007,-0.369,12.727,0.0,0.0,-0.689,0.0,-0.381,-0.535,-2.975,0.0,0.0,1.912,3.979,1.23 -base-foundation-slab.xml,10.665,0.0,12.4,9.178,0.607,0.0,0.0,0.0,3.928,3.799,0.0,0.0,0.689,10.053,-12.103,0.0,0.0,0.0,8.104,-0.155,2.138,0.0,0.773,0.0,0.318,-5.93,-1.443,0.0,-0.051,-0.56,0.0,0.0,-0.02,-0.688,12.153,0.0,0.0,0.0,-1.519,-0.152,-0.435,-3.306,-0.168,0.0,0.119,6.087,1.203 -base-foundation-unconditioned-basement-above-grade.xml,13.744,0.0,14.281,9.122,0.714,0.0,0.0,0.0,3.99,3.87,0.0,0.0,0.776,10.609,-11.32,0.0,0.0,5.957,0.0,-0.395,2.68,0.0,0.0,0.0,2.53,-3.852,-1.422,0.0,-0.083,-0.661,0.0,0.0,-0.003,-0.368,12.648,0.0,0.0,-0.525,0.0,-0.39,-0.521,-2.967,0.0,0.0,2.181,3.959,1.223 -base-foundation-unconditioned-basement-assembly-r.xml,11.792,0.0,12.398,9.122,0.713,0.0,0.0,0.0,3.978,3.838,0.0,0.0,0.766,10.569,-11.134,0.0,0.0,4.49,0.0,-0.411,2.66,0.0,0.0,0.0,1.926,-3.817,-1.41,0.0,-0.079,-0.631,0.0,0.0,0.021,-0.326,12.835,0.0,0.0,-2.105,0.0,-0.406,-0.536,-2.805,0.0,0.0,1.435,3.994,1.236 -base-foundation-unconditioned-basement-wall-insulation.xml,19.643,0.0,10.942,9.122,0.641,0.0,0.0,0.0,3.732,3.628,0.0,0.0,0.636,9.319,-12.484,0.0,0.0,14.689,0.0,-0.055,2.603,0.0,0.0,0.0,2.783,-3.991,-1.476,0.0,0.083,-0.419,0.0,0.0,-0.008,-0.352,11.485,0.0,0.0,-2.864,0.0,-0.054,-0.489,-2.771,0.0,0.0,1.515,3.821,1.17 -base-foundation-unconditioned-basement.xml,12.812,0.0,13.976,9.122,0.705,0.0,0.0,0.0,3.974,3.832,0.0,0.0,0.757,10.503,-11.231,0.0,0.0,5.385,0.0,-0.389,2.665,0.0,0.0,0.0,2.227,-3.83,-1.415,0.0,-0.086,-0.639,0.0,0.0,0.011,-0.399,12.737,0.0,0.0,-0.738,0.0,-0.384,-0.535,-2.975,0.0,0.0,1.99,3.981,1.231 -base-foundation-unvented-crawlspace.xml,10.76,0.0,14.109,9.178,0.71,0.0,0.0,0.0,3.964,3.816,0.0,0.0,0.775,10.607,-10.818,0.0,0.0,4.555,0.0,-0.448,2.179,0.0,0.773,0.0,1.752,-5.37,-1.376,0.0,-0.187,-0.751,0.0,0.0,0.006,-0.579,13.15,0.0,0.0,-2.072,0.0,-0.443,-0.456,-3.059,-0.191,0.0,1.62,6.053,1.27 -base-foundation-vented-crawlspace-above-grade.xml,13.01,0.0,14.092,9.178,0.778,0.0,0.0,0.0,3.96,3.799,0.0,0.0,0.753,10.472,-11.092,0.0,0.0,6.703,0.0,-0.438,2.264,0.0,0.779,0.0,2.324,-5.476,-1.403,0.0,-0.091,-0.641,0.0,0.0,0.024,-0.382,12.877,0.0,0.0,-2.449,0.0,-0.433,-0.346,-2.973,-0.175,0.0,1.754,5.94,1.243 -base-foundation-vented-crawlspace.xml,13.085,0.0,13.506,9.178,0.787,0.0,0.0,0.0,3.968,3.823,0.0,0.0,0.764,10.543,-11.154,0.0,0.0,6.728,0.0,-0.43,2.269,0.0,0.781,0.0,2.341,-5.502,-1.41,0.0,-0.076,-0.636,0.0,0.0,0.02,-0.332,12.815,0.0,0.0,-2.959,0.0,-0.426,-0.339,-2.898,-0.171,0.0,1.616,5.913,1.236 -base-foundation-walkout-basement.xml,27.344,0.0,14.839,9.071,0.616,0.0,0.0,0.0,3.513,3.694,0.521,7.367,0.648,10.886,-12.924,0.0,0.0,0.0,10.145,-0.075,6.817,0.0,0.728,0.0,6.002,-7.825,-2.494,0.0,-0.102,-0.499,-0.058,1.498,-0.027,-1.441,12.103,0.0,0.0,0.0,-3.623,-0.069,-1.468,-4.148,-0.157,0.0,3.235,7.754,2.013 -base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml,21.423,0.1,12.249,9.071,0.615,0.0,0.0,0.0,3.552,3.638,0.512,7.505,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.978,0.0,0.728,0.0,4.221,-7.8,-2.489,0.0,0.031,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.131,-3.778,-0.162,0.0,1.358,7.782,2.018 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,0.0,0.0,12.573,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.149,-3.656,-0.163,0.0,2.041,7.904,2.042 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,23.06,0.328,12.964,9.071,0.615,0.0,0.0,0.0,3.49,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.292,-0.067,5.123,0.0,0.728,0.0,5.764,-7.8,-2.489,0.0,-0.002,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.126,-3.78,-0.162,0.0,2.095,7.782,2.018 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,22.882,0.332,0.0,9.071,0.592,0.0,0.0,0.0,3.494,3.641,0.512,7.491,0.63,10.097,-12.691,0.0,0.0,0.0,8.142,-0.07,5.146,0.0,0.728,0.0,5.711,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,23.236,1.013,12.507,9.071,0.615,0.0,0.0,0.0,3.579,3.664,0.514,7.734,0.62,9.994,-12.822,0.0,0.0,0.0,9.05,0.07,5.09,0.0,0.76,0.0,4.956,-7.794,-2.499,0.0,0.02,-0.419,-0.047,2.844,-0.028,-1.416,11.591,0.0,0.0,0.0,-6.236,0.061,-1.14,-4.208,-0.159,0.0,2.033,7.787,2.008 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,23.06,0.328,12.964,9.071,0.615,0.0,0.0,0.0,3.49,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.292,-0.067,5.123,0.0,0.728,0.0,5.764,-7.8,-2.489,0.0,-0.002,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.126,-3.78,-0.162,0.0,2.095,7.782,2.018 -base-hvac-air-to-air-heat-pump-1-speed.xml,23.06,0.328,12.964,9.071,0.615,0.0,0.0,0.0,3.49,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.292,-0.067,5.123,0.0,0.728,0.0,5.764,-7.8,-2.489,0.0,-0.002,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.126,-3.78,-0.162,0.0,2.095,7.782,2.018 -base-hvac-air-to-air-heat-pump-2-speed.xml,24.021,0.32,13.202,9.071,0.615,0.0,0.0,0.0,3.453,3.638,0.512,7.508,0.63,10.089,-12.691,0.0,0.0,0.0,8.294,-0.067,5.182,0.0,0.728,0.0,6.697,-7.8,-2.489,0.0,-0.012,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.124,-3.78,-0.162,0.0,2.337,7.782,2.018 -base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,21.332,0.0,12.599,9.071,0.615,0.0,0.0,0.0,3.561,3.638,0.512,7.505,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.883,0.0,0.728,0.0,4.221,-7.8,-2.489,0.0,0.021,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.133,-3.779,-0.162,0.0,1.723,7.782,2.018 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,29.515,11.515,16.008,9.071,0.616,0.0,0.0,0.0,3.234,3.597,0.506,7.507,0.614,9.916,-12.591,0.0,0.0,0.0,8.222,-0.031,6.57,0.0,0.719,0.0,11.065,-7.688,-2.467,0.0,-0.201,-0.467,-0.052,2.794,-0.032,-1.454,11.822,0.0,0.0,0.0,-6.254,-0.027,-1.431,-3.742,-0.167,0.0,5.453,7.892,2.04 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,29.035,14.605,16.129,9.071,0.616,0.0,0.0,0.0,3.255,3.595,0.505,7.398,0.614,9.852,-12.676,0.0,0.0,0.0,8.224,-0.016,6.567,0.0,0.714,0.0,10.48,-7.711,-2.456,0.0,-0.188,-0.462,-0.052,2.715,-0.03,-1.49,11.737,0.0,0.0,0.0,-6.197,-0.013,-1.452,-3.726,-0.17,0.0,5.342,7.868,2.051 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,29.826,11.519,16.168,9.071,0.615,0.0,0.0,0.0,3.275,3.638,0.512,7.506,0.63,10.09,-12.705,0.0,0.0,0.0,8.309,-0.067,6.648,0.0,0.727,0.0,11.22,-7.81,-2.491,0.0,-0.16,-0.431,-0.047,2.777,-0.017,-1.296,11.708,0.0,0.0,0.0,-6.188,-0.063,-1.367,-3.727,-0.16,0.0,5.511,7.771,2.016 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,24.988,11.041,12.99,9.071,0.615,0.0,0.0,0.0,3.453,3.636,0.512,7.502,0.63,10.089,-12.696,0.0,0.0,0.0,8.3,-0.068,6.218,0.0,0.727,0.0,6.662,-7.807,-2.49,0.0,0.006,-0.433,-0.047,2.773,-0.017,-1.299,11.717,0.0,0.0,0.0,-6.196,-0.065,-1.39,-3.715,-0.16,0.0,2.217,7.774,2.017 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,30.131,12.664,16.274,9.071,0.615,0.0,0.0,0.0,3.228,3.641,0.512,7.512,0.63,10.086,-12.703,0.0,0.0,0.0,8.305,-0.062,5.795,0.0,0.727,0.0,12.388,-7.8,-2.488,0.0,-0.167,-0.438,-0.048,2.75,-0.02,-1.331,11.71,0.0,0.0,0.0,-6.233,-0.058,-1.109,-3.793,-0.162,0.0,5.533,7.782,2.019 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,27.398,0.278,14.908,9.071,0.615,0.0,0.0,0.0,3.327,3.64,0.512,7.512,0.63,10.091,-12.696,0.0,0.0,0.0,8.302,-0.066,5.262,0.0,0.728,0.0,10.11,-7.801,-2.489,0.0,-0.089,-0.439,-0.048,2.75,-0.02,-1.327,11.717,0.0,0.0,0.0,-6.235,-0.061,-1.123,-3.785,-0.162,0.0,4.119,7.78,2.018 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,26.781,0.099,14.236,9.071,0.615,0.0,0.0,0.0,3.35,3.64,0.512,7.511,0.63,10.091,-12.696,0.0,0.0,0.0,8.302,-0.066,5.197,0.0,0.728,0.0,9.539,-7.801,-2.489,0.0,-0.055,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.126,-3.783,-0.162,0.0,3.418,7.78,2.018 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,26.932,0.102,14.564,9.071,0.615,0.0,0.0,0.0,3.345,3.64,0.512,7.511,0.63,10.091,-12.696,0.0,0.0,0.0,8.302,-0.065,5.197,0.0,0.728,0.0,9.695,-7.801,-2.489,0.0,-0.07,-0.439,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.125,-3.784,-0.162,0.0,3.761,7.78,2.018 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,27.39,6.354,14.545,9.071,0.615,0.0,0.0,0.0,3.326,3.64,0.512,7.512,0.63,10.091,-12.696,0.0,0.0,0.0,8.303,-0.066,5.451,0.0,0.728,0.0,9.91,-7.801,-2.489,0.0,-0.069,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.125,-3.784,-0.162,0.0,3.742,7.78,2.018 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,26.781,0.098,14.568,9.071,0.615,0.0,0.0,0.0,3.35,3.64,0.512,7.511,0.63,10.091,-12.696,0.0,0.0,0.0,8.302,-0.066,5.196,0.0,0.728,0.0,9.538,-7.801,-2.489,0.0,-0.071,-0.439,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.125,-3.784,-0.162,0.0,3.766,7.78,2.018 -base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,26.166,0.296,14.469,9.071,0.615,0.0,0.0,0.0,3.411,3.654,0.515,7.547,0.639,10.146,-12.619,0.0,0.0,0.0,8.281,-0.063,5.074,0.0,0.732,0.0,8.835,-7.8,-2.489,0.0,-0.17,-0.462,-0.052,2.773,-0.025,-1.353,11.735,0.0,0.0,0.0,-6.208,-0.058,-1.104,-3.618,-0.168,0.0,3.53,7.781,2.018 -base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,27.003,0.039,14.241,9.071,0.615,0.0,0.0,0.0,3.348,3.643,0.513,7.519,0.631,10.098,-12.702,0.0,0.0,0.0,8.319,-0.064,5.103,0.003,0.728,0.0,9.834,-7.803,-2.49,0.0,-0.053,-0.438,-0.048,2.751,-0.019,-1.326,11.711,0.0,0.0,0.0,-6.229,-0.06,-1.125,-3.775,-0.161,0.0,3.435,7.779,2.018 -base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,25.645,0.241,14.231,9.071,0.615,0.0,0.0,0.0,3.383,3.631,0.511,7.485,0.628,10.062,-12.702,0.0,0.0,0.0,8.266,-0.065,5.079,0.002,0.726,0.0,8.624,-7.802,-2.49,0.0,-0.054,-0.439,-0.048,2.748,-0.019,-1.328,11.711,0.0,0.0,0.0,-6.237,-0.06,-1.126,-3.778,-0.162,0.0,3.414,7.779,2.018 -base-hvac-air-to-air-heat-pump-var-speed.xml,25.773,0.323,14.236,9.071,0.615,0.0,0.0,0.0,3.391,3.64,0.512,7.51,0.63,10.09,-12.696,0.0,0.0,0.0,8.3,-0.065,5.093,0.0,0.728,0.0,8.599,-7.801,-2.489,0.0,-0.055,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.126,-3.783,-0.162,0.0,3.418,7.78,2.018 -base-hvac-autosize-sizing-controls.xml,7.062,0.0,8.754,16.197,0.647,0.0,0.0,0.0,2.849,2.787,0.39,5.36,0.411,7.458,-12.563,0.0,0.0,0.0,5.529,-0.057,3.523,0.0,0.573,0.0,1.53,-8.608,-2.465,0.0,-0.086,-0.54,-0.062,2.449,-0.05,-1.666,11.85,0.0,0.0,0.0,-7.412,-0.057,-1.208,-6.54,-0.183,0.0,1.644,8.945,2.042 -base-hvac-autosize.xml,22.665,0.0,13.993,9.071,0.615,0.0,0.0,0.0,3.51,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.291,-0.067,5.011,0.0,0.728,0.0,5.466,-7.8,-2.489,0.0,-0.055,-0.44,-0.048,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.782,-0.162,0.0,3.155,7.782,2.018 -base-hvac-boiler-coal-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-elec-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,17.195,0.0,14.163,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.082,-12.691,0.0,0.0,0.0,8.282,-0.066,4.807,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,-0.065,-0.44,-0.048,2.749,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.117,-3.782,-0.162,0.0,3.328,7.782,2.018 -base-hvac-boiler-gas-only-pilot.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-autosize-factor.xml,0.0,0.0,12.322,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.002,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.151,-3.655,-0.163,0.0,1.783,7.904,2.042 -base-hvac-central-ac-only-1-speed-seer2.xml,0.0,0.0,13.741,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.074,-0.444,-0.048,2.731,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.14,-3.658,-0.163,0.0,3.244,7.904,2.042 -base-hvac-central-ac-only-1-speed.xml,0.0,0.0,13.741,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.074,-0.444,-0.048,2.731,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.14,-3.658,-0.163,0.0,3.244,7.904,2.042 -base-hvac-central-ac-only-2-speed.xml,0.0,0.0,14.124,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.136,-3.658,-0.163,0.0,3.635,7.904,2.042 -base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,0.0,0.0,15.253,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.146,-0.444,-0.048,2.732,-0.025,-1.368,11.85,0.0,0.0,0.0,-6.851,-0.066,-1.14,-3.666,-0.163,0.0,4.833,7.904,2.042 -base-hvac-central-ac-only-var-speed-detailed-performance.xml,0.0,0.0,14.262,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.444,-0.048,2.731,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.148,-3.661,-0.163,0.0,3.803,7.904,2.042 -base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,0.0,0.0,15.088,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.138,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.14,-3.665,-0.163,0.0,4.672,7.905,2.042 -base-hvac-central-ac-only-var-speed.xml,0.0,0.0,15.107,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.138,-0.444,-0.048,2.732,-0.025,-1.368,11.85,0.0,0.0,0.0,-6.851,-0.066,-1.14,-3.664,-0.163,0.0,4.676,7.904,2.042 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,23.081,0.334,14.164,9.071,0.615,0.0,0.0,0.0,3.489,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.292,-0.067,5.147,0.0,0.728,0.0,5.757,-7.8,-2.489,0.0,-0.064,-0.44,-0.048,2.748,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.117,-3.782,-0.162,0.0,3.328,7.782,2.018 diff --git a/hpxml-measures/workflow/tests/base_results/results_simulations1_misc.csv b/hpxml-measures/workflow/tests/base_results/results_simulations1_misc.csv deleted file mode 100644 index cf8a602a2..000000000 --- a/hpxml-measures/workflow/tests/base_results/results_simulations1_misc.csv +++ /dev/null @@ -1,221 +0,0 @@ -HPXML,Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Resilience: Battery (hr) -base-appliances-coal.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2002.1,3563.2,3563.2,23.28,18.664,0.0 -base-appliances-dehumidifier-ief-portable.xml,0.0,0.0,1354.7,998.0,9789.3,2412.1,2024.9,3022.6,3022.6,9.955,15.596,0.0 -base-appliances-dehumidifier-ief-whole-home.xml,0.0,0.0,1354.7,998.0,9789.3,2412.1,2063.0,3022.6,3022.6,9.948,15.596,0.0 -base-appliances-dehumidifier-multiple.xml,0.0,0.0,1354.7,998.0,9789.2,2412.1,1943.2,3042.0,3042.0,9.988,15.595,0.0 -base-appliances-dehumidifier.xml,0.0,0.0,1354.7,998.0,9789.2,2412.1,1956.1,3042.0,3042.0,9.988,15.595,0.0 -base-appliances-freezer-temperature-dependent-schedule.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2149.2,3582.0,3582.0,23.2,18.627,0.0 -base-appliances-gas.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2002.1,3563.2,3563.2,23.28,18.664,0.0 -base-appliances-modified.xml,0.0,0.0,1354.7,1998.3,11171.6,2563.5,2126.1,3420.1,3420.1,23.264,18.492,0.0 -base-appliances-none.xml,0.0,0.0,0.0,0.0,11171.5,2563.5,1845.5,2948.7,2948.7,23.674,17.333,0.0 -base-appliances-oil.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2002.1,3563.2,3563.2,23.28,18.664,0.0 -base-appliances-propane.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2002.1,3563.2,3563.2,23.28,18.664,0.0 -base-appliances-refrigerator-temperature-dependent-schedule.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2106.7,3720.2,3720.2,23.355,18.37,0.0 -base-appliances-wood.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2002.1,3563.2,3563.2,23.28,18.664,0.0 -base-atticroof-cathedral.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2112.5,3341.9,3341.9,23.038,16.725,0.0 -base-atticroof-conditioned.xml,0.0,0.0,1354.7,998.0,11171.5,2471.3,2346.0,3786.1,3786.1,23.038,20.635,0.0 -base-atticroof-flat.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2071.8,3182.4,3182.4,17.971,12.994,0.0 -base-atticroof-radiant-barrier-ceiling.xml,0.0,2.0,1354.7,998.0,9789.2,2412.1,1765.9,3495.8,3495.8,14.724,20.105,0.0 -base-atticroof-radiant-barrier.xml,0.0,0.0,1354.7,998.0,9789.3,2412.1,1754.4,3448.8,3448.8,13.826,19.394,0.0 -base-atticroof-unvented-insulated-roof.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2101.0,3307.4,3307.4,20.461,14.629,0.0 -base-atticroof-vented.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2085.8,3370.9,3370.9,23.377,16.392,0.0 -base-battery-scheduled.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2151.6,3834.2,3834.2,23.355,18.37,1.32 -base-battery.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2106.7,3720.2,3720.2,23.355,18.37,0.0 -base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1509.1,1941.4,1941.4,7.921,6.595,0.0 -base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1459.3,1409.8,1459.3,0.0,0.0,0.0 -base-bldgtype-mf-unit-adjacent-to-multiple.xml,0.0,2.0,1354.7,998.0,11171.5,3093.4,1519.6,2267.5,2267.5,9.995,10.821,0.0 -base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1512.4,2236.9,2236.9,11.216,9.34,0.0 -base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1511.6,1989.1,1989.1,3.769,6.597,0.0 -base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1514.5,1837.9,1837.9,4.065,5.018,0.0 -base-bldgtype-mf-unit-infil-compartmentalization-test.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1614.2,2275.6,2275.6,3.618,7.758,0.0 -base-bldgtype-mf-unit-residents-1.xml,0.0,0.0,817.1,530.8,4684.1,1314.5,1086.3,1702.5,1702.5,4.017,7.292,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1634.1,2119.4,2119.4,3.816,7.406,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,0.0,3.0,1354.7,998.0,11171.6,3093.4,1668.8,2364.4,2364.4,3.978,8.705,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1645.3,2176.9,2176.9,3.814,7.406,0.0 -base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,0.0,3.0,1354.7,998.0,11171.6,3093.4,1848.5,3510.6,3510.6,3.904,8.705,0.0 -base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,0.0,3.0,1354.7,998.0,11171.6,3093.4,1661.2,2320.5,2320.5,3.904,8.705,0.0 -base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1474.9,1412.1,1474.9,3.808,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1487.0,1412.1,1487.0,3.976,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1500.4,1412.1,1500.4,3.812,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1613.4,1412.1,1613.4,3.812,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1502.6,1412.1,1502.6,3.812,0.0,0.0 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1492.9,1412.1,1492.9,3.902,0.0,0.0 -base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1619.4,2235.5,2235.5,0.0,7.406,0.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,0.0,3.0,1354.7,998.0,11171.5,3093.4,1650.3,2331.8,2331.8,0.0,8.705,0.0 -base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1629.5,2309.9,2309.9,0.0,7.406,0.0 -base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,0.0,3.0,1354.7,998.0,11171.5,3093.4,1811.0,3365.6,3365.6,0.0,8.705,0.0 -base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,0.0,3.0,1354.7,998.0,11171.5,3093.4,1643.2,2289.7,2289.7,0.0,8.705,0.0 -base-bldgtype-mf-unit-shared-generator.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1605.7,2050.9,2050.9,3.814,7.788,0.0 -base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1705.4,2023.7,2023.7,3.814,7.788,0.0 -base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,0.0,0.0,1354.7,998.0,11171.9,3093.5,930.1,1619.8,1619.8,3.862,7.816,0.0 -base-bldgtype-mf-unit-shared-laundry-room.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,921.5,1608.5,1608.5,4.011,7.695,0.0 -base-bldgtype-mf-unit-shared-mechvent-multiple.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1817.3,2323.9,2323.9,7.899,9.053,0.0 -base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1595.5,2178.6,2178.6,4.194,7.952,0.0 -base-bldgtype-mf-unit-shared-mechvent.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1570.0,2161.3,2161.3,6.015,8.573,0.0 -base-bldgtype-mf-unit-shared-pv-battery.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1651.4,2072.2,2072.2,3.814,7.788,43.084 -base-bldgtype-mf-unit-shared-pv.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1605.7,2050.9,2050.9,3.814,7.788,0.0 -base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,0.0,0.0,1354.7,998.0,10607.8,2937.3,1287.5,1902.3,1902.3,5.887,7.728,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml,0.0,0.0,732.1,456.9,3657.4,0.0,818.9,1471.0,1471.0,4.341,7.252,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,951.9,1654.8,1654.8,4.004,7.812,0.0 -base-bldgtype-mf-unit-shared-water-heater-recirc.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,951.9,1654.8,1654.8,4.004,7.812,0.0 -base-bldgtype-mf-unit-shared-water-heater.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,915.2,1618.1,1618.1,4.004,7.812,0.0 -base-bldgtype-mf-unit.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1605.7,2050.9,2050.9,3.814,7.788,0.0 -base-bldgtype-mf-whole-building.xml,0.0,1.0,8128.5,5988.0,67057.1,16864.7,22122.0,16427.5,22122.0,53.957,57.134,0.0 -base-bldgtype-sfa-unit-2stories.xml,0.0,0.0,1354.7,998.0,11171.6,2624.7,2085.2,3194.7,3194.7,18.34,15.649,0.0 -base-bldgtype-sfa-unit-atticroof-cathedral.xml,0.0,0.0,1354.7,998.0,11171.6,2624.7,2247.5,4537.6,4537.6,36.753,28.624,0.0 -base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,0.0,0.0,1354.7,998.0,11171.5,2829.7,1780.7,2701.1,2701.1,13.883,10.712,0.0 -base-bldgtype-sfa-unit.xml,0.0,0.0,1354.7,998.0,11171.5,2829.7,1780.7,2701.1,2701.1,13.883,10.712,0.0 -base-dhw-combi-tankless-outside.xml,0.0,0.0,1070.0,776.6,8411.2,1930.1,1295.6,1163.0,1295.6,16.826,0.0,0.0 -base-dhw-combi-tankless.xml,0.0,0.0,1070.0,776.6,8411.2,1930.1,1297.1,1163.0,1297.1,17.407,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,0.0,0.0,1354.7,998.0,11184.4,2566.5,1972.5,2842.9,2842.9,0.0,19.452,0.0 -base-dhw-desuperheater-gshp.xml,0.0,0.0,1354.7,998.0,11186.5,2567.0,3529.4,2430.3,3529.4,22.961,16.582,0.0 -base-dhw-desuperheater-hpwh.xml,0.0,0.0,1354.6,997.9,11151.0,2558.8,1869.1,3134.7,3134.7,23.741,18.98,0.0 -base-dhw-desuperheater-tankless.xml,0.0,0.0,1354.7,998.0,11132.1,2554.5,1833.3,3332.8,3332.8,0.0,18.97,0.0 -base-dhw-desuperheater-var-speed.xml,0.0,0.0,1354.7,998.0,11185.9,2566.8,1972.6,2631.4,2631.4,0.0,19.209,0.0 -base-dhw-desuperheater.xml,0.0,0.0,1354.7,998.0,11186.2,2566.9,1971.0,3344.6,3344.6,0.0,19.076,0.0 -base-dhw-dwhr.xml,0.0,0.0,1354.7,998.0,10014.1,2297.9,2034.8,3376.8,3376.8,23.353,18.37,0.0 -base-dhw-indirect-detailed-setpoints.xml,0.0,0.0,1154.3,855.1,9363.6,2148.7,1296.3,1163.4,1296.3,17.02,0.0,0.0 -base-dhw-indirect-dse.xml,0.0,0.0,1069.7,771.0,8867.4,2034.8,1296.3,1163.3,1296.3,17.117,0.0,0.0 -base-dhw-indirect-outside.xml,0.0,0.0,1066.2,768.7,8830.9,2026.4,1295.6,1163.0,1295.6,16.826,0.0,0.0 -base-dhw-indirect-standbyloss.xml,0.0,0.0,1060.2,765.1,8818.5,2023.6,1296.1,1163.4,1296.1,17.043,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,0.0,0.0,390.1,285.6,3158.3,724.7,1296.8,1163.1,1296.8,17.31,0.0,0.0 -base-dhw-indirect.xml,0.0,0.0,1069.7,771.0,8867.4,2034.8,1296.3,1163.3,1296.3,17.117,0.0,0.0 -base-dhw-jacket-electric.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2099.9,3377.0,3377.0,23.408,18.32,0.0 -base-dhw-jacket-gas.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1448.1,3107.3,3107.3,23.87,18.742,0.0 -base-dhw-jacket-hpwh.xml,0.0,0.0,1354.7,998.0,10785.9,2475.0,1870.5,3048.0,3048.0,25.426,18.219,0.0 -base-dhw-jacket-indirect.xml,0.0,0.0,1075.4,776.5,8919.9,2046.8,1296.4,1163.3,1296.4,17.165,0.0,0.0 -base-dhw-low-flow-fixtures.xml,0.0,0.0,1354.7,998.0,10829.6,2485.1,2105.2,3527.6,3527.6,23.354,18.37,0.0 -base-dhw-multiple.xml,0.0,0.0,472.0,347.7,3918.9,899.3,2066.1,1773.3,2066.1,17.068,0.0,0.0 -base-dhw-none.xml,0.0,0.0,0.0,0.0,0.0,0.0,1342.7,2937.5,2937.5,23.451,18.05,0.0 -base-dhw-recirc-demand-scheduled.xml,0.0,0.0,1354.7,998.0,11171.5,2460.6,2101.1,3383.3,3383.3,23.354,18.37,0.0 -base-dhw-recirc-demand.xml,0.0,0.0,1354.7,998.0,11171.5,2460.6,2101.1,3383.3,3383.3,23.354,18.37,0.0 -base-dhw-recirc-manual.xml,0.0,0.0,1354.7,998.0,11171.5,2460.6,2085.8,3368.7,3368.7,23.354,18.37,0.0 -base-dhw-recirc-nocontrol.xml,0.0,0.0,1354.7,998.0,11171.6,2623.0,3017.2,4042.3,4042.3,23.353,18.37,0.0 -base-dhw-recirc-temperature.xml,0.0,0.0,1354.7,998.0,11171.6,2623.0,2714.7,3872.5,3872.5,23.353,18.37,0.0 -base-dhw-recirc-timer.xml,0.0,0.0,1354.7,998.0,11171.6,2623.0,3017.2,4042.3,4042.3,23.353,18.37,0.0 -base-dhw-solar-direct-evacuated-tube.xml,0.0,0.0,1354.6,997.9,10983.6,2520.4,2041.5,3102.3,3102.3,23.354,18.383,0.0 -base-dhw-solar-direct-flat-plate.xml,0.0,0.0,1354.3,997.6,10193.2,2339.0,2048.9,3073.3,3073.3,23.356,18.412,0.0 -base-dhw-solar-direct-ics.xml,0.0,0.0,1354.7,997.9,10725.6,2461.2,2101.1,3104.3,3104.3,23.355,18.402,0.0 -base-dhw-solar-fraction.xml,0.0,0.0,474.2,349.3,3910.1,897.2,1753.3,3307.1,3307.1,23.421,18.307,0.0 -base-dhw-solar-indirect-flat-plate.xml,0.0,0.0,1354.2,997.5,10326.4,2369.6,2083.1,3100.6,3100.6,23.387,18.677,0.0 -base-dhw-solar-thermosyphon-flat-plate.xml,0.0,0.0,1354.4,997.7,10243.7,2350.6,2091.6,3073.1,3073.1,23.355,18.41,0.0 -base-dhw-tank-coal.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1447.1,3116.7,3116.7,23.765,18.832,0.0 -base-dhw-tank-detailed-setpoints.xml,0.0,0.0,1354.7,998.0,11206.9,2571.6,2566.9,3405.2,3405.2,23.331,18.364,0.0 -base-dhw-tank-elec-uef.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2049.7,3383.0,3383.0,23.341,18.382,0.0 -base-dhw-tank-gas-outside.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1444.7,3059.0,3059.0,23.457,18.273,0.0 -base-dhw-tank-gas-uef-fhr.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1447.8,3110.2,3110.2,23.835,18.769,0.0 -base-dhw-tank-gas-uef.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1447.8,3110.2,3110.2,23.835,18.769,0.0 -base-dhw-tank-gas.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1447.1,3116.7,3116.7,23.765,18.832,0.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,0.0,0.0,1354.7,998.0,9993.2,2293.1,1838.7,3061.1,3061.1,27.076,18.128,0.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,0.0,0.0,1354.7,998.0,10745.9,2465.8,1835.1,3401.6,3401.6,25.606,18.294,0.0 -base-dhw-tank-heat-pump-outside.xml,0.0,0.0,1354.7,998.0,11025.2,2529.9,2983.7,3136.2,3136.2,23.457,18.273,0.0 -base-dhw-tank-heat-pump-uef.xml,0.0,0.0,1354.7,998.0,10745.9,2465.8,1835.1,3401.6,3401.6,25.606,18.294,0.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,0.0,0.0,474.2,349.3,3821.9,877.0,1859.2,3071.1,3071.1,25.511,18.342,0.0 -base-dhw-tank-heat-pump-with-solar.xml,0.0,0.0,1354.4,997.7,11685.2,2681.4,1856.5,3115.3,3115.3,23.959,18.792,0.0 -base-dhw-tank-heat-pump.xml,0.0,0.0,1354.7,998.0,10843.1,2488.2,1874.7,3357.4,3357.4,23.773,18.487,0.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,0.0,0.0,1354.7,998.0,10786.2,2475.1,4772.3,5410.7,5410.7,31.443,18.842,0.0 -base-dhw-tank-model-type-stratified.xml,0.0,0.0,1354.7,998.0,10766.2,2470.5,1969.0,3414.7,3414.7,23.454,18.276,0.0 -base-dhw-tank-oil.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1447.1,3116.7,3116.7,23.765,18.832,0.0 -base-dhw-tank-wood.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1447.1,3116.7,3116.7,23.765,18.832,0.0 -base-dhw-tankless-detailed-setpoints.xml,0.0,0.0,1354.7,998.0,11342.7,2602.8,1444.7,3059.0,3059.0,23.457,18.273,0.0 -base-dhw-tankless-electric-outside.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1985.0,3454.9,3454.9,23.457,18.273,0.0 -base-dhw-tankless-electric-uef.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1978.8,3450.4,3450.4,23.457,18.273,0.0 -base-dhw-tankless-electric.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1985.0,3454.9,3454.9,23.457,18.273,0.0 -base-dhw-tankless-gas-uef.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1444.7,3059.0,3059.0,23.457,18.273,0.0 -base-dhw-tankless-gas-with-solar-fraction.xml,0.0,0.0,474.2,349.3,3909.2,897.0,1444.7,3059.0,3059.0,23.457,18.273,0.0 -base-dhw-tankless-gas-with-solar.xml,0.0,0.0,1344.7,989.2,9817.2,2252.7,1444.4,3086.4,3086.4,23.489,18.539,0.0 -base-dhw-tankless-gas.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1444.7,3059.0,3059.0,23.457,18.273,0.0 -base-dhw-tankless-propane.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1444.7,3059.0,3059.0,23.457,18.273,0.0 -base-enclosure-2stories-garage.xml,0.0,0.0,1354.7,998.0,11171.6,2524.9,2315.5,4702.4,4702.4,31.454,28.374,0.0 -base-enclosure-2stories.xml,0.0,0.0,1354.7,998.0,11171.5,2410.9,2530.9,4876.6,4876.6,34.75,28.553,0.0 -base-enclosure-beds-1.xml,0.0,0.0,939.6,637.2,6162.0,1598.4,1736.2,3192.9,3192.9,23.728,17.749,0.0 -base-enclosure-beds-2.xml,0.0,0.0,1147.2,817.6,8666.7,2153.4,2029.9,3241.4,3241.4,23.539,18.06,0.0 -base-enclosure-beds-4.xml,0.0,0.0,1562.3,1178.4,13676.3,2901.1,2136.7,3623.1,3623.1,23.169,18.678,0.0 -base-enclosure-beds-5.xml,0.0,0.0,1769.9,1358.7,16181.1,3193.2,2436.8,3889.3,3889.3,22.981,18.986,0.0 -base-enclosure-ceilingtypes.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2158.7,3697.7,3697.7,30.05,19.809,0.0 -base-enclosure-floortypes.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1807.6,3389.4,3389.4,29.905,21.342,0.0 -base-enclosure-garage.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2070.9,2835.5,2835.5,19.491,12.558,0.0 -base-enclosure-infil-ach-house-pressure.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2106.7,3720.2,3720.2,23.355,18.37,0.0 -base-enclosure-infil-cfm-house-pressure.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2106.7,3720.2,3720.2,23.355,18.37,0.0 -base-enclosure-infil-cfm50.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2106.7,3720.2,3720.2,23.355,18.37,0.0 -base-enclosure-infil-ela.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2146.0,3473.1,3473.1,28.224,19.249,0.0 -base-enclosure-infil-flue.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2111.1,3739.8,3739.8,24.056,18.559,0.0 -base-enclosure-infil-natural-ach.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2147.6,3468.5,3468.5,27.984,19.204,0.0 -base-enclosure-infil-natural-cfm.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2147.6,3468.5,3468.5,27.984,19.204,0.0 -base-enclosure-orientations.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2107.2,3716.8,3716.8,23.368,18.336,0.0 -base-enclosure-overhangs.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2105.6,3325.2,3325.2,23.306,17.825,0.0 -base-enclosure-rooftypes.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2106.0,3626.2,3626.2,23.194,17.514,0.0 -base-enclosure-skylights-physical-properties.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2118.2,3779.9,3779.9,25.099,21.295,0.0 -base-enclosure-skylights-shading.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2112.1,3746.7,3746.7,23.981,18.63,0.0 -base-enclosure-skylights-storms.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2110.7,3934.6,3934.6,23.949,20.714,0.0 -base-enclosure-skylights.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2109.8,3796.7,3796.7,23.865,20.993,0.0 -base-enclosure-split-level.xml,0.0,0.0,1354.7,998.0,11171.6,2952.8,1697.5,2799.6,2799.6,13.662,13.327,0.0 -base-enclosure-thermal-mass.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2105.6,3347.5,3347.5,23.23,18.026,0.0 -base-enclosure-walltypes.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2131.6,2851.1,2851.1,26.182,12.612,0.0 -base-enclosure-windows-natural-ventilation-availability.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2105.3,3327.5,3327.5,23.355,17.836,0.0 -base-enclosure-windows-none.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2063.7,2434.6,2434.6,17.541,8.44,0.0 -base-enclosure-windows-physical-properties.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2143.3,3664.4,3664.4,28.139,21.153,0.0 -base-enclosure-windows-shading-seasons.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2105.3,3720.2,3720.2,23.355,18.37,0.0 -base-enclosure-windows-shading.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2108.2,2930.4,2930.4,23.399,11.032,0.0 -base-enclosure-windows-storms.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2102.3,3516.9,3516.9,22.811,16.457,0.0 -base-foundation-ambient.xml,0.0,2.0,1354.7,998.0,11171.5,2752.7,1744.7,3389.9,3389.9,20.981,21.461,0.0 -base-foundation-basement-garage.xml,0.0,0.0,1354.7,998.0,11171.6,2792.6,1895.9,3608.0,3608.0,21.769,18.739,0.0 -base-foundation-belly-wing-no-skirt.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1742.7,3203.8,3203.8,25.669,19.13,0.0 -base-foundation-belly-wing-skirt.xml,0.0,0.0,1354.7,998.0,11171.6,2752.7,1740.4,3225.4,3225.4,25.507,19.088,0.0 -base-foundation-complex.xml,0.0,2.0,1354.7,998.0,11171.6,2563.5,2184.1,4002.5,4002.5,33.749,21.467,0.0 -base-foundation-conditioned-basement-slab-insulation-full.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2103.6,3559.8,3559.8,22.613,20.097,0.0 -base-foundation-conditioned-basement-slab-insulation.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2101.9,3616.3,3616.3,23.084,19.209,0.0 -base-foundation-conditioned-basement-wall-insulation.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2103.9,3605.4,3605.4,23.543,18.202,0.0 -base-foundation-conditioned-crawlspace.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1713.4,2766.7,2766.7,16.166,11.777,0.0 -base-foundation-multiple.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1680.4,2849.5,2849.5,15.869,15.816,0.0 -base-foundation-slab.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1689.9,2867.3,2867.3,13.29,13.384,0.0 -base-foundation-unconditioned-basement-above-grade.xml,0.0,0.0,1354.7,998.0,11171.6,2652.8,1678.4,2942.6,2942.6,17.085,16.716,0.0 -base-foundation-unconditioned-basement-assembly-r.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1659.3,2726.7,2726.7,15.306,14.596,0.0 -base-foundation-unconditioned-basement-wall-insulation.xml,0.0,0.0,1354.7,998.0,11171.6,2652.8,1700.9,2787.6,2787.6,17.463,13.002,0.0 -base-foundation-unconditioned-basement.xml,0.0,0.0,1354.7,998.0,11171.6,2652.8,1678.3,2866.4,2866.4,16.098,15.99,0.0 -base-foundation-unvented-crawlspace.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1687.4,2821.3,2821.3,14.974,15.496,0.0 -base-foundation-vented-crawlspace-above-grade.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1716.0,3259.2,3259.2,17.067,16.646,0.0 -base-foundation-vented-crawlspace.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1715.4,2891.5,2891.5,17.076,16.319,0.0 -base-foundation-walkout-basement.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2138.3,3912.6,3912.6,27.015,20.248,0.0 -base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,6844.1,3527.9,6844.1,23.773,14.668,0.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1924.9,3332.5,3332.5,0.0,16.007,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7145.2,3704.1,7145.2,24.758,16.294,0.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7193.3,1786.0,7193.3,24.985,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,147.0,0.0,1354.7,998.0,11171.6,2563.5,10471.1,3620.6,10471.1,38.103,16.135,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7145.2,3698.1,7145.2,24.758,16.294,0.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7145.2,3704.1,7145.2,24.758,16.294,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7124.6,3222.2,7124.6,24.752,17.264,0.0 -base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4164.1,2930.7,4164.1,22.294,15.642,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1.0,9.0,1354.7,998.0,11171.5,2563.5,3219.9,2926.9,3219.9,23.017,17.749,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,244.0,9.0,1354.7,998.0,11171.6,2563.5,3180.2,3083.3,3180.2,23.298,17.749,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1.0,9.0,1354.7,998.0,11171.6,2563.5,3220.0,3264.2,3264.2,23.017,17.75,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,2.0,0.0,1354.7,998.0,11171.6,2563.5,3066.1,2958.1,3066.1,22.935,16.972,0.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,2.0,9.0,1354.7,998.0,11171.6,2563.5,3222.6,3264.2,3264.2,26.419,17.749,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5618.9,4010.6,5618.9,25.001,18.363,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5216.8,3521.2,5216.8,24.748,18.109,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5233.5,3855.7,5233.5,24.748,18.093,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,8444.3,3756.4,8444.3,24.745,18.136,0.0 -base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5216.9,3852.9,5216.9,24.748,18.092,0.0 -base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,172.0,0.0,1354.7,998.0,11171.7,2563.6,10233.3,4507.5,10233.3,31.056,20.56,0.0 -base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,31.0,1.0,1354.7,998.0,11171.6,2563.5,5461.5,3788.8,5461.5,27.361,19.533,0.0 -base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,163.0,0.0,1354.7,998.0,11171.6,2563.5,5910.7,3149.1,5910.7,25.201,18.107,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5900.1,3149.3,5900.1,24.811,18.109,0.0 -base-hvac-autosize-sizing-controls.xml,0.0,0.0,2180.8,1715.9,21140.4,3685.7,2508.1,3581.8,3581.8,17.37,15.022,0.0 -base-hvac-autosize.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2110.4,3821.4,3821.4,24.11,18.629,0.0 -base-hvac-boiler-coal-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.9,1785.9,1975.9,16.778,0.0,0.0 -base-hvac-boiler-elec-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5998.2,1785.9,5998.2,16.778,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2008.6,3982.6,3982.6,16.778,18.958,0.0 -base-hvac-boiler-gas-only-pilot.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1958.4,1785.9,1958.4,16.778,0.0,0.0 -base-hvac-boiler-gas-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1958.4,1785.9,1958.4,16.778,0.0,0.0 -base-hvac-boiler-oil-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.9,1785.9,1975.9,16.778,0.0,0.0 -base-hvac-boiler-propane-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1954.4,1785.9,1954.4,16.778,0.0,0.0 -base-hvac-boiler-wood-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1954.4,1785.9,1954.4,16.778,0.0,0.0 -base-hvac-central-ac-only-1-speed-autosize-factor.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3288.9,3288.9,0.0,15.428,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3602.9,3602.9,0.0,18.642,0.0 -base-hvac-central-ac-only-1-speed.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3609.5,3609.5,0.0,18.642,0.0 -base-hvac-central-ac-only-2-speed.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3116.5,3116.5,0.0,19.111,0.0 -base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,4044.0,4044.0,0.0,18.889,0.0 -base-hvac-central-ac-only-var-speed-detailed-performance.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3542.1,3542.1,0.0,17.838,0.0 -base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,0.0,6.0,1354.7,998.0,11171.5,2563.5,1974.9,3130.2,3130.2,0.0,20.586,0.0 -base-hvac-central-ac-only-var-speed.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,2906.4,2906.4,0.0,18.855,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7263.4,3982.7,7263.4,24.985,18.959,0.0 diff --git a/hpxml-measures/workflow/tests/base_results/results_simulations2_bills.csv b/hpxml-measures/workflow/tests/base_results/results_simulations2_bills.csv deleted file mode 100644 index d385ee6c2..000000000 --- a/hpxml-measures/workflow/tests/base_results/results_simulations2_bills.csv +++ /dev/null @@ -1,236 +0,0 @@ -HPXML,Utility Bills: Bills: Total (USD),Utility Bills: Bills: Electricity: Fixed (USD),Utility Bills: Bills: Electricity: Energy (USD),Utility Bills: Bills: Electricity: PV Credit (USD),Utility Bills: Bills: Electricity: Total (USD),Utility Bills: Bills: Natural Gas: Fixed (USD),Utility Bills: Bills: Natural Gas: Energy (USD),Utility Bills: Bills: Natural Gas: Total (USD),Utility Bills: Bills: Fuel Oil: Fixed (USD),Utility Bills: Bills: Fuel Oil: Energy (USD),Utility Bills: Bills: Fuel Oil: Total (USD),Utility Bills: Bills: Propane: Fixed (USD),Utility Bills: Bills: Propane: Energy (USD),Utility Bills: Bills: Propane: Total (USD),Utility Bills: Bills: Wood Cord: Fixed (USD),Utility Bills: Bills: Wood Cord: Energy (USD),Utility Bills: Bills: Wood Cord: Total (USD),Utility Bills: Bills: Wood Pellets: Fixed (USD),Utility Bills: Bills: Wood Pellets: Energy (USD),Utility Bills: Bills: Wood Pellets: Total (USD),Utility Bills: Bills: Coal: Fixed (USD),Utility Bills: Bills: Coal: Energy (USD),Utility Bills: Bills: Coal: Total (USD),Utility Bills: Tiered: Total (USD),Utility Bills: Tiered: Electricity: Fixed (USD),Utility Bills: Tiered: Electricity: Energy (USD),Utility Bills: Tiered: Electricity: PV Credit (USD),Utility Bills: Tiered: Electricity: Total (USD),Utility Bills: Tiered: Natural Gas: Fixed (USD),Utility Bills: Tiered: Natural Gas: Energy (USD),Utility Bills: Tiered: Natural Gas: Total (USD),Utility Bills: Tiered: Fuel Oil: Fixed (USD),Utility Bills: Tiered: Fuel Oil: Energy (USD),Utility Bills: Tiered: Fuel Oil: Total (USD),Utility Bills: Tiered: Propane: Fixed (USD),Utility Bills: Tiered: Propane: Energy (USD),Utility Bills: Tiered: Propane: Total (USD),Utility Bills: Tiered: Wood Cord: Fixed (USD),Utility Bills: Tiered: Wood Cord: Energy (USD),Utility Bills: Tiered: Wood Cord: Total (USD),Utility Bills: Tiered: Wood Pellets: Fixed (USD),Utility Bills: Tiered: Wood Pellets: Energy (USD),Utility Bills: Tiered: Wood Pellets: Total (USD),Utility Bills: Tiered: Coal: Fixed (USD),Utility Bills: Tiered: Coal: Energy (USD),Utility Bills: Tiered: Coal: Total (USD),Utility Bills: TOU: Total (USD),Utility Bills: TOU: Electricity: Fixed (USD),Utility Bills: TOU: Electricity: Energy (USD),Utility Bills: TOU: Electricity: PV Credit (USD),Utility Bills: TOU: Electricity: Total (USD),Utility Bills: TOU: Natural Gas: Fixed (USD),Utility Bills: TOU: Natural Gas: Energy (USD),Utility Bills: TOU: Natural Gas: Total (USD),Utility Bills: TOU: Fuel Oil: Fixed (USD),Utility Bills: TOU: Fuel Oil: Energy (USD),Utility Bills: TOU: Fuel Oil: Total (USD),Utility Bills: TOU: Propane: Fixed (USD),Utility Bills: TOU: Propane: Energy (USD),Utility Bills: TOU: Propane: Total (USD),Utility Bills: TOU: Wood Cord: Fixed (USD),Utility Bills: TOU: Wood Cord: Energy (USD),Utility Bills: TOU: Wood Cord: Total (USD),Utility Bills: TOU: Wood Pellets: Fixed (USD),Utility Bills: TOU: Wood Pellets: Energy (USD),Utility Bills: TOU: Wood Pellets: Total (USD),Utility Bills: TOU: Coal: Fixed (USD),Utility Bills: TOU: Coal: Energy (USD),Utility Bills: TOU: Coal: Total (USD),Utility Bills: Tiered and TOU: Total (USD),Utility Bills: Tiered and TOU: Electricity: Fixed (USD),Utility Bills: Tiered and TOU: Electricity: Energy (USD),Utility Bills: Tiered and TOU: Electricity: PV Credit (USD),Utility Bills: Tiered and TOU: Electricity: Total (USD),Utility Bills: Tiered and TOU: Natural Gas: Fixed (USD),Utility Bills: Tiered and TOU: Natural Gas: Energy (USD),Utility Bills: Tiered and TOU: Natural Gas: Total (USD),Utility Bills: Tiered and TOU: Fuel Oil: Fixed (USD),Utility Bills: Tiered and TOU: Fuel Oil: Energy (USD),Utility Bills: Tiered and TOU: Fuel Oil: Total (USD),Utility Bills: Tiered and TOU: Propane: Fixed (USD),Utility Bills: Tiered and TOU: Propane: Energy (USD),Utility Bills: Tiered and TOU: Propane: Total (USD),Utility Bills: Tiered and TOU: Wood Cord: Fixed (USD),Utility Bills: Tiered and TOU: Wood Cord: Energy (USD),Utility Bills: Tiered and TOU: Wood Cord: Total (USD),Utility Bills: Tiered and TOU: Wood Pellets: Fixed (USD),Utility Bills: Tiered and TOU: Wood Pellets: Energy (USD),Utility Bills: Tiered and TOU: Wood Pellets: Total (USD),Utility Bills: Tiered and TOU: Coal: Fixed (USD),Utility Bills: Tiered and TOU: Coal: Energy (USD),Utility Bills: Tiered and TOU: Coal: Total (USD),Utility Bills: Real-Time Pricing: Total (USD),Utility Bills: Real-Time Pricing: Electricity: Fixed (USD),Utility Bills: Real-Time Pricing: Electricity: Energy (USD),Utility Bills: Real-Time Pricing: Electricity: PV Credit (USD),Utility Bills: Real-Time Pricing: Electricity: Total (USD),Utility Bills: Real-Time Pricing: Natural Gas: Fixed (USD),Utility Bills: Real-Time Pricing: Natural Gas: Energy (USD),Utility Bills: Real-Time Pricing: Natural Gas: Total (USD),Utility Bills: Real-Time Pricing: Fuel Oil: Fixed (USD),Utility Bills: Real-Time Pricing: Fuel Oil: Energy (USD),Utility Bills: Real-Time Pricing: Fuel Oil: Total (USD),Utility Bills: Real-Time Pricing: Propane: Fixed (USD),Utility Bills: Real-Time Pricing: Propane: Energy (USD),Utility Bills: Real-Time Pricing: Propane: Total (USD),Utility Bills: Real-Time Pricing: Wood Cord: Fixed (USD),Utility Bills: Real-Time Pricing: Wood Cord: Energy (USD),Utility Bills: Real-Time Pricing: Wood Cord: Total (USD),Utility Bills: Real-Time Pricing: Wood Pellets: Fixed (USD),Utility Bills: Real-Time Pricing: Wood Pellets: Energy (USD),Utility Bills: Real-Time Pricing: Wood Pellets: Total (USD),Utility Bills: Real-Time Pricing: Coal: Fixed (USD),Utility Bills: Real-Time Pricing: Coal: Energy (USD),Utility Bills: Real-Time Pricing: Coal: Total (USD),Utility Bills: Simple: Total (USD),Utility Bills: Simple: Electricity: Fixed (USD),Utility Bills: Simple: Electricity: Energy (USD),Utility Bills: Simple: Electricity: PV Credit (USD),Utility Bills: Simple: Electricity: Total (USD),Utility Bills: Simple: Natural Gas: Fixed (USD),Utility Bills: Simple: Natural Gas: Energy (USD),Utility Bills: Simple: Natural Gas: Total (USD),Utility Bills: Simple: Fuel Oil: Fixed (USD),Utility Bills: Simple: Fuel Oil: Energy (USD),Utility Bills: Simple: Fuel Oil: Total (USD),Utility Bills: Simple: Propane: Fixed (USD),Utility Bills: Simple: Propane: Energy (USD),Utility Bills: Simple: Propane: Total (USD),Utility Bills: Simple: Wood Cord: Fixed (USD),Utility Bills: Simple: Wood Cord: Energy (USD),Utility Bills: Simple: Wood Cord: Total (USD),Utility Bills: Simple: Wood Pellets: Fixed (USD),Utility Bills: Simple: Wood Pellets: Energy (USD),Utility Bills: Simple: Wood Pellets: Total (USD),Utility Bills: Simple: Coal: Fixed (USD),Utility Bills: Simple: Coal: Energy (USD),Utility Bills: Simple: Coal: Total (USD),Utility Bills: Detailed: Total (USD),Utility Bills: Detailed: Electricity: Fixed (USD),Utility Bills: Detailed: Electricity: Energy (USD),Utility Bills: Detailed: Electricity: PV Credit (USD),Utility Bills: Detailed: Electricity: Total (USD),Utility Bills: Detailed: Natural Gas: Fixed (USD),Utility Bills: Detailed: Natural Gas: Energy (USD),Utility Bills: Detailed: Natural Gas: Total (USD),Utility Bills: Detailed: Fuel Oil: Fixed (USD),Utility Bills: Detailed: Fuel Oil: Energy (USD),Utility Bills: Detailed: Fuel Oil: Total (USD),Utility Bills: Detailed: Propane: Fixed (USD),Utility Bills: Detailed: Propane: Energy (USD),Utility Bills: Detailed: Propane: Total (USD),Utility Bills: Detailed: Wood Cord: Fixed (USD),Utility Bills: Detailed: Wood Cord: Energy (USD),Utility Bills: Detailed: Wood Cord: Total (USD),Utility Bills: Detailed: Wood Pellets: Fixed (USD),Utility Bills: Detailed: Wood Pellets: Energy (USD),Utility Bills: Detailed: Wood Pellets: Total (USD),Utility Bills: Detailed: Coal: Fixed (USD),Utility Bills: Detailed: Coal: Energy (USD),Utility Bills: Detailed: Coal: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Electricity: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Electricity: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Electricity: PV Credit (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Electricity: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Natural Gas: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Natural Gas: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Natural Gas: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Fuel Oil: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Fuel Oil: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Fuel Oil: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Propane: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Propane: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Propane: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Cord: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Cord: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Cord: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Pellets: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Pellets: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Pellets: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Coal: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Coal: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Coal: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Electricity: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Electricity: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Electricity: PV Credit (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Electricity: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Natural Gas: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Natural Gas: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Natural Gas: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Fuel Oil: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Fuel Oil: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Fuel Oil: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Propane: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Propane: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Propane: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Cord: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Cord: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Cord: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Pellets: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Pellets: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Pellets: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Coal: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Coal: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Coal: Total (USD),Utility Bills: Feed-In Tariff: Total (USD),Utility Bills: Feed-In Tariff: Electricity: Fixed (USD),Utility Bills: Feed-In Tariff: Electricity: Energy (USD),Utility Bills: Feed-In Tariff: Electricity: PV Credit (USD),Utility Bills: Feed-In Tariff: Electricity: Total (USD),Utility Bills: Feed-In Tariff: Natural Gas: Fixed (USD),Utility Bills: Feed-In Tariff: Natural Gas: Energy (USD),Utility Bills: Feed-In Tariff: Natural Gas: Total (USD),Utility Bills: Feed-In Tariff: Fuel Oil: Fixed (USD),Utility Bills: Feed-In Tariff: Fuel Oil: Energy (USD),Utility Bills: Feed-In Tariff: Fuel Oil: Total (USD),Utility Bills: Feed-In Tariff: Propane: Fixed (USD),Utility Bills: Feed-In Tariff: Propane: Energy (USD),Utility Bills: Feed-In Tariff: Propane: Total (USD),Utility Bills: Feed-In Tariff: Wood Cord: Fixed (USD),Utility Bills: Feed-In Tariff: Wood Cord: Energy (USD),Utility Bills: Feed-In Tariff: Wood Cord: Total (USD),Utility Bills: Feed-In Tariff: Wood Pellets: Fixed (USD),Utility Bills: Feed-In Tariff: Wood Pellets: Energy (USD),Utility Bills: Feed-In Tariff: Wood Pellets: Total (USD),Utility Bills: Feed-In Tariff: Coal: Fixed (USD),Utility Bills: Feed-In Tariff: Coal: Energy (USD),Utility Bills: Feed-In Tariff: Coal: Total (USD) -base-hvac-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1958.7,144.0,1557.9,0.0,1701.9,144.0,112.8,256.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1965.13,144.0,1524.71,0.0,1668.71,144.0,152.42,296.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1843.84,144.0,1397.12,0.0,1541.12,144.0,158.72,302.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1837.45,144.0,1389.43,0.0,1533.43,144.0,160.02,304.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1741.82,144.0,1331.89,0.0,1475.89,144.0,121.93,265.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-area-fractions.xml,2527.14,144.0,1743.05,0.0,1887.05,144.0,496.09,640.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-area-multipliers.xml,1836.05,144.0,1308.15,0.0,1452.15,144.0,239.9,383.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-buried.xml,1814.25,144.0,1299.88,0.0,1443.88,144.0,226.37,370.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-defaults.xml,1933.9,144.0,1487.67,0.0,1631.67,144.0,158.23,302.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-effective-rvalue.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-leakage-cfm50.xml,1849.24,144.0,1313.65,0.0,1457.65,144.0,247.59,391.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-leakage-percent.xml,1861.13,144.0,1318.7,0.0,1462.7,144.0,254.43,398.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-shape-mixed.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-shape-rectangular.xml,1844.17,144.0,1312.08,0.0,1456.08,144.0,244.09,388.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-shape-round.xml,1850.0,144.0,1314.59,0.0,1458.59,144.0,247.41,391.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-elec-resistance-only.xml,1878.55,144.0,1734.55,0.0,1878.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-evap-cooler-furnace-gas.xml,1696.7,144.0,1162.05,0.0,1306.05,144.0,246.65,390.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-evap-cooler-only-ducted.xml,1277.97,144.0,1133.97,0.0,1277.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-evap-cooler-only.xml,1275.58,144.0,1131.58,0.0,1275.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-fireplace-wood-only.xml,1592.06,144.0,1108.53,0.0,1252.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.53,339.53,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-floor-furnace-propane-only.xml,2001.42,144.0,1108.53,0.0,1252.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,748.89,748.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-coal-only.xml,1623.75,144.0,1133.53,0.0,1277.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,346.22,346.22,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-elec-central-ac-1-speed.xml,2243.93,144.0,2099.93,0.0,2243.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-elec-only.xml,2072.75,144.0,1928.75,0.0,2072.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-central-ac-2-speed.xml,1796.37,144.0,1261.78,0.0,1405.78,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml,1775.79,144.0,1241.2,0.0,1385.2,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-central-ac-var-speed.xml,1775.63,144.0,1241.04,0.0,1385.04,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only-autosize-factor.xml,1651.14,144.0,1132.15,0.0,1276.15,144.0,230.99,374.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,1487.84,144.0,1113.48,0.0,1257.48,144.0,86.36,230.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only-pilot.xml,1717.96,144.0,1133.53,0.0,1277.53,144.0,296.43,440.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-only.xml,1666.03,144.0,1133.53,0.0,1277.53,144.0,244.5,388.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-room-ac.xml,1862.08,144.0,1327.43,0.0,1471.43,144.0,246.65,390.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-oil-only.xml,2084.78,144.0,1133.53,0.0,1277.53,0.0,0.0,0.0,0.0,807.25,807.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-propane-only.xml,1904.05,144.0,1133.53,0.0,1277.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,626.52,626.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-wood-only.xml,1623.75,144.0,1133.53,0.0,1277.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,346.22,346.22,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-x3-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1377.97,144.0,1233.97,0.0,1377.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml,1657.98,144.0,1513.98,0.0,1657.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1499.25,144.0,1355.25,0.0,1499.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ground-to-air-heat-pump.xml,1635.32,144.0,1491.32,0.0,1635.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1971.19,144.0,1827.19,0.0,1971.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1786.3,144.0,1642.3,0.0,1786.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1857.05,144.0,1713.05,0.0,1857.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1791.53,144.0,1647.53,0.0,1791.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1891.67,144.0,1342.54,0.0,1486.54,144.0,261.13,405.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1832.19,144.0,1283.06,0.0,1427.06,144.0,261.13,405.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1810.14,144.0,1261.02,0.0,1405.02,144.0,261.12,405.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-furnace-gas-only.xml,1674.79,144.0,1127.87,0.0,1271.87,144.0,258.92,402.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,1722.77,144.0,1578.77,0.0,1722.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1378.05,144.0,1234.05,0.0,1378.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1678.48,144.0,1534.48,0.0,1678.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,1352.93,144.0,1208.93,0.0,1352.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,1363.02,144.0,1219.02,0.0,1363.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,1339.52,144.0,1195.52,0.0,1339.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,1352.58,144.0,1208.58,0.0,1352.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1325.34,144.0,1181.34,0.0,1325.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,1659.64,144.0,1515.64,0.0,1659.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,1639.44,144.0,1495.44,0.0,1639.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml,1508.84,144.0,1364.84,0.0,1508.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1511.0,144.0,1367.0,0.0,1511.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml,1589.87,144.0,1445.87,0.0,1589.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ducted.xml,1591.91,144.0,1447.91,0.0,1591.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1578.18,144.0,1434.18,0.0,1578.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1727.5,144.0,1341.14,0.0,1485.14,144.0,98.36,242.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1718.8,144.0,1333.86,0.0,1477.86,144.0,96.94,240.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1918.58,144.0,1330.02,0.0,1474.02,0.0,0.0,0.0,0.0,444.56,444.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,1571.68,144.0,1427.68,0.0,1571.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1579.07,144.0,1435.07,0.0,1579.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1549.83,144.0,1405.83,0.0,1549.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-mini-split-heat-pump-ductless.xml,1549.83,144.0,1405.83,0.0,1549.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-multiple.xml,2544.27,144.0,1938.15,0.0,2082.15,144.0,79.61,223.61,0.0,133.0,133.0,0.0,105.51,105.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-none.xml,2608.01,144.0,2464.01,0.0,2608.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac-with-heating-electricity.xml,2037.57,144.0,1893.57,0.0,2037.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac-with-heating-natural-gas.xml,1777.89,144.0,1262.03,0.0,1406.03,144.0,227.86,371.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ptac.xml,1397.31,144.0,1253.31,0.0,1397.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-pthp-heating-capacity-17f.xml,1683.07,144.0,1539.07,0.0,1683.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-pthp.xml,1683.07,144.0,1539.07,0.0,1683.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only-33percent.xml,1312.17,144.0,1168.17,0.0,1312.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only-ceer.xml,1436.8,144.0,1292.8,0.0,1436.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only-detailed-setpoints.xml,1392.64,144.0,1248.64,0.0,1392.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-only.xml,1436.44,144.0,1292.44,0.0,1436.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-with-heating.xml,2077.8,144.0,1933.8,0.0,2077.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-room-ac-with-reverse-cycle.xml,1683.07,144.0,1539.07,0.0,1683.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-seasons.xml,1845.03,144.0,1312.39,0.0,1456.39,144.0,244.64,388.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints-daily-schedules.xml,1820.17,144.0,1291.41,0.0,1435.41,144.0,240.76,384.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints-daily-setbacks.xml,1817.26,144.0,1296.45,0.0,1440.45,144.0,232.81,376.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-setpoints.xml,1610.84,144.0,1236.3,0.0,1380.3,144.0,86.54,230.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-space-heater-gas-only.xml,1577.27,144.0,1108.6,0.0,1252.6,144.0,180.67,324.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-stove-oil-only.xml,2043.7,144.0,1111.04,0.0,1255.04,0.0,0.0,0.0,0.0,788.66,788.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-stove-wood-pellets-only.xml,1593.28,144.0,1111.04,0.0,1255.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,338.24,338.24,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-undersized.xml,1658.26,144.0,1206.58,0.0,1350.58,144.0,163.68,307.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-wall-furnace-elec-only.xml,1891.31,144.0,1747.31,0.0,1891.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-ceiling-fans-label-energy-use.xml,1870.24,144.0,1335.87,0.0,1479.87,144.0,246.37,390.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-ceiling-fans.xml,1863.03,144.0,1328.65,0.0,1472.65,144.0,246.38,390.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-holiday.xml,1855.79,144.0,1321.2,0.0,1465.2,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-kwh-per-year.xml,1959.21,144.0,1444.66,0.0,1588.66,144.0,226.55,370.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-mixed.xml,1855.08,144.0,1320.49,0.0,1464.49,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-none-ceiling-fans.xml,1703.89,144.0,1140.18,0.0,1284.18,144.0,275.71,419.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-lighting-none.xml,1689.37,144.0,1125.45,0.0,1269.45,144.0,275.92,419.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-AMY-2012.xml,1919.61,144.0,1281.58,0.0,1425.58,144.0,350.03,494.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-baltimore-md.xml,1599.82,144.0,1168.48,0.0,1312.48,144.0,143.34,287.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-capetown-zaf.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-dallas-tx.xml,1503.05,144.0,1194.23,0.0,1338.23,144.0,20.82,164.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-detailed.xml,1848.3,144.0,1313.96,0.0,1457.96,144.0,246.34,390.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-duluth-mn.xml,1697.65,144.0,1097.26,0.0,1241.26,144.0,312.39,456.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-helena-mt.xml,1661.01,144.0,1021.92,0.0,1165.92,144.0,351.09,495.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-honolulu-hi.xml,4439.12,144.0,4295.12,0.0,4439.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-miami-fl.xml,1457.4,144.0,1313.4,0.0,1457.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-phoenix-az.xml,1636.0,144.0,1347.96,0.0,1491.96,144.0,0.04,144.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-portland-or.xml,1215.66,144.0,819.08,0.0,963.08,144.0,108.58,252.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-balanced.xml,2122.7,144.0,1390.78,0.0,1534.78,144.0,443.92,587.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-bath-kitchen-fans.xml,1871.78,144.0,1318.42,0.0,1462.42,144.0,265.36,409.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-airflow-fraction-zero.xml,2052.04,144.0,1383.46,0.0,1527.46,144.0,380.58,524.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-dse.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-evap-cooler-only-ducted.xml,1377.26,144.0,1233.26,0.0,1377.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,1994.97,144.0,1334.3,0.0,1478.3,144.0,372.67,516.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis-supplemental-fan-supply.xml,2011.92,144.0,1335.98,0.0,1479.98,144.0,387.94,531.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-cfis.xml,2061.79,144.0,1381.94,0.0,1525.94,144.0,391.85,535.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-erv-atre-asre.xml,1962.94,144.0,1384.26,0.0,1528.26,144.0,290.68,434.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-erv.xml,1962.97,144.0,1384.26,0.0,1528.26,144.0,290.71,434.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-exhaust-rated-flow-rate.xml,2052.19,144.0,1353.48,0.0,1497.48,144.0,410.71,554.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-exhaust.xml,2052.19,144.0,1353.48,0.0,1497.48,144.0,410.71,554.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-hrv-asre.xml,1962.99,144.0,1384.34,0.0,1528.34,144.0,290.65,434.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-hrv.xml,1963.03,144.0,1384.34,0.0,1528.34,144.0,290.69,434.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-multiple.xml,2170.23,144.0,1405.67,0.0,1549.67,144.0,476.56,620.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-supply.xml,2025.74,144.0,1353.55,0.0,1497.55,144.0,384.19,528.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-whole-house-fan.xml,1790.63,144.0,1254.16,0.0,1398.16,144.0,248.47,392.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-additional-properties.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv-detailed-only.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,764.53,108.0,1256.06,-990.12,373.94,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,688.61,108.0,781.7,-591.68,298.02,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,684.77,108.0,746.87,-560.69,294.18,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,647.03,108.0,703.64,-555.2,256.44,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv-mixed.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,861.82,144.0,1313.97,-986.74,471.23,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,764.53,108.0,1256.06,-990.12,373.94,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-bills-pv.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,632.93,465.0,1259.13,-1479.26,244.87,132.0,256.06,388.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.31,465.0,1259.13,-2013.87,-289.75,132.0,256.06,388.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-324.51,210.0,1259.13,-2181.7,-712.57,132.0,256.06,388.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-misc-bills.xml,1803.19,144.0,1259.13,0.0,1403.13,144.0,256.06,400.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-defaults.xml,1121.59,144.0,1177.04,-710.11,610.93,144.0,366.66,510.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-emissions.xml,892.64,144.0,1344.67,-986.62,502.05,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators-battery-scheduled.xml,2298.76,144.0,1376.85,0.0,1520.85,144.0,336.63,480.63,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators-battery.xml,2235.88,144.0,1313.97,0.0,1457.97,144.0,336.63,480.63,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-generators.xml,2235.88,144.0,1313.97,0.0,1457.97,144.0,336.63,480.63,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-ground-conductivity.xml,1821.08,144.0,1310.06,0.0,1454.06,144.0,223.02,367.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-loads-large-uncommon.xml,3689.59,144.0,2508.95,0.0,2652.95,144.0,742.28,886.28,0.0,0.0,0.0,0.0,67.86,67.86,0.0,82.5,82.5,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-loads-large-uncommon2.xml,3049.6,144.0,2378.69,0.0,2522.69,144.0,212.97,356.97,0.0,87.44,87.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.5,82.5,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-loads-none.xml,1493.06,144.0,900.92,0.0,1044.92,144.0,304.14,448.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-neighbor-shading-bldgtype-multifamily.xml,1233.14,144.0,933.25,0.0,1077.25,144.0,11.89,155.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-neighbor-shading.xml,1898.33,144.0,1307.8,0.0,1451.8,144.0,302.53,446.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-shielding-of-home.xml,1848.34,144.0,1318.74,0.0,1462.74,144.0,241.6,385.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-unit-multiplier.xml,18485.69,1440.0,13139.75,0.0,14579.75,1440.0,2465.94,3905.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-usage-multiplier.xml,3013.84,144.0,1858.12,0.0,2002.12,144.0,732.4,876.4,0.0,0.0,0.0,0.0,61.07,61.07,0.0,74.25,74.25,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-ah.xml,892.64,144.0,1344.67,-986.62,502.05,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-garage.xml,866.73,144.0,1294.08,-986.61,451.46,144.0,271.27,415.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-round-trip-efficiency.xml,943.62,144.0,1395.65,-986.62,553.03,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery-scheduled.xml,925.48,144.0,1376.85,-985.96,534.89,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-battery.xml,892.64,144.0,1344.67,-986.62,502.05,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators-battery-scheduled.xml,1012.26,144.0,1376.85,-1286.5,234.35,144.0,336.63,480.63,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators-battery.xml,980.66,144.0,1345.92,-1287.16,202.75,144.0,336.63,480.63,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv-generators.xml,948.6,144.0,1313.97,-1287.29,170.69,144.0,336.63,480.63,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-pv.xml,861.82,144.0,1313.97,-986.74,471.23,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-0-runperiod-1-month.xml,130.65,12.0,19.73,0.0,31.73,12.0,86.92,98.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-0.xml,916.27,144.0,272.96,0.0,416.96,144.0,355.31,499.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1-misc-loads-large-uncommon.xml,2783.45,144.0,1901.43,0.0,2045.43,144.0,443.67,587.67,0.0,0.0,0.0,0.0,70.84,70.84,0.0,79.51,79.51,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1-misc-loads-large-uncommon2.xml,2517.52,144.0,1812.4,0.0,1956.4,144.0,246.34,390.34,0.0,91.27,91.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.51,79.51,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-1.xml,1594.47,144.0,1042.81,0.0,1186.81,144.0,263.66,407.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-residents-5.xml,1374.67,144.0,1483.21,-743.14,884.07,144.0,346.6,490.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-all-10-mins.xml,1854.64,144.0,1321.64,0.0,1465.64,144.0,245.0,389.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-mixed-timesteps-power-outage.xml,1376.2,144.0,1036.49,0.0,1180.49,144.0,51.71,195.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-mixed-timesteps.xml,1618.5,144.0,1245.09,0.0,1389.09,144.0,85.41,229.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,1845.48,144.0,1317.64,0.0,1461.64,144.0,239.84,383.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-power-outage.xml,1541.04,144.0,1101.61,0.0,1245.61,144.0,151.43,295.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,1697.55,144.0,1129.18,0.0,1273.18,144.0,280.37,424.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic.xml,1844.65,144.0,1317.07,0.0,1461.07,144.0,239.58,383.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints-daily-schedules.xml,1820.17,144.0,1291.41,0.0,1435.41,144.0,240.76,384.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints-daily-setbacks.xml,1817.26,144.0,1296.45,0.0,1440.45,144.0,232.81,376.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-detailed-setpoints.xml,1610.83,144.0,1236.29,0.0,1380.29,144.0,86.54,230.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-power-outage.xml,2222.95,144.0,1696.08,0.0,1840.08,144.0,238.87,382.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple-vacancy.xml,2150.71,144.0,1583.89,0.0,1727.89,144.0,278.82,422.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-schedules-simple.xml,2388.78,144.0,1862.11,0.0,2006.11,144.0,238.67,382.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-calendar-year-custom.xml,1846.82,144.0,1312.21,0.0,1456.21,144.0,246.61,390.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-daylight-saving-custom.xml,1848.57,144.0,1313.97,0.0,1457.97,144.0,246.6,390.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-daylight-saving-disabled.xml,1847.86,144.0,1313.39,0.0,1457.39,144.0,246.47,390.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-runperiod-1-month.xml,223.82,12.01,110.79,0.0,122.8,12.01,89.01,101.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-temperature-capacitance-multiplier.xml,1845.0,144.0,1310.41,0.0,1454.41,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1854.61,144.0,1321.44,0.0,1465.44,144.0,245.17,389.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1853.61,144.0,1321.12,0.0,1465.12,144.0,244.49,388.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-10-mins.xml,1857.69,144.0,1318.01,0.0,1462.01,144.0,251.68,395.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-simcontrol-timestep-30-mins.xml,1854.19,144.0,1316.32,0.0,1460.32,144.0,249.87,393.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house001.xml,2444.32,144.0,1743.9,0.0,1887.9,144.0,412.42,556.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house002.xml,2101.31,144.0,1528.6,0.0,1672.6,144.0,284.71,428.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house003.xml,2075.28,144.0,1492.29,0.0,1636.29,144.0,294.99,438.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house004.xml,3767.21,144.0,2861.57,0.0,3005.57,144.0,617.64,761.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house005.xml,2717.9,144.0,1998.69,0.0,2142.69,144.0,431.21,575.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house006.xml,2291.74,144.0,1196.77,0.0,1340.77,144.0,806.97,950.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house007.xml,2355.6,144.0,1272.75,0.0,1416.75,144.0,794.85,938.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house008.xml,2842.09,144.0,1475.1,0.0,1619.1,144.0,1078.99,1222.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house009.xml,2479.83,144.0,1282.49,0.0,1426.49,144.0,909.34,1053.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house010.xml,2575.5,144.0,1413.19,0.0,1557.19,144.0,874.31,1018.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house011.xml,1627.77,144.0,1483.77,0.0,1627.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house012.xml,1314.48,144.0,1170.48,0.0,1314.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house013.xml,1145.64,144.0,1001.64,0.0,1145.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house014.xml,1181.31,144.0,1037.31,0.0,1181.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house015.xml,1145.64,144.0,1001.64,0.0,1145.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house016.xml,2720.45,144.0,1770.4,0.0,1914.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,806.05,806.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house017.xml,2106.4,144.0,1013.91,0.0,1157.91,144.0,804.49,948.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house018.xml,1743.39,144.0,1599.39,0.0,1743.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house019.xml,3137.67,144.0,1882.0,0.0,2026.0,144.0,967.67,1111.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house020.xml,4880.1,144.0,2447.18,0.0,2591.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2288.92,2288.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house021.xml,3414.19,144.0,1768.57,0.0,1912.57,144.0,1357.62,1501.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house022.xml,5120.07,144.0,1781.15,0.0,1925.15,0.0,0.0,0.0,0.0,3194.92,3194.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house023.xml,5165.62,144.0,2310.06,0.0,2454.06,0.0,0.0,0.0,0.0,2711.56,2711.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house024.xml,4786.08,144.0,1608.24,0.0,1752.24,0.0,0.0,0.0,0.0,3033.84,3033.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house025.xml,3009.12,144.0,2225.15,0.0,2369.15,144.0,495.97,639.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house026.xml,1556.49,144.0,805.35,0.0,949.35,144.0,463.14,607.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house027.xml,1881.21,144.0,995.83,0.0,1139.83,144.0,597.38,741.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house028.xml,1766.52,144.0,936.91,0.0,1080.91,144.0,541.61,685.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house029.xml,2157.0,144.0,1183.65,0.0,1327.65,144.0,685.35,829.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house030.xml,2410.28,144.0,672.58,0.0,816.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1593.7,1593.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house031.xml,4386.14,144.0,1813.37,0.0,1957.37,144.0,2284.77,2428.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house032.xml,1946.94,144.0,587.68,0.0,731.68,144.0,1071.26,1215.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house033.xml,4000.75,144.0,538.68,0.0,682.68,0.0,0.0,0.0,0.0,3318.07,3318.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house034.xml,5958.69,144.0,1575.82,0.0,1719.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4238.87,4238.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house035.xml,1508.53,144.0,640.89,0.0,784.89,144.0,579.64,723.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house036.xml,1923.01,144.0,924.05,0.0,1068.05,144.0,710.96,854.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house037.xml,3518.56,144.0,959.99,0.0,1103.99,0.0,0.0,0.0,0.0,2414.57,2414.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house038.xml,3038.36,144.0,1819.42,0.0,1963.42,144.0,930.94,1074.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house039.xml,2127.92,144.0,875.83,0.0,1019.83,144.0,964.09,1108.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house040.xml,2138.64,144.0,875.75,0.0,1019.75,144.0,974.89,1118.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house041.xml,3692.22,144.0,1794.42,0.0,1938.42,144.0,1609.8,1753.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house042.xml,3272.17,144.0,1529.8,0.0,1673.8,144.0,1454.37,1598.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house043.xml,2402.46,144.0,1136.12,0.0,1280.12,144.0,978.34,1122.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house044.xml,3337.93,144.0,1663.98,0.0,1807.98,144.0,1385.95,1529.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house045.xml,2505.02,144.0,1332.58,0.0,1476.58,144.0,884.44,1028.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house046.xml,962.32,144.0,818.32,0.0,962.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house047.xml,1018.78,144.0,661.42,0.0,805.42,144.0,69.36,213.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house048.xml,2308.58,144.0,1489.79,0.0,1633.79,144.0,530.79,674.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house049.xml,1508.54,144.0,1197.4,0.0,1341.4,144.0,23.14,167.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house050.xml,1250.83,144.0,659.08,0.0,803.08,144.0,303.75,447.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 diff --git a/hpxml-measures/workflow/tests/base_results/results_simulations_bills.csv b/hpxml-measures/workflow/tests/base_results/results_simulations_bills.csv new file mode 100644 index 000000000..c0f71fad2 --- /dev/null +++ b/hpxml-measures/workflow/tests/base_results/results_simulations_bills.csv @@ -0,0 +1,457 @@ +HPXML,Utility Bills: Bills: Total (USD),Utility Bills: Bills: Electricity: Fixed (USD),Utility Bills: Bills: Electricity: Energy (USD),Utility Bills: Bills: Electricity: PV Credit (USD),Utility Bills: Bills: Electricity: Total (USD),Utility Bills: Bills: Natural Gas: Fixed (USD),Utility Bills: Bills: Natural Gas: Energy (USD),Utility Bills: Bills: Natural Gas: Total (USD),Utility Bills: Bills: Fuel Oil: Fixed (USD),Utility Bills: Bills: Fuel Oil: Energy (USD),Utility Bills: Bills: Fuel Oil: Total (USD),Utility Bills: Bills: Propane: Fixed (USD),Utility Bills: Bills: Propane: Energy (USD),Utility Bills: Bills: Propane: Total (USD),Utility Bills: Bills: Wood Cord: Fixed (USD),Utility Bills: Bills: Wood Cord: Energy (USD),Utility Bills: Bills: Wood Cord: Total (USD),Utility Bills: Bills: Wood Pellets: Fixed (USD),Utility Bills: Bills: Wood Pellets: Energy (USD),Utility Bills: Bills: Wood Pellets: Total (USD),Utility Bills: Bills: Coal: Fixed (USD),Utility Bills: Bills: Coal: Energy (USD),Utility Bills: Bills: Coal: Total (USD),Utility Bills: Tiered: Total (USD),Utility Bills: Tiered: Electricity: Fixed (USD),Utility Bills: Tiered: Electricity: Energy (USD),Utility Bills: Tiered: Electricity: PV Credit (USD),Utility Bills: Tiered: Electricity: Total (USD),Utility Bills: Tiered: Natural Gas: Fixed (USD),Utility Bills: Tiered: Natural Gas: Energy (USD),Utility Bills: Tiered: Natural Gas: Total (USD),Utility Bills: Tiered: Fuel Oil: Fixed (USD),Utility Bills: Tiered: Fuel Oil: Energy (USD),Utility Bills: Tiered: Fuel Oil: Total (USD),Utility Bills: Tiered: Propane: Fixed (USD),Utility Bills: Tiered: Propane: Energy (USD),Utility Bills: Tiered: Propane: Total (USD),Utility Bills: Tiered: Wood Cord: Fixed (USD),Utility Bills: Tiered: Wood Cord: Energy (USD),Utility Bills: Tiered: Wood Cord: Total (USD),Utility Bills: Tiered: Wood Pellets: Fixed (USD),Utility Bills: Tiered: Wood Pellets: Energy (USD),Utility Bills: Tiered: Wood Pellets: Total (USD),Utility Bills: Tiered: Coal: Fixed (USD),Utility Bills: Tiered: Coal: Energy (USD),Utility Bills: Tiered: Coal: Total (USD),Utility Bills: TOU: Total (USD),Utility Bills: TOU: Electricity: Fixed (USD),Utility Bills: TOU: Electricity: Energy (USD),Utility Bills: TOU: Electricity: PV Credit (USD),Utility Bills: TOU: Electricity: Total (USD),Utility Bills: TOU: Natural Gas: Fixed (USD),Utility Bills: TOU: Natural Gas: Energy (USD),Utility Bills: TOU: Natural Gas: Total (USD),Utility Bills: TOU: Fuel Oil: Fixed (USD),Utility Bills: TOU: Fuel Oil: Energy (USD),Utility Bills: TOU: Fuel Oil: Total (USD),Utility Bills: TOU: Propane: Fixed (USD),Utility Bills: TOU: Propane: Energy (USD),Utility Bills: TOU: Propane: Total (USD),Utility Bills: TOU: Wood Cord: Fixed (USD),Utility Bills: TOU: Wood Cord: Energy (USD),Utility Bills: TOU: Wood Cord: Total (USD),Utility Bills: TOU: Wood Pellets: Fixed (USD),Utility Bills: TOU: Wood Pellets: Energy (USD),Utility Bills: TOU: Wood Pellets: Total (USD),Utility Bills: TOU: Coal: Fixed (USD),Utility Bills: TOU: Coal: Energy (USD),Utility Bills: TOU: Coal: Total (USD),Utility Bills: Tiered and TOU: Total (USD),Utility Bills: Tiered and TOU: Electricity: Fixed (USD),Utility Bills: Tiered and TOU: Electricity: Energy (USD),Utility Bills: Tiered and TOU: Electricity: PV Credit (USD),Utility Bills: Tiered and TOU: Electricity: Total (USD),Utility Bills: Tiered and TOU: Natural Gas: Fixed (USD),Utility Bills: Tiered and TOU: Natural Gas: Energy (USD),Utility Bills: Tiered and TOU: Natural Gas: Total (USD),Utility Bills: Tiered and TOU: Fuel Oil: Fixed (USD),Utility Bills: Tiered and TOU: Fuel Oil: Energy (USD),Utility Bills: Tiered and TOU: Fuel Oil: Total (USD),Utility Bills: Tiered and TOU: Propane: Fixed (USD),Utility Bills: Tiered and TOU: Propane: Energy (USD),Utility Bills: Tiered and TOU: Propane: Total (USD),Utility Bills: Tiered and TOU: Wood Cord: Fixed (USD),Utility Bills: Tiered and TOU: Wood Cord: Energy (USD),Utility Bills: Tiered and TOU: Wood Cord: Total (USD),Utility Bills: Tiered and TOU: Wood Pellets: Fixed (USD),Utility Bills: Tiered and TOU: Wood Pellets: Energy (USD),Utility Bills: Tiered and TOU: Wood Pellets: Total (USD),Utility Bills: Tiered and TOU: Coal: Fixed (USD),Utility Bills: Tiered and TOU: Coal: Energy (USD),Utility Bills: Tiered and TOU: Coal: Total (USD),Utility Bills: Real-Time Pricing: Total (USD),Utility Bills: Real-Time Pricing: Electricity: Fixed (USD),Utility Bills: Real-Time Pricing: Electricity: Energy (USD),Utility Bills: Real-Time Pricing: Electricity: PV Credit (USD),Utility Bills: Real-Time Pricing: Electricity: Total (USD),Utility Bills: Real-Time Pricing: Natural Gas: Fixed (USD),Utility Bills: Real-Time Pricing: Natural Gas: Energy (USD),Utility Bills: Real-Time Pricing: Natural Gas: Total (USD),Utility Bills: Real-Time Pricing: Fuel Oil: Fixed (USD),Utility Bills: Real-Time Pricing: Fuel Oil: Energy (USD),Utility Bills: Real-Time Pricing: Fuel Oil: Total (USD),Utility Bills: Real-Time Pricing: Propane: Fixed (USD),Utility Bills: Real-Time Pricing: Propane: Energy (USD),Utility Bills: Real-Time Pricing: Propane: Total (USD),Utility Bills: Real-Time Pricing: Wood Cord: Fixed (USD),Utility Bills: Real-Time Pricing: Wood Cord: Energy (USD),Utility Bills: Real-Time Pricing: Wood Cord: Total (USD),Utility Bills: Real-Time Pricing: Wood Pellets: Fixed (USD),Utility Bills: Real-Time Pricing: Wood Pellets: Energy (USD),Utility Bills: Real-Time Pricing: Wood Pellets: Total (USD),Utility Bills: Real-Time Pricing: Coal: Fixed (USD),Utility Bills: Real-Time Pricing: Coal: Energy (USD),Utility Bills: Real-Time Pricing: Coal: Total (USD),Utility Bills: Simple: Total (USD),Utility Bills: Simple: Electricity: Fixed (USD),Utility Bills: Simple: Electricity: Energy (USD),Utility Bills: Simple: Electricity: PV Credit (USD),Utility Bills: Simple: Electricity: Total (USD),Utility Bills: Simple: Natural Gas: Fixed (USD),Utility Bills: Simple: Natural Gas: Energy (USD),Utility Bills: Simple: Natural Gas: Total (USD),Utility Bills: Simple: Fuel Oil: Fixed (USD),Utility Bills: Simple: Fuel Oil: Energy (USD),Utility Bills: Simple: Fuel Oil: Total (USD),Utility Bills: Simple: Propane: Fixed (USD),Utility Bills: Simple: Propane: Energy (USD),Utility Bills: Simple: Propane: Total (USD),Utility Bills: Simple: Wood Cord: Fixed (USD),Utility Bills: Simple: Wood Cord: Energy (USD),Utility Bills: Simple: Wood Cord: Total (USD),Utility Bills: Simple: Wood Pellets: Fixed (USD),Utility Bills: Simple: Wood Pellets: Energy (USD),Utility Bills: Simple: Wood Pellets: Total (USD),Utility Bills: Simple: Coal: Fixed (USD),Utility Bills: Simple: Coal: Energy (USD),Utility Bills: Simple: Coal: Total (USD),Utility Bills: Detailed: Total (USD),Utility Bills: Detailed: Electricity: Fixed (USD),Utility Bills: Detailed: Electricity: Energy (USD),Utility Bills: Detailed: Electricity: PV Credit (USD),Utility Bills: Detailed: Electricity: Total (USD),Utility Bills: Detailed: Natural Gas: Fixed (USD),Utility Bills: Detailed: Natural Gas: Energy (USD),Utility Bills: Detailed: Natural Gas: Total (USD),Utility Bills: Detailed: Fuel Oil: Fixed (USD),Utility Bills: Detailed: Fuel Oil: Energy (USD),Utility Bills: Detailed: Fuel Oil: Total (USD),Utility Bills: Detailed: Propane: Fixed (USD),Utility Bills: Detailed: Propane: Energy (USD),Utility Bills: Detailed: Propane: Total (USD),Utility Bills: Detailed: Wood Cord: Fixed (USD),Utility Bills: Detailed: Wood Cord: Energy (USD),Utility Bills: Detailed: Wood Cord: Total (USD),Utility Bills: Detailed: Wood Pellets: Fixed (USD),Utility Bills: Detailed: Wood Pellets: Energy (USD),Utility Bills: Detailed: Wood Pellets: Total (USD),Utility Bills: Detailed: Coal: Fixed (USD),Utility Bills: Detailed: Coal: Energy (USD),Utility Bills: Detailed: Coal: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Electricity: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Electricity: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Electricity: PV Credit (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Electricity: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Natural Gas: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Natural Gas: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Natural Gas: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Fuel Oil: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Fuel Oil: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Fuel Oil: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Propane: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Propane: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Propane: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Cord: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Cord: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Cord: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Pellets: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Pellets: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Wood Pellets: Total (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Coal: Fixed (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Coal: Energy (USD),Utility Bills: Net Metering w/ Wholesale Excess Rate: Coal: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Electricity: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Electricity: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Electricity: PV Credit (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Electricity: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Natural Gas: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Natural Gas: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Natural Gas: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Fuel Oil: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Fuel Oil: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Fuel Oil: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Propane: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Propane: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Propane: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Cord: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Cord: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Cord: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Pellets: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Pellets: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Wood Pellets: Total (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Coal: Fixed (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Coal: Energy (USD),Utility Bills: Net Metering w/ Retail Excess Rate: Coal: Total (USD),Utility Bills: Feed-In Tariff: Total (USD),Utility Bills: Feed-In Tariff: Electricity: Fixed (USD),Utility Bills: Feed-In Tariff: Electricity: Energy (USD),Utility Bills: Feed-In Tariff: Electricity: PV Credit (USD),Utility Bills: Feed-In Tariff: Electricity: Total (USD),Utility Bills: Feed-In Tariff: Natural Gas: Fixed (USD),Utility Bills: Feed-In Tariff: Natural Gas: Energy (USD),Utility Bills: Feed-In Tariff: Natural Gas: Total (USD),Utility Bills: Feed-In Tariff: Fuel Oil: Fixed (USD),Utility Bills: Feed-In Tariff: Fuel Oil: Energy (USD),Utility Bills: Feed-In Tariff: Fuel Oil: Total (USD),Utility Bills: Feed-In Tariff: Propane: Fixed (USD),Utility Bills: Feed-In Tariff: Propane: Energy (USD),Utility Bills: Feed-In Tariff: Propane: Total (USD),Utility Bills: Feed-In Tariff: Wood Cord: Fixed (USD),Utility Bills: Feed-In Tariff: Wood Cord: Energy (USD),Utility Bills: Feed-In Tariff: Wood Cord: Total (USD),Utility Bills: Feed-In Tariff: Wood Pellets: Fixed (USD),Utility Bills: Feed-In Tariff: Wood Pellets: Energy (USD),Utility Bills: Feed-In Tariff: Wood Pellets: Total (USD),Utility Bills: Feed-In Tariff: Coal: Fixed (USD),Utility Bills: Feed-In Tariff: Coal: Energy (USD),Utility Bills: Feed-In Tariff: Coal: Total (USD) +base-appliances-coal.xml,1815.36,144.0,1214.74,0.0,1358.74,144.0,239.61,383.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.01,73.01,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-appliances-dehumidifier-ief-portable.xml,1517.32,144.0,1211.03,0.0,1355.03,144.0,18.29,162.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-appliances-dehumidifier-ief-whole-home.xml,1518.07,144.0,1211.91,0.0,1355.91,144.0,18.16,162.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-appliances-dehumidifier-multiple.xml,1515.7,144.0,1208.99,0.0,1352.99,144.0,18.71,162.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-appliances-dehumidifier.xml,1516.22,144.0,1210.07,0.0,1354.07,144.0,18.15,162.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-appliances-freezer-temperature-dependent-schedule.xml,1892.65,144.0,1365.19,0.0,1509.19,144.0,239.46,383.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-appliances-gas.xml,1793.91,144.0,1214.74,0.0,1358.74,144.0,291.17,435.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-appliances-modified.xml,1873.57,144.0,1349.11,0.0,1493.11,144.0,236.46,380.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-appliances-none.xml,1596.04,144.0,1043.72,0.0,1187.72,144.0,264.32,408.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-appliances-oil.xml,1912.58,144.0,1214.74,0.0,1358.74,144.0,239.61,383.61,0.0,170.23,170.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-appliances-propane.xml,1874.47,144.0,1214.74,0.0,1358.74,144.0,239.61,383.61,0.0,0.0,0.0,0.0,132.12,132.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-appliances-refrigerator-temperature-dependent-schedule.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-appliances-wood.xml,1815.36,144.0,1214.74,0.0,1358.74,144.0,239.61,383.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.01,73.01,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-atticroof-cathedral.xml,1879.71,144.0,1312.49,0.0,1456.49,144.0,279.22,423.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-atticroof-conditioned.xml,2028.81,144.0,1490.28,0.0,1634.28,144.0,250.53,394.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-atticroof-flat.xml,1786.56,144.0,1283.88,0.0,1427.88,144.0,214.68,358.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-atticroof-radiant-barrier-ceiling.xml,1574.88,144.0,1233.22,0.0,1377.22,144.0,53.66,197.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-atticroof-radiant-barrier.xml,1550.28,144.0,1216.21,0.0,1360.21,144.0,46.07,190.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-atticroof-unvented-insulated-roof.xml,1827.35,144.0,1292.8,0.0,1436.8,144.0,246.55,390.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-atticroof-vented.xml,1849.09,144.0,1307.84,0.0,1451.84,144.0,253.25,397.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-battery-scheduled.xml,1911.44,144.0,1376.85,0.0,1520.85,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-battery.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,1306.55,144.0,888.7,0.0,1032.7,144.0,129.85,273.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml,969.32,144.0,825.32,0.0,969.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-adjacent-to-multiple.xml,1285.69,144.0,920.61,0.0,1064.61,144.0,77.08,221.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,1434.51,144.0,883.18,0.0,1027.18,144.0,263.33,407.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,1198.81,144.0,891.66,0.0,1035.66,144.0,19.15,163.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,1219.77,144.0,915.29,0.0,1059.29,144.0,16.48,160.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-infil-compartmentalization-test.xml,1250.69,144.0,954.68,0.0,1098.68,144.0,8.01,152.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-residents-1.xml,983.59,144.0,680.82,0.0,824.82,144.0,14.77,158.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,1270.05,144.0,972.28,0.0,1116.28,144.0,9.77,153.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,1299.87,144.0,1001.42,0.0,1145.42,144.0,10.45,154.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,1280.51,144.0,983.25,0.0,1127.25,144.0,9.26,153.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,1438.62,144.0,1143.01,0.0,1287.01,144.0,7.61,151.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,1291.27,144.0,995.66,0.0,1139.66,144.0,7.61,151.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,1133.54,144.0,837.09,0.0,981.09,144.0,8.45,152.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,1135.21,144.0,838.17,0.0,982.17,144.0,9.04,153.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,1134.94,144.0,838.9,0.0,982.9,144.0,8.04,152.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,1139.03,144.0,844.98,0.0,988.98,144.0,6.05,150.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,1135.02,144.0,839.01,0.0,983.01,144.0,8.01,152.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,1133.14,144.0,838.56,0.0,982.56,144.0,6.58,150.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,1112.39,144.0,968.39,0.0,1112.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,1140.09,144.0,996.09,0.0,1140.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,1121.05,144.0,977.05,0.0,1121.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,1279.86,144.0,1135.86,0.0,1279.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,1133.93,144.0,989.93,0.0,1133.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-generator.xml,1634.67,144.0,952.69,0.0,1096.69,144.0,9.43,153.43,0.0,0.0,0.0,0.0,384.55,384.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,1184.05,144.0,1040.05,0.0,1184.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,1054.82,144.0,605.36,0.0,749.36,144.0,161.46,305.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-laundry-room.xml,1028.0,144.0,598.7,0.0,742.7,144.0,141.3,285.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,1630.56,144.0,1121.2,0.0,1265.2,144.0,221.36,365.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1342.7,144.0,997.03,0.0,1141.03,144.0,57.67,201.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-mechvent.xml,1321.4,144.0,991.82,0.0,1135.82,144.0,41.58,185.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-pv-battery.xml,385.04,144.0,984.74,-897.13,231.61,144.0,9.43,153.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-pv.xml,352.88,144.0,952.69,-897.25,199.45,144.0,9.43,153.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,991.98,144.0,674.91,0.0,818.91,144.0,29.07,173.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml,914.58,144.0,564.54,0.0,708.54,144.0,62.04,206.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,1069.68,144.0,639.77,0.0,783.77,144.0,141.91,285.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,1069.68,144.0,639.77,0.0,783.77,144.0,141.91,285.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit-shared-water-heater.xml,1029.46,144.0,599.55,0.0,743.55,144.0,141.91,285.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-unit.xml,1250.12,144.0,952.69,0.0,1096.69,144.0,9.43,153.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-mf-whole-building.xml,8846.94,864.0,7982.94,0.0,8846.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-sfa-unit-2stories.xml,1747.62,144.0,1274.28,0.0,1418.28,144.0,185.34,329.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-sfa-unit-atticroof-cathedral.xml,2323.84,144.0,1395.45,0.0,1539.45,144.0,640.39,784.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,1527.6,144.0,1093.11,0.0,1237.11,144.0,146.49,290.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-bldgtype-sfa-unit.xml,1527.6,144.0,1093.11,0.0,1237.11,144.0,146.49,290.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-combi-tankless-outside.xml,1398.73,144.0,784.24,0.0,928.24,144.0,326.49,470.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-combi-tankless.xml,1411.6,144.0,784.5,0.0,928.5,144.0,339.1,483.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-desuperheater-2-speed.xml,1303.82,144.0,1159.82,0.0,1303.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-desuperheater-gshp.xml,1556.27,144.0,1412.27,0.0,1556.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-desuperheater-hpwh.xml,1672.32,144.0,1091.05,0.0,1235.05,144.0,293.27,437.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-desuperheater-tankless.xml,1365.76,144.0,1221.76,0.0,1365.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-desuperheater-var-speed.xml,1277.1,144.0,1133.1,0.0,1277.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-desuperheater.xml,1366.95,144.0,1222.95,0.0,1366.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-dwhr.xml,1765.19,144.0,1230.6,0.0,1374.6,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-indirect-detailed-setpoints.xml,1428.27,144.0,784.35,0.0,928.35,144.0,355.92,499.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-indirect-dse.xml,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-indirect-outside.xml,1444.5,144.0,784.24,0.0,928.24,144.0,372.26,516.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-indirect-standbyloss.xml,1432.21,144.0,784.32,0.0,928.32,144.0,359.89,503.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-indirect-with-solar-fraction.xml,1346.98,144.0,784.44,0.0,928.44,144.0,274.54,418.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-indirect.xml,1429.67,144.0,784.35,0.0,928.35,144.0,357.32,501.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-jacket-electric.xml,1839.03,144.0,1302.16,0.0,1446.16,144.0,248.87,392.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-jacket-gas.xml,1678.2,144.0,987.01,0.0,1131.01,144.0,403.19,547.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-jacket-hpwh.xml,1669.37,144.0,1087.76,0.0,1231.76,144.0,293.61,437.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-jacket-indirect.xml,1427.52,144.0,784.37,0.0,928.37,144.0,355.15,499.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-low-flow-fixtures.xml,1840.46,144.0,1305.87,0.0,1449.87,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-multiple.xml,1404.47,144.0,855.15,0.0,999.15,144.0,261.32,405.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-none.xml,1437.44,144.0,899.01,0.0,1043.01,144.0,250.43,394.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-recirc-demand-scheduled.xml,1846.76,144.0,1312.17,0.0,1456.17,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-recirc-demand.xml,1846.76,144.0,1312.17,0.0,1456.17,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-recirc-manual.xml,1831.35,144.0,1296.76,0.0,1440.76,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-recirc-nocontrol.xml,2387.33,144.0,1852.74,0.0,1996.74,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-recirc-temperature.xml,2209.31,144.0,1674.72,0.0,1818.72,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-recirc-timer.xml,2387.33,144.0,1852.74,0.0,1996.74,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-solar-direct-evacuated-tube.xml,1635.27,144.0,1100.68,0.0,1244.68,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-solar-direct-flat-plate.xml,1582.67,144.0,1048.18,0.0,1192.18,144.0,246.49,390.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-solar-direct-ics.xml,1637.97,144.0,1103.38,0.0,1247.38,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-solar-fraction.xml,1635.27,144.0,1097.83,0.0,1241.83,144.0,249.44,393.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-solar-indirect-flat-plate.xml,1581.67,144.0,1050.96,0.0,1194.96,144.0,242.71,386.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-solar-thermosyphon-flat-plate.xml,1572.11,144.0,1037.61,0.0,1181.61,144.0,246.5,390.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-coal.xml,1754.42,144.0,988.65,0.0,1132.65,144.0,248.58,392.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.19,229.19,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-detailed-setpoints.xml,1848.12,144.0,1313.6,0.0,1457.6,144.0,246.52,390.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-elec-uef.xml,1850.86,144.0,1316.82,0.0,1460.82,144.0,246.04,390.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-gas-outside.xml,1700.69,144.0,981.49,0.0,1125.49,144.0,431.2,575.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-gas-uef-fhr.xml,1682.83,144.0,987.5,0.0,1131.5,144.0,407.33,551.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-gas-uef.xml,1682.83,144.0,987.5,0.0,1131.5,144.0,407.33,551.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-gas.xml,1687.09,144.0,988.65,0.0,1132.65,144.0,410.44,554.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-heat-pump-detailed-schedules.xml,1646.99,144.0,1057.08,0.0,1201.08,144.0,301.91,445.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1640.74,144.0,1050.3,0.0,1194.3,144.0,302.44,446.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-heat-pump-outside.xml,1767.08,144.0,1228.1,0.0,1372.1,144.0,250.98,394.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-heat-pump-uef.xml,1640.74,144.0,1050.3,0.0,1194.3,144.0,302.44,446.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-heat-pump-with-solar-fraction.xml,1575.84,144.0,1022.43,0.0,1166.43,144.0,265.41,409.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-heat-pump-with-solar.xml,1585.13,144.0,1043.57,0.0,1187.57,144.0,253.56,397.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-heat-pump.xml,1673.11,144.0,1092.51,0.0,1236.51,144.0,292.6,436.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1828.34,144.0,1296.58,0.0,1440.58,144.0,243.76,387.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-model-type-stratified.xml,1832.49,144.0,1293.65,0.0,1437.65,144.0,250.84,394.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-oil.xml,2059.63,144.0,988.65,0.0,1132.65,144.0,248.58,392.58,0.0,534.4,534.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tank-wood.xml,1754.42,144.0,988.65,0.0,1132.65,144.0,248.58,392.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,229.19,229.19,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tankless-detailed-setpoints.xml,1638.76,144.0,981.49,0.0,1125.49,144.0,369.27,513.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tankless-electric-outside.xml,1860.63,144.0,1321.65,0.0,1465.65,144.0,250.98,394.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tankless-electric-uef.xml,1856.79,144.0,1317.81,0.0,1461.81,144.0,250.98,394.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tankless-electric.xml,1860.63,144.0,1321.65,0.0,1465.65,144.0,250.98,394.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tankless-gas-uef.xml,1622.76,144.0,981.49,0.0,1125.49,144.0,353.27,497.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tankless-gas-with-solar-fraction.xml,1561.96,144.0,981.49,0.0,1125.49,144.0,292.47,436.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tankless-gas-with-solar.xml,1548.3,144.0,996.79,0.0,1140.79,144.0,263.51,407.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tankless-gas.xml,1639.01,144.0,981.49,0.0,1125.49,144.0,369.52,513.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-dhw-tankless-propane.xml,1824.22,144.0,981.49,0.0,1125.49,144.0,250.98,394.98,0.0,0.0,0.0,0.0,303.75,303.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-2stories-garage.xml,2074.8,144.0,1513.74,0.0,1657.74,144.0,273.06,417.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-2stories.xml,2250.13,144.0,1638.09,0.0,1782.09,144.0,324.04,468.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-beds-1.xml,1672.72,144.0,1122.21,0.0,1266.21,144.0,262.51,406.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-beds-2.xml,1761.97,144.0,1219.45,0.0,1363.45,144.0,254.52,398.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-beds-4.xml,1933.96,144.0,1407.21,0.0,1551.21,144.0,238.75,382.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-beds-5.xml,2018.67,144.0,1499.72,0.0,1643.72,144.0,230.95,374.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-ceilingtypes.xml,2041.35,144.0,1341.63,0.0,1485.63,144.0,411.72,555.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-floortypes.xml,1780.01,144.0,1081.58,0.0,1225.58,144.0,410.43,554.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-garage.xml,1820.42,144.0,1261.19,0.0,1405.19,144.0,271.23,415.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-infil-ach-house-pressure.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-infil-cfm-house-pressure.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-infil-cfm50.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-infil-ela.xml,1931.5,144.0,1318.17,0.0,1462.17,144.0,325.33,469.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-infil-flue.xml,1863.72,144.0,1314.61,0.0,1458.61,144.0,261.11,405.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-infil-natural-ach.xml,1927.38,144.0,1317.96,0.0,1461.96,144.0,321.42,465.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-infil-natural-cfm.xml,1927.38,144.0,1317.96,0.0,1461.96,144.0,321.42,465.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-orientations.xml,1850.47,144.0,1313.26,0.0,1457.26,144.0,249.21,393.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-overhangs.xml,1846.07,144.0,1308.32,0.0,1452.32,144.0,249.75,393.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-rooftypes.xml,1844.66,144.0,1309.14,0.0,1453.14,144.0,247.52,391.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-skylights-physical-properties.xml,1901.71,144.0,1352.56,0.0,1496.56,144.0,261.15,405.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-skylights-shading.xml,1862.17,144.0,1316.14,0.0,1460.14,144.0,258.03,402.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-skylights-storms.xml,1871.68,144.0,1339.85,0.0,1483.85,144.0,243.83,387.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-skylights.xml,1871.27,144.0,1343.12,0.0,1487.12,144.0,240.15,384.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-split-level.xml,1485.14,144.0,1072.74,0.0,1216.74,144.0,124.4,268.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-thermal-mass.xml,1845.07,144.0,1312.01,0.0,1456.01,144.0,245.06,389.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-walltypes.xml,2006.6,144.0,1281.04,0.0,1425.04,144.0,437.56,581.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-windows-natural-ventilation-availability.xml,1810.92,144.0,1275.54,0.0,1419.54,144.0,247.38,391.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-windows-none.xml,1809.86,144.0,1246.63,0.0,1390.63,144.0,275.23,419.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-windows-physical-properties.xml,1937.33,144.0,1322.08,0.0,1466.08,144.0,327.25,471.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-windows-shading-seasons.xml,1848.4,144.0,1314.89,0.0,1458.89,144.0,245.51,389.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-windows-shading.xml,1786.44,144.0,1229.3,0.0,1373.3,144.0,269.14,413.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-enclosure-windows-storms.xml,1845.7,144.0,1294.61,0.0,1438.61,144.0,263.09,407.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-ambient.xml,1584.73,144.0,1104.49,0.0,1248.49,144.0,192.24,336.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-basement-garage.xml,1697.81,144.0,1190.77,0.0,1334.77,144.0,219.04,363.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-belly-wing-no-skirt.xml,1594.45,144.0,1081.08,0.0,1225.08,144.0,225.37,369.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-belly-wing-skirt.xml,1590.44,144.0,1081.18,0.0,1225.18,144.0,221.26,365.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-complex.xml,2091.63,144.0,1368.47,0.0,1512.47,144.0,435.16,579.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-conditioned-basement-slab-insulation-full.xml,1831.1,144.0,1330.59,0.0,1474.59,144.0,212.51,356.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-conditioned-basement-slab-insulation.xml,1840.92,144.0,1320.46,0.0,1464.46,144.0,232.46,376.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-conditioned-basement-wall-insulation.xml,1824.63,144.0,1298.28,0.0,1442.28,144.0,238.35,382.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-conditioned-crawlspace.xml,1540.46,144.0,1055.05,0.0,1199.05,144.0,197.41,341.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-multiple.xml,1506.03,144.0,1075.28,0.0,1219.28,144.0,142.75,286.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-slab.xml,1475.37,144.0,1068.29,0.0,1212.29,144.0,119.08,263.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-unconditioned-basement-above-grade.xml,1520.05,144.0,1078.66,0.0,1222.66,144.0,153.39,297.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-unconditioned-basement-assembly-r.xml,1477.15,144.0,1057.54,0.0,1201.54,144.0,131.61,275.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-unconditioned-basement-wall-insulation.xml,1564.3,144.0,1057.01,0.0,1201.01,144.0,219.29,363.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-unconditioned-basement.xml,1506.42,144.0,1075.42,0.0,1219.42,144.0,143.0,287.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-unvented-crawlspace.xml,1498.95,144.0,1090.86,0.0,1234.86,144.0,120.09,264.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-vented-crawlspace-above-grade.xml,1529.08,144.0,1095.89,0.0,1239.89,144.0,145.19,289.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-vented-crawlspace.xml,1524.37,144.0,1090.34,0.0,1234.34,144.0,146.03,290.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-foundation-walkout-basement.xml,1923.24,144.0,1330.18,0.0,1474.18,144.0,305.06,449.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml,1801.07,144.0,1657.07,0.0,1801.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1403.45,144.0,1259.45,0.0,1403.45,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,1848.34,144.0,1704.34,0.0,1848.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1687.72,144.0,1543.72,0.0,1687.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1844.16,144.0,1700.16,0.0,1844.16,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1850.61,144.0,1706.61,0.0,1850.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-1-speed.xml,1848.34,144.0,1704.34,0.0,1848.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-2-speed.xml,1682.67,144.0,1538.67,0.0,1682.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,1630.67,144.0,1486.67,0.0,1630.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1887.52,144.0,1436.23,0.0,1580.23,144.0,163.29,307.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1885.76,144.0,1390.54,0.0,1534.54,144.0,207.22,351.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1891.72,144.0,1440.38,0.0,1584.38,144.0,163.34,307.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,1846.56,144.0,1379.77,0.0,1523.77,144.0,178.79,322.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1897.3,144.0,1448.47,0.0,1592.47,144.0,160.83,304.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,1739.29,144.0,1595.29,0.0,1739.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,1725.25,144.0,1581.25,0.0,1725.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,1724.49,144.0,1580.49,0.0,1724.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,2019.75,144.0,1875.75,0.0,2019.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,1722.95,144.0,1578.95,0.0,1722.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,1670.11,144.0,1526.11,0.0,1670.11,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,1718.84,144.0,1574.84,0.0,1718.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,1660.35,144.0,1516.35,0.0,1660.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-air-to-air-heat-pump-var-speed.xml,1666.59,144.0,1522.59,0.0,1666.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-autosize-sizing-controls.xml,1920.79,144.0,1552.94,0.0,1696.94,144.0,79.85,223.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-autosize.xml,1861.66,144.0,1320.81,0.0,1464.81,144.0,252.85,396.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-boiler-coal-only.xml,1563.0,144.0,1117.83,0.0,1261.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,301.17,301.17,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-boiler-elec-only.xml,1953.05,144.0,1809.05,0.0,1953.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-boiler-gas-central-ac-1-speed.xml,1818.1,144.0,1314.52,0.0,1458.52,144.0,215.58,359.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-boiler-gas-only-pilot.xml,1668.39,144.0,1114.22,0.0,1258.22,144.0,266.17,410.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-boiler-gas-only.xml,1615.89,144.0,1114.22,0.0,1258.22,144.0,213.67,357.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-boiler-oil-only.xml,1964.06,144.0,1117.83,0.0,1261.83,0.0,0.0,0.0,0.0,702.23,702.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-boiler-propane-only.xml,1805.47,144.0,1113.38,0.0,1257.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,548.09,548.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-boiler-wood-only.xml,1560.25,144.0,1113.38,0.0,1257.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,302.87,302.87,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-central-ac-only-1-speed-autosize-factor.xml,1431.65,144.0,1287.65,0.0,1431.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-central-ac-only-1-speed-seer2.xml,1442.98,144.0,1298.98,0.0,1442.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-central-ac-only-1-speed.xml,1443.46,144.0,1299.46,0.0,1443.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-central-ac-only-2-speed.xml,1381.53,144.0,1237.53,0.0,1381.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,1398.25,144.0,1254.25,0.0,1398.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-central-ac-only-var-speed-detailed-performance.xml,1372.3,144.0,1228.3,0.0,1372.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,1357.21,144.0,1213.21,0.0,1357.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-central-ac-only-var-speed.xml,1357.14,144.0,1213.14,0.0,1357.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1891.41,144.0,1747.41,0.0,1891.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-dse.xml,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,1958.7,144.0,1557.9,0.0,1701.9,144.0,112.8,256.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1965.13,144.0,1524.71,0.0,1668.71,144.0,152.42,296.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1843.84,144.0,1397.12,0.0,1541.12,144.0,158.72,302.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1837.45,144.0,1389.43,0.0,1533.43,144.0,160.02,304.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1741.82,144.0,1331.89,0.0,1475.89,144.0,121.93,265.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-ducts-area-fractions.xml,2527.14,144.0,1743.05,0.0,1887.05,144.0,496.09,640.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-ducts-area-multipliers.xml,1836.05,144.0,1308.15,0.0,1452.15,144.0,239.9,383.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-ducts-buried.xml,1814.25,144.0,1299.88,0.0,1443.88,144.0,226.37,370.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-ducts-defaults.xml,1933.9,144.0,1487.67,0.0,1631.67,144.0,158.23,302.23,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-ducts-effective-rvalue.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-ducts-leakage-cfm50.xml,1849.24,144.0,1313.65,0.0,1457.65,144.0,247.59,391.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-ducts-leakage-percent.xml,1861.13,144.0,1318.7,0.0,1462.7,144.0,254.43,398.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-ducts-shape-mixed.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-ducts-shape-rectangular.xml,1844.17,144.0,1312.08,0.0,1456.08,144.0,244.09,388.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-ducts-shape-round.xml,1850.0,144.0,1314.59,0.0,1458.59,144.0,247.41,391.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-elec-resistance-only.xml,1878.55,144.0,1734.55,0.0,1878.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-evap-cooler-furnace-gas.xml,1696.7,144.0,1162.05,0.0,1306.05,144.0,246.65,390.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-evap-cooler-only-ducted.xml,1277.97,144.0,1133.97,0.0,1277.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-evap-cooler-only.xml,1275.58,144.0,1131.58,0.0,1275.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-fireplace-wood-only.xml,1592.06,144.0,1108.53,0.0,1252.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,339.53,339.53,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-floor-furnace-propane-only.xml,2001.42,144.0,1108.53,0.0,1252.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,748.89,748.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-hvac-furnace-coal-only.xml,1623.75,144.0,1133.53,0.0,1277.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,346.22,346.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,2243.93,144.0,2099.93,0.0,2243.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-elec-only.xml,2072.75,144.0,1928.75,0.0,2072.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,1796.37,144.0,1261.78,0.0,1405.78,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml,1775.79,144.0,1241.2,0.0,1385.2,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,1775.63,144.0,1241.04,0.0,1385.04,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-autosize-factor.xml,1652.33,144.0,1132.26,0.0,1276.26,144.0,232.07,376.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,1487.84,144.0,1113.48,0.0,1257.48,144.0,86.36,230.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-pilot.xml,1717.96,144.0,1133.53,0.0,1277.53,144.0,296.43,440.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only.xml,1666.03,144.0,1133.53,0.0,1277.53,144.0,244.5,388.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-room-ac.xml,1862.08,144.0,1327.43,0.0,1471.43,144.0,246.65,390.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-oil-only.xml,2084.78,144.0,1133.53,0.0,1277.53,0.0,0.0,0.0,0.0,807.25,807.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-propane-only.xml,1904.05,144.0,1133.53,0.0,1277.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,626.52,626.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,1623.75,144.0,1133.53,0.0,1277.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,346.22,346.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1377.97,144.0,1233.97,0.0,1377.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-detailed-geothermal-loop.xml,1657.98,144.0,1513.98,0.0,1657.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1499.25,144.0,1355.25,0.0,1499.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,1635.32,144.0,1491.32,0.0,1635.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1971.19,144.0,1827.19,0.0,1971.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1786.3,144.0,1642.3,0.0,1786.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed-detailed-performance.xml,1857.05,144.0,1713.05,0.0,1857.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1791.53,144.0,1647.53,0.0,1791.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1891.67,144.0,1342.54,0.0,1486.54,144.0,261.13,405.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1832.19,144.0,1283.06,0.0,1427.06,144.0,261.13,405.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1810.14,144.0,1261.02,0.0,1405.02,144.0,261.12,405.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-furnace-gas-only.xml,1674.79,144.0,1127.87,0.0,1271.87,144.0,258.92,402.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1722.77,144.0,1578.77,0.0,1722.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1378.05,144.0,1234.05,0.0,1378.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1678.48,144.0,1534.48,0.0,1678.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,1352.93,144.0,1208.93,0.0,1352.93,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance-autosize.xml,1363.02,144.0,1219.02,0.0,1363.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless-detailed-performance.xml,1339.52,144.0,1195.52,0.0,1339.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,1352.58,144.0,1208.58,0.0,1352.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1325.34,144.0,1181.34,0.0,1325.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-detailed-performance-autosize.xml,1659.64,144.0,1515.64,0.0,1659.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-detailed-performance.xml,1639.44,144.0,1495.44,0.0,1639.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml,1508.84,144.0,1364.84,0.0,1508.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1511.0,144.0,1367.0,0.0,1511.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml,1589.87,144.0,1445.87,0.0,1589.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,1591.91,144.0,1447.91,0.0,1591.91,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml,1550.47,144.0,1406.47,0.0,1550.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,1578.18,144.0,1434.18,0.0,1578.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,1727.5,144.0,1341.14,0.0,1485.14,144.0,98.36,242.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1718.8,144.0,1333.86,0.0,1477.86,144.0,96.94,240.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1918.58,144.0,1330.02,0.0,1474.02,0.0,0.0,0.0,0.0,444.56,444.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-detailed-performance-autosize.xml,1571.68,144.0,1427.68,0.0,1571.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,1579.07,144.0,1435.07,0.0,1579.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,1549.83,144.0,1405.83,0.0,1549.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,1549.83,144.0,1405.83,0.0,1549.83,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-multiple.xml,2544.27,144.0,1938.15,0.0,2082.15,144.0,79.61,223.61,0.0,133.0,133.0,0.0,105.51,105.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-none.xml,2608.01,144.0,2464.01,0.0,2608.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-electricity.xml,2037.57,144.0,1893.57,0.0,2037.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,1777.89,144.0,1262.03,0.0,1406.03,144.0,227.86,371.86,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-ptac.xml,1397.31,144.0,1253.31,0.0,1397.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-pthp-heating-capacity-17f.xml,1683.07,144.0,1539.07,0.0,1683.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-pthp.xml,1683.07,144.0,1539.07,0.0,1683.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-33percent.xml,1312.17,144.0,1168.17,0.0,1312.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-ceer.xml,1436.8,144.0,1292.8,0.0,1436.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only-detailed-setpoints.xml,1392.64,144.0,1248.64,0.0,1392.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-only.xml,1436.44,144.0,1292.44,0.0,1436.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-heating.xml,2077.8,144.0,1933.8,0.0,2077.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,1683.07,144.0,1539.07,0.0,1683.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-seasons.xml,1845.03,144.0,1312.39,0.0,1456.39,144.0,244.64,388.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-schedules.xml,1820.17,144.0,1291.41,0.0,1435.41,144.0,240.76,384.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints-daily-setbacks.xml,1817.26,144.0,1296.45,0.0,1440.45,144.0,232.81,376.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-setpoints.xml,1610.84,144.0,1236.3,0.0,1380.3,144.0,86.54,230.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-space-heater-gas-only.xml,1577.27,144.0,1108.6,0.0,1252.6,144.0,180.67,324.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-stove-oil-only.xml,2043.7,144.0,1111.04,0.0,1255.04,0.0,0.0,0.0,0.0,788.66,788.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-stove-wood-pellets-only.xml,1593.28,144.0,1111.04,0.0,1255.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,338.24,338.24,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-undersized.xml,1658.26,144.0,1206.58,0.0,1350.58,144.0,163.68,307.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-wall-furnace-elec-only.xml,1891.31,144.0,1747.31,0.0,1891.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-lighting-ceiling-fans-label-energy-use.xml,1870.24,144.0,1335.87,0.0,1479.87,144.0,246.37,390.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-lighting-ceiling-fans.xml,1863.03,144.0,1328.65,0.0,1472.65,144.0,246.38,390.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-lighting-holiday.xml,1855.79,144.0,1321.2,0.0,1465.2,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-lighting-kwh-per-year.xml,1959.21,144.0,1444.66,0.0,1588.66,144.0,226.55,370.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-lighting-mixed.xml,1855.08,144.0,1320.49,0.0,1464.49,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-lighting-none-ceiling-fans.xml,1703.89,144.0,1140.18,0.0,1284.18,144.0,275.71,419.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-lighting-none.xml,1689.37,144.0,1125.45,0.0,1269.45,144.0,275.92,419.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-location-AMY-2012.xml,1919.61,144.0,1281.58,0.0,1425.58,144.0,350.03,494.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-location-baltimore-md.xml,1599.82,144.0,1168.48,0.0,1312.48,144.0,143.34,287.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-location-capetown-zaf.xml,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-location-dallas-tx.xml,1503.05,144.0,1194.23,0.0,1338.23,144.0,20.82,164.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-location-detailed.xml,1848.3,144.0,1313.96,0.0,1457.96,144.0,246.34,390.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-location-duluth-mn.xml,1697.65,144.0,1097.26,0.0,1241.26,144.0,312.39,456.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-location-helena-mt.xml,1661.01,144.0,1021.92,0.0,1165.92,144.0,351.09,495.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-location-honolulu-hi.xml,4439.12,144.0,4295.12,0.0,4439.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-location-miami-fl.xml,1457.4,144.0,1313.4,0.0,1457.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-location-phoenix-az.xml,1636.0,144.0,1347.96,0.0,1491.96,144.0,0.04,144.04,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-location-portland-or.xml,1215.66,144.0,819.08,0.0,963.08,144.0,108.58,252.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-balanced.xml,2122.7,144.0,1390.78,0.0,1534.78,144.0,443.92,587.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-bath-kitchen-fans.xml,1871.78,144.0,1318.42,0.0,1462.42,144.0,265.36,409.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,2052.04,144.0,1383.46,0.0,1527.46,144.0,380.58,524.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-dse.xml,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-evap-cooler-only-ducted.xml,1377.26,144.0,1233.26,0.0,1377.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,1994.97,144.0,1334.3,0.0,1478.3,144.0,372.67,516.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis-supplemental-fan-supply.xml,2011.92,144.0,1335.98,0.0,1479.98,144.0,387.94,531.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-cfis.xml,2061.79,144.0,1381.94,0.0,1525.94,144.0,391.85,535.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-erv-atre-asre.xml,1962.94,144.0,1384.26,0.0,1528.26,144.0,290.68,434.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-erv.xml,1962.97,144.0,1384.26,0.0,1528.26,144.0,290.71,434.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust-rated-flow-rate.xml,2052.19,144.0,1353.48,0.0,1497.48,144.0,410.71,554.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-exhaust.xml,2052.19,144.0,1353.48,0.0,1497.48,144.0,410.71,554.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv-asre.xml,1962.99,144.0,1384.34,0.0,1528.34,144.0,290.65,434.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-hrv.xml,1963.03,144.0,1384.34,0.0,1528.34,144.0,290.69,434.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-multiple.xml,2170.23,144.0,1405.67,0.0,1549.67,144.0,476.56,620.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-supply.xml,2025.74,144.0,1353.55,0.0,1497.55,144.0,384.19,528.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-mechvent-whole-house-fan.xml,1790.63,144.0,1254.16,0.0,1398.16,144.0,248.47,392.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-additional-properties.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-detailed-only.xml,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,764.53,108.0,1256.06,-990.12,373.94,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,688.61,108.0,781.7,-591.68,298.02,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,684.77,108.0,746.87,-560.69,294.18,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,647.03,108.0,703.64,-555.2,256.44,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv-mixed.xml,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,861.82,144.0,1313.97,-986.74,471.23,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,764.53,108.0,1256.06,-990.12,373.94,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-bills-pv.xml,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,632.93,465.0,1259.13,-1479.26,244.87,132.0,256.06,388.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.31,465.0,1259.13,-2013.87,-289.75,132.0,256.06,388.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-324.51,210.0,1259.13,-2181.7,-712.57,132.0,256.06,388.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-bills.xml,1803.19,144.0,1259.13,0.0,1403.13,144.0,256.06,400.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-defaults.xml,1121.59,144.0,1177.04,-710.11,610.93,144.0,366.66,510.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-emissions.xml,892.64,144.0,1344.67,-986.62,502.05,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery-scheduled.xml,2298.76,144.0,1376.85,0.0,1520.85,144.0,336.63,480.63,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-generators-battery.xml,2235.88,144.0,1313.97,0.0,1457.97,144.0,336.63,480.63,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-generators.xml,2235.88,144.0,1313.97,0.0,1457.97,144.0,336.63,480.63,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-ground-conductivity.xml,1821.08,144.0,1310.06,0.0,1454.06,144.0,223.02,367.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon.xml,3689.59,144.0,2508.95,0.0,2652.95,144.0,742.28,886.28,0.0,0.0,0.0,0.0,67.86,67.86,0.0,82.5,82.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-loads-large-uncommon2.xml,3049.6,144.0,2378.69,0.0,2522.69,144.0,212.97,356.97,0.0,87.44,87.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.5,82.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-loads-none.xml,1493.06,144.0,900.92,0.0,1044.92,144.0,304.14,448.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-neighbor-shading-bldgtype-multifamily.xml,1233.14,144.0,933.25,0.0,1077.25,144.0,11.89,155.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-neighbor-shading.xml,1898.33,144.0,1307.8,0.0,1451.8,144.0,302.53,446.53,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-shielding-of-home.xml,1848.34,144.0,1318.74,0.0,1462.74,144.0,241.6,385.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-unit-multiplier.xml,18485.69,1440.0,13139.75,0.0,14579.75,1440.0,2465.94,3905.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-misc-usage-multiplier.xml,3013.84,144.0,1858.12,0.0,2002.12,144.0,732.4,876.4,0.0,0.0,0.0,0.0,61.07,61.07,0.0,74.25,74.25,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-pv-battery-ah.xml,892.64,144.0,1344.67,-986.62,502.05,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-pv-battery-garage.xml,866.73,144.0,1294.08,-986.61,451.46,144.0,271.27,415.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-pv-battery-round-trip-efficiency.xml,943.62,144.0,1395.65,-986.62,553.03,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-pv-battery-scheduled.xml,925.48,144.0,1376.85,-985.96,534.89,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-pv-battery.xml,892.64,144.0,1344.67,-986.62,502.05,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery-scheduled.xml,1012.26,144.0,1376.85,-1286.5,234.35,144.0,336.63,480.63,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-pv-generators-battery.xml,980.66,144.0,1345.92,-1287.16,202.75,144.0,336.63,480.63,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-pv-generators.xml,948.6,144.0,1313.97,-1287.29,170.69,144.0,336.63,480.63,0.0,297.28,297.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-pv.xml,861.82,144.0,1313.97,-986.74,471.23,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-residents-0-runperiod-1-month.xml,130.65,12.0,19.73,0.0,31.73,12.0,86.92,98.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-residents-0.xml,916.27,144.0,272.96,0.0,416.96,144.0,355.31,499.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon.xml,2783.45,144.0,1901.43,0.0,2045.43,144.0,443.67,587.67,0.0,0.0,0.0,0.0,70.84,70.84,0.0,79.51,79.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-residents-1-misc-loads-large-uncommon2.xml,2517.52,144.0,1812.4,0.0,1956.4,144.0,246.34,390.34,0.0,91.27,91.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.51,79.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-residents-1.xml,1594.47,144.0,1042.81,0.0,1186.81,144.0,263.66,407.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-residents-5.xml,1374.67,144.0,1483.21,-743.14,884.07,144.0,346.6,490.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-all-10-mins.xml,1854.64,144.0,1321.64,0.0,1465.64,144.0,245.0,389.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps-power-outage.xml,1376.2,144.0,1036.49,0.0,1180.49,144.0,51.71,195.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-mixed-timesteps.xml,1618.5,144.0,1245.09,0.0,1389.09,144.0,85.41,229.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,1845.48,144.0,1317.64,0.0,1461.64,144.0,239.84,383.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-power-outage.xml,1541.04,144.0,1101.61,0.0,1245.61,144.0,151.43,295.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,1697.55,144.0,1129.18,0.0,1273.18,144.0,280.37,424.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-occupancy-stochastic.xml,1844.65,144.0,1317.07,0.0,1461.07,144.0,239.58,383.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-schedules.xml,1820.17,144.0,1291.41,0.0,1435.41,144.0,240.76,384.76,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints-daily-setbacks.xml,1817.26,144.0,1296.45,0.0,1440.45,144.0,232.81,376.81,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-detailed-setpoints.xml,1610.83,144.0,1236.29,0.0,1380.29,144.0,86.54,230.54,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-simple-power-outage.xml,2222.95,144.0,1696.08,0.0,1840.08,144.0,238.87,382.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-simple-vacancy.xml,2150.71,144.0,1583.89,0.0,1727.89,144.0,278.82,422.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-schedules-simple.xml,2388.78,144.0,1862.11,0.0,2006.11,144.0,238.67,382.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-simcontrol-calendar-year-custom.xml,1846.82,144.0,1312.21,0.0,1456.21,144.0,246.61,390.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-custom.xml,1848.57,144.0,1313.97,0.0,1457.97,144.0,246.6,390.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-simcontrol-daylight-saving-disabled.xml,1847.86,144.0,1313.39,0.0,1457.39,144.0,246.47,390.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-simcontrol-runperiod-1-month.xml,223.82,12.01,110.79,0.0,122.8,12.01,89.01,101.02,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-simcontrol-temperature-capacitance-multiplier.xml,1845.0,144.0,1310.41,0.0,1454.41,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1854.61,144.0,1321.44,0.0,1465.44,144.0,245.17,389.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1853.61,144.0,1321.12,0.0,1465.12,144.0,244.49,388.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-10-mins.xml,1857.69,144.0,1318.01,0.0,1462.01,144.0,251.68,395.68,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-simcontrol-timestep-30-mins.xml,1854.19,144.0,1316.32,0.0,1460.32,144.0,249.87,393.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base.xml,1848.56,144.0,1313.97,0.0,1457.97,144.0,246.59,390.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house001.xml,2444.32,144.0,1743.9,0.0,1887.9,144.0,412.42,556.42,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house002.xml,2101.31,144.0,1528.6,0.0,1672.6,144.0,284.71,428.71,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house003.xml,2075.28,144.0,1492.29,0.0,1636.29,144.0,294.99,438.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house004.xml,3767.21,144.0,2861.57,0.0,3005.57,144.0,617.64,761.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house005.xml,2717.9,144.0,1998.69,0.0,2142.69,144.0,431.21,575.21,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house006.xml,2291.74,144.0,1196.77,0.0,1340.77,144.0,806.97,950.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house007.xml,2355.6,144.0,1272.75,0.0,1416.75,144.0,794.85,938.85,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house008.xml,2842.09,144.0,1475.1,0.0,1619.1,144.0,1078.99,1222.99,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house009.xml,2479.83,144.0,1282.49,0.0,1426.49,144.0,909.34,1053.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house010.xml,2575.5,144.0,1413.19,0.0,1557.19,144.0,874.31,1018.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house011.xml,1627.77,144.0,1483.77,0.0,1627.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house012.xml,1314.48,144.0,1170.48,0.0,1314.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house013.xml,1145.64,144.0,1001.64,0.0,1145.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house014.xml,1181.31,144.0,1037.31,0.0,1181.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house015.xml,1145.64,144.0,1001.64,0.0,1145.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house016.xml,2720.45,144.0,1770.4,0.0,1914.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,806.05,806.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house017.xml,2106.4,144.0,1013.91,0.0,1157.91,144.0,804.49,948.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house018.xml,1743.39,144.0,1599.39,0.0,1743.39,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house019.xml,3137.67,144.0,1882.0,0.0,2026.0,144.0,967.67,1111.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house020.xml,4880.1,144.0,2447.18,0.0,2591.18,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2288.92,2288.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house021.xml,3414.19,144.0,1768.57,0.0,1912.57,144.0,1357.62,1501.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house022.xml,5120.07,144.0,1781.15,0.0,1925.15,0.0,0.0,0.0,0.0,3194.92,3194.92,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house023.xml,5165.62,144.0,2310.06,0.0,2454.06,0.0,0.0,0.0,0.0,2711.56,2711.56,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house024.xml,4786.08,144.0,1608.24,0.0,1752.24,0.0,0.0,0.0,0.0,3033.84,3033.84,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house025.xml,3009.12,144.0,2225.15,0.0,2369.15,144.0,495.97,639.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house026.xml,1556.49,144.0,805.35,0.0,949.35,144.0,463.14,607.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house027.xml,1881.21,144.0,995.83,0.0,1139.83,144.0,597.38,741.38,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house028.xml,1766.52,144.0,936.91,0.0,1080.91,144.0,541.61,685.61,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house029.xml,2157.0,144.0,1183.65,0.0,1327.65,144.0,685.35,829.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house030.xml,2410.28,144.0,672.58,0.0,816.58,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1593.7,1593.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house031.xml,4386.14,144.0,1813.37,0.0,1957.37,144.0,2284.77,2428.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house032.xml,1946.94,144.0,587.68,0.0,731.68,144.0,1071.26,1215.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house033.xml,4000.75,144.0,538.68,0.0,682.68,0.0,0.0,0.0,0.0,3318.07,3318.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house034.xml,5958.69,144.0,1575.82,0.0,1719.82,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4238.87,4238.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house035.xml,1508.53,144.0,640.89,0.0,784.89,144.0,579.64,723.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house036.xml,1923.01,144.0,924.05,0.0,1068.05,144.0,710.96,854.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house037.xml,3518.56,144.0,959.99,0.0,1103.99,0.0,0.0,0.0,0.0,2414.57,2414.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house038.xml,3038.36,144.0,1819.42,0.0,1963.42,144.0,930.94,1074.94,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house039.xml,2127.92,144.0,875.83,0.0,1019.83,144.0,964.09,1108.09,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house040.xml,2138.64,144.0,875.75,0.0,1019.75,144.0,974.89,1118.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house041.xml,3692.22,144.0,1794.42,0.0,1938.42,144.0,1609.8,1753.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house042.xml,3272.17,144.0,1529.8,0.0,1673.8,144.0,1454.37,1598.37,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house043.xml,2402.46,144.0,1136.12,0.0,1280.12,144.0,978.34,1122.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house044.xml,3337.93,144.0,1663.98,0.0,1807.98,144.0,1385.95,1529.95,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house045.xml,2505.02,144.0,1332.58,0.0,1476.58,144.0,884.44,1028.44,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house046.xml,962.32,144.0,818.32,0.0,962.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house047.xml,1018.78,144.0,661.42,0.0,805.42,144.0,69.36,213.36,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house048.xml,2308.58,144.0,1489.79,0.0,1633.79,144.0,530.79,674.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house049.xml,1508.54,144.0,1197.4,0.0,1341.4,144.0,23.14,167.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +house050.xml,1250.83,144.0,659.08,0.0,803.08,144.0,303.75,447.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/hpxml-measures/workflow/tests/base_results/results_simulations2_energy.csv b/hpxml-measures/workflow/tests/base_results/results_simulations_energy.csv similarity index 52% rename from hpxml-measures/workflow/tests/base_results/results_simulations2_energy.csv rename to hpxml-measures/workflow/tests/base_results/results_simulations_energy.csv index e6b5d1de1..f2179d62f 100644 --- a/hpxml-measures/workflow/tests/base_results/results_simulations2_energy.csv +++ b/hpxml-measures/workflow/tests/base_results/results_simulations_energy.csv @@ -1,4 +1,224 @@ HPXML,Energy Use: Total (MBtu),Energy Use: Net (MBtu),Fuel Use: Electricity: Total (MBtu),Fuel Use: Electricity: Net (MBtu),Fuel Use: Natural Gas: Total (MBtu),Fuel Use: Fuel Oil: Total (MBtu),Fuel Use: Propane: Total (MBtu),Fuel Use: Wood Cord: Total (MBtu),Fuel Use: Wood Pellets: Total (MBtu),Fuel Use: Coal: Total (MBtu),End Use: Electricity: Heating (MBtu),End Use: Electricity: Heating Fans/Pumps (MBtu),End Use: Electricity: Heating Heat Pump Backup (MBtu),End Use: Electricity: Heating Heat Pump Backup Fans/Pumps (MBtu),End Use: Electricity: Cooling (MBtu),End Use: Electricity: Cooling Fans/Pumps (MBtu),End Use: Electricity: Hot Water (MBtu),End Use: Electricity: Hot Water Recirc Pump (MBtu),End Use: Electricity: Hot Water Solar Thermal Pump (MBtu),End Use: Electricity: Lighting Interior (MBtu),End Use: Electricity: Lighting Garage (MBtu),End Use: Electricity: Lighting Exterior (MBtu),End Use: Electricity: Mech Vent (MBtu),End Use: Electricity: Mech Vent Preheating (MBtu),End Use: Electricity: Mech Vent Precooling (MBtu),End Use: Electricity: Whole House Fan (MBtu),End Use: Electricity: Refrigerator (MBtu),End Use: Electricity: Freezer (MBtu),End Use: Electricity: Dehumidifier (MBtu),End Use: Electricity: Dishwasher (MBtu),End Use: Electricity: Clothes Washer (MBtu),End Use: Electricity: Clothes Dryer (MBtu),End Use: Electricity: Range/Oven (MBtu),End Use: Electricity: Ceiling Fan (MBtu),End Use: Electricity: Television (MBtu),End Use: Electricity: Plug Loads (MBtu),End Use: Electricity: Electric Vehicle Charging (MBtu),End Use: Electricity: Well Pump (MBtu),End Use: Electricity: Pool Heater (MBtu),End Use: Electricity: Pool Pump (MBtu),End Use: Electricity: Permanent Spa Heater (MBtu),End Use: Electricity: Permanent Spa Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (MBtu),End Use: Electricity: Battery (MBtu),End Use: Natural Gas: Heating (MBtu),End Use: Natural Gas: Heating Heat Pump Backup (MBtu),End Use: Natural Gas: Hot Water (MBtu),End Use: Natural Gas: Clothes Dryer (MBtu),End Use: Natural Gas: Range/Oven (MBtu),End Use: Natural Gas: Mech Vent Preheating (MBtu),End Use: Natural Gas: Pool Heater (MBtu),End Use: Natural Gas: Permanent Spa Heater (MBtu),End Use: Natural Gas: Grill (MBtu),End Use: Natural Gas: Lighting (MBtu),End Use: Natural Gas: Fireplace (MBtu),End Use: Natural Gas: Generator (MBtu),End Use: Fuel Oil: Heating (MBtu),End Use: Fuel Oil: Heating Heat Pump Backup (MBtu),End Use: Fuel Oil: Hot Water (MBtu),End Use: Fuel Oil: Clothes Dryer (MBtu),End Use: Fuel Oil: Range/Oven (MBtu),End Use: Fuel Oil: Mech Vent Preheating (MBtu),End Use: Fuel Oil: Grill (MBtu),End Use: Fuel Oil: Lighting (MBtu),End Use: Fuel Oil: Fireplace (MBtu),End Use: Fuel Oil: Generator (MBtu),End Use: Propane: Heating (MBtu),End Use: Propane: Heating Heat Pump Backup (MBtu),End Use: Propane: Hot Water (MBtu),End Use: Propane: Clothes Dryer (MBtu),End Use: Propane: Range/Oven (MBtu),End Use: Propane: Mech Vent Preheating (MBtu),End Use: Propane: Grill (MBtu),End Use: Propane: Lighting (MBtu),End Use: Propane: Fireplace (MBtu),End Use: Propane: Generator (MBtu),End Use: Wood Cord: Heating (MBtu),End Use: Wood Cord: Heating Heat Pump Backup (MBtu),End Use: Wood Cord: Hot Water (MBtu),End Use: Wood Cord: Clothes Dryer (MBtu),End Use: Wood Cord: Range/Oven (MBtu),End Use: Wood Cord: Mech Vent Preheating (MBtu),End Use: Wood Cord: Grill (MBtu),End Use: Wood Cord: Lighting (MBtu),End Use: Wood Cord: Fireplace (MBtu),End Use: Wood Cord: Generator (MBtu),End Use: Wood Pellets: Heating (MBtu),End Use: Wood Pellets: Heating Heat Pump Backup (MBtu),End Use: Wood Pellets: Hot Water (MBtu),End Use: Wood Pellets: Clothes Dryer (MBtu),End Use: Wood Pellets: Range/Oven (MBtu),End Use: Wood Pellets: Mech Vent Preheating (MBtu),End Use: Wood Pellets: Grill (MBtu),End Use: Wood Pellets: Lighting (MBtu),End Use: Wood Pellets: Fireplace (MBtu),End Use: Wood Pellets: Generator (MBtu),End Use: Coal: Heating (MBtu),End Use: Coal: Heating Heat Pump Backup (MBtu),End Use: Coal: Hot Water (MBtu),End Use: Coal: Clothes Dryer (MBtu),End Use: Coal: Range/Oven (MBtu),End Use: Coal: Mech Vent Preheating (MBtu),End Use: Coal: Grill (MBtu),End Use: Coal: Lighting (MBtu),End Use: Coal: Fireplace (MBtu),End Use: Coal: Generator (MBtu) +base-appliances-coal.xml,60.584,60.584,33.099,33.099,22.619,0.0,0.0,0.0,0.0,4.867,0.0,0.666,0.0,0.0,4.518,0.564,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-portable.xml,34.855,34.855,33.089,33.089,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.029,0.0,0.0,9.286,1.539,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.407,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-ief-whole-home.xml,34.865,34.865,33.113,33.113,1.752,0.0,0.0,0.0,0.0,0.0,0.0,0.029,0.0,0.0,9.283,1.538,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.208,0.0,0.434,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier-multiple.xml,34.838,34.838,33.034,33.034,1.805,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.0,0.0,9.276,1.537,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.207,0.0,0.363,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-dehumidifier.xml,34.815,34.815,33.063,33.063,1.751,0.0,0.0,0.0,0.0,0.0,0.0,0.029,0.0,0.0,9.277,1.537,6.704,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.207,0.0,0.393,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-freezer-temperature-dependent-schedule.xml,59.803,59.803,37.198,37.198,22.605,0.0,0.0,0.0,0.0,0.0,0.0,0.665,0.0,0.0,4.536,0.567,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,1.276,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-gas.xml,60.584,60.584,33.099,33.099,27.486,0.0,0.0,0.0,0.0,0.0,0.0,0.666,0.0,0.0,4.518,0.564,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.619,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-modified.xml,59.082,59.082,36.76,36.76,22.321,0.0,0.0,0.0,0.0,0.0,0.0,0.657,0.0,0.0,4.536,0.567,9.536,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.637,0.365,1.519,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-none.xml,53.39,53.39,28.439,28.439,24.951,0.0,0.0,0.0,0.0,0.0,0.0,0.734,0.0,0.0,4.082,0.497,7.785,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-oil.xml,60.584,60.584,33.099,33.099,22.619,4.867,0.0,0.0,0.0,0.0,0.0,0.666,0.0,0.0,4.518,0.564,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-propane.xml,60.584,60.584,33.099,33.099,22.619,0.0,4.867,0.0,0.0,0.0,0.0,0.666,0.0,0.0,4.518,0.564,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-refrigerator-temperature-dependent-schedule.xml,59.08,59.08,35.803,35.803,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-appliances-wood.xml,60.584,60.584,33.099,33.099,22.619,0.0,0.0,4.867,0.0,0.0,0.0,0.666,0.0,0.0,4.518,0.564,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.619,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.797,3.07,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-cathedral.xml,62.12,62.12,35.762,35.762,26.358,0.0,0.0,0.0,0.0,0.0,0.0,0.776,0.0,0.0,4.306,0.533,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.067,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,64.256,64.256,40.607,40.607,23.65,0.0,0.0,0.0,0.0,0.0,0.0,0.696,0.0,0.0,5.098,0.653,8.919,0.0,0.0,5.748,0.0,0.398,0.0,0.0,0.0,0.0,2.076,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,11.178,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.65,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,55.248,55.248,34.983,34.983,20.265,0.0,0.0,0.0,0.0,0.0,0.0,0.596,0.0,0.0,3.779,0.457,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.265,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier-ceiling.xml,38.873,38.873,33.696,33.696,5.177,0.0,0.0,0.0,0.0,0.0,0.0,0.086,0.0,0.0,10.127,1.674,6.712,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.181,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-radiant-barrier.xml,37.676,37.676,33.231,33.231,4.445,0.0,0.0,0.0,0.0,0.0,0.0,0.074,0.0,0.0,9.738,1.608,6.711,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.185,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-unvented-insulated-roof.xml,58.499,58.499,35.226,35.226,23.274,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,3.918,0.474,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-atticroof-vented.xml,59.542,59.542,35.635,35.635,23.906,0.0,0.0,0.0,0.0,0.0,0.0,0.704,0.0,0.0,4.105,0.502,9.188,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.906,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-battery-scheduled.xml,60.815,60.815,37.537,37.537,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.735,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-battery.xml,59.08,59.08,35.803,35.803,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,36.473,36.473,24.215,24.215,12.258,0.0,0.0,0.0,0.0,0.0,0.0,0.203,0.0,0.0,1.623,0.163,9.672,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,1.688,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.258,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml,22.488,22.488,22.488,22.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.565,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.057,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,32.361,32.361,25.084,25.084,7.277,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.0,0.0,2.195,0.262,9.557,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.083,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,48.923,48.923,24.065,24.065,24.858,0.0,0.0,0.0,0.0,0.0,0.0,0.412,0.0,0.0,1.494,0.139,9.755,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,1.399,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,26.103,26.103,24.296,24.296,1.808,0.0,0.0,0.0,0.0,0.0,0.0,0.03,0.0,0.0,1.65,0.168,9.582,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.0,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.808,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,26.496,26.496,24.94,24.94,1.556,0.0,0.0,0.0,0.0,0.0,0.0,0.026,0.0,0.0,2.107,0.256,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.144,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-infil-compartmentalization-test.xml,26.769,26.769,26.013,26.013,0.756,0.0,0.0,0.0,0.0,0.0,0.0,0.013,0.0,0.0,2.988,0.428,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.19,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-residents-1.xml,19.945,19.945,18.551,18.551,1.395,0.0,0.0,0.0,0.0,0.0,0.0,0.023,0.0,0.0,2.488,0.33,4.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.165,0.0,0.0,0.169,0.22,0.912,1.184,0.0,1.506,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.395,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,27.414,27.414,26.492,26.492,0.922,0.0,0.0,0.0,0.0,0.0,0.0,0.045,0.0,0.0,3.231,0.637,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,28.273,28.273,27.286,27.286,0.986,0.0,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,3.894,0.734,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,27.665,27.665,26.791,26.791,0.874,0.0,0.0,0.0,0.0,0.0,0.0,0.105,0.0,0.0,3.47,0.637,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,31.863,31.863,31.144,31.144,0.718,0.0,0.0,0.0,0.0,0.0,0.046,0.045,0.0,0.0,7.74,0.734,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.848,27.848,27.13,27.13,0.718,0.0,0.0,0.0,0.0,0.0,0.046,0.045,0.0,0.0,3.725,0.734,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.718,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,23.606,23.606,22.809,22.809,0.798,0.0,0.0,0.0,0.0,0.0,0.0,0.039,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,23.691,23.691,22.838,22.838,0.853,0.0,0.0,0.0,0.0,0.0,0.0,0.068,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,23.617,23.617,22.858,22.858,0.759,0.0,0.0,0.0,0.0,0.0,0.0,0.088,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,23.595,23.595,23.024,23.024,0.572,0.0,0.0,0.0,0.0,0.0,0.179,0.075,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.572,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,23.617,23.617,22.861,22.861,0.756,0.0,0.0,0.0,0.0,0.0,0.0,0.091,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.756,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,23.47,23.47,22.849,22.849,0.621,0.0,0.0,0.0,0.0,0.0,0.04,0.039,0.0,0.0,0.0,0.0,9.45,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.453,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,26.386,26.386,26.386,26.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.206,0.629,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,27.141,27.141,27.141,27.141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.864,0.725,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,26.622,26.622,26.622,26.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.442,0.629,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,30.949,30.949,30.949,30.949,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.673,0.725,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,26.973,26.973,26.973,26.973,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.696,0.725,9.54,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-generator.xml,41.016,34.191,25.959,19.134,0.89,0.0,14.167,0.0,0.0,0.0,0.0,0.015,0.0,0.0,2.945,0.419,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-6.824,0.0,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.167,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,28.339,28.339,28.339,28.339,0.0,0.0,0.0,0.0,0.0,0.0,0.242,0.374,0.0,0.0,2.265,2.877,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,31.736,31.736,16.495,16.495,15.242,0.0,0.0,0.0,0.0,0.0,0.0,0.014,0.0,0.0,2.995,0.43,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.189,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.817,0.0,14.425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-laundry-room.xml,29.652,29.652,16.313,16.313,13.339,0.0,0.0,0.0,0.0,0.0,0.0,0.017,0.0,0.0,2.85,0.4,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.18,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.029,0.0,12.31,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,51.446,51.446,30.55,30.55,20.896,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,2.845,0.248,9.563,0.0,0.0,2.025,0.0,0.206,3.704,0.948,0.166,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.732,0.0,0.0,0.0,0.0,12.164,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,32.611,32.611,27.167,27.167,5.444,0.0,0.0,0.0,0.0,0.0,0.0,0.025,0.0,0.0,2.682,0.361,9.536,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.045,0.0,2.156,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.489,0.0,0.0,0.0,0.0,3.955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,30.95,30.95,27.025,27.025,3.925,0.0,0.0,0.0,0.0,0.0,0.0,0.065,0.0,0.0,2.588,0.341,9.545,0.0,0.0,2.025,0.0,0.206,1.495,0.0,0.0,0.0,2.125,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-pv-battery.xml,27.726,3.278,26.835,2.387,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.015,0.0,0.0,2.945,0.419,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.876,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-pv.xml,26.849,2.401,25.959,1.511,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.015,0.0,0.0,2.945,0.419,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.0,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,21.134,21.134,18.39,18.39,2.744,0.0,0.0,0.0,0.0,0.0,0.0,0.045,0.0,0.0,2.17,0.266,2.925,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.116,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml,21.239,21.239,15.382,15.382,5.856,0.0,0.0,0.0,0.0,0.0,0.0,0.029,0.0,0.0,2.366,0.306,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.154,0.0,0.0,0.146,0.197,0.817,1.129,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.757,0.0,4.099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,30.829,30.829,17.432,17.432,13.396,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,2.87,0.404,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.179,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.086,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,30.829,30.829,17.432,17.432,13.396,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,2.87,0.404,0.0,1.096,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.179,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.086,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-water-heater.xml,29.733,29.733,16.336,16.336,13.396,0.0,0.0,0.0,0.0,0.0,0.0,0.018,0.0,0.0,2.87,0.404,0.0,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.179,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.086,0.0,12.311,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit.xml,26.849,26.849,25.959,25.959,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.015,0.0,0.0,2.945,0.419,9.527,0.0,0.0,2.025,0.0,0.206,0.0,0.0,0.0,0.0,2.186,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,2.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-whole-building.xml,217.516,217.516,217.516,217.516,0.0,0.0,0.0,0.0,0.0,0.0,34.288,0.0,0.0,0.0,22.669,0.0,55.567,0.0,0.0,14.641,0.0,1.364,0.0,0.0,0.0,0.0,12.716,0.0,0.0,1.912,2.192,0.0,9.172,0.0,12.693,50.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-2stories.xml,52.217,52.217,34.721,34.721,17.496,0.0,0.0,0.0,0.0,0.0,0.0,0.515,0.0,0.0,3.475,0.517,9.076,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-atticroof-cathedral.xml,98.475,98.475,38.023,38.023,60.452,0.0,0.0,0.0,0.0,0.0,0.0,1.779,0.0,0.0,5.234,0.816,9.084,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.044,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.452,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,43.613,43.613,29.785,29.785,13.829,0.0,0.0,0.0,0.0,0.0,0.0,0.229,0.0,0.0,2.847,0.383,9.286,0.0,0.0,3.266,0.0,0.27,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,5.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit.xml,43.613,43.613,29.785,29.785,13.829,0.0,0.0,0.0,0.0,0.0,0.0,0.229,0.0,0.0,2.847,0.383,9.286,0.0,0.0,3.266,0.0,0.27,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,5.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless-outside.xml,52.189,52.189,21.369,21.369,30.82,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.147,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.532,0.0,10.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,53.386,53.386,21.376,21.376,32.011,0.0,0.0,0.0,0.0,0.0,0.0,0.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.145,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.722,0.0,10.289,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,31.602,31.602,31.602,31.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.23,0.596,6.809,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-gshp.xml,38.481,38.481,38.481,38.481,0.0,0.0,0.0,0.0,0.0,0.0,5.979,0.955,0.0,0.0,3.01,0.812,6.588,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-hpwh.xml,57.413,57.413,29.729,29.729,27.684,0.0,0.0,0.0,0.0,0.0,0.0,0.815,0.0,0.0,4.52,0.564,2.7,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.684,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-tankless.xml,33.29,33.29,33.29,33.29,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.569,0.962,6.796,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.898,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-var-speed.xml,30.874,30.874,30.874,30.874,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.874,0.259,6.774,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater.xml,33.322,33.322,33.322,33.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.623,0.976,6.755,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.902,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-dwhr.xml,56.809,56.809,33.531,33.531,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,6.742,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-detailed-setpoints.xml,54.97,54.97,21.372,21.372,33.598,0.0,0.0,0.0,0.0,0.0,0.0,0.154,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.152,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.279,0.0,13.319,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-dse.xml,60.222,60.222,21.41,21.41,38.812,0.0,0.0,0.0,0.0,0.0,0.0,0.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.151,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.408,0.0,13.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-outside.xml,56.51,56.51,21.369,21.369,35.141,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.147,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.532,0.0,14.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-standbyloss.xml,55.344,55.344,21.371,21.371,33.974,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.153,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.068,0.0,13.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,47.29,47.29,21.374,21.374,25.916,0.0,0.0,0.0,0.0,0.0,0.0,0.162,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.147,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.237,0.0,4.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,55.102,55.102,21.372,21.372,33.73,0.0,0.0,0.0,0.0,0.0,0.0,0.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.151,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.327,0.0,13.404,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,58.974,58.974,35.481,35.481,23.493,0.0,0.0,0.0,0.0,0.0,0.0,0.691,0.0,0.0,4.391,0.544,8.716,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-gas.xml,64.954,64.954,26.894,26.894,38.06,0.0,0.0,0.0,0.0,0.0,0.0,0.702,0.0,0.0,4.494,0.56,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.861,0.0,14.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-hpwh.xml,57.356,57.356,29.639,29.639,27.717,0.0,0.0,0.0,0.0,0.0,0.0,0.816,0.0,0.0,3.949,0.477,3.269,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.063,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.717,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-indirect.xml,54.898,54.898,21.372,21.372,33.526,0.0,0.0,0.0,0.0,0.0,0.0,0.156,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.15,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.545,0.0,12.981,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,58.86,58.86,35.582,35.582,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,8.793,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-multiple.xml,47.969,47.969,23.301,23.301,24.669,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,0.0,0.0,0.0,1.928,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.743,0.0,3.925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,48.136,48.136,24.496,24.496,23.64,0.0,0.0,0.0,0.0,0.0,0.0,0.696,0.0,0.0,4.325,0.535,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.0,0.0,0.0,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.64,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand-scheduled.xml,59.031,59.031,35.754,35.754,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,8.939,0.026,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-demand.xml,59.031,59.031,35.754,35.754,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,8.939,0.026,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-manual.xml,58.611,58.611,35.334,35.334,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,8.528,0.017,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-nocontrol.xml,73.76,73.76,50.483,50.483,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,22.199,1.495,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-temperature.xml,68.91,68.91,45.632,45.632,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,18.594,0.249,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-recirc-timer.xml,73.76,73.76,50.483,50.483,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,22.199,1.495,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-evacuated-tube.xml,53.269,53.269,29.991,29.991,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.421,0.549,2.875,0.0,0.324,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-flat-plate.xml,51.829,51.829,28.561,28.561,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.433,0.551,1.444,0.0,0.311,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-direct-ics.xml,53.342,53.342,30.065,30.065,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.426,0.55,2.938,0.0,0.327,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-fraction.xml,53.461,53.461,29.913,29.913,23.547,0.0,0.0,0.0,0.0,0.0,0.0,0.693,0.0,0.0,4.385,0.543,3.155,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-indirect-flat-plate.xml,51.548,51.548,28.636,28.636,22.912,0.0,0.0,0.0,0.0,0.0,0.0,0.674,0.0,0.0,4.536,0.567,1.413,0.0,0.306,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,51.542,51.542,28.272,28.272,23.27,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.432,0.551,1.467,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-coal.xml,65.684,65.684,26.938,26.938,23.466,0.0,0.0,0.0,0.0,15.28,0.0,0.691,0.0,0.0,4.542,0.567,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-detailed-setpoints.xml,59.064,59.064,35.793,35.793,23.271,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.418,0.549,9.003,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.271,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-elec-uef.xml,59.106,59.106,35.88,35.88,23.226,0.0,0.0,0.0,0.0,0.0,0.0,0.684,0.0,0.0,4.424,0.549,9.086,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.226,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-outside.xml,67.449,67.449,26.743,26.743,40.705,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,17.013,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef-fhr.xml,65.359,65.359,26.907,26.907,38.452,0.0,0.0,0.0,0.0,0.0,0.0,0.699,0.0,0.0,4.508,0.562,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.741,0.0,14.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas-uef.xml,65.359,65.359,26.907,26.907,38.452,0.0,0.0,0.0,0.0,0.0,0.0,0.699,0.0,0.0,4.508,0.562,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.741,0.0,14.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-gas.xml,65.684,65.684,26.938,26.938,38.745,0.0,0.0,0.0,0.0,0.0,0.0,0.691,0.0,0.0,4.542,0.567,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.466,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,57.303,57.303,28.803,28.803,28.5,0.0,0.0,0.0,0.0,0.0,0.0,0.839,0.0,0.0,3.881,0.467,2.49,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.061,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,57.168,57.168,28.618,28.618,28.55,0.0,0.0,0.0,0.0,0.0,0.0,0.84,0.0,0.0,3.858,0.463,2.33,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-outside.xml,57.155,57.155,33.463,33.463,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,6.72,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-uef.xml,57.168,57.168,28.618,28.618,28.55,0.0,0.0,0.0,0.0,0.0,0.0,0.84,0.0,0.0,3.858,0.463,2.33,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,52.914,52.914,27.859,27.859,25.055,0.0,0.0,0.0,0.0,0.0,0.0,0.737,0.0,0.0,4.22,0.518,1.249,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump-with-solar.xml,52.371,52.371,28.435,28.435,23.936,0.0,0.0,0.0,0.0,0.0,0.0,0.704,0.0,0.0,4.57,0.572,1.12,0.0,0.329,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.936,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-heat-pump.xml,57.389,57.389,29.768,29.768,27.621,0.0,0.0,0.0,0.0,0.0,0.0,0.813,0.0,0.0,3.941,0.476,3.409,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.064,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,58.339,58.339,35.329,35.329,23.01,0.0,0.0,0.0,0.0,0.0,0.0,0.677,0.0,0.0,4.456,0.554,8.501,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.115,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-model-type-stratified.xml,58.928,58.928,35.249,35.249,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.37,0.541,8.504,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.679,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-oil.xml,65.684,65.684,26.938,26.938,23.466,15.28,0.0,0.0,0.0,0.0,0.0,0.691,0.0,0.0,4.542,0.567,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tank-wood.xml,65.684,65.684,26.938,26.938,23.466,0.0,0.0,15.28,0.0,0.0,0.0,0.691,0.0,0.0,4.542,0.567,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.466,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.28,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-detailed-setpoints.xml,61.602,61.602,26.743,26.743,34.859,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-outside.xml,59.704,59.704,36.012,36.012,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,9.269,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric-uef.xml,59.599,59.599,35.907,35.907,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,9.164,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-electric.xml,59.704,59.704,36.012,36.012,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,9.269,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-uef.xml,60.092,60.092,26.743,26.743,33.349,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,9.657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,54.352,54.352,26.743,26.743,27.609,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,3.917,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas-with-solar.xml,52.035,52.035,27.16,27.16,24.875,0.0,0.0,0.0,0.0,0.0,0.0,0.686,0.0,0.0,4.474,0.557,0.0,0.0,0.304,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.324,0.0,1.551,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-gas.xml,61.626,61.626,26.743,26.743,34.882,0.0,0.0,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,11.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-tankless-propane.xml,61.626,61.626,26.743,26.743,23.692,0.0,11.19,0.0,0.0,0.0,0.0,0.697,0.0,0.0,4.368,0.541,0.0,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.19,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories-garage.xml,67.023,67.023,41.246,41.246,25.777,0.0,0.0,0.0,0.0,0.0,0.0,0.759,0.0,0.0,6.619,1.099,8.97,0.0,0.0,5.266,0.142,0.373,0.0,0.0,0.0,0.0,2.086,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,10.091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.777,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,75.223,75.223,44.634,44.634,30.589,0.0,0.0,0.0,0.0,0.0,0.0,0.9,0.0,0.0,6.507,1.077,8.857,0.0,0.0,6.369,0.0,0.43,0.0,0.0,0.0,0.0,2.078,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,12.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,55.359,55.359,30.578,30.578,24.781,0.0,0.0,0.0,0.0,0.0,0.0,0.729,0.0,0.0,4.16,0.509,5.472,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.203,0.253,1.049,1.262,0.0,1.645,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.781,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,57.254,57.254,33.227,33.227,24.027,0.0,0.0,0.0,0.0,0.0,0.0,0.707,0.0,0.0,4.288,0.529,7.281,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.261,0.309,1.281,1.396,0.0,1.88,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.027,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,60.881,60.881,38.343,38.343,22.538,0.0,0.0,0.0,0.0,0.0,0.0,0.663,0.0,0.0,4.55,0.569,10.708,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.376,0.421,1.744,1.662,0.0,2.351,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-5.xml,62.665,62.665,40.864,40.864,21.801,0.0,0.0,0.0,0.0,0.0,0.0,0.642,0.0,0.0,4.685,0.589,12.379,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.076,0.0,0.0,0.434,0.477,1.976,1.795,0.0,2.586,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.801,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-ceilingtypes.xml,75.422,75.422,36.556,36.556,38.866,0.0,0.0,0.0,0.0,0.0,0.0,1.144,0.0,0.0,4.681,0.589,9.017,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.06,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-floortypes.xml,68.214,68.214,29.471,29.471,38.744,0.0,0.0,0.0,0.0,0.0,0.0,1.14,0.0,0.0,3.717,0.434,9.213,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.051,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-garage.xml,59.968,59.968,34.365,34.365,25.603,0.0,0.0,0.0,0.0,0.0,0.0,0.754,0.0,0.0,3.211,0.371,9.116,0.0,0.0,4.507,0.142,0.334,0.0,0.0,0.0,0.0,1.706,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.603,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ach-house-pressure.xml,59.08,59.08,35.803,35.803,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm-house-pressure.xml,59.08,59.08,35.803,35.803,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-cfm50.xml,59.08,59.08,35.803,35.803,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,4.417,0.548,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-ela.xml,66.628,66.628,35.917,35.917,30.711,0.0,0.0,0.0,0.0,0.0,0.0,0.904,0.0,0.0,4.334,0.533,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,60.468,60.468,35.82,35.82,24.648,0.0,0.0,0.0,0.0,0.0,0.0,0.725,0.0,0.0,4.399,0.545,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-ach.xml,66.253,66.253,35.911,35.911,30.342,0.0,0.0,0.0,0.0,0.0,0.0,0.893,0.0,0.0,4.338,0.534,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,66.253,66.253,35.911,35.911,30.342,0.0,0.0,0.0,0.0,0.0,0.0,0.893,0.0,0.0,4.338,0.534,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.342,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,59.308,59.308,35.783,35.783,23.525,0.0,0.0,0.0,0.0,0.0,0.0,0.692,0.0,0.0,4.394,0.545,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.525,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-overhangs.xml,59.225,59.225,35.649,35.649,23.576,0.0,0.0,0.0,0.0,0.0,0.0,0.694,0.0,0.0,4.277,0.527,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-rooftypes.xml,59.036,59.036,35.671,35.671,23.365,0.0,0.0,0.0,0.0,0.0,0.0,0.688,0.0,0.0,4.3,0.532,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-physical-properties.xml,61.506,61.506,36.854,36.854,24.652,0.0,0.0,0.0,0.0,0.0,0.0,0.726,0.0,0.0,5.296,0.678,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.077,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-shading.xml,60.219,60.219,35.862,35.862,24.358,0.0,0.0,0.0,0.0,0.0,0.0,0.717,0.0,0.0,4.442,0.551,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.358,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights-storms.xml,59.525,59.525,36.508,36.508,23.017,0.0,0.0,0.0,0.0,0.0,0.0,0.677,0.0,0.0,5.035,0.64,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.077,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.017,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-skylights.xml,59.267,59.267,36.597,36.597,22.67,0.0,0.0,0.0,0.0,0.0,0.0,0.667,0.0,0.0,5.121,0.653,9.012,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.078,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.67,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-split-level.xml,40.973,40.973,29.23,29.23,11.743,0.0,0.0,0.0,0.0,0.0,0.0,0.346,0.0,0.0,3.978,0.486,9.407,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.096,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-thermal-mass.xml,58.883,58.883,35.749,35.749,23.134,0.0,0.0,0.0,0.0,0.0,0.0,0.681,0.0,0.0,4.374,0.543,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-walltypes.xml,76.21,76.21,34.905,34.905,41.305,0.0,0.0,0.0,0.0,0.0,0.0,1.216,0.0,0.0,3.181,0.373,9.02,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.05,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,58.108,58.108,34.756,34.756,23.352,0.0,0.0,0.0,0.0,0.0,0.0,0.687,0.0,0.0,3.522,0.401,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.352,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-none.xml,59.95,59.95,33.968,33.968,25.982,0.0,0.0,0.0,0.0,0.0,0.0,0.765,0.0,0.0,2.747,0.314,9.018,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.058,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-physical-properties.xml,66.916,66.916,36.024,36.024,30.892,0.0,0.0,0.0,0.0,0.0,0.0,0.909,0.0,0.0,4.424,0.544,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.065,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.892,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading-seasons.xml,59.004,59.004,35.828,35.828,23.176,0.0,0.0,0.0,0.0,0.0,0.0,0.682,0.0,0.0,4.44,0.552,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.074,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-shading.xml,58.902,58.902,33.496,33.496,25.407,0.0,0.0,0.0,0.0,0.0,0.0,0.748,0.0,0.0,2.372,0.243,9.022,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.045,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-enclosure-windows-storms.xml,60.111,60.111,35.275,35.275,24.836,0.0,0.0,0.0,0.0,0.0,0.0,0.731,0.0,0.0,3.922,0.475,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.066,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.836,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-ambient.xml,48.242,48.242,30.095,30.095,18.148,0.0,0.0,0.0,0.0,0.0,0.0,0.534,0.0,0.0,4.753,0.595,9.2,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.096,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.148,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-basement-garage.xml,53.123,53.123,32.446,32.446,20.677,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,4.405,0.546,9.248,0.0,0.0,3.404,0.142,0.277,0.0,0.0,0.0,0.0,2.075,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,5.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.677,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-belly-wing-no-skirt.xml,50.731,50.731,29.457,29.457,21.274,0.0,0.0,0.0,0.0,0.0,0.0,0.626,0.0,0.0,4.119,0.502,9.201,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.093,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.274,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-belly-wing-skirt.xml,50.347,50.347,29.46,29.46,20.887,0.0,0.0,0.0,0.0,0.0,0.0,0.615,0.0,0.0,4.13,0.504,9.201,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.094,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.887,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-complex.xml,78.367,78.367,37.288,37.288,41.079,0.0,0.0,0.0,0.0,0.0,0.0,1.209,0.0,0.0,5.26,0.675,9.017,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.062,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.079,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,56.316,56.316,36.255,36.255,20.061,0.0,0.0,0.0,0.0,0.0,0.0,0.59,0.0,0.0,4.887,0.621,9.012,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.079,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.061,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,57.924,57.924,35.98,35.98,21.944,0.0,0.0,0.0,0.0,0.0,0.0,0.646,0.0,0.0,4.603,0.577,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.075,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.944,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,57.875,57.875,35.375,35.375,22.5,0.0,0.0,0.0,0.0,0.0,0.0,0.662,0.0,0.0,4.07,0.493,9.013,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-conditioned-crawlspace.xml,47.383,47.383,28.748,28.748,18.636,0.0,0.0,0.0,0.0,0.0,0.0,0.548,0.0,0.0,3.577,0.427,9.208,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-multiple.xml,42.774,42.774,29.299,29.299,13.475,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.444,0.556,9.181,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.805,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.475,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-slab.xml,40.349,40.349,29.108,29.108,11.241,0.0,0.0,0.0,0.0,0.0,0.0,0.331,0.0,0.0,4.062,0.5,9.199,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.099,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-above-grade.xml,43.87,43.87,29.391,29.391,14.48,0.0,0.0,0.0,0.0,0.0,0.0,0.426,0.0,0.0,4.536,0.569,9.197,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.746,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.48,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-assembly-r.xml,41.239,41.239,28.816,28.816,12.424,0.0,0.0,0.0,0.0,0.0,0.0,0.366,0.0,0.0,4.087,0.501,9.196,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.749,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement-wall-insulation.xml,49.502,49.502,28.801,28.801,20.701,0.0,0.0,0.0,0.0,0.0,0.0,0.609,0.0,0.0,3.718,0.443,9.129,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.985,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.701,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unconditioned-basement.xml,42.802,42.802,29.303,29.303,13.499,0.0,0.0,0.0,0.0,0.0,0.0,0.397,0.0,0.0,4.466,0.559,9.189,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,1.775,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-unvented-crawlspace.xml,41.06,41.06,29.723,29.723,11.336,0.0,0.0,0.0,0.0,0.0,0.0,0.334,0.0,0.0,4.498,0.566,9.296,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.112,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.336,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-vented-crawlspace-above-grade.xml,43.567,43.567,29.861,29.861,13.706,0.0,0.0,0.0,0.0,0.0,0.0,0.403,0.0,0.0,4.509,0.566,9.36,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.106,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-vented-crawlspace.xml,43.495,43.495,29.709,29.709,13.785,0.0,0.0,0.0,0.0,0.0,0.0,0.406,0.0,0.0,4.37,0.544,9.369,0.0,0.0,2.646,0.0,0.238,0.0,0.0,0.0,0.0,2.105,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,4.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.785,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-foundation-walkout-basement.xml,65.042,65.042,36.244,36.244,28.798,0.0,0.0,0.0,0.0,0.0,0.0,0.848,0.0,0.0,4.664,0.584,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.068,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml,45.151,45.151,45.151,45.151,0.0,0.0,0.0,0.0,0.0,0.0,9.607,1.072,0.097,0.008,3.411,0.804,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.317,34.317,34.317,34.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.467,0.82,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,46.439,46.439,46.439,46.439,0.0,0.0,0.0,0.0,0.0,0.0,9.833,1.715,0.3,0.027,3.567,0.845,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,42.063,42.063,42.063,42.063,0.0,0.0,0.0,0.0,0.0,0.0,9.739,1.785,0.302,0.03,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,46.325,46.325,46.325,46.325,0.0,0.0,0.0,0.0,0.0,0.0,9.352,1.54,0.932,0.081,3.454,0.817,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,46.501,46.501,46.501,46.501,0.0,0.0,0.0,0.0,0.0,0.0,9.907,1.715,0.3,0.027,3.554,0.845,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,46.439,46.439,46.439,46.439,0.0,0.0,0.0,0.0,0.0,0.0,9.833,1.715,0.3,0.027,3.567,0.845,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,41.925,41.925,41.925,41.925,0.0,0.0,0.0,0.0,0.0,0.0,7.695,0.954,0.3,0.02,2.3,0.505,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,40.508,40.508,40.508,40.508,0.0,0.0,0.0,0.0,0.0,0.0,8.062,0.115,0.0,0.0,2.097,0.083,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,54.548,54.548,39.134,39.134,15.414,0.0,0.0,0.0,0.0,0.0,5.408,0.607,0.0,0.058,2.498,0.413,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.07,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.414,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,57.45,57.45,37.889,37.889,19.561,0.0,0.0,0.0,0.0,0.0,4.321,0.412,0.0,0.073,2.518,0.415,9.015,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.069,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,54.666,54.666,39.247,39.247,15.419,0.0,0.0,0.0,0.0,0.0,5.49,0.614,0.0,0.058,2.519,0.415,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.419,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,54.473,54.473,37.595,37.595,16.878,0.0,0.0,0.0,0.0,0.0,4.615,0.053,0.0,0.576,2.113,0.086,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.878,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,54.649,54.649,39.467,39.467,15.182,0.0,0.0,0.0,0.0,0.0,5.274,0.581,0.0,0.518,2.527,0.415,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.182,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,43.468,43.468,43.468,43.468,0.0,0.0,0.0,0.0,0.0,0.0,9.157,0.915,0.263,0.015,2.824,0.141,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,43.085,43.085,43.085,43.085,0.0,0.0,0.0,0.0,0.0,0.0,9.126,0.848,0.093,0.006,2.758,0.102,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,43.065,43.065,43.065,43.065,0.0,0.0,0.0,0.0,0.0,0.0,9.183,0.843,0.096,0.006,2.683,0.101,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,51.11,51.11,51.11,51.11,0.0,0.0,0.0,0.0,0.0,0.0,10.068,1.158,5.84,0.514,3.283,0.095,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,43.023,43.023,43.023,43.023,0.0,0.0,0.0,0.0,0.0,0.0,9.144,0.847,0.093,0.006,2.679,0.103,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,41.583,41.583,41.583,41.583,0.0,0.0,0.0,0.0,0.0,0.0,8.332,0.497,0.278,0.018,2.197,0.107,9.016,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,42.911,42.911,42.911,42.911,0.0,0.0,0.0,0.0,0.0,0.0,9.99,0.309,0.036,0.003,2.318,0.102,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.073,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,41.317,41.317,41.317,41.317,0.0,0.0,0.0,0.0,0.0,0.0,8.193,0.471,0.225,0.016,2.154,0.107,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,41.487,41.487,41.487,41.487,0.0,0.0,0.0,0.0,0.0,0.0,8.312,0.449,0.301,0.022,2.149,0.102,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-sizing-controls.xml,49.852,49.852,42.314,42.314,7.538,0.0,0.0,0.0,0.0,0.0,0.0,0.132,0.0,0.0,3.148,0.423,15.674,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.967,0.0,0.0,0.548,0.588,2.435,2.058,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.538,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-autosize.xml,59.858,59.858,35.989,35.989,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.702,0.0,0.0,4.463,0.672,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.869,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-coal-only.xml,50.537,50.537,30.458,30.458,0.0,0.0,0.0,0.0,0.0,20.078,0.0,0.252,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-elec-only.xml,49.292,49.292,49.292,49.292,0.0,0.0,0.0,0.0,0.0,0.0,18.955,0.13,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,56.168,56.168,35.818,35.818,20.351,0.0,0.0,0.0,0.0,0.0,0.0,0.155,0.0,0.0,4.554,0.957,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only-pilot.xml,55.486,55.486,30.36,30.36,25.127,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.127,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,50.53,50.53,30.36,30.36,20.17,0.0,0.0,0.0,0.0,0.0,0.0,0.153,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.17,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-oil-only.xml,50.537,50.537,30.458,30.458,0.0,20.078,0.0,0.0,0.0,0.0,0.0,0.252,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-propane-only.xml,50.529,50.529,30.337,30.337,0.0,0.0,20.192,0.0,0.0,0.0,0.0,0.13,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,50.529,50.529,30.337,30.337,0.0,0.0,0.0,20.192,0.0,0.0,0.0,0.13,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-autosize-factor.xml,35.085,35.085,35.085,35.085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.188,0.867,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,35.394,35.394,35.394,35.394,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.434,0.93,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed.xml,35.407,35.407,35.407,35.407,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.447,0.93,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-2-speed.xml,33.72,33.72,33.72,33.72,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.121,0.568,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,34.175,34.175,34.175,34.175,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.891,0.254,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,33.468,33.468,33.468,33.468,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.335,0.103,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,33.057,33.057,33.057,33.057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.785,0.242,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-var-speed.xml,33.055,33.055,33.055,33.055,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.785,0.239,9.061,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,1.904,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.613,47.613,47.613,47.613,0.0,0.0,0.0,0.0,0.0,0.0,9.816,1.8,0.303,0.031,4.554,0.957,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-dse.xml,59.356,59.356,36.7,36.7,22.655,0.0,0.0,0.0,0.0,0.0,0.0,0.667,0.0,0.0,5.251,0.631,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.655,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,53.097,53.097,42.449,42.449,10.648,0.0,0.0,0.0,0.0,0.0,5.554,0.883,0.0,1.448,3.567,0.845,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,55.933,55.933,41.545,41.545,14.388,0.0,0.0,0.0,0.0,0.0,4.19,0.626,0.0,2.165,3.567,0.845,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -27,7 +247,7 @@ base-hvac-furnace-elec-only.xml,52.554,52.554,52.554,52.554,0.0,0.0,0.0,0.0,0.0, base-hvac-furnace-gas-central-ac-2-speed.xml,57.658,57.658,34.381,34.381,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,3.117,0.427,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml,57.097,57.097,33.82,33.82,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,2.796,0.187,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-central-ac-var-speed.xml,57.093,57.093,33.815,33.815,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.685,0.0,0.0,2.795,0.184,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-furnace-gas-only-autosize-factor.xml,52.654,52.654,30.848,30.848,21.805,0.0,0.0,0.0,0.0,0.0,0.0,0.642,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.805,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-autosize-factor.xml,52.759,52.759,30.851,30.851,21.908,0.0,0.0,0.0,0.0,0.0,0.0,0.645,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.908,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-detailed-setpoints.xml,38.492,38.492,30.34,30.34,8.152,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.0,0.0,0.0,0.0,9.033,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.001,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.152,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-pilot.xml,58.869,58.869,30.886,30.886,27.983,0.0,0.0,0.0,0.0,0.0,0.0,0.679,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.983,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only.xml,53.967,53.967,30.886,30.886,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.679,0.0,0.0,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -62,6 +282,7 @@ base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml, base-hvac-mini-split-heat-pump-ducted-heating-only.xml,37.248,37.248,37.248,37.248,0.0,0.0,0.0,0.0,0.0,0.0,6.846,0.134,0.059,0.002,0.0,0.0,8.992,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.149,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml,39.396,39.396,39.396,39.396,0.0,0.0,0.0,0.0,0.0,0.0,6.812,0.156,0.053,0.002,2.182,0.04,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted.xml,39.452,39.452,39.452,39.452,0.0,0.0,0.0,0.0,0.0,0.0,6.894,0.128,0.059,0.002,2.179,0.038,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml,38.323,38.323,38.323,38.323,0.0,0.0,0.0,0.0,0.0,0.0,5.956,0.066,0.0,0.0,2.143,0.006,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,39.078,39.078,39.078,39.078,0.0,0.0,0.0,0.0,0.0,0.0,5.983,0.131,0.393,0.0,2.391,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,45.828,45.828,36.543,36.543,9.285,0.0,0.0,0.0,0.0,0.0,3.616,0.049,0.0,0.317,2.383,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.071,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,45.495,45.495,36.344,36.344,9.151,0.0,0.0,0.0,0.0,0.0,3.417,0.044,0.0,0.312,2.391,0.028,9.014,0.0,0.0,4.507,0.0,0.334,0.0,0.0,0.0,0.0,2.072,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.151,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/hpxml-measures/workflow/tests/base_results/results_simulations2_hvac.csv b/hpxml-measures/workflow/tests/base_results/results_simulations_hvac.csv similarity index 51% rename from hpxml-measures/workflow/tests/base_results/results_simulations2_hvac.csv rename to hpxml-measures/workflow/tests/base_results/results_simulations_hvac.csv index 0d7ecc092..087964ea7 100644 --- a/hpxml-measures/workflow/tests/base_results/results_simulations2_hvac.csv +++ b/hpxml-measures/workflow/tests/base_results/results_simulations_hvac.csv @@ -1,4 +1,224 @@ HPXML,HVAC Design Temperature: Heating (F),HVAC Design Temperature: Cooling (F),HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h),HVAC Design Load: Heating: Total (Btu/h),HVAC Design Load: Heating: Ducts (Btu/h),HVAC Design Load: Heating: Windows (Btu/h),HVAC Design Load: Heating: Skylights (Btu/h),HVAC Design Load: Heating: Doors (Btu/h),HVAC Design Load: Heating: Walls (Btu/h),HVAC Design Load: Heating: Roofs (Btu/h),HVAC Design Load: Heating: Floors (Btu/h),HVAC Design Load: Heating: Slabs (Btu/h),HVAC Design Load: Heating: Ceilings (Btu/h),HVAC Design Load: Heating: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Total (Btu/h),HVAC Design Load: Cooling Sensible: Ducts (Btu/h),HVAC Design Load: Cooling Sensible: Windows (Btu/h),HVAC Design Load: Cooling Sensible: Skylights (Btu/h),HVAC Design Load: Cooling Sensible: Doors (Btu/h),HVAC Design Load: Cooling Sensible: Walls (Btu/h),HVAC Design Load: Cooling Sensible: Roofs (Btu/h),HVAC Design Load: Cooling Sensible: Floors (Btu/h),HVAC Design Load: Cooling Sensible: Slabs (Btu/h),HVAC Design Load: Cooling Sensible: Ceilings (Btu/h),HVAC Design Load: Cooling Sensible: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Sensible: Internal Gains (Btu/h),HVAC Design Load: Cooling Latent: Total (Btu/h),HVAC Design Load: Cooling Latent: Ducts (Btu/h),HVAC Design Load: Cooling Latent: Infiltration/Ventilation (Btu/h),HVAC Design Load: Cooling Latent: Internal Gains (Btu/h) +base-appliances-coal.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-appliances-dehumidifier-ief-portable.xml,25.88,98.42,24000.0,24000.0,0.0,20417.0,1393.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15289.0,75.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0 +base-appliances-dehumidifier-ief-whole-home.xml,25.88,98.42,24000.0,24000.0,0.0,20417.0,1393.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15289.0,75.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0 +base-appliances-dehumidifier-multiple.xml,25.88,98.42,24000.0,24000.0,0.0,20417.0,1393.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15289.0,75.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0 +base-appliances-dehumidifier.xml,25.88,98.42,24000.0,24000.0,0.0,20417.0,1393.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1792.0,15289.0,75.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,2694.0,577.0,3320.0,1637.0,438.0,399.0,800.0 +base-appliances-freezer-temperature-dependent-schedule.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,21093.0,6140.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,4520.0,132.0,0.0,-668.0,800.0 +base-appliances-gas.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-appliances-modified.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-appliances-none.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-appliances-oil.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-appliances-propane.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-appliances-refrigerator-temperature-dependent-schedule.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-appliances-wood.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-atticroof-cathedral.xml,6.8,91.76,36000.0,24000.0,0.0,30447.0,0.0,9510.0,0.0,575.0,7194.0,3697.0,0.0,2408.0,0.0,7063.0,15723.0,0.0,9971.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,948.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-conditioned.xml,6.8,91.76,36000.0,24000.0,0.0,32083.0,778.0,10436.0,0.0,575.0,7982.0,2464.0,0.0,2408.0,724.0,6718.0,19378.0,62.0,12260.0,0.0,207.0,1211.0,650.0,0.0,0.0,764.0,904.0,3320.0,0.0,0.0,0.0,0.0 +base-atticroof-flat.xml,6.8,91.76,36000.0,24000.0,0.0,25336.0,0.0,7508.0,0.0,575.0,6840.0,3307.0,0.0,2408.0,0.0,4699.0,12331.0,0.0,7037.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-atticroof-radiant-barrier-ceiling.xml,25.88,98.42,24000.0,24000.0,0.0,25779.0,1424.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1792.0,24755.0,66.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,12169.0,577.0,3320.0,1637.0,438.0,399.0,800.0 +base-atticroof-radiant-barrier.xml,25.88,98.42,24000.0,24000.0,0.0,25779.0,1424.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1792.0,21654.0,68.0,7674.0,0.0,313.0,637.0,0.0,0.0,0.0,9065.0,577.0,3320.0,1637.0,438.0,399.0,800.0 +base-atticroof-unvented-insulated-roof.xml,6.8,91.76,36000.0,24000.0,0.0,31085.0,4866.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,4190.0,4699.0,19553.0,1896.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-atticroof-vented.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,16582.0,3860.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-battery-scheduled.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-battery.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,6.8,91.76,12000.0,12000.0,0.0,12374.0,5661.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1558.0,8175.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml,6.8,91.76,0.0,0.0,0.0,7340.0,0.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1558.0,8393.0,0.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,6.8,91.76,12000.0,12000.0,0.0,12432.0,5091.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1558.0,9982.0,1589.0,3264.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,6.8,91.76,12000.0,12000.0,0.0,14621.0,6781.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1558.0,10083.0,3239.0,1142.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,6.8,91.76,12000.0,12000.0,0.0,8360.0,3676.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1558.0,8175.0,2276.0,1142.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,6.8,91.76,12000.0,12000.0,0.0,7916.0,3457.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1558.0,6281.0,1327.0,1142.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-infil-compartmentalization-test.xml,6.8,91.76,12000.0,12000.0,0.0,5615.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1261.0,7014.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,169.0,3320.0,621.0,0.0,-179.0,800.0 +base-bldgtype-mf-unit-residents-1.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,6.8,91.76,5911.0,8875.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,6.8,91.76,8673.0,10149.0,0.0,8673.0,2762.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,6.8,91.76,5911.0,8875.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,6.8,91.76,28568.0,10149.0,0.0,6794.0,882.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,6.8,91.76,28568.0,10149.0,0.0,6794.0,882.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,6.8,91.76,5911.0,0.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,6.8,91.76,8673.0,0.0,0.0,8673.0,2762.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,6.8,91.76,5911.0,0.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,6.8,91.76,7083.0,0.0,0.0,7083.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,2729.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,6.8,91.76,5911.0,0.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,6.8,91.76,28568.0,0.0,0.0,6794.0,882.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,6.8,91.76,0.0,8875.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,6.8,91.76,0.0,10149.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,6.8,91.76,0.0,8875.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,6.8,91.76,0.0,10149.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,6.8,91.76,0.0,10149.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,8011.0,957.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-generator.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,6.8,91.76,12000.0,12000.0,12000.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-laundry-room.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,6.8,91.76,12000.0,12000.0,0.0,9336.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,4983.0,8045.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1201.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,6.8,91.76,12000.0,12000.0,0.0,6306.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1953.0,7113.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,268.0,3320.0,2.0,0.0,-798.0,800.0 +base-bldgtype-mf-unit-shared-mechvent.xml,6.8,91.76,12000.0,12000.0,0.0,7909.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,3556.0,7599.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,754.0,3320.0,2.0,0.0,-798.0,800.0 +base-bldgtype-mf-unit-shared-pv-battery.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-pv.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,6364.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,2630.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit-shared-water-heater.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-unit.xml,6.8,91.76,12000.0,12000.0,0.0,5911.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1558.0,7054.0,0.0,3264.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,209.0,3320.0,579.0,0.0,-221.0,800.0 +base-bldgtype-mf-whole-building.xml,6.8,91.76,72000.0,72000.0,0.0,88106.0,0.0,18018.0,0.0,1722.0,10488.0,0.0,2376.0,0.0,3860.0,51642.0,53028.0,0.0,21576.0,0.0,618.0,1104.0,0.0,630.0,0.0,2244.0,6930.0,19920.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-2stories.xml,6.8,91.76,48000.0,36000.0,0.0,28279.0,7515.0,5147.0,0.0,575.0,5634.0,0.0,0.0,1879.0,1447.0,6082.0,17817.0,5082.0,6528.0,0.0,207.0,333.0,0.0,0.0,0.0,1529.0,819.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-atticroof-cathedral.xml,6.8,91.76,48000.0,36000.0,0.0,43862.0,0.0,3210.0,0.0,575.0,4469.0,27649.0,0.0,1879.0,0.0,6082.0,24069.0,0.0,4963.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,819.0,3320.0,0.0,0.0,0.0,0.0 +base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,6.8,91.76,24000.0,24000.0,0.0,21925.0,8234.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1879.0,1447.0,3126.0,14900.0,5990.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1529.0,419.0,3320.0,356.0,0.0,-444.0,800.0 +base-bldgtype-sfa-unit.xml,6.8,91.76,24000.0,24000.0,0.0,21926.0,8234.0,2576.0,0.0,575.0,4088.0,0.0,0.0,1879.0,1447.0,3126.0,14900.0,5990.0,3264.0,0.0,207.0,170.0,0.0,0.0,0.0,1529.0,420.0,3320.0,356.0,0.0,-444.0,800.0 +base-dhw-combi-tankless-outside.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-combi-tankless.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-desuperheater-2-speed.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-desuperheater-gshp.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-desuperheater-hpwh.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-desuperheater-tankless.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-desuperheater-var-speed.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-desuperheater.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-dwhr.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-indirect-detailed-setpoints.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-indirect-dse.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-indirect-outside.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-indirect-standbyloss.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-indirect-with-solar-fraction.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-indirect.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-jacket-electric.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-jacket-gas.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-jacket-hpwh.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-jacket-indirect.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-low-flow-fixtures.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-multiple.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-none.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-recirc-demand-scheduled.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-recirc-demand.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-recirc-manual.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-recirc-nocontrol.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-recirc-temperature.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-recirc-timer.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-solar-direct-evacuated-tube.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-solar-direct-flat-plate.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-solar-direct-ics.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-solar-fraction.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-solar-indirect-flat-plate.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-solar-thermosyphon-flat-plate.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-coal.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-detailed-setpoints.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-elec-uef.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-gas-outside.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-gas-uef-fhr.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-gas-uef.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-gas.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-heat-pump-outside.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-heat-pump-uef.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-heat-pump-with-solar.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-heat-pump.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-model-type-stratified.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-oil.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tank-wood.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tankless-detailed-setpoints.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tankless-electric-outside.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tankless-electric-uef.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tankless-electric.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tankless-gas-uef.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tankless-gas-with-solar-fraction.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tankless-gas-with-solar.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tankless-gas.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-dhw-tankless-propane.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-2stories-garage.xml,6.8,91.76,48000.0,36000.0,0.0,43900.0,7710.0,15016.0,0.0,575.0,9018.0,0.0,315.0,1768.0,2171.0,7327.0,26147.0,5055.0,14074.0,0.0,207.0,312.0,0.0,-101.0,0.0,2293.0,986.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-2stories.xml,6.8,91.76,48000.0,36000.0,0.0,46518.0,7741.0,15016.0,0.0,575.0,9467.0,0.0,0.0,2408.0,2171.0,9141.0,26728.0,5062.0,14074.0,0.0,207.0,542.0,0.0,0.0,0.0,2293.0,1230.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-1.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19373.0,6080.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,2860.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-2.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19609.0,6086.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3090.0,0.0,0.0,0.0,0.0 +base-enclosure-beds-4.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,20121.0,6138.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3550.0,332.0,0.0,-668.0,1000.0 +base-enclosure-beds-5.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,20365.0,6152.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3780.0,532.0,0.0,-668.0,1200.0 +base-enclosure-ceilingtypes.xml,6.8,91.76,36000.0,24000.0,0.0,45137.0,8943.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,14165.0,4699.0,32663.0,6240.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,14963.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-floortypes.xml,6.8,91.76,36000.0,24000.0,0.0,37755.0,8797.0,7508.0,0.0,575.0,2198.0,0.0,14165.0,0.0,2171.0,2341.0,21075.0,6157.0,7037.0,0.0,207.0,232.0,0.0,1515.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 +base-enclosure-garage.xml,6.8,91.76,36000.0,24000.0,0.0,28943.0,6810.0,5506.0,0.0,575.0,6774.0,0.0,0.0,2408.0,2171.0,4699.0,12679.0,528.0,5579.0,0.0,207.0,122.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-infil-ach-house-pressure.xml,6.8,91.76,36000.0,24000.0,0.0,32882.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4697.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,630.0,3320.0,133.0,0.0,-667.0,800.0 +base-enclosure-infil-cfm-house-pressure.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-infil-cfm50.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-infil-ela.xml,6.8,91.76,36000.0,24000.0,0.0,38096.0,8804.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,9790.0,20562.0,6126.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1314.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-flue.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-infil-natural-ach.xml,6.8,91.76,36000.0,24000.0,0.0,37847.0,8799.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,9547.0,20529.0,6125.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1281.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-infil-natural-cfm.xml,6.8,91.76,36000.0,24000.0,0.0,37847.0,8799.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,9547.0,20529.0,6125.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,1281.0,3320.0,0.0,0.0,0.0,0.0 +base-enclosure-orientations.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-overhangs.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-rooftypes.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-skylights-physical-properties.xml,6.8,91.76,36000.0,24000.0,0.0,35230.0,8735.0,7508.0,2294.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,24498.0,6173.0,7037.0,4572.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-skylights-shading.xml,6.8,91.76,36000.0,24000.0,0.0,33528.0,8702.0,7508.0,626.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,20618.0,6133.0,7037.0,732.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-skylights-storms.xml,6.8,91.76,36000.0,24000.0,0.0,33600.0,8704.0,7508.0,696.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,22679.0,6141.0,7037.0,2785.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-skylights.xml,6.8,91.76,36000.0,24000.0,0.0,33528.0,8702.0,7508.0,626.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,22899.0,6145.0,7037.0,3001.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-split-level.xml,6.8,91.76,36000.0,24000.0,0.0,29095.0,1695.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2716.0,13454.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2293.0,365.0,3320.0,414.0,0.0,-386.0,800.0 +base-enclosure-thermal-mass.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-walltypes.xml,6.8,91.76,36000.0,24000.0,0.0,35895.0,8752.0,918.0,0.0,575.0,16373.0,0.0,0.0,2408.0,2171.0,4699.0,15096.0,5979.0,979.0,0.0,207.0,1686.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-windows-natural-ventilation-availability.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-windows-none.xml,6.8,91.76,36000.0,24000.0,0.0,26129.0,8448.0,0.0,0.0,575.0,7829.0,0.0,0.0,2408.0,2171.0,4699.0,12717.0,5897.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-windows-physical-properties.xml,6.8,91.76,36000.0,24000.0,0.0,39310.0,8830.0,13788.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,22274.0,6155.0,9403.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-windows-shading-seasons.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-windows-shading.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15748.0,5998.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-enclosure-windows-storms.xml,6.8,91.76,36000.0,24000.0,0.0,32033.0,8661.0,6680.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,18611.0,6087.0,5808.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-foundation-ambient.xml,6.8,91.76,36000.0,24000.0,0.0,27866.0,8510.0,7508.0,0.0,575.0,2198.0,0.0,4563.0,0.0,2171.0,2341.0,20035.0,6144.0,7037.0,0.0,207.0,232.0,0.0,488.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 +base-foundation-basement-garage.xml,6.8,91.76,36000.0,24000.0,0.0,31587.0,8648.0,7508.0,0.0,603.0,7269.0,0.0,318.0,1768.0,2171.0,3301.0,19420.0,6102.0,7037.0,0.0,198.0,128.0,0.0,-102.0,0.0,2293.0,443.0,3320.0,331.0,0.0,-469.0,800.0 +base-foundation-belly-wing-no-skirt.xml,6.8,91.76,36000.0,24000.0,0.0,21982.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2341.0,13083.0,799.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 +base-foundation-belly-wing-skirt.xml,6.8,91.76,36000.0,24000.0,0.0,21982.0,2610.0,6674.0,0.0,575.0,3049.0,0.0,4563.0,0.0,2171.0,2341.0,13083.0,799.0,5340.0,0.0,207.0,321.0,0.0,488.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 +base-foundation-complex.xml,6.8,91.76,36000.0,24000.0,0.0,42766.0,8896.0,7508.0,0.0,575.0,15887.0,0.0,0.0,3031.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,6.8,91.76,36000.0,24000.0,0.0,32142.0,8664.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1685.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-foundation-conditioned-basement-slab-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,32142.0,8664.0,7508.0,0.0,575.0,6840.0,0.0,0.0,1685.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-foundation-conditioned-basement-wall-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,36105.0,8758.0,7508.0,0.0,575.0,9987.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-foundation-conditioned-crawlspace.xml,6.8,91.76,36000.0,24000.0,0.0,22204.0,0.0,7508.0,0.0,575.0,5116.0,0.0,0.0,3315.0,2171.0,3519.0,13595.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,472.0,3320.0,300.0,0.0,-500.0,800.0 +base-foundation-multiple.xml,6.8,91.76,36000.0,24000.0,0.0,23267.0,4935.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2341.0,14577.0,236.0,7037.0,0.0,207.0,232.0,0.0,938.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 +base-foundation-slab.xml,6.8,91.76,36000.0,24000.0,0.0,28719.0,1693.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2341.0,13403.0,0.0,7037.0,0.0,207.0,232.0,0.0,0.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 +base-foundation-unconditioned-basement-above-grade.xml,6.8,91.76,36000.0,24000.0,0.0,23242.0,4944.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2341.0,14578.0,246.0,7037.0,0.0,207.0,232.0,0.0,929.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 +base-foundation-unconditioned-basement-assembly-r.xml,6.8,91.76,36000.0,24000.0,0.0,21063.0,4883.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2341.0,14024.0,254.0,7037.0,0.0,207.0,232.0,0.0,368.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 +base-foundation-unconditioned-basement-wall-insulation.xml,6.8,91.76,36000.0,24000.0,0.0,24300.0,2059.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2341.0,15378.0,0.0,7037.0,0.0,207.0,232.0,0.0,1975.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 +base-foundation-unconditioned-basement.xml,6.8,91.76,36000.0,24000.0,0.0,23284.0,4945.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2341.0,14589.0,246.0,7037.0,0.0,207.0,232.0,0.0,940.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 +base-foundation-unvented-crawlspace.xml,6.8,91.76,36000.0,24000.0,0.0,22059.0,5838.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2341.0,15478.0,1697.0,7037.0,0.0,207.0,232.0,0.0,379.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 +base-foundation-vented-crawlspace-above-grade.xml,6.8,91.76,36000.0,24000.0,0.0,24712.0,7664.0,7508.0,0.0,575.0,2198.0,0.0,2255.0,0.0,2171.0,2341.0,16214.0,2213.0,7037.0,0.0,207.0,232.0,0.0,598.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 +base-foundation-vented-crawlspace.xml,6.8,91.76,36000.0,24000.0,0.0,24391.0,7352.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2341.0,16124.0,2126.0,7037.0,0.0,207.0,232.0,0.0,596.0,0.0,2293.0,314.0,3320.0,467.0,0.0,-333.0,800.0 +base-foundation-walkout-basement.xml,6.8,91.76,36000.0,24000.0,0.0,34876.0,8736.0,7925.0,0.0,575.0,6502.0,0.0,0.0,2885.0,2171.0,6082.0,20239.0,6101.0,7234.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,819.0,3320.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml,6.8,91.76,44000.0,53000.0,28000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,6.8,91.76,0.0,36000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,6.8,91.76,36000.0,0.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,6.8,91.76,68503.0,68503.0,0.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,6.8,91.76,18000.0,18000.0,60000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,6.8,91.76,18000.0,18000.0,60000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,6.8,91.76,18000.0,18000.0,60000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,6.8,91.76,44000.0,53000.0,29000.0,40470.0,16270.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,6.8,91.76,18000.0,18000.0,60000.0,40470.0,16270.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,6.8,91.76,31786.0,31786.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,6.8,91.76,72000.0,72000.0,72000.0,38366.0,14166.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,32255.0,18502.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-autosize-sizing-controls.xml,0.0,100.0,32065.0,31213.0,0.0,32065.0,9149.0,7128.0,0.0,545.0,6493.0,0.0,0.0,2286.0,2061.0,4402.0,24088.0,6742.0,7422.0,0.0,318.0,951.0,0.0,0.0,0.0,2714.0,790.0,5150.0,2353.0,420.0,733.0,1200.0 +base-hvac-autosize.xml,6.8,91.76,32885.0,24630.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-boiler-coal-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-boiler-elec-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,6.8,91.76,36000.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-boiler-gas-only-pilot.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-boiler-gas-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-boiler-oil-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-boiler-propane-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-boiler-wood-only.xml,6.8,91.76,36000.0,0.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-central-ac-only-1-speed-autosize-factor.xml,6.8,91.76,0.0,37000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-central-ac-only-1-speed-seer2.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-central-ac-only-1-speed.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-central-ac-only-2-speed.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,6.8,91.76,0.0,24120.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,6.8,91.76,0.0,36000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-central-ac-only-var-speed.xml,6.8,91.76,0.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,6.8,91.76,36000.0,24000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 base-hvac-dse.xml,6.8,91.76,36000.0,24000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,6.8,91.76,36000.0,36000.0,36000.0,31786.0,7585.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 @@ -27,7 +247,7 @@ base-hvac-furnace-elec-only.xml,6.8,91.76,36000.0,0.0,0.0,32885.0,8685.0,7508.0, base-hvac-furnace-gas-central-ac-2-speed.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 base-hvac-furnace-gas-central-ac-var-speed.xml,6.8,91.76,36000.0,24000.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,19853.0,6100.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 -base-hvac-furnace-gas-only-autosize-factor.xml,6.8,91.76,46039.0,0.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-furnace-gas-only-autosize-factor.xml,6.8,91.76,45000.0,0.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 base-hvac-furnace-gas-only-detailed-setpoints.xml,6.8,91.76,36000.0,0.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 base-hvac-furnace-gas-only-pilot.xml,6.8,91.76,36000.0,0.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 base-hvac-furnace-gas-only.xml,6.8,91.76,36000.0,0.0,0.0,32885.0,8685.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 @@ -62,6 +282,7 @@ base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml, base-hvac-mini-split-heat-pump-ducted-heating-only.xml,6.8,91.76,36000.0,0.0,36000.0,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml,6.8,91.76,36000.0,36000.0,36000.0,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 base-hvac-mini-split-heat-pump-ducted.xml,6.8,91.76,36000.0,36000.0,36000.0,26743.0,2543.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,15833.0,2081.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 +base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml,6.8,91.76,33000.0,41000.0,0.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,6.8,91.76,18000.0,18000.0,60000.0,24200.0,0.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,6.8,91.76,18000.0,18000.0,60000.0,25150.0,950.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,6.8,91.76,18000.0,18000.0,60000.0,27132.0,2932.0,7508.0,0.0,575.0,6840.0,0.0,0.0,2408.0,2171.0,4699.0,13753.0,0.0,7037.0,0.0,207.0,265.0,0.0,0.0,0.0,2293.0,631.0,3320.0,132.0,0.0,-668.0,800.0 diff --git a/hpxml-measures/workflow/tests/base_results/results_simulations2_loads.csv b/hpxml-measures/workflow/tests/base_results/results_simulations_loads.csv similarity index 51% rename from hpxml-measures/workflow/tests/base_results/results_simulations2_loads.csv rename to hpxml-measures/workflow/tests/base_results/results_simulations_loads.csv index 7b13ae18a..1403c5f2b 100644 --- a/hpxml-measures/workflow/tests/base_results/results_simulations2_loads.csv +++ b/hpxml-measures/workflow/tests/base_results/results_simulations_loads.csv @@ -1,4 +1,224 @@ HPXML,Load: Heating: Delivered (MBtu),Load: Heating: Heat Pump Backup (MBtu),Load: Cooling: Delivered (MBtu),Load: Hot Water: Delivered (MBtu),Load: Hot Water: Tank Losses (MBtu),Load: Hot Water: Desuperheater (MBtu),Load: Hot Water: Solar Thermal (MBtu),Component Load: Heating: Roofs (MBtu),Component Load: Heating: Ceilings (MBtu),Component Load: Heating: Walls (MBtu),Component Load: Heating: Rim Joists (MBtu),Component Load: Heating: Foundation Walls (MBtu),Component Load: Heating: Doors (MBtu),Component Load: Heating: Windows Conduction (MBtu),Component Load: Heating: Windows Solar (MBtu),Component Load: Heating: Skylights Conduction (MBtu),Component Load: Heating: Skylights Solar (MBtu),Component Load: Heating: Floors (MBtu),Component Load: Heating: Slabs (MBtu),Component Load: Heating: Internal Mass (MBtu),Component Load: Heating: Infiltration (MBtu),Component Load: Heating: Natural Ventilation (MBtu),Component Load: Heating: Mechanical Ventilation (MBtu),Component Load: Heating: Whole House Fan (MBtu),Component Load: Heating: Ducts (MBtu),Component Load: Heating: Internal Gains (MBtu),Component Load: Heating: Lighting (MBtu),Component Load: Cooling: Roofs (MBtu),Component Load: Cooling: Ceilings (MBtu),Component Load: Cooling: Walls (MBtu),Component Load: Cooling: Rim Joists (MBtu),Component Load: Cooling: Foundation Walls (MBtu),Component Load: Cooling: Doors (MBtu),Component Load: Cooling: Windows Conduction (MBtu),Component Load: Cooling: Windows Solar (MBtu),Component Load: Cooling: Skylights Conduction (MBtu),Component Load: Cooling: Skylights Solar (MBtu),Component Load: Cooling: Floors (MBtu),Component Load: Cooling: Slabs (MBtu),Component Load: Cooling: Internal Mass (MBtu),Component Load: Cooling: Infiltration (MBtu),Component Load: Cooling: Natural Ventilation (MBtu),Component Load: Cooling: Mechanical Ventilation (MBtu),Component Load: Cooling: Whole House Fan (MBtu),Component Load: Cooling: Ducts (MBtu),Component Load: Cooling: Internal Gains (MBtu),Component Load: Cooling: Lighting (MBtu) +base-appliances-coal.xml,21.477,0.0,14.288,9.071,0.614,0.0,0.0,0.0,3.54,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.311,-0.069,5.131,0.0,0.486,0.0,4.793,-8.29,-2.488,0.0,-0.064,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.17,-3.846,-0.109,0.0,3.149,8.28,2.02 +base-appliances-dehumidifier-ief-portable.xml,1.637,0.0,30.837,6.557,0.574,0.0,0.0,0.0,1.741,1.63,0.0,0.0,0.385,4.852,-5.133,0.0,0.0,0.0,1.255,-0.393,1.062,0.205,0.398,0.0,0.045,-3.911,-0.794,0.0,0.557,0.011,0.0,0.0,0.21,2.871,17.037,0.0,0.0,0.0,1.915,-0.388,-0.196,-2.234,-0.081,0.0,0.474,8.955,1.852 +base-appliances-dehumidifier-ief-whole-home.xml,1.621,0.0,30.81,6.557,0.574,0.0,0.0,0.0,1.749,1.636,0.0,0.0,0.388,4.875,-5.151,0.0,0.0,0.0,1.266,-0.397,1.066,0.215,0.399,0.0,0.045,-3.965,-0.799,0.0,0.566,0.017,0.0,0.0,0.213,2.895,17.02,0.0,0.0,0.0,1.926,-0.392,-0.192,-2.226,-0.08,0.0,0.474,8.902,1.846 +base-appliances-dehumidifier-multiple.xml,1.686,0.0,30.807,6.557,0.574,0.0,0.0,0.0,1.732,1.622,0.0,0.0,0.384,4.836,-5.121,0.0,0.0,0.0,1.238,-0.398,1.059,0.199,0.396,0.0,0.046,-3.808,-0.793,0.0,0.552,0.007,0.0,0.0,0.21,2.867,17.05,0.0,0.0,0.0,1.91,-0.392,-0.197,-2.225,-0.082,0.0,0.474,8.937,1.853 +base-appliances-dehumidifier.xml,1.627,0.0,30.778,6.557,0.574,0.0,0.0,0.0,1.747,1.635,0.0,0.0,0.388,4.887,-5.145,0.0,0.0,0.0,1.251,-0.405,1.068,0.221,0.4,0.0,0.045,-3.952,-0.8,0.0,0.565,0.019,0.0,0.0,0.214,2.914,17.026,0.0,0.0,0.0,1.92,-0.399,-0.189,-2.218,-0.079,0.0,0.474,8.866,1.845 +base-appliances-freezer-temperature-dependent-schedule.xml,21.464,0.0,14.409,9.071,0.614,0.0,0.0,0.0,3.542,3.644,0.513,7.524,0.631,10.102,-12.69,0.0,0.0,0.0,8.312,-0.066,4.978,0.0,0.728,0.0,4.788,-8.39,-2.488,0.0,-0.066,-0.453,-0.05,2.709,-0.023,-1.371,11.724,0.0,0.0,0.0,-6.301,-0.062,-1.132,-3.87,-0.163,0.0,3.164,8.469,2.019 +base-appliances-gas.xml,21.477,0.0,14.288,9.071,0.614,0.0,0.0,0.0,3.54,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.311,-0.069,5.131,0.0,0.486,0.0,4.793,-8.29,-2.488,0.0,-0.064,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.17,-3.846,-0.109,0.0,3.149,8.28,2.02 +base-appliances-modified.xml,21.195,0.0,14.381,9.633,0.614,0.0,0.0,0.0,3.544,3.645,0.513,7.527,0.631,10.108,-12.683,0.0,0.0,0.0,8.318,-0.069,5.495,0.0,0.0,0.0,4.738,-8.425,-2.487,0.0,-0.067,-0.454,-0.05,2.707,-0.023,-1.369,11.73,0.0,0.0,0.0,-6.304,-0.065,-1.273,-3.866,0.0,0.0,3.163,8.416,2.02 +base-appliances-none.xml,23.693,0.0,12.572,7.75,0.616,0.0,0.0,0.0,3.505,3.621,0.509,7.456,0.627,10.045,-12.705,0.0,0.0,0.0,8.235,-0.065,5.494,0.0,0.0,0.0,5.232,-6.091,-2.491,0.0,-0.001,-0.404,-0.043,2.854,-0.01,-1.212,11.708,0.0,0.0,0.0,-6.068,-0.06,-1.226,-3.554,0.0,0.0,2.83,5.921,2.016 +base-appliances-oil.xml,21.477,0.0,14.288,9.071,0.614,0.0,0.0,0.0,3.54,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.311,-0.069,5.131,0.0,0.486,0.0,4.793,-8.29,-2.488,0.0,-0.064,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.17,-3.846,-0.109,0.0,3.149,8.28,2.02 +base-appliances-propane.xml,21.477,0.0,14.288,9.071,0.614,0.0,0.0,0.0,3.54,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.311,-0.069,5.131,0.0,0.486,0.0,4.793,-8.29,-2.488,0.0,-0.064,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.17,-3.846,-0.109,0.0,3.149,8.28,2.02 +base-appliances-refrigerator-temperature-dependent-schedule.xml,22.103,0.0,13.916,9.071,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 +base-appliances-wood.xml,21.477,0.0,14.288,9.071,0.614,0.0,0.0,0.0,3.54,3.643,0.513,7.521,0.631,10.104,-12.683,0.0,0.0,0.0,8.311,-0.069,5.131,0.0,0.486,0.0,4.793,-8.29,-2.488,0.0,-0.064,-0.451,-0.05,2.717,-0.022,-1.359,11.73,0.0,0.0,0.0,-6.289,-0.066,-1.17,-3.846,-0.109,0.0,3.149,8.28,2.02 +base-atticroof-cathedral.xml,25.005,0.0,13.249,9.071,0.616,0.0,0.0,6.774,0.0,4.233,0.513,7.48,0.634,12.699,-15.652,0.0,0.0,0.0,8.32,-0.094,9.33,0.0,0.729,0.0,0.0,-7.833,-2.496,0.175,0.0,-0.482,-0.045,2.788,-0.012,-1.107,15.648,0.0,0.0,0.0,-6.288,-0.069,-2.029,-4.695,-0.155,0.0,0.0,7.745,2.012 +base-atticroof-conditioned.xml,22.438,0.0,16.445,9.019,0.614,0.0,0.0,4.565,1.167,5.562,0.519,7.664,0.637,14.496,-17.102,0.0,0.0,0.0,8.521,-0.089,7.161,0.0,0.731,0.0,0.343,-8.985,-3.17,0.007,0.021,-0.563,-0.053,2.686,-0.028,-1.671,18.202,0.0,0.0,0.0,-6.374,-0.083,-1.663,-5.275,-0.165,0.0,0.103,8.989,2.578 +base-atticroof-flat.xml,19.226,0.0,11.318,9.071,0.616,0.0,0.0,6.035,0.0,3.612,0.508,7.441,0.624,10.017,-12.688,0.0,0.0,0.0,8.192,-0.08,4.799,0.0,0.726,0.0,0.0,-7.799,-2.489,0.324,0.0,-0.434,-0.048,2.771,-0.018,-1.311,11.72,0.0,0.0,0.0,-6.201,-0.055,-1.126,-3.734,-0.16,0.0,0.0,7.781,2.018 +base-atticroof-radiant-barrier-ceiling.xml,4.846,0.0,33.487,6.557,0.582,0.0,0.0,0.0,7.07,1.549,0.0,0.0,0.334,4.333,-6.058,0.0,0.0,0.0,0.631,-0.423,1.048,0.0,0.401,0.0,0.131,-3.502,-0.871,0.0,3.82,0.175,0.0,0.0,0.218,3.049,16.138,0.0,0.0,0.0,2.05,-0.414,-0.084,-1.995,-0.036,0.0,0.521,8.571,1.775 +base-atticroof-radiant-barrier.xml,4.16,0.0,32.152,6.557,0.581,0.0,0.0,0.0,5.954,1.571,0.0,0.0,0.333,4.338,-5.951,0.0,0.0,0.0,0.81,-0.365,1.037,0.0,0.397,0.0,0.113,-3.442,-0.856,0.0,2.404,0.166,0.0,0.0,0.21,2.976,16.22,0.0,0.0,0.0,2.138,-0.358,-0.119,-2.068,-0.046,0.0,0.501,8.634,1.79 +base-atticroof-unvented-insulated-roof.xml,22.082,0.0,11.714,9.071,0.616,0.0,0.0,0.0,5.662,3.62,0.509,7.455,0.626,10.045,-12.698,0.0,0.0,0.0,8.251,-0.07,4.976,0.0,0.728,0.0,2.958,-7.81,-2.491,0.0,-1.589,-0.398,-0.042,2.873,-0.009,-1.197,11.715,0.0,0.0,0.0,-6.022,-0.061,-1.085,-3.506,-0.157,0.0,1.619,7.768,2.016 +base-atticroof-vented.xml,22.697,0.0,12.597,9.071,0.803,0.0,0.0,0.0,3.878,3.633,0.511,7.49,0.629,10.078,-12.698,0.0,0.0,0.0,8.277,-0.066,5.271,0.0,0.727,0.0,4.615,-7.473,-2.49,0.0,-0.514,-0.424,-0.046,2.791,-0.015,-1.275,11.715,0.0,0.0,0.0,-6.171,-0.062,-1.09,-3.675,-0.16,0.0,2.219,7.491,2.017 +base-battery-scheduled.xml,22.103,0.0,13.916,9.071,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 +base-battery.xml,22.103,0.0,13.916,9.071,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 +base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,11.476,0.0,3.042,9.37,0.731,0.0,0.0,0.0,2.942,3.647,0.0,0.0,0.585,1.315,-1.598,0.0,0.0,2.977,0.0,-0.049,1.674,0.0,0.0,0.0,4.651,-3.529,-1.183,0.0,-0.891,-0.194,0.0,0.0,-0.044,-0.088,1.304,0.0,0.0,-0.905,0.0,-0.046,-0.267,-0.402,0.0,0.0,0.694,3.087,0.843 +base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml,0.0,0.0,0.0,9.37,0.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,6.818,0.0,5.159,9.37,0.612,0.0,0.0,0.0,-0.005,3.292,0.0,0.0,1.39,3.735,-4.234,0.0,0.0,4.543,0.0,-0.086,1.253,0.0,0.791,0.0,2.678,-5.509,-1.139,0.0,-0.001,-0.416,0.0,0.0,-0.396,-0.133,3.971,0.0,0.0,-2.921,0.0,-0.082,-0.23,-1.205,-0.123,0.0,0.612,5.301,0.886 +base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,23.28,0.0,2.559,9.37,0.818,0.0,0.0,0.0,5.379,4.201,0.0,0.0,0.793,1.293,-1.714,0.0,0.0,5.429,0.0,-0.077,1.706,0.0,0.0,0.0,11.218,-3.736,-1.243,0.0,-1.133,-0.026,0.0,0.0,-0.042,0.011,1.188,0.0,0.0,-1.14,0.0,-0.074,-0.178,-0.296,0.0,0.0,0.659,2.88,0.782 +base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,1.69,0.0,3.151,9.37,0.637,0.0,0.0,0.0,0.284,3.112,0.0,0.0,0.367,1.367,-1.509,0.0,0.0,0.306,0.0,-0.01,1.682,0.0,0.0,0.0,0.469,-3.319,-1.118,0.0,-0.795,-0.417,0.0,0.0,-0.066,-0.199,1.393,0.0,0.0,-0.811,0.0,-0.007,-0.374,-0.455,0.0,0.0,0.717,3.297,0.907 +base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,1.456,0.0,4.979,9.37,0.593,0.0,0.0,0.0,-0.003,3.151,0.0,0.0,0.363,1.418,-1.434,0.0,0.0,-0.003,0.0,-0.056,1.741,0.0,0.0,0.0,0.407,-3.11,-1.046,0.0,-0.001,-0.487,0.0,0.0,-0.03,-0.32,1.468,0.0,0.0,-0.001,0.0,-0.054,-0.481,-0.645,0.0,0.0,1.081,3.506,0.979 +base-bldgtype-mf-unit-infil-compartmentalization-test.xml,0.706,0.0,8.666,9.37,0.579,0.0,0.0,0.0,-0.017,2.483,0.0,0.0,0.423,3.952,-2.673,0.0,0.0,-0.013,0.0,-0.407,0.996,0.0,0.688,0.0,0.0,-4.03,-0.784,0.0,-0.012,-1.036,0.0,0.0,-0.034,-1.029,5.529,0.0,0.0,-0.009,0.0,-0.397,-0.369,-1.611,-0.367,0.0,0.0,6.855,1.241 +base-bldgtype-mf-unit-residents-1.xml,1.303,0.0,6.943,4.142,0.587,0.0,0.0,0.0,-0.017,2.598,0.0,0.0,0.419,4.075,-3.114,0.0,0.0,-0.015,0.0,-0.34,1.299,0.0,0.747,0.0,0.0,-3.477,-0.932,0.0,-0.012,-0.773,0.0,0.0,-0.01,-0.677,5.088,0.0,0.0,-0.011,0.0,-0.333,-0.386,-1.448,-0.27,0.0,0.0,4.749,1.093 +base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.016,2.517,0.0,0.0,0.421,3.977,-2.775,0.0,0.0,-0.014,0.0,-0.389,1.285,0.0,0.701,0.0,0.0,-4.142,-0.813,0.0,-0.012,-0.979,0.0,0.0,-0.031,-0.967,5.427,0.0,0.0,-0.009,0.0,-0.38,-0.462,-1.595,-0.347,0.0,0.0,6.739,1.212 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,0.883,0.0,9.857,9.37,0.58,0.0,0.0,0.0,-0.016,2.515,0.0,0.0,0.42,3.963,-2.776,0.0,0.0,-0.013,0.0,-0.388,1.285,0.0,0.699,0.0,0.048,-4.125,-0.809,0.0,-0.011,-0.982,0.0,0.0,-0.032,-0.982,5.426,0.0,0.0,-0.008,0.0,-0.379,-0.472,-1.604,-0.349,0.0,1.366,6.756,1.216 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.016,2.517,0.0,0.0,0.421,3.977,-2.775,0.0,0.0,-0.014,0.0,-0.389,1.285,0.0,0.701,0.0,0.0,-4.142,-0.813,0.0,-0.012,-0.979,0.0,0.0,-0.031,-0.967,5.427,0.0,0.0,-0.009,0.0,-0.38,-0.462,-1.595,-0.347,0.0,0.0,6.739,1.212 +base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,0.851,0.0,9.857,9.37,0.58,0.0,0.0,0.0,-0.016,2.515,0.0,0.0,0.42,3.963,-2.776,0.0,0.0,-0.013,0.0,-0.388,1.283,0.0,0.699,0.0,0.018,-4.125,-0.809,0.0,-0.011,-0.982,0.0,0.0,-0.032,-0.982,5.426,0.0,0.0,-0.008,0.0,-0.379,-0.472,-1.604,-0.349,0.0,1.366,6.756,1.216 +base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,0.851,0.0,9.857,9.37,0.58,0.0,0.0,0.0,-0.016,2.515,0.0,0.0,0.42,3.963,-2.776,0.0,0.0,-0.013,0.0,-0.388,1.283,0.0,0.699,0.0,0.018,-4.125,-0.809,0.0,-0.011,-0.982,0.0,0.0,-0.032,-0.982,5.426,0.0,0.0,-0.008,0.0,-0.379,-0.472,-1.604,-0.349,0.0,1.366,6.756,1.216 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.863,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,0.763,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.862,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.642,0.0,0.957,0.0,0.043,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.863,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.862,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,0.718,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.863,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.0,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,0.736,0.0,0.0,9.37,0.499,0.0,0.0,0.0,-0.003,3.427,0.0,0.0,0.484,4.862,-4.248,0.0,0.0,-0.003,0.0,-0.005,1.64,0.0,0.957,0.0,0.017,-5.448,-1.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,0.0,0.0,8.399,9.37,0.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-0.93,0.0,0.0,-0.036,-0.964,5.279,0.0,0.0,-0.006,0.0,-0.329,-0.455,-1.589,-0.335,0.0,0.0,6.659,1.189 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,0.0,0.0,9.735,9.37,0.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-0.932,0.0,0.0,-0.037,-0.978,5.279,0.0,0.0,-0.005,0.0,-0.327,-0.465,-1.598,-0.337,0.0,1.355,6.675,1.193 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,0.0,0.0,8.399,9.37,0.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-0.93,0.0,0.0,-0.036,-0.964,5.279,0.0,0.0,-0.006,0.0,-0.329,-0.455,-1.589,-0.335,0.0,0.0,6.659,1.189 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,0.0,0.0,9.735,9.37,0.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-0.932,0.0,0.0,-0.037,-0.978,5.279,0.0,0.0,-0.005,0.0,-0.327,-0.465,-1.598,-0.337,0.0,1.355,6.675,1.193 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,0.0,0.0,9.735,9.37,0.593,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.009,-0.932,0.0,0.0,-0.037,-0.978,5.279,0.0,0.0,-0.005,0.0,-0.327,-0.465,-1.598,-0.337,0.0,1.355,6.675,1.193 +base-bldgtype-mf-unit-shared-generator.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.017,2.516,0.0,0.0,0.421,3.975,-2.774,0.0,0.0,-0.014,0.0,-0.389,1.285,0.0,0.7,0.0,0.0,-4.14,-0.813,0.0,-0.012,-0.981,0.0,0.0,-0.031,-0.969,5.429,0.0,0.0,-0.009,0.0,-0.38,-0.462,-1.595,-0.348,0.0,0.0,6.741,1.212 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,0.831,0.0,8.51,9.37,0.581,0.0,0.0,0.0,-0.016,2.518,0.0,0.0,0.421,3.978,-2.778,0.0,0.0,-0.013,0.0,-0.388,1.286,0.0,0.702,0.0,0.0,-4.146,-0.814,0.0,-0.012,-0.978,0.0,0.0,-0.031,-0.966,5.424,0.0,0.0,-0.009,0.0,-0.379,-0.461,-1.595,-0.347,0.0,0.0,6.736,1.211 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,0.762,0.0,8.777,9.37,2.28,0.0,0.0,0.0,-0.018,2.472,0.0,0.0,0.423,3.953,-2.683,0.0,0.0,-0.014,0.0,-0.418,2.053,0.0,0.0,0.0,0.0,-4.286,-0.791,0.0,-0.013,-1.035,0.0,0.0,-0.031,-1.009,5.519,0.0,0.0,-0.01,0.0,-0.409,-0.842,-1.625,0.0,0.0,0.0,7.093,1.235 +base-bldgtype-mf-unit-shared-laundry-room.xml,0.96,0.0,8.112,9.37,0.573,0.0,0.0,0.0,-0.017,2.532,0.0,0.0,0.42,3.988,-2.868,0.0,0.0,-0.014,0.0,-0.389,2.074,0.0,0.0,0.0,0.0,-3.993,-0.837,0.0,-0.012,-0.932,0.0,0.0,-0.026,-0.906,5.334,0.0,0.0,-0.009,0.0,-0.38,-0.78,-1.56,0.0,0.0,0.0,6.276,1.189 +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,8.171,0.0,4.987,9.37,0.617,0.0,0.0,0.0,-0.018,2.764,0.0,0.0,0.405,4.178,-4.251,0.0,0.0,-0.023,0.0,-0.281,0.208,0.0,12.313,0.0,0.0,-5.847,-1.19,0.0,-0.015,-0.128,0.0,0.0,0.065,0.17,3.951,0.0,0.0,-0.019,0.0,-0.275,-0.015,-0.708,-3.999,0.0,0.0,4.95,0.835 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,1.391,0.0,7.197,9.37,0.589,0.0,0.0,0.0,-0.017,2.648,0.0,0.0,0.426,4.135,-3.177,0.0,0.0,-0.016,0.0,-0.347,1.421,0.0,1.916,0.0,0.0,-4.68,-0.944,0.0,-0.013,-0.708,0.0,0.0,-0.0,-0.588,5.025,0.0,0.0,-0.012,0.0,-0.339,-0.385,-1.325,-1.703,0.0,0.0,6.182,1.081 +base-bldgtype-mf-unit-shared-mechvent.xml,3.671,0.0,6.944,9.37,0.599,0.0,0.0,0.0,-0.014,2.678,0.0,0.0,0.393,4.005,-3.675,0.0,0.0,-0.016,0.0,-0.241,1.392,0.0,5.294,0.0,0.0,-5.066,-1.041,0.0,-0.011,-0.524,0.0,0.0,-0.004,-0.475,4.528,0.0,0.0,-0.012,0.0,-0.235,-0.31,-1.324,-1.449,0.0,0.0,5.774,0.985 +base-bldgtype-mf-unit-shared-pv-battery.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.017,2.516,0.0,0.0,0.421,3.975,-2.774,0.0,0.0,-0.014,0.0,-0.389,1.285,0.0,0.7,0.0,0.0,-4.14,-0.813,0.0,-0.012,-0.981,0.0,0.0,-0.031,-0.969,5.429,0.0,0.0,-0.009,0.0,-0.38,-0.462,-1.595,-0.348,0.0,0.0,6.741,1.212 +base-bldgtype-mf-unit-shared-pv.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.017,2.516,0.0,0.0,0.421,3.975,-2.774,0.0,0.0,-0.014,0.0,-0.389,1.285,0.0,0.7,0.0,0.0,-4.14,-0.813,0.0,-0.012,-0.981,0.0,0.0,-0.031,-0.969,5.429,0.0,0.0,-0.009,0.0,-0.38,-0.462,-1.595,-0.348,0.0,0.0,6.741,1.212 +base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,2.57,0.0,5.379,9.44,0.282,0.0,0.0,0.0,-0.015,2.661,0.0,0.0,0.374,3.88,-3.845,0.0,0.0,-0.016,0.0,-0.229,1.255,0.0,0.763,0.0,0.0,-1.529,-1.027,0.0,-0.012,-0.484,0.0,0.0,-0.012,-0.521,4.357,0.0,0.0,-0.013,0.0,-0.223,-0.311,-1.2,-0.195,0.0,0.0,3.187,0.998 +base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml,1.642,0.0,6.509,2.731,0.581,0.0,0.0,0.0,-0.017,2.632,0.0,0.0,0.416,4.091,-3.284,0.0,0.0,-0.017,0.0,-0.32,1.631,0.0,0.759,0.0,0.0,-3.311,-0.975,0.0,-0.013,-0.69,0.0,0.0,-0.004,-0.584,4.919,0.0,0.0,-0.013,0.0,-0.313,-0.46,-1.388,-0.241,0.0,0.0,4.294,1.05 +base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,1.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,-0.016,2.547,0.0,0.0,0.419,3.996,-2.907,0.0,0.0,-0.013,0.0,-0.377,1.61,0.0,0.715,0.0,0.0,-4.18,-0.845,0.0,-0.012,-0.915,0.0,0.0,-0.026,-0.894,5.295,0.0,0.0,-0.009,0.0,-0.369,-0.566,-1.562,-0.323,0.0,0.0,6.487,1.18 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,1.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,-0.016,2.547,0.0,0.0,0.419,3.996,-2.907,0.0,0.0,-0.013,0.0,-0.377,1.61,0.0,0.715,0.0,0.0,-4.18,-0.845,0.0,-0.012,-0.915,0.0,0.0,-0.026,-0.894,5.295,0.0,0.0,-0.009,0.0,-0.369,-0.566,-1.562,-0.323,0.0,0.0,6.487,1.18 +base-bldgtype-mf-unit-shared-water-heater.xml,1.014,0.0,8.208,9.37,0.573,0.0,0.0,0.0,-0.016,2.547,0.0,0.0,0.419,3.996,-2.907,0.0,0.0,-0.013,0.0,-0.377,1.61,0.0,0.715,0.0,0.0,-4.18,-0.845,0.0,-0.012,-0.915,0.0,0.0,-0.026,-0.894,5.295,0.0,0.0,-0.009,0.0,-0.369,-0.566,-1.562,-0.323,0.0,0.0,6.487,1.18 +base-bldgtype-mf-unit.xml,0.831,0.0,8.511,9.37,0.581,0.0,0.0,0.0,-0.017,2.516,0.0,0.0,0.421,3.975,-2.774,0.0,0.0,-0.014,0.0,-0.389,1.285,0.0,0.7,0.0,0.0,-4.14,-0.813,0.0,-0.012,-0.981,0.0,0.0,-0.031,-0.969,5.429,0.0,0.0,-0.009,0.0,-0.38,-0.462,-1.595,-0.348,0.0,0.0,6.741,1.212 +base-bldgtype-mf-whole-building.xml,34.234,0.0,50.758,55.316,3.606,0.0,0.0,0.0,7.768,18.937,0.0,0.0,2.279,27.645,-27.459,0.0,0.0,7.747,0.0,-1.267,56.52,0.0,0.0,0.0,0.0,-50.237,-7.691,0.0,-1.08,-3.267,0.0,0.0,-0.061,-3.866,29.904,0.0,0.0,-3.845,0.0,-1.242,-13.477,-10.141,0.0,0.0,0.0,51.001,6.95 +base-bldgtype-sfa-unit-2stories.xml,16.605,0.0,9.991,9.106,0.615,0.0,0.0,0.0,2.415,5.063,0.297,4.365,0.638,7.116,-8.592,0.0,0.0,0.0,5.004,-0.07,7.16,0.0,0.729,0.0,2.528,-7.795,-2.489,0.0,0.001,-0.627,-0.025,1.637,-0.014,-1.0,7.905,0.0,0.0,0.0,-3.945,-0.066,-1.645,-3.207,-0.159,0.0,1.436,7.786,2.018 +base-bldgtype-sfa-unit-atticroof-cathedral.xml,57.361,0.0,15.98,9.106,0.623,0.0,0.0,49.493,0.0,2.937,0.289,3.687,0.667,4.711,-5.326,0.0,0.0,0.0,3.418,-0.85,7.541,0.0,0.772,0.0,0.0,-8.484,-2.669,8.562,0.0,-0.155,0.004,1.537,0.121,0.039,5.084,0.0,0.0,0.0,-4.273,-0.813,-0.842,-1.316,-0.093,0.0,0.0,7.077,1.838 +base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,12.953,0.0,7.827,9.221,0.615,0.0,0.0,0.0,2.321,2.366,0.292,4.233,0.624,3.566,-4.314,0.0,0.0,0.0,4.672,-0.047,3.18,0.0,0.726,0.0,3.591,-6.595,-1.805,0.0,0.017,-0.275,-0.026,1.588,-0.017,-0.583,3.96,0.0,0.0,0.0,-4.037,-0.045,-0.748,-1.558,-0.163,0.0,1.727,6.598,1.461 +base-bldgtype-sfa-unit.xml,12.953,0.0,7.827,9.221,0.615,0.0,0.0,0.0,2.321,2.366,0.292,4.233,0.624,3.566,-4.314,0.0,0.0,0.0,4.672,-0.047,3.18,0.0,0.726,0.0,3.591,-6.595,-1.805,0.0,0.017,-0.275,-0.026,1.588,-0.017,-0.583,3.96,0.0,0.0,0.0,-4.037,-0.045,-0.748,-1.558,-0.163,0.0,1.727,6.598,1.461 +base-dhw-combi-tankless-outside.xml,17.356,0.0,0.0,9.173,0.0,0.0,0.0,0.0,3.738,3.637,0.512,7.48,0.63,10.095,-12.691,0.0,0.0,0.0,8.132,-0.074,4.808,0.0,0.728,0.0,0.0,-7.471,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,18.411,0.0,0.0,9.173,0.0,0.0,0.0,0.0,3.736,3.635,0.512,7.475,0.63,10.086,-12.693,0.0,0.0,0.0,8.135,-0.071,5.887,0.0,0.727,0.0,0.0,-7.472,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,0.0,0.0,14.826,9.07,0.666,2.842,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.096,-0.443,-0.048,2.737,-0.025,-1.365,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.135,-3.695,-0.162,0.0,3.76,8.507,2.042 +base-dhw-desuperheater-gshp.xml,21.743,0.0,13.634,9.069,0.614,2.868,0.0,0.0,3.554,3.636,0.512,7.502,0.629,10.081,-12.691,0.0,0.0,0.0,8.284,-0.065,4.944,0.0,0.727,0.0,4.278,-7.483,-2.489,0.0,-0.006,-0.44,-0.048,2.752,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.238,-0.062,-1.126,-3.815,-0.161,0.0,2.178,8.389,2.018 +base-dhw-desuperheater-hpwh.xml,26.287,0.0,14.371,9.081,1.812,2.945,0.0,0.0,3.499,3.631,0.511,7.486,0.626,10.057,-12.745,0.0,0.0,0.0,8.314,-0.056,5.011,0.0,0.726,0.0,5.714,-4.329,-2.497,0.0,-0.013,-0.395,-0.042,2.895,-0.01,-1.196,11.668,0.0,0.0,0.0,-6.005,-0.053,-1.071,-3.58,-0.152,0.0,3.133,7.486,2.01 +base-dhw-desuperheater-tankless.xml,0.0,0.0,14.239,9.076,0.0,2.871,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.072,-0.437,-0.047,2.753,-0.023,-1.347,11.85,0.0,0.0,0.0,-6.846,-0.067,-1.132,-3.656,-0.161,0.0,3.328,8.236,2.042 +base-dhw-desuperheater-var-speed.xml,0.0,0.0,15.801,9.069,0.666,2.895,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.143,-0.443,-0.048,2.737,-0.025,-1.364,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.139,-3.703,-0.162,0.0,4.782,8.522,2.042 +base-dhw-desuperheater.xml,0.0,0.0,14.459,9.069,0.666,2.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.079,-0.443,-0.048,2.736,-0.025,-1.366,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.139,-3.698,-0.162,0.0,3.368,8.529,2.042 +base-dhw-dwhr.xml,22.103,0.0,13.916,6.631,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 +base-dhw-indirect-detailed-setpoints.xml,17.154,0.0,0.0,9.095,2.376,0.0,0.0,0.0,3.74,3.64,0.512,7.489,0.63,10.094,-12.689,0.0,0.0,0.0,8.132,-0.069,5.893,0.0,0.728,0.0,0.0,-8.792,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-dse.xml,17.197,0.0,0.0,9.098,2.279,0.0,0.0,0.0,3.74,3.639,0.512,7.488,0.63,10.097,-12.683,0.0,0.0,0.0,8.132,-0.072,5.893,0.0,0.728,0.0,0.0,-8.752,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-outside.xml,17.356,0.0,0.0,9.101,3.299,0.0,0.0,0.0,3.738,3.637,0.512,7.48,0.63,10.095,-12.691,0.0,0.0,0.0,8.132,-0.074,4.808,0.0,0.728,0.0,0.0,-7.471,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-standbyloss.xml,16.973,0.0,0.0,9.1,2.704,0.0,0.0,0.0,3.739,3.639,0.512,7.49,0.63,10.097,-12.676,0.0,0.0,0.0,8.128,-0.072,5.894,0.0,0.728,0.0,0.0,-8.988,-2.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,17.989,0.0,0.0,9.076,0.787,0.0,5.9,0.0,3.737,3.636,0.512,7.479,0.63,10.092,-12.691,0.0,0.0,0.0,8.134,-0.073,5.89,0.0,0.727,0.0,0.0,-7.917,-2.49,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,17.197,0.0,0.0,9.098,2.279,0.0,0.0,0.0,3.74,3.639,0.512,7.488,0.63,10.097,-12.683,0.0,0.0,0.0,8.132,-0.072,5.893,0.0,0.728,0.0,0.0,-8.752,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,22.307,0.0,13.809,9.071,0.296,0.0,0.0,0.0,3.529,3.637,0.512,7.504,0.629,10.084,-12.691,0.0,0.0,0.0,8.289,-0.066,4.982,0.0,0.728,0.0,4.957,-7.626,-2.489,0.0,-0.047,-0.438,-0.048,2.756,-0.019,-1.322,11.723,0.0,0.0,0.0,-6.23,-0.062,-1.118,-3.761,-0.161,0.0,3.06,7.636,2.018 +base-dhw-jacket-gas.xml,22.656,0.0,14.215,9.071,2.729,0.0,0.0,0.0,3.526,3.638,0.512,7.507,0.63,10.086,-12.69,0.0,0.0,0.0,8.294,-0.066,6.048,0.0,0.727,0.0,5.034,-8.434,-2.488,0.0,-0.054,-0.442,-0.049,2.749,-0.02,-1.331,11.724,0.0,0.0,0.0,-6.24,-0.062,-1.395,-3.79,-0.162,0.0,3.139,8.313,2.019 +base-dhw-jacket-hpwh.xml,26.318,0.0,12.096,9.122,1.311,0.0,0.0,0.0,3.497,3.631,0.511,7.486,0.626,10.051,-12.749,0.0,0.0,0.0,8.317,-0.051,5.01,0.0,0.726,0.0,5.714,-4.295,-2.497,0.0,0.016,-0.387,-0.041,2.918,-0.008,-1.179,11.664,0.0,0.0,0.0,-5.969,-0.047,-1.065,-3.402,-0.15,0.0,2.743,5.313,2.01 +base-dhw-jacket-indirect.xml,17.387,0.0,0.0,9.097,1.921,0.0,0.0,0.0,3.74,3.639,0.512,7.487,0.63,10.092,-12.69,0.0,0.0,0.0,8.133,-0.069,5.892,0.0,0.728,0.0,0.0,-8.551,-2.488,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,22.103,0.0,13.916,8.834,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 +base-dhw-multiple.xml,17.564,0.0,0.0,9.062,2.83,0.0,5.89,0.0,3.737,3.637,0.512,7.485,0.63,10.096,-12.685,0.0,0.0,0.0,8.137,-0.073,5.892,0.0,0.728,0.0,0.0,-8.376,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,22.447,0.0,13.552,0.0,0.0,0.0,0.0,0.0,3.526,3.635,0.512,7.498,0.629,10.081,-12.696,0.0,0.0,0.0,8.284,-0.066,5.493,0.0,0.0,0.0,4.986,-7.268,-2.489,0.0,-0.039,-0.433,-0.047,2.771,-0.018,-1.304,11.717,0.0,0.0,0.0,-6.204,-0.062,-1.252,-3.726,0.0,0.0,3.009,7.299,2.018 +base-dhw-recirc-demand-scheduled.xml,22.103,0.0,13.916,9.013,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 +base-dhw-recirc-demand.xml,22.103,0.0,13.916,9.013,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 +base-dhw-recirc-manual.xml,22.103,0.0,13.916,9.013,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 +base-dhw-recirc-nocontrol.xml,22.103,0.0,13.916,9.105,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 +base-dhw-recirc-temperature.xml,22.103,0.0,13.916,9.105,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 +base-dhw-recirc-timer.xml,22.103,0.0,13.916,9.105,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 +base-dhw-solar-direct-evacuated-tube.xml,22.103,0.0,13.93,9.094,0.628,0.0,6.634,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.783,-0.162,0.0,3.081,7.796,2.018 +base-dhw-solar-direct-flat-plate.xml,22.094,0.0,13.98,9.208,0.696,0.0,8.354,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.982,0.0,0.728,0.0,4.914,-7.808,-2.489,0.0,-0.051,-0.441,-0.049,2.746,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.122,-3.79,-0.162,0.0,3.09,7.855,2.018 +base-dhw-solar-direct-ics.xml,22.103,0.0,13.953,9.131,0.65,0.0,6.625,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.121,-3.784,-0.162,0.0,3.085,7.817,2.018 +base-dhw-solar-fraction.xml,22.359,0.0,13.782,9.071,0.215,0.0,5.896,0.0,3.528,3.637,0.512,7.504,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.066,4.982,0.0,0.727,0.0,4.967,-7.582,-2.489,0.0,-0.046,-0.438,-0.048,2.758,-0.019,-1.32,11.723,0.0,0.0,0.0,-6.228,-0.062,-1.118,-3.756,-0.161,0.0,3.056,7.599,2.018 +base-dhw-solar-indirect-flat-plate.xml,21.755,0.0,14.408,9.186,0.684,0.0,8.35,0.0,3.536,3.64,0.512,7.512,0.63,10.09,-12.69,0.0,0.0,0.0,8.295,-0.066,4.981,0.0,0.728,0.0,4.847,-8.112,-2.488,0.0,-0.06,-0.447,-0.049,2.727,-0.022,-1.353,11.724,0.0,0.0,0.0,-6.272,-0.062,-1.13,-3.852,-0.163,0.0,3.165,8.373,2.019 +base-dhw-solar-thermosyphon-flat-plate.xml,22.095,0.0,13.977,9.2,0.691,0.0,8.316,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.982,0.0,0.728,0.0,4.915,-7.807,-2.489,0.0,-0.051,-0.441,-0.049,2.746,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.121,-3.789,-0.162,0.0,3.089,7.851,2.018 +base-dhw-tank-coal.xml,22.281,0.0,14.415,9.071,3.628,0.0,0.0,0.0,3.529,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.292,-0.066,6.046,0.0,0.727,0.0,4.959,-8.75,-2.488,0.0,-0.06,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.402,-3.827,-0.163,0.0,3.173,8.587,2.02 +base-dhw-tank-detailed-setpoints.xml,22.097,0.0,13.919,9.045,0.624,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.915,-7.803,-2.489,0.0,-0.05,-0.441,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.121,-3.783,-0.162,0.0,3.079,7.788,2.018 +base-dhw-tank-elec-uef.xml,22.054,0.0,13.942,9.071,0.692,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.088,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.906,-7.842,-2.489,0.0,-0.05,-0.441,-0.049,2.746,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.121,-3.787,-0.162,0.0,3.083,7.817,2.018 +base-dhw-tank-gas-outside.xml,22.496,0.0,13.71,9.071,5.067,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 +base-dhw-tank-gas-uef-fhr.xml,22.542,0.0,14.275,9.071,2.982,0.0,0.0,0.0,3.527,3.638,0.512,7.508,0.63,10.088,-12.69,0.0,0.0,0.0,8.295,-0.066,6.048,0.0,0.727,0.0,5.012,-8.532,-2.488,0.0,-0.056,-0.443,-0.049,2.744,-0.02,-1.334,11.724,0.0,0.0,0.0,-6.245,-0.062,-1.396,-3.801,-0.162,0.0,3.149,8.394,2.019 +base-dhw-tank-gas-uef.xml,22.542,0.0,14.275,9.071,2.982,0.0,0.0,0.0,3.527,3.638,0.512,7.508,0.63,10.088,-12.69,0.0,0.0,0.0,8.295,-0.066,6.048,0.0,0.727,0.0,5.012,-8.532,-2.488,0.0,-0.056,-0.443,-0.049,2.744,-0.02,-1.334,11.724,0.0,0.0,0.0,-6.245,-0.062,-1.396,-3.801,-0.162,0.0,3.149,8.394,2.019 +base-dhw-tank-gas.xml,22.281,0.0,14.415,9.071,3.628,0.0,0.0,0.0,3.529,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.292,-0.066,6.046,0.0,0.727,0.0,4.959,-8.75,-2.488,0.0,-0.06,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.402,-3.827,-0.163,0.0,3.173,8.587,2.02 +base-dhw-tank-heat-pump-detailed-schedules.xml,27.056,0.0,11.821,9.212,1.419,0.0,0.0,0.0,3.482,3.629,0.511,7.489,0.627,10.065,-12.729,0.0,0.0,0.0,8.322,-0.059,5.017,0.0,0.726,0.0,5.863,-3.728,-2.497,0.0,0.028,-0.372,-0.039,2.958,-0.003,-1.112,11.684,0.0,0.0,0.0,-5.895,-0.056,-1.04,-3.264,-0.15,0.0,2.666,4.931,2.01 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,27.094,0.0,11.728,9.127,1.31,0.0,0.0,0.0,3.495,3.633,0.511,7.494,0.627,10.057,-12.76,0.0,0.0,0.0,8.336,-0.043,5.019,0.0,0.726,0.0,5.863,-3.696,-2.5,0.0,0.034,-0.372,-0.039,2.963,-0.004,-1.133,11.654,0.0,0.0,0.0,-5.898,-0.04,-1.048,-3.335,-0.148,0.0,2.665,4.931,2.008 +base-dhw-tank-heat-pump-outside.xml,22.496,0.0,13.71,9.093,2.525,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 +base-dhw-tank-heat-pump-uef.xml,27.094,0.0,11.728,9.127,1.31,0.0,0.0,0.0,3.495,3.633,0.511,7.494,0.627,10.057,-12.76,0.0,0.0,0.0,8.336,-0.043,5.019,0.0,0.726,0.0,5.863,-3.696,-2.5,0.0,0.034,-0.372,-0.039,2.963,-0.004,-1.133,11.654,0.0,0.0,0.0,-5.898,-0.04,-1.048,-3.335,-0.148,0.0,2.665,4.931,2.008 +base-dhw-tank-heat-pump-with-solar-fraction.xml,23.79,0.0,13.144,9.103,0.603,0.0,5.917,0.0,3.518,3.634,0.511,7.496,0.628,10.069,-12.712,0.0,0.0,0.0,8.296,-0.06,4.991,0.0,0.727,0.0,5.241,-6.394,-2.491,0.0,-0.023,-0.42,-0.046,2.811,-0.015,-1.271,11.701,0.0,0.0,0.0,-6.136,-0.056,-1.099,-3.623,-0.158,0.0,2.935,6.764,2.017 +base-dhw-tank-heat-pump-with-solar.xml,22.725,0.0,14.557,9.016,1.969,0.0,8.052,0.0,3.531,3.641,0.512,7.516,0.629,10.08,-12.705,0.0,0.0,0.0,8.31,-0.058,4.989,0.0,0.728,0.0,5.034,-7.328,-2.489,0.0,-0.055,-0.441,-0.049,2.746,-0.021,-1.346,11.708,0.0,0.0,0.0,-6.232,-0.054,-1.125,-3.834,-0.162,0.0,3.186,8.459,2.018 +base-dhw-tank-heat-pump.xml,26.224,0.0,12.074,9.115,1.721,0.0,0.0,0.0,3.499,3.631,0.511,7.488,0.626,10.053,-12.751,0.0,0.0,0.0,8.324,-0.053,5.01,0.0,0.726,0.0,5.701,-4.389,-2.498,0.0,0.015,-0.389,-0.041,2.911,-0.009,-1.183,11.662,0.0,0.0,0.0,-5.972,-0.049,-1.066,-3.436,-0.15,0.0,2.723,5.384,2.009 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,21.846,0.0,13.96,9.117,0.021,0.0,0.0,0.0,3.539,3.643,0.513,7.526,0.631,10.099,-12.683,0.0,0.0,0.0,8.318,-0.062,5.372,0.0,0.776,0.0,4.855,-8.507,-2.504,0.0,-0.051,-0.44,-0.049,2.75,-0.02,-1.329,11.73,0.0,0.0,0.0,-6.238,-0.058,-1.229,-3.779,-0.183,0.0,3.077,7.993,2.005 +base-dhw-tank-model-type-stratified.xml,22.484,0.0,13.718,9.121,0.021,0.0,0.0,0.0,3.527,3.636,0.512,7.503,0.629,10.081,-12.691,0.0,0.0,0.0,8.288,-0.065,4.982,0.0,0.727,0.0,4.992,-7.476,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.317,11.723,0.0,0.0,0.0,-6.222,-0.061,-1.116,-3.742,-0.161,0.0,3.045,7.511,2.018 +base-dhw-tank-oil.xml,22.281,0.0,14.415,9.071,3.628,0.0,0.0,0.0,3.529,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.292,-0.066,6.046,0.0,0.727,0.0,4.959,-8.75,-2.488,0.0,-0.06,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.402,-3.827,-0.163,0.0,3.173,8.587,2.02 +base-dhw-tank-wood.xml,22.281,0.0,14.415,9.071,3.628,0.0,0.0,0.0,3.529,3.638,0.512,7.509,0.63,10.088,-12.683,0.0,0.0,0.0,8.292,-0.066,6.046,0.0,0.727,0.0,4.959,-8.75,-2.488,0.0,-0.06,-0.446,-0.049,2.734,-0.021,-1.346,11.73,0.0,0.0,0.0,-6.262,-0.062,-1.402,-3.827,-0.163,0.0,3.173,8.587,2.02 +base-dhw-tankless-detailed-setpoints.xml,22.496,0.0,13.71,9.052,0.0,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 +base-dhw-tankless-electric-outside.xml,22.496,0.0,13.71,9.071,0.0,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 +base-dhw-tankless-electric-uef.xml,22.496,0.0,13.71,9.071,0.0,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 +base-dhw-tankless-electric.xml,22.496,0.0,13.71,9.071,0.0,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 +base-dhw-tankless-gas-uef.xml,22.496,0.0,13.71,9.071,0.0,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 +base-dhw-tankless-gas-with-solar-fraction.xml,22.496,0.0,13.71,9.071,0.0,0.0,5.896,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 +base-dhw-tankless-gas-with-solar.xml,22.147,0.0,14.147,9.262,0.0,0.0,8.001,0.0,3.531,3.638,0.512,7.508,0.63,10.086,-12.69,0.0,0.0,0.0,8.292,-0.066,4.982,0.0,0.728,0.0,4.926,-7.776,-2.488,0.0,-0.054,-0.443,-0.049,2.742,-0.021,-1.338,11.724,0.0,0.0,0.0,-6.251,-0.062,-1.124,-3.809,-0.162,0.0,3.121,8.038,2.019 +base-dhw-tankless-gas.xml,22.496,0.0,13.71,9.071,0.0,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 +base-dhw-tankless-propane.xml,22.496,0.0,13.71,9.071,0.0,0.0,0.0,0.0,3.527,3.636,0.512,7.502,0.629,10.083,-12.691,0.0,0.0,0.0,8.289,-0.067,4.983,0.0,0.727,0.0,4.995,-7.466,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.314,11.723,0.0,0.0,0.0,-6.22,-0.063,-1.116,-3.741,-0.161,0.0,3.044,7.5,2.018 +base-enclosure-2stories-garage.xml,24.463,0.0,21.903,9.049,0.611,0.0,0.0,0.0,3.839,7.588,1.092,5.856,0.687,20.448,-24.934,0.0,0.0,0.865,6.679,-0.176,9.084,0.0,0.761,0.0,3.63,-8.584,-2.924,0.0,-0.098,-0.998,-0.099,1.89,-0.019,-1.437,23.4,0.0,0.0,-0.133,-4.728,-0.167,-1.859,-7.2,-0.157,0.0,3.079,8.467,2.342 +base-enclosure-2stories.xml,29.033,0.0,21.43,8.985,0.613,0.0,0.0,0.0,3.747,7.87,1.07,7.891,0.667,20.489,-25.207,0.0,0.0,0.0,9.005,-0.142,11.263,0.0,0.746,0.0,4.254,-9.649,-3.529,0.0,-0.069,-0.987,-0.093,2.721,-0.015,-1.934,23.358,0.0,0.0,0.0,-6.358,-0.132,-2.384,-7.516,-0.158,0.0,3.001,9.52,2.84 +base-enclosure-beds-1.xml,23.531,0.0,13.026,5.264,0.616,0.0,0.0,0.0,3.513,3.629,0.511,7.48,0.628,10.065,-12.698,0.0,0.0,0.0,8.266,-0.064,4.989,0.0,0.725,0.0,5.207,-6.548,-2.49,0.0,-0.02,-0.418,-0.045,2.818,-0.013,-1.254,11.715,0.0,0.0,0.0,-6.131,-0.06,-1.098,-3.61,-0.158,0.0,2.922,6.535,2.017 +base-enclosure-beds-2.xml,22.814,0.0,13.469,7.209,0.615,0.0,0.0,0.0,3.522,3.633,0.511,7.492,0.629,10.08,-12.696,0.0,0.0,0.0,8.28,-0.068,4.986,0.0,0.727,0.0,5.062,-7.177,-2.49,0.0,-0.035,-0.429,-0.047,2.782,-0.016,-1.287,11.717,0.0,0.0,0.0,-6.183,-0.064,-1.108,-3.695,-0.16,0.0,3.001,7.155,2.017 +base-enclosure-beds-4.xml,21.399,0.0,14.37,10.893,0.614,0.0,0.0,0.0,3.541,3.643,0.513,7.52,0.63,10.096,-12.689,0.0,0.0,0.0,8.306,-0.066,4.978,0.0,0.729,0.0,4.772,-8.422,-2.487,0.0,-0.064,-0.451,-0.05,2.715,-0.023,-1.366,11.724,0.0,0.0,0.0,-6.292,-0.062,-1.133,-3.866,-0.163,0.0,3.158,8.409,2.02 +base-enclosure-beds-5.xml,20.7,0.0,14.831,12.689,0.614,0.0,0.0,0.0,3.55,3.647,0.513,7.535,0.632,10.113,-12.683,0.0,0.0,0.0,8.322,-0.069,4.976,0.0,0.73,0.0,4.629,-9.048,-2.487,0.0,-0.079,-0.462,-0.052,2.682,-0.025,-1.397,11.73,0.0,0.0,0.0,-6.342,-0.065,-1.143,-3.948,-0.165,0.0,3.237,9.032,2.02 +base-enclosure-ceilingtypes.xml,36.897,0.0,14.938,9.071,0.619,0.0,0.0,0.0,17.238,3.595,0.505,7.239,0.622,9.985,-12.816,0.0,0.0,0.0,7.722,-0.092,5.18,0.0,0.734,0.0,7.102,-7.963,-2.534,0.0,0.156,-0.304,-0.029,2.934,0.015,-0.903,11.597,0.0,0.0,0.0,-6.045,-0.082,-0.964,-3.523,-0.137,0.0,2.845,7.61,1.973 +base-enclosure-floortypes.xml,36.793,0.0,10.912,9.178,0.621,0.0,0.0,0.0,3.452,3.645,0.0,0.0,0.673,9.524,-13.017,0.0,0.0,29.112,0.0,-0.232,2.58,0.0,0.786,0.0,7.894,-6.525,-1.567,0.0,0.409,-0.064,0.0,0.0,0.1,0.968,10.952,0.0,0.0,-7.868,0.0,-0.227,-0.225,-1.994,-0.084,0.0,2.625,5.458,1.079 +base-enclosure-garage.xml,24.303,0.0,9.146,9.071,0.725,0.0,0.0,0.0,3.527,3.788,0.502,5.84,0.613,8.188,-6.671,0.0,0.0,0.0,6.563,-0.046,5.454,0.0,0.0,0.0,4.607,-5.766,-2.495,0.0,0.113,-0.27,-0.033,2.467,0.004,-1.083,8.261,0.0,0.0,0.0,-5.594,-0.043,-1.19,-2.578,0.0,0.0,1.591,5.629,2.012 +base-enclosure-infil-ach-house-pressure.xml,22.103,0.0,13.916,9.071,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 +base-enclosure-infil-cfm-house-pressure.xml,22.103,0.0,13.916,9.071,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 +base-enclosure-infil-cfm50.xml,22.103,0.0,13.916,9.071,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.05,-0.44,-0.049,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.121,-3.782,-0.162,0.0,3.079,7.782,2.018 +base-enclosure-infil-ela.xml,29.161,0.0,13.503,9.071,0.617,0.0,0.0,0.0,3.482,3.641,0.512,7.491,0.632,10.108,-12.721,0.0,0.0,0.0,8.299,-0.07,10.723,0.0,0.726,0.0,6.364,-7.837,-2.497,0.0,-0.003,-0.393,-0.042,2.87,-0.007,-1.168,11.693,0.0,0.0,0.0,-6.048,-0.066,-2.335,-3.493,-0.153,0.0,3.046,7.74,2.01 +base-enclosure-infil-flue.xml,23.404,0.0,13.825,9.071,0.615,0.0,0.0,0.0,3.518,3.635,0.512,7.501,0.629,10.084,-12.691,0.0,0.0,0.0,8.293,-0.068,6.051,0.0,0.727,0.0,5.183,-7.804,-2.489,0.0,-0.044,-0.434,-0.048,2.775,-0.018,-1.3,11.723,0.0,0.0,0.0,-6.199,-0.064,-1.381,-3.716,-0.16,0.0,3.072,7.777,2.018 +base-enclosure-infil-natural-ach.xml,28.811,0.0,13.522,9.071,0.617,0.0,0.0,0.0,3.482,3.639,0.512,7.49,0.631,10.103,-12.71,0.0,0.0,0.0,8.3,-0.07,10.434,0.0,0.726,0.0,6.292,-7.831,-2.496,0.0,-0.007,-0.397,-0.042,2.863,-0.008,-1.18,11.703,0.0,0.0,0.0,-6.056,-0.066,-2.283,-3.506,-0.154,0.0,3.047,7.746,2.012 +base-enclosure-infil-natural-cfm.xml,28.811,0.0,13.522,9.071,0.617,0.0,0.0,0.0,3.482,3.639,0.512,7.49,0.631,10.103,-12.71,0.0,0.0,0.0,8.3,-0.07,10.434,0.0,0.726,0.0,6.292,-7.831,-2.496,0.0,-0.007,-0.397,-0.042,2.863,-0.008,-1.18,11.703,0.0,0.0,0.0,-6.056,-0.066,-2.283,-3.506,-0.154,0.0,3.047,7.746,2.012 +base-enclosure-orientations.xml,22.338,0.0,13.824,9.071,0.615,0.0,0.0,0.0,3.526,3.634,0.511,7.498,0.863,10.076,-12.691,0.0,0.0,0.0,8.279,-0.066,4.981,0.0,0.727,0.0,4.961,-7.799,-2.489,0.0,-0.046,-0.438,-0.048,2.755,-0.149,-1.32,11.723,0.0,0.0,0.0,-6.227,-0.062,-1.119,-3.764,-0.161,0.0,3.058,7.782,2.018 +base-enclosure-overhangs.xml,22.386,0.0,13.359,9.071,0.615,0.0,0.0,0.0,3.524,3.633,0.511,7.486,0.629,9.998,-12.285,0.0,0.0,0.0,8.258,-0.069,4.983,0.0,0.727,0.0,4.966,-7.809,-2.49,0.0,-0.029,-0.427,-0.046,2.779,-0.016,-1.333,11.091,0.0,0.0,0.0,-6.176,-0.065,-1.112,-3.719,-0.16,0.0,2.963,7.772,2.017 +base-enclosure-rooftypes.xml,22.185,0.0,13.441,9.071,0.615,0.0,0.0,0.0,3.641,3.635,0.512,7.5,0.629,10.079,-12.691,0.0,0.0,0.0,8.281,-0.064,4.98,0.0,0.727,0.0,4.918,-7.799,-2.489,0.0,-0.301,-0.436,-0.048,2.761,-0.019,-1.315,11.723,0.0,0.0,0.0,-6.221,-0.061,-1.12,-3.759,-0.161,0.0,2.788,7.782,2.018 +base-enclosure-skylights-physical-properties.xml,23.407,0.0,17.39,9.071,0.614,0.0,0.0,0.0,3.524,3.651,0.514,7.559,0.633,10.115,-12.626,2.713,-2.174,0.0,8.437,-0.07,5.004,0.0,0.73,0.0,5.211,-7.78,-2.485,0.0,-0.145,-0.495,-0.056,2.637,-0.033,-1.464,11.705,-0.052,3.749,0.0,-6.527,-0.065,-1.133,-3.968,-0.167,0.0,3.832,7.805,2.023 +base-enclosure-skylights-shading.xml,23.128,0.0,13.994,9.071,0.615,0.0,0.0,0.0,3.512,3.633,0.511,7.501,0.629,10.073,-12.685,1.146,-0.321,0.0,8.293,-0.065,4.991,0.0,0.728,0.0,5.124,-7.8,-2.489,0.0,-0.049,-0.435,-0.048,2.767,-0.018,-1.311,11.717,-0.492,0.431,0.0,-6.219,-0.061,-1.113,-3.735,-0.161,0.0,3.106,7.781,2.018 +base-enclosure-skylights-storms.xml,21.855,0.0,16.371,9.071,0.614,0.0,0.0,0.0,3.54,3.654,0.514,7.556,0.633,10.123,-12.643,0.856,-1.409,0.0,8.403,-0.068,4.988,0.0,0.729,0.0,4.88,-7.781,-2.485,0.0,-0.126,-0.488,-0.055,2.642,-0.032,-1.457,11.715,0.261,2.537,0.0,-6.485,-0.064,-1.142,-3.986,-0.167,0.0,3.594,7.804,2.022 +base-enclosure-skylights.xml,21.524,0.0,16.722,9.071,0.613,0.0,0.0,0.0,3.548,3.66,0.515,7.569,0.634,10.135,-12.639,0.764,-1.653,0.0,8.432,-0.068,4.988,0.0,0.73,0.0,4.814,-7.78,-2.485,0.0,-0.137,-0.496,-0.056,2.622,-0.034,-1.479,11.709,0.263,2.973,0.0,-6.529,-0.064,-1.147,-4.028,-0.167,0.0,3.661,7.805,2.022 +base-enclosure-split-level.xml,11.142,0.0,12.038,9.291,0.608,0.0,0.0,0.0,3.947,3.838,0.0,0.0,0.688,10.048,-12.17,0.0,0.0,0.0,7.976,-0.144,2.769,0.0,0.773,0.0,0.333,-5.953,-1.448,0.0,-0.056,-0.569,0.0,0.0,-0.016,-0.629,12.086,0.0,0.0,0.0,-1.538,-0.141,-0.555,-3.487,-0.164,0.0,0.116,6.061,1.198 +base-enclosure-thermal-mass.xml,21.966,0.0,13.77,9.071,0.615,0.0,0.0,0.0,3.53,3.635,0.512,7.484,0.629,10.105,-12.697,0.0,0.0,0.0,8.257,-0.104,4.974,0.0,0.726,0.0,4.873,-7.799,-2.489,0.0,-0.044,-0.437,-0.048,2.762,-0.019,-1.345,11.731,0.0,0.0,0.0,-6.227,-0.1,-1.126,-3.852,-0.162,0.0,3.019,7.782,2.019 +base-enclosure-walltypes.xml,39.202,0.0,9.241,9.071,0.622,0.0,0.0,0.0,3.327,16.957,0.473,7.138,0.836,1.295,-1.58,0.0,0.0,0.0,7.332,-0.052,5.152,0.0,0.731,0.0,7.872,-8.03,-2.552,0.0,0.284,-0.594,-0.008,3.408,-0.083,-0.07,1.661,0.0,0.0,0.0,-4.955,-0.046,-0.95,-0.49,-0.122,0.0,1.87,7.535,1.955 +base-enclosure-windows-natural-ventilation-availability.xml,22.173,0.0,10.057,9.071,0.618,0.0,0.0,0.0,3.53,3.637,0.512,7.514,0.629,10.084,-12.691,0.0,0.0,0.0,8.34,-0.064,4.981,0.0,0.728,0.0,4.932,-7.8,-2.489,0.0,0.038,-0.377,-0.039,2.955,-0.004,-1.132,11.723,0.0,0.0,0.0,-5.942,-0.06,-1.04,-8.097,-0.151,0.0,2.529,7.775,2.018 +base-enclosure-windows-none.xml,24.658,0.0,7.645,9.071,0.619,0.0,0.0,0.0,3.446,5.149,0.499,7.206,0.6,0.0,0.0,0.0,0.0,0.0,7.48,-0.044,4.956,0.0,0.722,0.0,5.01,-7.91,-2.517,0.0,0.203,-0.365,-0.022,3.226,0.016,0.0,0.0,0.0,0.0,0.0,-5.147,-0.042,-1.094,0.0,-0.142,0.0,1.41,7.662,1.991 +base-enclosure-windows-physical-properties.xml,29.334,0.0,13.819,9.071,0.617,0.0,0.0,0.0,3.465,3.628,0.511,7.479,0.63,19.599,-16.819,0.0,0.0,0.0,8.386,-0.085,5.078,0.0,0.73,0.0,6.416,-7.855,-2.5,0.0,0.016,-0.371,-0.039,2.872,-0.0,-4.822,14.292,0.0,0.0,0.0,-6.099,-0.08,-1.03,-3.405,-0.151,0.0,3.153,7.721,2.007 +base-enclosure-windows-shading-seasons.xml,22.006,0.0,14.026,9.071,0.614,0.0,0.0,0.0,3.532,3.638,0.512,7.492,0.63,10.091,-12.691,0.0,0.0,0.0,8.231,-0.074,4.982,0.0,0.728,0.0,4.895,-7.8,-2.489,0.0,-0.068,-0.459,-0.051,2.685,-0.024,-1.234,12.133,0.0,0.0,0.0,-6.385,-0.07,-1.138,-3.918,-0.164,0.0,3.099,7.783,2.018 +base-enclosure-windows-shading.xml,24.124,0.0,5.939,9.071,0.623,0.0,0.0,0.0,3.569,3.693,0.519,7.538,0.642,10.695,-11.796,0.0,0.0,0.0,8.473,-0.062,5.081,0.0,0.74,0.0,5.302,-8.057,-2.554,0.0,0.39,-0.07,0.004,3.608,0.068,-3.437,2.903,0.0,0.0,0.0,-4.567,-0.058,-0.854,-2.599,-0.113,0.0,1.38,7.506,1.953 +base-enclosure-windows-storms.xml,23.583,0.0,11.954,9.071,0.617,0.0,0.0,0.0,3.489,3.602,0.507,7.402,0.621,8.59,-9.448,0.0,0.0,0.0,8.025,-0.063,4.977,0.0,0.724,0.0,5.177,-7.814,-2.492,0.0,0.024,-0.387,-0.041,2.884,-0.007,-0.665,8.68,0.0,0.0,0.0,-5.952,-0.059,-1.094,-3.54,-0.156,0.0,2.669,7.763,2.015 +base-foundation-ambient.xml,17.238,0.0,15.194,9.178,0.607,0.0,0.0,0.0,3.801,3.819,0.0,0.0,0.766,10.502,-11.429,0.0,0.0,10.2,0.0,-0.475,2.295,0.0,0.784,0.0,3.97,-5.901,-1.423,0.0,-0.074,-0.542,0.0,0.0,0.037,-0.067,12.54,0.0,0.0,-3.676,0.0,-0.469,-0.371,-2.655,-0.155,0.0,3.518,6.113,1.223 +base-foundation-basement-garage.xml,19.633,0.0,13.863,9.2,0.614,0.0,0.0,0.0,3.644,4.733,0.514,5.492,0.701,9.836,-12.62,0.0,0.0,0.833,6.112,-0.045,3.456,0.0,0.734,0.0,4.519,-6.729,-1.88,0.0,-0.022,-0.614,-0.052,1.963,-0.035,-1.092,11.668,0.0,0.0,-0.122,-4.547,-0.041,-0.743,-3.612,-0.163,0.0,3.204,6.731,1.525 +base-foundation-belly-wing-no-skirt.xml,20.2,0.0,12.485,9.178,0.609,0.0,0.0,0.0,3.982,5.368,0.0,0.0,0.754,8.708,-11.203,0.0,0.0,10.285,0.0,-0.374,2.354,0.0,0.792,0.0,6.619,-6.017,-1.452,0.0,0.33,-0.565,0.0,0.0,0.048,0.15,9.491,0.0,0.0,-3.367,0.0,-0.368,-0.36,-2.432,-0.14,0.0,2.749,5.995,1.194 +base-foundation-belly-wing-skirt.xml,19.833,0.0,12.536,9.178,0.608,0.0,0.0,0.0,3.985,5.372,0.0,0.0,0.755,8.715,-11.178,0.0,0.0,9.978,0.0,-0.368,2.347,0.0,0.791,0.0,6.502,-6.004,-1.45,0.0,0.321,-0.577,0.0,0.0,0.045,0.127,9.516,0.0,0.0,-3.299,0.0,-0.362,-0.365,-2.451,-0.141,0.0,2.756,6.008,1.196 +base-foundation-complex.xml,39.005,0.0,17.298,9.071,0.618,0.0,0.0,0.0,3.42,3.664,0.521,19.569,0.652,10.158,-12.86,0.0,0.0,0.0,8.681,-0.12,6.404,0.0,0.74,0.0,8.27,-8.008,-2.548,0.0,0.042,-0.344,-0.042,3.886,0.001,-0.923,11.551,0.0,0.0,0.0,-4.502,-0.112,-1.173,-3.978,-0.134,0.0,3.68,7.566,1.959 +base-foundation-conditioned-basement-slab-insulation-full.xml,19.046,0.0,15.844,9.071,0.613,0.0,0.0,0.0,3.617,3.702,0.521,8.198,0.644,10.264,-12.674,0.0,0.0,0.0,4.764,-0.069,4.997,0.0,0.733,0.0,4.309,-7.798,-2.489,0.0,-0.098,-0.475,-0.054,2.229,-0.029,-1.44,11.74,0.0,0.0,0.0,-3.664,-0.063,-1.134,-4.076,-0.165,0.0,3.428,7.789,2.018 +base-foundation-conditioned-basement-slab-insulation.xml,20.835,0.0,14.67,9.071,0.614,0.0,0.0,0.0,3.559,3.658,0.515,7.807,0.633,10.134,-12.689,0.0,0.0,0.0,6.855,-0.061,4.979,0.0,0.729,0.0,4.667,-7.791,-2.487,0.0,-0.074,-0.458,-0.051,2.565,-0.025,-1.391,11.724,0.0,0.0,0.0,-5.239,-0.057,-1.131,-3.887,-0.163,0.0,3.217,7.792,2.02 +base-foundation-conditioned-basement-wall-insulation.xml,21.363,0.0,12.46,9.071,0.615,0.0,0.0,0.0,3.562,3.665,0.516,6.088,0.636,10.163,-12.703,0.0,0.0,0.0,8.943,-0.072,4.999,0.0,0.732,0.0,4.79,-7.81,-2.491,0.0,0.011,-0.395,-0.042,1.15,-0.009,-1.203,11.711,0.0,0.0,0.0,-6.427,-0.067,-1.088,-3.491,-0.158,0.0,2.859,7.771,2.016 +base-foundation-conditioned-crawlspace.xml,17.68,0.0,10.551,9.178,0.615,0.0,0.0,0.0,3.708,3.604,0.507,5.098,0.623,9.804,-12.663,0.0,0.0,0.0,9.972,-0.063,3.499,0.0,0.729,0.0,0.0,-6.0,-1.462,0.0,0.052,-0.444,-0.049,1.826,-0.02,-1.118,11.69,0.0,0.0,0.0,-3.74,-0.059,-0.812,-3.588,-0.159,0.0,0.0,5.996,1.183 +base-foundation-multiple.xml,12.789,0.0,13.881,9.122,0.696,0.0,0.0,0.0,3.981,3.865,0.0,0.0,0.777,10.555,-11.241,0.0,0.0,5.336,0.0,-0.386,2.665,0.0,0.0,0.0,2.137,-3.832,-1.416,0.0,-0.107,-0.682,0.0,0.0,-0.007,-0.369,12.727,0.0,0.0,-0.689,0.0,-0.381,-0.535,-2.975,0.0,0.0,1.912,3.979,1.23 +base-foundation-slab.xml,10.665,0.0,12.4,9.178,0.607,0.0,0.0,0.0,3.928,3.799,0.0,0.0,0.689,10.053,-12.103,0.0,0.0,0.0,8.104,-0.155,2.138,0.0,0.773,0.0,0.318,-5.93,-1.443,0.0,-0.051,-0.56,0.0,0.0,-0.02,-0.688,12.153,0.0,0.0,0.0,-1.519,-0.152,-0.435,-3.306,-0.168,0.0,0.119,6.087,1.203 +base-foundation-unconditioned-basement-above-grade.xml,13.744,0.0,14.281,9.122,0.714,0.0,0.0,0.0,3.99,3.87,0.0,0.0,0.776,10.609,-11.32,0.0,0.0,5.957,0.0,-0.395,2.68,0.0,0.0,0.0,2.53,-3.852,-1.422,0.0,-0.083,-0.661,0.0,0.0,-0.003,-0.368,12.648,0.0,0.0,-0.525,0.0,-0.39,-0.521,-2.967,0.0,0.0,2.181,3.959,1.223 +base-foundation-unconditioned-basement-assembly-r.xml,11.792,0.0,12.398,9.122,0.713,0.0,0.0,0.0,3.978,3.838,0.0,0.0,0.766,10.569,-11.134,0.0,0.0,4.49,0.0,-0.411,2.66,0.0,0.0,0.0,1.926,-3.817,-1.41,0.0,-0.079,-0.631,0.0,0.0,0.021,-0.326,12.835,0.0,0.0,-2.105,0.0,-0.406,-0.536,-2.805,0.0,0.0,1.435,3.994,1.236 +base-foundation-unconditioned-basement-wall-insulation.xml,19.643,0.0,10.942,9.122,0.641,0.0,0.0,0.0,3.732,3.628,0.0,0.0,0.636,9.319,-12.484,0.0,0.0,14.689,0.0,-0.055,2.603,0.0,0.0,0.0,2.783,-3.991,-1.476,0.0,0.083,-0.419,0.0,0.0,-0.008,-0.352,11.485,0.0,0.0,-2.864,0.0,-0.054,-0.489,-2.771,0.0,0.0,1.515,3.821,1.17 +base-foundation-unconditioned-basement.xml,12.812,0.0,13.976,9.122,0.705,0.0,0.0,0.0,3.974,3.832,0.0,0.0,0.757,10.503,-11.231,0.0,0.0,5.385,0.0,-0.389,2.665,0.0,0.0,0.0,2.227,-3.83,-1.415,0.0,-0.086,-0.639,0.0,0.0,0.011,-0.399,12.737,0.0,0.0,-0.738,0.0,-0.384,-0.535,-2.975,0.0,0.0,1.99,3.981,1.231 +base-foundation-unvented-crawlspace.xml,10.76,0.0,14.109,9.178,0.71,0.0,0.0,0.0,3.964,3.816,0.0,0.0,0.775,10.607,-10.818,0.0,0.0,4.555,0.0,-0.448,2.179,0.0,0.773,0.0,1.752,-5.37,-1.376,0.0,-0.187,-0.751,0.0,0.0,0.006,-0.579,13.15,0.0,0.0,-2.072,0.0,-0.443,-0.456,-3.059,-0.191,0.0,1.62,6.053,1.27 +base-foundation-vented-crawlspace-above-grade.xml,13.01,0.0,14.092,9.178,0.778,0.0,0.0,0.0,3.96,3.799,0.0,0.0,0.753,10.472,-11.092,0.0,0.0,6.703,0.0,-0.438,2.264,0.0,0.779,0.0,2.324,-5.476,-1.403,0.0,-0.091,-0.641,0.0,0.0,0.024,-0.382,12.877,0.0,0.0,-2.449,0.0,-0.433,-0.346,-2.973,-0.175,0.0,1.754,5.94,1.243 +base-foundation-vented-crawlspace.xml,13.085,0.0,13.506,9.178,0.787,0.0,0.0,0.0,3.968,3.823,0.0,0.0,0.764,10.543,-11.154,0.0,0.0,6.728,0.0,-0.43,2.269,0.0,0.781,0.0,2.341,-5.502,-1.41,0.0,-0.076,-0.636,0.0,0.0,0.02,-0.332,12.815,0.0,0.0,-2.959,0.0,-0.426,-0.339,-2.898,-0.171,0.0,1.616,5.913,1.236 +base-foundation-walkout-basement.xml,27.344,0.0,14.839,9.071,0.616,0.0,0.0,0.0,3.513,3.694,0.521,7.367,0.648,10.886,-12.924,0.0,0.0,0.0,10.145,-0.075,6.817,0.0,0.728,0.0,6.002,-7.825,-2.494,0.0,-0.102,-0.499,-0.058,1.498,-0.027,-1.441,12.103,0.0,0.0,0.0,-3.623,-0.069,-1.468,-4.148,-0.157,0.0,3.235,7.754,2.013 +base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml,21.333,0.105,12.276,9.071,0.615,0.0,0.0,0.0,3.555,3.638,0.512,7.505,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.982,0.0,0.728,0.0,4.124,-7.8,-2.489,0.0,0.03,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.131,-3.778,-0.162,0.0,1.386,7.782,2.018 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,0.0,0.0,12.573,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.149,-3.656,-0.163,0.0,2.041,7.904,2.042 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,23.06,0.328,12.964,9.071,0.615,0.0,0.0,0.0,3.49,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.292,-0.067,5.123,0.0,0.728,0.0,5.764,-7.8,-2.489,0.0,-0.002,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.126,-3.78,-0.162,0.0,2.095,7.782,2.018 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,22.882,0.332,0.0,9.071,0.592,0.0,0.0,0.0,3.494,3.641,0.512,7.491,0.63,10.097,-12.691,0.0,0.0,0.0,8.142,-0.07,5.146,0.0,0.728,0.0,5.711,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,23.236,1.013,12.507,9.071,0.615,0.0,0.0,0.0,3.579,3.664,0.514,7.734,0.62,9.994,-12.822,0.0,0.0,0.0,9.05,0.07,5.09,0.0,0.76,0.0,4.956,-7.794,-2.499,0.0,0.02,-0.419,-0.047,2.844,-0.028,-1.416,11.591,0.0,0.0,0.0,-6.236,0.061,-1.14,-4.208,-0.159,0.0,2.033,7.787,2.008 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,23.06,0.328,12.964,9.071,0.615,0.0,0.0,0.0,3.49,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.292,-0.067,5.123,0.0,0.728,0.0,5.764,-7.8,-2.489,0.0,-0.002,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.126,-3.78,-0.162,0.0,2.095,7.782,2.018 +base-hvac-air-to-air-heat-pump-1-speed.xml,23.06,0.328,12.964,9.071,0.615,0.0,0.0,0.0,3.49,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.292,-0.067,5.123,0.0,0.728,0.0,5.764,-7.8,-2.489,0.0,-0.002,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.126,-3.78,-0.162,0.0,2.095,7.782,2.018 +base-hvac-air-to-air-heat-pump-2-speed.xml,24.021,0.32,13.202,9.071,0.615,0.0,0.0,0.0,3.453,3.638,0.512,7.508,0.63,10.089,-12.691,0.0,0.0,0.0,8.294,-0.067,5.182,0.0,0.728,0.0,6.697,-7.8,-2.489,0.0,-0.012,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.124,-3.78,-0.162,0.0,2.337,7.782,2.018 +base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,21.332,0.0,12.599,9.071,0.615,0.0,0.0,0.0,3.561,3.638,0.512,7.505,0.63,10.087,-12.691,0.0,0.0,0.0,8.289,-0.067,4.883,0.0,0.728,0.0,4.221,-7.8,-2.489,0.0,0.021,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.242,-0.063,-1.133,-3.779,-0.162,0.0,1.723,7.782,2.018 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,29.515,11.515,16.008,9.071,0.616,0.0,0.0,0.0,3.234,3.597,0.506,7.507,0.614,9.916,-12.591,0.0,0.0,0.0,8.222,-0.031,6.57,0.0,0.719,0.0,11.065,-7.688,-2.467,0.0,-0.201,-0.467,-0.052,2.794,-0.032,-1.454,11.822,0.0,0.0,0.0,-6.254,-0.027,-1.431,-3.742,-0.167,0.0,5.453,7.892,2.04 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,29.035,14.605,16.129,9.071,0.616,0.0,0.0,0.0,3.255,3.595,0.505,7.398,0.614,9.852,-12.676,0.0,0.0,0.0,8.224,-0.016,6.567,0.0,0.714,0.0,10.48,-7.711,-2.456,0.0,-0.188,-0.462,-0.052,2.715,-0.03,-1.49,11.737,0.0,0.0,0.0,-6.197,-0.013,-1.452,-3.726,-0.17,0.0,5.342,7.868,2.051 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,29.826,11.519,16.168,9.071,0.615,0.0,0.0,0.0,3.275,3.638,0.512,7.506,0.63,10.09,-12.705,0.0,0.0,0.0,8.309,-0.067,6.648,0.0,0.727,0.0,11.22,-7.81,-2.491,0.0,-0.16,-0.431,-0.047,2.777,-0.017,-1.296,11.708,0.0,0.0,0.0,-6.188,-0.063,-1.367,-3.727,-0.16,0.0,5.511,7.771,2.016 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,27.397,14.078,13.124,9.071,0.615,0.0,0.0,0.0,3.323,3.639,0.512,7.51,0.63,10.087,-12.691,0.0,0.0,0.0,8.298,-0.065,5.564,0.0,0.727,0.0,9.797,-7.797,-2.487,0.0,-0.002,-0.441,-0.049,2.746,-0.02,-1.333,11.723,0.0,0.0,0.0,-6.242,-0.061,-1.133,-3.78,-0.162,0.0,2.267,7.785,2.02 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,30.131,12.664,16.274,9.071,0.615,0.0,0.0,0.0,3.228,3.641,0.512,7.512,0.63,10.086,-12.703,0.0,0.0,0.0,8.305,-0.062,5.795,0.0,0.727,0.0,12.388,-7.8,-2.488,0.0,-0.167,-0.438,-0.048,2.75,-0.02,-1.331,11.71,0.0,0.0,0.0,-6.233,-0.058,-1.109,-3.793,-0.162,0.0,5.533,7.782,2.019 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,27.398,0.278,14.908,9.071,0.615,0.0,0.0,0.0,3.327,3.64,0.512,7.512,0.63,10.091,-12.696,0.0,0.0,0.0,8.302,-0.066,5.262,0.0,0.728,0.0,10.11,-7.801,-2.489,0.0,-0.089,-0.439,-0.048,2.75,-0.02,-1.327,11.717,0.0,0.0,0.0,-6.235,-0.061,-1.123,-3.785,-0.162,0.0,4.119,7.78,2.018 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,26.781,0.099,14.236,9.071,0.615,0.0,0.0,0.0,3.35,3.64,0.512,7.511,0.63,10.091,-12.696,0.0,0.0,0.0,8.302,-0.066,5.197,0.0,0.728,0.0,9.539,-7.801,-2.489,0.0,-0.055,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.126,-3.783,-0.162,0.0,3.418,7.78,2.018 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,26.932,0.102,14.564,9.071,0.615,0.0,0.0,0.0,3.345,3.64,0.512,7.511,0.63,10.091,-12.696,0.0,0.0,0.0,8.302,-0.065,5.197,0.0,0.728,0.0,9.695,-7.801,-2.489,0.0,-0.07,-0.439,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.125,-3.784,-0.162,0.0,3.761,7.78,2.018 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,27.39,6.354,14.545,9.071,0.615,0.0,0.0,0.0,3.326,3.64,0.512,7.512,0.63,10.091,-12.696,0.0,0.0,0.0,8.303,-0.066,5.451,0.0,0.728,0.0,9.91,-7.801,-2.489,0.0,-0.069,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.125,-3.784,-0.162,0.0,3.742,7.78,2.018 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,26.781,0.098,14.568,9.071,0.615,0.0,0.0,0.0,3.35,3.64,0.512,7.511,0.63,10.091,-12.696,0.0,0.0,0.0,8.302,-0.066,5.196,0.0,0.728,0.0,9.538,-7.801,-2.489,0.0,-0.071,-0.439,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.125,-3.784,-0.162,0.0,3.766,7.78,2.018 +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,26.166,0.296,14.469,9.071,0.615,0.0,0.0,0.0,3.411,3.654,0.515,7.547,0.639,10.146,-12.619,0.0,0.0,0.0,8.281,-0.063,5.074,0.0,0.732,0.0,8.835,-7.8,-2.489,0.0,-0.17,-0.462,-0.052,2.773,-0.025,-1.353,11.735,0.0,0.0,0.0,-6.208,-0.058,-1.104,-3.618,-0.168,0.0,3.53,7.781,2.018 +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,27.003,0.039,14.241,9.071,0.615,0.0,0.0,0.0,3.348,3.643,0.513,7.519,0.631,10.098,-12.702,0.0,0.0,0.0,8.319,-0.064,5.103,0.003,0.728,0.0,9.834,-7.803,-2.49,0.0,-0.053,-0.438,-0.048,2.751,-0.019,-1.326,11.711,0.0,0.0,0.0,-6.229,-0.06,-1.125,-3.775,-0.161,0.0,3.435,7.779,2.018 +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,25.645,0.241,14.231,9.071,0.615,0.0,0.0,0.0,3.383,3.631,0.511,7.485,0.628,10.062,-12.702,0.0,0.0,0.0,8.266,-0.065,5.079,0.002,0.726,0.0,8.624,-7.802,-2.49,0.0,-0.054,-0.439,-0.048,2.748,-0.019,-1.328,11.711,0.0,0.0,0.0,-6.237,-0.06,-1.126,-3.778,-0.162,0.0,3.414,7.779,2.018 +base-hvac-air-to-air-heat-pump-var-speed.xml,25.773,0.323,14.236,9.071,0.615,0.0,0.0,0.0,3.391,3.64,0.512,7.51,0.63,10.09,-12.696,0.0,0.0,0.0,8.3,-0.065,5.093,0.0,0.728,0.0,8.599,-7.801,-2.489,0.0,-0.055,-0.44,-0.048,2.749,-0.02,-1.328,11.717,0.0,0.0,0.0,-6.236,-0.061,-1.126,-3.783,-0.162,0.0,3.418,7.78,2.018 +base-hvac-autosize-sizing-controls.xml,7.062,0.0,8.754,16.197,0.647,0.0,0.0,0.0,2.849,2.787,0.39,5.36,0.411,7.458,-12.563,0.0,0.0,0.0,5.529,-0.057,3.523,0.0,0.573,0.0,1.53,-8.608,-2.465,0.0,-0.086,-0.54,-0.062,2.449,-0.05,-1.666,11.85,0.0,0.0,0.0,-7.412,-0.057,-1.208,-6.54,-0.183,0.0,1.644,8.945,2.042 +base-hvac-autosize.xml,22.665,0.0,13.993,9.071,0.615,0.0,0.0,0.0,3.51,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.291,-0.067,5.011,0.0,0.728,0.0,5.466,-7.8,-2.489,0.0,-0.055,-0.44,-0.048,2.748,-0.02,-1.328,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.119,-3.782,-0.162,0.0,3.155,7.782,2.018 +base-hvac-boiler-coal-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-elec-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,17.195,0.0,14.163,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.082,-12.691,0.0,0.0,0.0,8.282,-0.066,4.807,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,-0.065,-0.44,-0.048,2.749,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.117,-3.782,-0.162,0.0,3.328,7.782,2.018 +base-hvac-boiler-gas-only-pilot.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-oil-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-propane-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,17.042,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.74,3.639,0.512,7.485,0.63,10.091,-12.691,0.0,0.0,0.0,8.13,-0.07,4.808,0.0,0.728,0.0,0.0,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-autosize-factor.xml,0.0,0.0,12.566,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.013,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.15,-3.656,-0.163,0.0,2.035,7.904,2.042 +base-hvac-central-ac-only-1-speed-seer2.xml,0.0,0.0,13.741,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.074,-0.444,-0.048,2.731,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.14,-3.658,-0.163,0.0,3.244,7.904,2.042 +base-hvac-central-ac-only-1-speed.xml,0.0,0.0,13.741,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.074,-0.444,-0.048,2.731,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.14,-3.658,-0.163,0.0,3.244,7.904,2.042 +base-hvac-central-ac-only-2-speed.xml,0.0,0.0,14.124,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.091,-0.444,-0.048,2.732,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.852,-0.066,-1.136,-3.658,-0.163,0.0,3.635,7.904,2.042 +base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,0.0,0.0,15.253,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.146,-0.444,-0.048,2.732,-0.025,-1.368,11.85,0.0,0.0,0.0,-6.851,-0.066,-1.14,-3.666,-0.163,0.0,4.833,7.904,2.042 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,0.0,0.0,14.262,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.089,-0.444,-0.048,2.731,-0.025,-1.369,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.148,-3.661,-0.163,0.0,3.803,7.904,2.042 +base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,0.0,0.0,15.088,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.138,-0.444,-0.048,2.731,-0.025,-1.37,11.85,0.0,0.0,0.0,-6.853,-0.066,-1.14,-3.665,-0.163,0.0,4.672,7.905,2.042 +base-hvac-central-ac-only-var-speed.xml,0.0,0.0,15.107,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-0.138,-0.444,-0.048,2.732,-0.025,-1.368,11.85,0.0,0.0,0.0,-6.851,-0.066,-1.14,-3.664,-0.163,0.0,4.676,7.904,2.042 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,23.081,0.334,14.164,9.071,0.615,0.0,0.0,0.0,3.489,3.638,0.512,7.507,0.63,10.088,-12.691,0.0,0.0,0.0,8.292,-0.067,5.147,0.0,0.728,0.0,5.757,-7.8,-2.489,0.0,-0.064,-0.44,-0.048,2.748,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.117,-3.782,-0.162,0.0,3.328,7.782,2.018 base-hvac-dse.xml,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.771,-0.162,0.0,0.0,7.784,2.019 base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,24.437,11.563,12.964,9.071,0.615,0.0,0.0,0.0,3.432,3.639,0.512,7.509,0.63,10.09,-12.691,0.0,0.0,0.0,8.295,-0.067,5.329,0.0,0.728,0.0,6.984,-7.8,-2.489,0.0,-0.002,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.126,-3.78,-0.162,0.0,2.095,7.782,2.018 base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,25.363,15.834,12.965,9.071,0.615,0.0,0.0,0.0,3.396,3.639,0.512,7.51,0.63,10.091,-12.691,0.0,0.0,0.0,8.298,-0.067,5.466,0.0,0.728,0.0,7.803,-7.8,-2.489,0.0,-0.003,-0.441,-0.049,2.747,-0.02,-1.329,11.723,0.0,0.0,0.0,-6.241,-0.063,-1.126,-3.78,-0.162,0.0,2.095,7.782,2.018 @@ -27,7 +247,7 @@ base-hvac-furnace-elec-only.xml,21.915,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.535,3.6 base-hvac-furnace-gas-central-ac-2-speed.xml,22.103,0.0,14.235,9.071,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.065,-0.44,-0.048,2.749,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.239,-0.063,-1.117,-3.781,-0.162,0.0,3.402,7.782,2.018 base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml,22.102,0.0,15.236,9.071,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.112,-0.44,-0.048,2.748,-0.02,-1.327,11.723,0.0,0.0,0.0,-6.24,-0.063,-1.12,-3.786,-0.162,0.0,4.474,7.782,2.018 base-hvac-furnace-gas-central-ac-var-speed.xml,22.103,0.0,15.255,9.071,0.615,0.0,0.0,0.0,3.531,3.638,0.512,7.506,0.63,10.087,-12.691,0.0,0.0,0.0,8.29,-0.067,4.981,0.0,0.728,0.0,4.916,-7.8,-2.489,0.0,-0.112,-0.44,-0.048,2.749,-0.02,-1.326,11.723,0.0,0.0,0.0,-6.238,-0.063,-1.12,-3.786,-0.162,0.0,4.477,7.782,2.018 -base-hvac-furnace-gas-only-autosize-factor.xml,20.701,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.58,3.64,0.512,7.489,0.63,10.095,-12.691,0.0,0.0,0.0,8.138,-0.07,4.924,0.0,0.728,0.0,3.68,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-furnace-gas-only-autosize-factor.xml,20.798,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.577,3.64,0.512,7.489,0.63,10.095,-12.691,0.0,0.0,0.0,8.138,-0.07,4.928,0.0,0.728,0.0,3.776,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-detailed-setpoints.xml,7.734,0.0,0.0,9.071,0.636,0.0,0.0,0.0,2.814,2.757,0.386,5.26,0.404,7.366,-12.563,0.0,0.0,0.0,5.328,-0.056,3.496,0.0,0.566,0.0,1.693,-7.591,-2.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only-pilot.xml,21.915,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.535,3.64,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.982,0.0,0.728,0.0,4.875,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-furnace-gas-only.xml,21.915,0.0,0.0,9.071,0.592,0.0,0.0,0.0,3.535,3.64,0.512,7.49,0.63,10.096,-12.691,0.0,0.0,0.0,8.141,-0.07,4.982,0.0,0.728,0.0,4.875,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 @@ -62,6 +282,7 @@ base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml, base-hvac-mini-split-heat-pump-ducted-heating-only.xml,19.917,0.061,0.0,9.071,0.592,0.0,0.0,0.0,3.612,3.64,0.512,7.488,0.63,10.094,-12.691,0.0,0.0,0.0,8.137,-0.07,4.835,0.0,0.728,0.0,2.963,-7.8,-2.489,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml,20.022,0.055,12.041,9.071,0.615,0.0,0.0,0.0,3.605,3.634,0.511,7.492,0.629,10.072,-12.697,0.0,0.0,0.0,8.272,-0.065,4.826,0.002,0.727,0.0,2.988,-7.801,-2.489,0.0,0.046,-0.44,-0.049,2.746,-0.02,-1.331,11.717,0.0,0.0,0.0,-6.242,-0.061,-1.135,-3.775,-0.162,0.0,1.15,7.78,2.018 base-hvac-mini-split-heat-pump-ducted.xml,20.076,0.062,12.043,9.071,0.615,0.0,0.0,0.0,3.609,3.637,0.512,7.504,0.63,10.085,-12.691,0.0,0.0,0.0,8.287,-0.066,4.833,0.0,0.728,0.0,2.975,-7.8,-2.489,0.0,0.045,-0.441,-0.049,2.746,-0.02,-1.33,11.723,0.0,0.0,0.0,-6.243,-0.063,-1.135,-3.778,-0.162,0.0,1.151,7.782,2.018 +base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019 base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,17.195,0.393,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019 base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,18.354,7.745,10.83,9.071,0.615,0.0,0.0,0.0,3.734,3.633,0.511,7.494,0.629,10.082,-12.691,0.0,0.0,0.0,8.284,-0.07,5.891,0.0,0.727,0.0,0.104,-7.805,-2.49,0.0,0.063,-0.434,-0.048,2.773,-0.017,-1.299,11.723,0.0,0.0,0.0,-6.201,-0.066,-1.395,-3.705,-0.16,0.0,0.0,7.775,2.018 base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,17.55,7.633,10.914,9.071,0.615,0.0,0.0,0.0,3.717,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.811,0.0,0.728,0.0,0.369,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019 @@ -71,7 +292,7 @@ base-hvac-mini-split-heat-pump-ductless-detailed-performance.xml,17.195,0.0,10.9 base-hvac-mini-split-heat-pump-ductless-heating-capacity-17f.xml,17.195,0.0,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019 base-hvac-mini-split-heat-pump-ductless.xml,17.195,0.0,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019 base-hvac-multiple.xml,34.844,0.32,18.654,9.071,0.615,0.0,0.0,0.0,3.404,3.637,0.512,7.503,0.63,10.088,-12.703,0.0,0.0,0.0,8.304,-0.067,7.515,0.0,0.727,0.0,15.265,-7.808,-2.49,0.0,-0.125,-0.433,-0.047,2.774,-0.017,-1.299,11.709,0.0,0.0,0.0,-6.193,-0.063,-1.327,-3.746,-0.16,0.0,7.947,7.771,2.017 -base-hvac-none.xml,0.0,0.0,0.0,4.496,0.335,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-none.xml,0.0,0.0,0.0,4.496,0.335,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 base-hvac-ptac-with-heating-electricity.xml,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019 base-hvac-ptac-with-heating-natural-gas.xml,17.194,0.0,10.914,9.071,0.615,0.0,0.0,0.0,3.737,3.636,0.512,7.501,0.629,10.081,-12.69,0.0,0.0,0.0,8.281,-0.066,4.806,0.0,0.728,0.0,0.0,-7.798,-2.488,0.0,0.057,-0.441,-0.049,2.748,-0.02,-1.33,11.724,0.0,0.0,0.0,-6.243,-0.062,-1.137,-3.77,-0.162,0.0,0.0,7.784,2.019 base-hvac-ptac.xml,0.0,0.0,10.573,9.071,0.666,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.046,-0.445,-0.048,2.73,-0.025,-1.371,11.85,0.0,0.0,0.0,-6.855,-0.066,-1.16,-3.647,-0.163,0.0,0.0,7.904,2.042 diff --git a/hpxml-measures/workflow/tests/base_results/results_simulations2_misc.csv b/hpxml-measures/workflow/tests/base_results/results_simulations_misc.csv similarity index 50% rename from hpxml-measures/workflow/tests/base_results/results_simulations2_misc.csv rename to hpxml-measures/workflow/tests/base_results/results_simulations_misc.csv index 20c059ae4..a10d665ea 100644 --- a/hpxml-measures/workflow/tests/base_results/results_simulations2_misc.csv +++ b/hpxml-measures/workflow/tests/base_results/results_simulations_misc.csv @@ -1,4 +1,224 @@ HPXML,Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Electricity: Annual Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),Resilience: Battery (hr) +base-appliances-coal.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2002.1,3563.2,3563.2,23.28,18.664,0.0 +base-appliances-dehumidifier-ief-portable.xml,0.0,0.0,1354.7,998.0,9789.3,2412.1,2024.9,3022.6,3022.6,9.955,15.596,0.0 +base-appliances-dehumidifier-ief-whole-home.xml,0.0,0.0,1354.7,998.0,9789.3,2412.1,2063.0,3022.6,3022.6,9.948,15.596,0.0 +base-appliances-dehumidifier-multiple.xml,0.0,0.0,1354.7,998.0,9789.2,2412.1,1943.2,3042.0,3042.0,9.988,15.595,0.0 +base-appliances-dehumidifier.xml,0.0,0.0,1354.7,998.0,9789.2,2412.1,1956.1,3042.0,3042.0,9.988,15.595,0.0 +base-appliances-freezer-temperature-dependent-schedule.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2149.2,3582.0,3582.0,23.2,18.627,0.0 +base-appliances-gas.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2002.1,3563.2,3563.2,23.28,18.664,0.0 +base-appliances-modified.xml,0.0,0.0,1354.7,1998.3,11171.6,2563.5,2126.1,3420.1,3420.1,23.264,18.492,0.0 +base-appliances-none.xml,0.0,0.0,0.0,0.0,11171.5,2563.5,1845.5,2948.7,2948.7,23.674,17.333,0.0 +base-appliances-oil.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2002.1,3563.2,3563.2,23.28,18.664,0.0 +base-appliances-propane.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2002.1,3563.2,3563.2,23.28,18.664,0.0 +base-appliances-refrigerator-temperature-dependent-schedule.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2106.7,3720.2,3720.2,23.355,18.37,0.0 +base-appliances-wood.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2002.1,3563.2,3563.2,23.28,18.664,0.0 +base-atticroof-cathedral.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2112.5,3341.9,3341.9,23.038,16.725,0.0 +base-atticroof-conditioned.xml,0.0,0.0,1354.7,998.0,11171.5,2471.3,2346.0,3786.1,3786.1,23.038,20.635,0.0 +base-atticroof-flat.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2071.8,3182.4,3182.4,17.971,12.994,0.0 +base-atticroof-radiant-barrier-ceiling.xml,0.0,2.0,1354.7,998.0,9789.2,2412.1,1765.9,3495.8,3495.8,14.724,20.105,0.0 +base-atticroof-radiant-barrier.xml,0.0,0.0,1354.7,998.0,9789.3,2412.1,1754.4,3448.8,3448.8,13.826,19.394,0.0 +base-atticroof-unvented-insulated-roof.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2101.0,3307.4,3307.4,20.461,14.629,0.0 +base-atticroof-vented.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2085.8,3370.9,3370.9,23.377,16.392,0.0 +base-battery-scheduled.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2151.6,3834.2,3834.2,23.355,18.37,1.32 +base-battery.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2106.7,3720.2,3720.2,23.355,18.37,0.0 +base-bldgtype-mf-unit-adjacent-to-multifamily-buffer-space.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1509.1,1941.4,1941.4,7.921,6.595,0.0 +base-bldgtype-mf-unit-adjacent-to-multiple-hvac-none.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1459.3,1409.8,1459.3,0.0,0.0,0.0 +base-bldgtype-mf-unit-adjacent-to-multiple.xml,0.0,2.0,1354.7,998.0,11171.5,3093.4,1519.6,2267.5,2267.5,9.995,10.821,0.0 +base-bldgtype-mf-unit-adjacent-to-non-freezing-space.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1512.4,2236.9,2236.9,11.216,9.34,0.0 +base-bldgtype-mf-unit-adjacent-to-other-heated-space.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1511.6,1989.1,1989.1,3.769,6.597,0.0 +base-bldgtype-mf-unit-adjacent-to-other-housing-unit.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1514.5,1837.9,1837.9,4.065,5.018,0.0 +base-bldgtype-mf-unit-infil-compartmentalization-test.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1614.2,2275.6,2275.6,3.618,7.758,0.0 +base-bldgtype-mf-unit-residents-1.xml,0.0,0.0,817.1,530.8,4684.1,1314.5,1086.3,1702.5,1702.5,4.017,7.292,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-baseboard.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1634.1,2119.4,2119.4,3.816,7.406,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil-ducted.xml,0.0,3.0,1354.7,998.0,11171.6,3093.4,1668.8,2364.4,2364.4,3.978,8.705,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-fan-coil.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1645.3,2176.9,2176.9,3.814,7.406,0.0 +base-bldgtype-mf-unit-shared-boiler-chiller-water-loop-heat-pump.xml,0.0,3.0,1354.7,998.0,11171.6,3093.4,1848.5,3510.6,3510.6,3.904,8.705,0.0 +base-bldgtype-mf-unit-shared-boiler-cooling-tower-water-loop-heat-pump.xml,0.0,3.0,1354.7,998.0,11171.6,3093.4,1661.2,2320.5,2320.5,3.904,8.705,0.0 +base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1474.9,1412.1,1474.9,3.808,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1487.0,1412.1,1487.0,3.976,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-eae.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1500.4,1412.1,1500.4,3.812,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil-fireplace-elec.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1613.4,1412.1,1613.4,3.812,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1502.6,1412.1,1502.6,3.812,0.0,0.0 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1492.9,1412.1,1492.9,3.902,0.0,0.0 +base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1619.4,2235.5,2235.5,0.0,7.406,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,0.0,3.0,1354.7,998.0,11171.5,3093.4,1650.3,2331.8,2331.8,0.0,8.705,0.0 +base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1629.5,2309.9,2309.9,0.0,7.406,0.0 +base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml,0.0,3.0,1354.7,998.0,11171.5,3093.4,1811.0,3365.6,3365.6,0.0,8.705,0.0 +base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml,0.0,3.0,1354.7,998.0,11171.5,3093.4,1643.2,2289.7,2289.7,0.0,8.705,0.0 +base-bldgtype-mf-unit-shared-generator.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1605.7,2050.9,2050.9,3.814,7.788,0.0 +base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1705.4,2023.7,2023.7,3.814,7.788,0.0 +base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml,0.0,0.0,1354.7,998.0,11171.9,3093.5,930.1,1619.8,1619.8,3.862,7.816,0.0 +base-bldgtype-mf-unit-shared-laundry-room.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,921.5,1608.5,1608.5,4.011,7.695,0.0 +base-bldgtype-mf-unit-shared-mechvent-multiple.xml,0.0,0.0,1354.7,998.0,11171.5,3093.4,1817.3,2323.9,2323.9,7.899,9.053,0.0 +base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1595.5,2178.6,2178.6,4.194,7.952,0.0 +base-bldgtype-mf-unit-shared-mechvent.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1570.0,2161.3,2161.3,6.015,8.573,0.0 +base-bldgtype-mf-unit-shared-pv-battery.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1651.4,2072.2,2072.2,3.814,7.788,43.084 +base-bldgtype-mf-unit-shared-pv.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1605.7,2050.9,2050.9,3.814,7.788,0.0 +base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml,0.0,0.0,1354.7,998.0,10607.8,2937.3,1287.5,1902.3,1902.3,5.887,7.728,0.0 +base-bldgtype-mf-unit-shared-water-heater-recirc-beds-0.xml,0.0,0.0,732.1,456.9,3657.4,0.0,818.9,1471.0,1471.0,4.341,7.252,0.0 +base-bldgtype-mf-unit-shared-water-heater-recirc-scheduled.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,951.9,1654.8,1654.8,4.004,7.812,0.0 +base-bldgtype-mf-unit-shared-water-heater-recirc.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,951.9,1654.8,1654.8,4.004,7.812,0.0 +base-bldgtype-mf-unit-shared-water-heater.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,915.2,1618.1,1618.1,4.004,7.812,0.0 +base-bldgtype-mf-unit.xml,0.0,0.0,1354.7,998.0,11171.6,3093.4,1605.7,2050.9,2050.9,3.814,7.788,0.0 +base-bldgtype-mf-whole-building.xml,0.0,1.0,8128.5,5988.0,67057.1,16864.7,22122.0,16427.5,22122.0,53.957,57.134,0.0 +base-bldgtype-sfa-unit-2stories.xml,0.0,0.0,1354.7,998.0,11171.6,2624.7,2085.2,3194.7,3194.7,18.34,15.649,0.0 +base-bldgtype-sfa-unit-atticroof-cathedral.xml,0.0,0.0,1354.7,998.0,11171.6,2624.7,2247.5,4537.6,4537.6,36.753,28.624,0.0 +base-bldgtype-sfa-unit-infil-compartmentalization-test.xml,0.0,0.0,1354.7,998.0,11171.5,2829.7,1780.7,2701.1,2701.1,13.883,10.712,0.0 +base-bldgtype-sfa-unit.xml,0.0,0.0,1354.7,998.0,11171.5,2829.7,1780.7,2701.1,2701.1,13.883,10.712,0.0 +base-dhw-combi-tankless-outside.xml,0.0,0.0,1070.0,776.6,8411.2,1930.1,1295.6,1163.0,1295.6,16.826,0.0,0.0 +base-dhw-combi-tankless.xml,0.0,0.0,1070.0,776.6,8411.2,1930.1,1297.1,1163.0,1297.1,17.407,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,0.0,0.0,1354.7,998.0,11184.4,2566.5,1972.5,2842.9,2842.9,0.0,19.452,0.0 +base-dhw-desuperheater-gshp.xml,0.0,0.0,1354.7,998.0,11186.5,2567.0,3529.4,2430.3,3529.4,22.961,16.582,0.0 +base-dhw-desuperheater-hpwh.xml,0.0,0.0,1354.6,997.9,11151.0,2558.8,1869.1,3134.7,3134.7,23.741,18.98,0.0 +base-dhw-desuperheater-tankless.xml,0.0,0.0,1354.7,998.0,11132.1,2554.5,1833.3,3332.8,3332.8,0.0,18.97,0.0 +base-dhw-desuperheater-var-speed.xml,0.0,0.0,1354.7,998.0,11185.9,2566.8,1972.6,2631.4,2631.4,0.0,19.209,0.0 +base-dhw-desuperheater.xml,0.0,0.0,1354.7,998.0,11186.2,2566.9,1971.0,3344.6,3344.6,0.0,19.076,0.0 +base-dhw-dwhr.xml,0.0,0.0,1354.7,998.0,10014.1,2297.9,2034.8,3376.8,3376.8,23.353,18.37,0.0 +base-dhw-indirect-detailed-setpoints.xml,0.0,0.0,1154.3,855.1,9363.6,2148.7,1296.3,1163.4,1296.3,17.02,0.0,0.0 +base-dhw-indirect-dse.xml,0.0,0.0,1069.7,771.0,8867.4,2034.8,1296.3,1163.3,1296.3,17.117,0.0,0.0 +base-dhw-indirect-outside.xml,0.0,0.0,1066.2,768.7,8830.9,2026.4,1295.6,1163.0,1295.6,16.826,0.0,0.0 +base-dhw-indirect-standbyloss.xml,0.0,0.0,1060.2,765.1,8818.5,2023.6,1296.1,1163.4,1296.1,17.043,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,0.0,0.0,390.1,285.6,3158.3,724.7,1296.8,1163.1,1296.8,17.31,0.0,0.0 +base-dhw-indirect.xml,0.0,0.0,1069.7,771.0,8867.4,2034.8,1296.3,1163.3,1296.3,17.117,0.0,0.0 +base-dhw-jacket-electric.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2099.9,3377.0,3377.0,23.408,18.32,0.0 +base-dhw-jacket-gas.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1448.1,3107.3,3107.3,23.87,18.742,0.0 +base-dhw-jacket-hpwh.xml,0.0,0.0,1354.7,998.0,10785.9,2475.0,1870.5,3048.0,3048.0,25.426,18.219,0.0 +base-dhw-jacket-indirect.xml,0.0,0.0,1075.4,776.5,8919.9,2046.8,1296.4,1163.3,1296.4,17.165,0.0,0.0 +base-dhw-low-flow-fixtures.xml,0.0,0.0,1354.7,998.0,10829.6,2485.1,2105.2,3527.6,3527.6,23.354,18.37,0.0 +base-dhw-multiple.xml,0.0,0.0,472.0,347.7,3918.9,899.3,2066.1,1773.3,2066.1,17.068,0.0,0.0 +base-dhw-none.xml,0.0,0.0,0.0,0.0,0.0,0.0,1342.7,2937.5,2937.5,23.451,18.05,0.0 +base-dhw-recirc-demand-scheduled.xml,0.0,0.0,1354.7,998.0,11171.5,2460.6,2101.1,3383.3,3383.3,23.354,18.37,0.0 +base-dhw-recirc-demand.xml,0.0,0.0,1354.7,998.0,11171.5,2460.6,2101.1,3383.3,3383.3,23.354,18.37,0.0 +base-dhw-recirc-manual.xml,0.0,0.0,1354.7,998.0,11171.5,2460.6,2085.8,3368.7,3368.7,23.354,18.37,0.0 +base-dhw-recirc-nocontrol.xml,0.0,0.0,1354.7,998.0,11171.6,2623.0,3017.2,4042.3,4042.3,23.353,18.37,0.0 +base-dhw-recirc-temperature.xml,0.0,0.0,1354.7,998.0,11171.6,2623.0,2714.7,3872.5,3872.5,23.353,18.37,0.0 +base-dhw-recirc-timer.xml,0.0,0.0,1354.7,998.0,11171.6,2623.0,3017.2,4042.3,4042.3,23.353,18.37,0.0 +base-dhw-solar-direct-evacuated-tube.xml,0.0,0.0,1354.6,997.9,10983.6,2520.4,2041.5,3102.3,3102.3,23.354,18.383,0.0 +base-dhw-solar-direct-flat-plate.xml,0.0,0.0,1354.3,997.6,10193.2,2339.0,2048.9,3073.3,3073.3,23.356,18.412,0.0 +base-dhw-solar-direct-ics.xml,0.0,0.0,1354.7,997.9,10725.6,2461.2,2101.1,3104.3,3104.3,23.355,18.402,0.0 +base-dhw-solar-fraction.xml,0.0,0.0,474.2,349.3,3910.1,897.2,1753.3,3307.1,3307.1,23.421,18.307,0.0 +base-dhw-solar-indirect-flat-plate.xml,0.0,0.0,1354.2,997.5,10326.4,2369.6,2083.1,3100.6,3100.6,23.387,18.677,0.0 +base-dhw-solar-thermosyphon-flat-plate.xml,0.0,0.0,1354.4,997.7,10243.7,2350.6,2091.6,3073.1,3073.1,23.355,18.41,0.0 +base-dhw-tank-coal.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1447.1,3116.7,3116.7,23.765,18.832,0.0 +base-dhw-tank-detailed-setpoints.xml,0.0,0.0,1354.7,998.0,11206.9,2571.6,2566.9,3405.2,3405.2,23.331,18.364,0.0 +base-dhw-tank-elec-uef.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2049.7,3383.0,3383.0,23.341,18.382,0.0 +base-dhw-tank-gas-outside.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1444.7,3059.0,3059.0,23.457,18.273,0.0 +base-dhw-tank-gas-uef-fhr.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1447.8,3110.2,3110.2,23.835,18.769,0.0 +base-dhw-tank-gas-uef.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1447.8,3110.2,3110.2,23.835,18.769,0.0 +base-dhw-tank-gas.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1447.1,3116.7,3116.7,23.765,18.832,0.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,0.0,0.0,1354.7,998.0,9993.2,2293.1,1838.7,3061.1,3061.1,27.076,18.128,0.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,0.0,0.0,1354.7,998.0,10745.9,2465.8,1835.1,3401.6,3401.6,25.606,18.294,0.0 +base-dhw-tank-heat-pump-outside.xml,0.0,0.0,1354.7,998.0,11025.2,2529.9,2983.7,3136.2,3136.2,23.457,18.273,0.0 +base-dhw-tank-heat-pump-uef.xml,0.0,0.0,1354.7,998.0,10745.9,2465.8,1835.1,3401.6,3401.6,25.606,18.294,0.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,0.0,0.0,474.2,349.3,3821.9,877.0,1859.2,3071.1,3071.1,25.511,18.342,0.0 +base-dhw-tank-heat-pump-with-solar.xml,0.0,0.0,1354.4,997.7,11685.2,2681.4,1856.5,3115.3,3115.3,23.959,18.792,0.0 +base-dhw-tank-heat-pump.xml,0.0,0.0,1354.7,998.0,10843.1,2488.2,1874.7,3357.4,3357.4,23.773,18.487,0.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,0.0,0.0,1354.7,998.0,10786.2,2475.1,4772.3,5410.7,5410.7,31.443,18.842,0.0 +base-dhw-tank-model-type-stratified.xml,0.0,0.0,1354.7,998.0,10766.2,2470.5,1969.0,3414.7,3414.7,23.454,18.276,0.0 +base-dhw-tank-oil.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1447.1,3116.7,3116.7,23.765,18.832,0.0 +base-dhw-tank-wood.xml,0.0,0.0,1354.7,998.0,11171.8,2563.6,1447.1,3116.7,3116.7,23.765,18.832,0.0 +base-dhw-tankless-detailed-setpoints.xml,0.0,0.0,1354.7,998.0,11342.7,2602.8,1444.7,3059.0,3059.0,23.457,18.273,0.0 +base-dhw-tankless-electric-outside.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1985.0,3454.9,3454.9,23.457,18.273,0.0 +base-dhw-tankless-electric-uef.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1978.8,3450.4,3450.4,23.457,18.273,0.0 +base-dhw-tankless-electric.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1985.0,3454.9,3454.9,23.457,18.273,0.0 +base-dhw-tankless-gas-uef.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1444.7,3059.0,3059.0,23.457,18.273,0.0 +base-dhw-tankless-gas-with-solar-fraction.xml,0.0,0.0,474.2,349.3,3909.2,897.0,1444.7,3059.0,3059.0,23.457,18.273,0.0 +base-dhw-tankless-gas-with-solar.xml,0.0,0.0,1344.7,989.2,9817.2,2252.7,1444.4,3086.4,3086.4,23.489,18.539,0.0 +base-dhw-tankless-gas.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1444.7,3059.0,3059.0,23.457,18.273,0.0 +base-dhw-tankless-propane.xml,0.0,0.0,1354.7,998.0,11169.0,2562.9,1444.7,3059.0,3059.0,23.457,18.273,0.0 +base-enclosure-2stories-garage.xml,0.0,0.0,1354.7,998.0,11171.6,2524.9,2315.5,4702.4,4702.4,31.454,28.374,0.0 +base-enclosure-2stories.xml,0.0,0.0,1354.7,998.0,11171.5,2410.9,2530.9,4876.6,4876.6,34.75,28.553,0.0 +base-enclosure-beds-1.xml,0.0,0.0,939.6,637.2,6162.0,1598.4,1736.2,3192.9,3192.9,23.728,17.749,0.0 +base-enclosure-beds-2.xml,0.0,0.0,1147.2,817.6,8666.7,2153.4,2029.9,3241.4,3241.4,23.539,18.06,0.0 +base-enclosure-beds-4.xml,0.0,0.0,1562.3,1178.4,13676.3,2901.1,2136.7,3623.1,3623.1,23.169,18.678,0.0 +base-enclosure-beds-5.xml,0.0,0.0,1769.9,1358.7,16181.1,3193.2,2436.8,3889.3,3889.3,22.981,18.986,0.0 +base-enclosure-ceilingtypes.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2158.7,3697.7,3697.7,30.05,19.809,0.0 +base-enclosure-floortypes.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1807.6,3389.4,3389.4,29.905,21.342,0.0 +base-enclosure-garage.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2070.9,2835.5,2835.5,19.491,12.558,0.0 +base-enclosure-infil-ach-house-pressure.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2106.7,3720.2,3720.2,23.355,18.37,0.0 +base-enclosure-infil-cfm-house-pressure.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2106.7,3720.2,3720.2,23.355,18.37,0.0 +base-enclosure-infil-cfm50.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2106.7,3720.2,3720.2,23.355,18.37,0.0 +base-enclosure-infil-ela.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2146.0,3473.1,3473.1,28.224,19.249,0.0 +base-enclosure-infil-flue.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2111.1,3739.8,3739.8,24.056,18.559,0.0 +base-enclosure-infil-natural-ach.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2147.6,3468.5,3468.5,27.984,19.204,0.0 +base-enclosure-infil-natural-cfm.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2147.6,3468.5,3468.5,27.984,19.204,0.0 +base-enclosure-orientations.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2107.2,3716.8,3716.8,23.368,18.336,0.0 +base-enclosure-overhangs.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2105.6,3325.2,3325.2,23.306,17.825,0.0 +base-enclosure-rooftypes.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2106.0,3626.2,3626.2,23.194,17.514,0.0 +base-enclosure-skylights-physical-properties.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2118.2,3779.9,3779.9,25.099,21.295,0.0 +base-enclosure-skylights-shading.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2112.1,3746.7,3746.7,23.981,18.63,0.0 +base-enclosure-skylights-storms.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2110.7,3934.6,3934.6,23.949,20.714,0.0 +base-enclosure-skylights.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2109.8,3796.7,3796.7,23.865,20.993,0.0 +base-enclosure-split-level.xml,0.0,0.0,1354.7,998.0,11171.6,2952.8,1697.5,2799.6,2799.6,13.662,13.327,0.0 +base-enclosure-thermal-mass.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2105.6,3347.5,3347.5,23.23,18.026,0.0 +base-enclosure-walltypes.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2131.6,2851.1,2851.1,26.182,12.612,0.0 +base-enclosure-windows-natural-ventilation-availability.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2105.3,3327.5,3327.5,23.355,17.836,0.0 +base-enclosure-windows-none.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2063.7,2434.6,2434.6,17.541,8.44,0.0 +base-enclosure-windows-physical-properties.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2143.3,3664.4,3664.4,28.139,21.153,0.0 +base-enclosure-windows-shading-seasons.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2105.3,3720.2,3720.2,23.355,18.37,0.0 +base-enclosure-windows-shading.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2108.2,2930.4,2930.4,23.399,11.032,0.0 +base-enclosure-windows-storms.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2102.3,3516.9,3516.9,22.811,16.457,0.0 +base-foundation-ambient.xml,0.0,2.0,1354.7,998.0,11171.5,2752.7,1744.7,3389.9,3389.9,20.981,21.461,0.0 +base-foundation-basement-garage.xml,0.0,0.0,1354.7,998.0,11171.6,2792.6,1895.9,3608.0,3608.0,21.769,18.739,0.0 +base-foundation-belly-wing-no-skirt.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1742.7,3203.8,3203.8,25.669,19.13,0.0 +base-foundation-belly-wing-skirt.xml,0.0,0.0,1354.7,998.0,11171.6,2752.7,1740.4,3225.4,3225.4,25.507,19.088,0.0 +base-foundation-complex.xml,0.0,2.0,1354.7,998.0,11171.6,2563.5,2184.1,4002.5,4002.5,33.749,21.467,0.0 +base-foundation-conditioned-basement-slab-insulation-full.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2103.6,3559.8,3559.8,22.613,20.097,0.0 +base-foundation-conditioned-basement-slab-insulation.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,2101.9,3616.3,3616.3,23.084,19.209,0.0 +base-foundation-conditioned-basement-wall-insulation.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2103.9,3605.4,3605.4,23.543,18.202,0.0 +base-foundation-conditioned-crawlspace.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1713.4,2766.7,2766.7,16.166,11.777,0.0 +base-foundation-multiple.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1680.4,2849.5,2849.5,15.869,15.816,0.0 +base-foundation-slab.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1689.9,2867.3,2867.3,13.29,13.384,0.0 +base-foundation-unconditioned-basement-above-grade.xml,0.0,0.0,1354.7,998.0,11171.6,2652.8,1678.4,2942.6,2942.6,17.085,16.716,0.0 +base-foundation-unconditioned-basement-assembly-r.xml,0.0,0.0,1354.7,998.0,11171.5,2652.8,1659.3,2726.7,2726.7,15.306,14.596,0.0 +base-foundation-unconditioned-basement-wall-insulation.xml,0.0,0.0,1354.7,998.0,11171.6,2652.8,1700.9,2787.6,2787.6,17.463,13.002,0.0 +base-foundation-unconditioned-basement.xml,0.0,0.0,1354.7,998.0,11171.6,2652.8,1678.3,2866.4,2866.4,16.098,15.99,0.0 +base-foundation-unvented-crawlspace.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1687.4,2821.3,2821.3,14.974,15.496,0.0 +base-foundation-vented-crawlspace-above-grade.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1716.0,3259.2,3259.2,17.067,16.646,0.0 +base-foundation-vented-crawlspace.xml,0.0,0.0,1354.7,998.0,11171.5,2752.7,1715.4,2891.5,2891.5,17.076,16.319,0.0 +base-foundation-walkout-basement.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2138.3,3912.6,3912.6,27.015,20.248,0.0 +base-hvac-air-to-air-heat-pump-1-speed-autosize-factor.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,6859.6,3537.1,6859.6,23.811,14.747,0.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1924.9,3332.5,3332.5,0.0,16.007,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-capacity-17f.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7145.2,3704.1,7145.2,24.758,16.294,0.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7193.3,1786.0,7193.3,24.985,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,147.0,0.0,1354.7,998.0,11171.6,2563.5,10471.1,3620.6,10471.1,38.103,16.135,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7145.2,3698.1,7145.2,24.758,16.294,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7145.2,3704.1,7145.2,24.758,16.294,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7124.6,3222.2,7124.6,24.752,17.264,0.0 +base-hvac-air-to-air-heat-pump-var-speed-autosize-maxload.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4164.1,2930.7,4164.1,22.294,15.642,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-hvac-seasons.xml,1.0,9.0,1354.7,998.0,11171.5,2563.5,3219.9,2926.9,3219.9,23.017,17.749,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,244.0,9.0,1354.7,998.0,11171.6,2563.5,3180.2,3083.3,3180.2,23.298,17.749,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1.0,9.0,1354.7,998.0,11171.6,2563.5,3220.0,3264.2,3264.2,23.017,17.75,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace-autosize-factor.xml,2.0,0.0,1354.7,998.0,11171.6,2563.5,3262.2,2947.7,3262.2,30.441,16.879,0.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,2.0,9.0,1354.7,998.0,11171.6,2563.5,3222.6,3264.2,3264.2,26.419,17.749,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-autosize.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5618.9,4010.6,5618.9,25.001,18.363,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-heating-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5216.8,3521.2,5216.8,24.748,18.109,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-normalized-capacities.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5233.5,3855.7,5233.5,24.748,18.093,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance-other-temperatures.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,8444.3,3756.4,8444.3,24.745,18.136,0.0 +base-hvac-air-to-air-heat-pump-var-speed-detailed-performance.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5216.9,3852.9,5216.9,24.748,18.092,0.0 +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-10-mins.xml,172.0,0.0,1354.7,998.0,11171.7,2563.6,10233.3,4507.5,10233.3,31.056,20.56,0.0 +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule-two-systems.xml,31.0,1.0,1354.7,998.0,11171.6,2563.5,5461.5,3788.8,5461.5,27.361,19.533,0.0 +base-hvac-air-to-air-heat-pump-var-speed-max-power-ratio-schedule.xml,163.0,0.0,1354.7,998.0,11171.6,2563.5,5910.7,3149.1,5910.7,25.201,18.107,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5900.1,3149.3,5900.1,24.811,18.109,0.0 +base-hvac-autosize-sizing-controls.xml,0.0,0.0,2180.8,1715.9,21140.4,3685.7,2508.1,3581.8,3581.8,17.37,15.022,0.0 +base-hvac-autosize.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2110.4,3821.4,3821.4,24.11,18.629,0.0 +base-hvac-boiler-coal-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.9,1785.9,1975.9,16.778,0.0,0.0 +base-hvac-boiler-elec-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,5998.2,1785.9,5998.2,16.778,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2008.6,3982.6,3982.6,16.778,18.958,0.0 +base-hvac-boiler-gas-only-pilot.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1958.4,1785.9,1958.4,16.778,0.0,0.0 +base-hvac-boiler-gas-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1958.4,1785.9,1958.4,16.778,0.0,0.0 +base-hvac-boiler-oil-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1975.9,1785.9,1975.9,16.778,0.0,0.0 +base-hvac-boiler-propane-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1954.4,1785.9,1954.4,16.778,0.0,0.0 +base-hvac-boiler-wood-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1954.4,1785.9,1954.4,16.778,0.0,0.0 +base-hvac-central-ac-only-1-speed-autosize-factor.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3345.8,3345.8,0.0,15.972,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3602.9,3602.9,0.0,18.642,0.0 +base-hvac-central-ac-only-1-speed.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3609.5,3609.5,0.0,18.642,0.0 +base-hvac-central-ac-only-2-speed.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3116.5,3116.5,0.0,19.111,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance-autosize.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,4044.0,4044.0,0.0,18.889,0.0 +base-hvac-central-ac-only-var-speed-detailed-performance.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,3542.1,3542.1,0.0,17.838,0.0 +base-hvac-central-ac-only-var-speed-max-power-ratio-schedule.xml,0.0,6.0,1354.7,998.0,11171.5,2563.5,1974.9,3130.2,3130.2,0.0,20.586,0.0 +base-hvac-central-ac-only-var-speed.xml,0.0,0.0,1354.7,998.0,11171.5,2563.5,1974.9,2906.4,2906.4,0.0,18.855,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7263.4,3982.7,7263.4,24.985,18.959,0.0 base-hvac-dse.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2075.3,3087.3,3087.3,16.762,12.09,0.0 base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,3657.9,3704.1,3704.1,24.75,16.294,0.0 base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,3489.3,3704.1,3704.1,24.748,16.294,0.0 @@ -27,7 +247,7 @@ base-hvac-furnace-elec-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,7948.6,1786. base-hvac-furnace-gas-central-ac-2-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2106.7,3366.8,3366.8,23.355,18.967,0.0 base-hvac-furnace-gas-central-ac-var-speed-max-power-ratio-schedule.xml,0.0,6.0,1354.7,998.0,11171.6,2563.5,2106.7,3378.2,3378.2,23.355,20.429,0.0 base-hvac-furnace-gas-central-ac-var-speed.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2106.7,3174.0,3174.0,23.355,18.742,0.0 -base-hvac-furnace-gas-only-autosize-factor.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2048.1,1786.0,2048.1,21.712,0.0,0.0 +base-hvac-furnace-gas-only-autosize-factor.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2048.8,1786.0,2048.8,21.843,0.0,0.0 base-hvac-furnace-gas-only-detailed-setpoints.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,1998.1,1804.8,1998.1,17.795,0.0,0.0 base-hvac-furnace-gas-only-pilot.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2055.9,1786.0,2055.9,23.355,0.0,0.0 base-hvac-furnace-gas-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,2055.9,1786.0,2055.9,23.355,0.0,0.0 @@ -62,6 +282,7 @@ base-hvac-mini-split-heat-pump-ducted-heating-only-max-power-ratio-schedule.xml, base-hvac-mini-split-heat-pump-ducted-heating-only.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4354.4,1785.9,4354.4,19.362,0.0,0.0 base-hvac-mini-split-heat-pump-ducted-max-power-ratio-schedule.xml,97.0,0.0,1354.7,998.0,11171.6,2563.5,4128.4,2875.6,4128.4,19.47,14.183,0.0 base-hvac-mini-split-heat-pump-ducted.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4347.1,2875.6,4347.1,19.341,14.184,0.0 +base-hvac-mini-split-heat-pump-ductless-autosize-factor.xml,1.0,0.0,1354.7,998.0,11171.6,2563.5,3643.8,2803.3,3643.8,16.151,12.088,0.0 base-hvac-mini-split-heat-pump-ductless-backup-baseboard.xml,0.0,0.0,1354.7,998.0,11171.6,2563.5,4413.1,3100.7,4413.1,16.762,12.092,0.0 base-hvac-mini-split-heat-pump-ductless-backup-furnace-ducts-defaults.xml,2.0,0.0,1354.7,998.0,11171.6,2563.5,2953.5,3118.8,3118.8,17.575,12.255,0.0 base-hvac-mini-split-heat-pump-ductless-backup-furnace.xml,1.0,0.0,1354.7,998.0,11171.6,2563.5,2871.7,3100.7,3100.7,17.772,12.092,0.0 diff --git a/hpxml-measures/workflow/tests/compare.py b/hpxml-measures/workflow/tests/compare.py index 3aa2a4732..30249eeea 100644 --- a/hpxml-measures/workflow/tests/compare.py +++ b/hpxml-measures/workflow/tests/compare.py @@ -343,7 +343,7 @@ def read_csv(csv_file_path, **kwargs) -> pd.DataFrame: if __name__ == '__main__': default_base_folder = 'workflow/tests/base_results' - default_feature_folder = 'workflow/tests/results' + default_feature_folder = 'workflow/tests/test_results' default_export_folder = 'workflow/tests/comparisons' actions = [method for method in dir(BaseCompare) if method.startswith('__') is False] diff --git a/hpxml-measures/workflow/tests/merge.py b/hpxml-measures/workflow/tests/merge.py new file mode 100644 index 000000000..2616c6281 --- /dev/null +++ b/hpxml-measures/workflow/tests/merge.py @@ -0,0 +1,22 @@ +import os +import sys +import pandas as pd + + +# Combines two CSV files (that have potentially different column names). + +if __name__ == "__main__": + + if len(sys.argv) != 4: + sys.exit("Usage: merge.py file1.csv file2.csv merged.csv") + + csv1_path = os.path.abspath(sys.argv[1]) + csv2_path = os.path.abspath(sys.argv[2]) + merged_path = os.path.abspath(sys.argv[3]) + + df1 = pd.read_csv(csv1_path) + df2 = pd.read_csv(csv2_path) + + df3 = pd.concat([df1, df2], ignore_index=True) + + df3.to_csv(merged_path, index=False) diff --git a/hpxml-measures/workflow/tests/test_ashrae_140.rb b/hpxml-measures/workflow/tests/test_ashrae_140.rb index 5adda9b3d..7d94a4e9c 100644 --- a/hpxml-measures/workflow/tests/test_ashrae_140.rb +++ b/hpxml-measures/workflow/tests/test_ashrae_140.rb @@ -8,12 +8,12 @@ require_relative 'util.rb' class WorkflowASHRAE140Test < Minitest::Test - def test_simulations_ashrae_140 - results_dir = File.join(File.dirname(__FILE__), 'results') + def test_ashrae_140 + results_dir = File.join(File.dirname(__FILE__), 'test_results') FileUtils.mkdir_p results_dir - results_out = File.join(results_dir, 'results_ashrae_140.csv') - File.delete(results_out) if File.exist? results_out + test_results_csv = File.join(results_dir, 'results_ashrae_140.csv') + File.delete(test_results_csv) if File.exist? test_results_csv xmls = [] ashrae140_dir = File.absolute_path(File.join(File.dirname(__FILE__), 'ASHRAE_Standard_140')) @@ -22,34 +22,21 @@ def test_simulations_ashrae_140 end all_results = run_simulation_tests(xmls) - _write_ashrae_140_results(all_results.sort_by { |k, _v| k.downcase }.to_h, results_out) - end - - def _write_ashrae_140_results(all_results, csv_out) - require 'csv' - - htg_loads = {} - clg_loads = {} - CSV.open(csv_out, 'w') do |csv| - csv << ['Test Case', 'Annual Heating Load [MMBtu]', 'Annual Cooling Load [MMBtu]'] - all_results.sort.each do |xml, xml_results| - next unless xml.include? 'C.xml' - - htg_load = xml_results['Load: Heating: Delivered (MBtu)'].round(2) - csv << [File.basename(xml), htg_load, 'N/A'] - test_name = File.basename(xml, File.extname(xml)) - htg_loads[test_name] = htg_load - end - all_results.sort.each do |xml, xml_results| - next unless xml.include? 'L.xml' - - clg_load = xml_results['Load: Cooling: Delivered (MBtu)'].round(2) - csv << [File.basename(xml), 'N/A', clg_load] - test_name = File.basename(xml, File.extname(xml)) - clg_loads[test_name] = clg_load + load_results = {} + all_results.each do |xml, results| + htg_load, clg_load = _get_simulation_load_results(results) + if xml.include? 'C.xml' + load_results[xml] = [htg_load, 'N/A'] + assert_operator(htg_load, :>, 0) + elsif xml.include? 'L.xml' + load_results[xml] = ['N/A', clg_load] + assert_operator(clg_load, :>, 0) end end - puts "Wrote ASHRAE 140 results to #{csv_out}." + htg_loads, clg_loads = _write_ashrae_140_results(load_results, test_results_csv) + + # Check results + _check_ashrae_140_results(htg_loads, clg_loads) end end diff --git a/hpxml-measures/workflow/tests/test_hers.rb b/hpxml-measures/workflow/tests/test_hers.rb new file mode 100644 index 000000000..f78275607 --- /dev/null +++ b/hpxml-measures/workflow/tests/test_hers.rb @@ -0,0 +1,99 @@ +# frozen_string_literal: true + +require_relative '../../HPXMLtoOpenStudio/resources/minitest_helper' +require 'openstudio' +require 'fileutils' +require 'parallel' +require 'csv' +require_relative '../../HPXMLtoOpenStudio/measure.rb' +require_relative 'util.rb' + +class WorkflowHERSTest < Minitest::Test + def test_hers_hvac + results_dir = File.join(File.dirname(__FILE__), 'test_results') + FileUtils.mkdir_p results_dir + + test_results_csv = File.join(results_dir, 'results_hers_hvac.csv') + File.delete(test_results_csv) if File.exist? test_results_csv + + xmls = [] + hers_hvac_dir = File.absolute_path(File.join(File.dirname(__FILE__), 'HERS_HVAC')) + Dir["#{hers_hvac_dir}/*.xml"].sort.each do |xml| + xmls << File.absolute_path(xml) + end + all_results = run_simulation_tests(xmls) + + hvac_results = {} + all_results.each do |xml, results| + is_heat = false + if xml.include? 'HVAC2' + is_heat = true + end + is_electric_heat = true + if xml.include?('HVAC2a') || xml.include?('HVAC2b') + is_electric_heat = false + end + hvac_results[xml] = _get_simulation_hvac_energy_results(results, is_heat, is_electric_heat) + end + + hvac_energy = _write_hers_hvac_results(hvac_results, test_results_csv) + + # Check results + _check_hvac_test_results(hvac_energy) + end + + def test_hers_dse + results_dir = File.join(File.dirname(__FILE__), 'test_results') + FileUtils.mkdir_p results_dir + + test_results_csv = File.join(results_dir, 'results_hers_dse.csv') + File.delete(test_results_csv) if File.exist? test_results_csv + + xmls = [] + hers_dse_dir = File.absolute_path(File.join(File.dirname(__FILE__), 'HERS_DSE')) + Dir["#{hers_dse_dir}/*.xml"].sort.each do |xml| + xmls << File.absolute_path(xml) + end + all_results = run_simulation_tests(xmls) + + dse_results = {} + all_results.each do |xml, results| + is_heat = false + if ['HVAC3a.xml', 'HVAC3b.xml', 'HVAC3c.xml', 'HVAC3d.xml'].include? File.basename(xml) + is_heat = true + end + is_electric_heat = false + dse_results[xml] = _get_simulation_hvac_energy_results(results, is_heat, is_electric_heat) + end + + dse_energy = _write_hers_dse_results(dse_results, test_results_csv) + + # Check results + _check_dse_test_results(dse_energy) + end + + def test_hers_hot_water + results_dir = File.join(File.dirname(__FILE__), 'test_results') + FileUtils.mkdir_p results_dir + + test_results_csv = File.join(results_dir, 'results_hers_hot_water.csv') + File.delete(test_results_csv) if File.exist? test_results_csv + + xmls = [] + hers_hot_water_dir = File.absolute_path(File.join(File.dirname(__FILE__), 'HERS_Hot_Water')) + Dir["#{hers_hot_water_dir}/*.xml"].sort.each do |xml| + xmls << File.absolute_path(xml) + end + all_results = run_simulation_tests(xmls) + + dhw_results = {} + all_results.each do |xml, results| + dhw_results[xml] = _get_simulation_hot_water_results(results) + end + + dhw_energy = _write_hers_hot_water_results(dhw_results, test_results_csv) + + # Check results + _check_hot_water(dhw_energy) + end +end diff --git a/hpxml-measures/workflow/tests/test_simulations1.rb b/hpxml-measures/workflow/tests/test_simulations1.rb index f26b6505c..4994049cb 100644 --- a/hpxml-measures/workflow/tests/test_simulations1.rb +++ b/hpxml-measures/workflow/tests/test_simulations1.rb @@ -9,11 +9,11 @@ class WorkflowSimulations1Test < Minitest::Test def test_simulations1 - results_dir = File.join(File.dirname(__FILE__), 'results') + results_dir = File.join(File.dirname(__FILE__), 'test_results') FileUtils.mkdir_p results_dir - results_out = File.join(results_dir, 'results_simulations1.csv') - Dir.glob("#{File.dirname(results_out)}/#{File.basename(results_out).gsub('.csv', '*.csv')}").each { |file| File.delete(file) } + test_results_csv = File.join(results_dir, 'results_simulations1.csv') + Dir.glob("#{File.dirname(test_results_csv)}/#{File.basename(test_results_csv).gsub('.csv', '*.csv')}").each { |file| File.delete(file) } sample_files_dir = File.absolute_path(File.join(File.dirname(__FILE__), '..', 'sample_files')) real_homes_dir = File.absolute_path(File.join(File.dirname(__FILE__), '..', 'real_homes')) @@ -32,6 +32,6 @@ def test_simulations1 xmls = xmls[0..split_at_file - 1] all_annual_results = run_simulation_tests(xmls) - _write_results(all_annual_results.sort_by { |k, _v| k.downcase }.to_h, results_out) + _write_results(all_annual_results.sort_by { |k, _v| k.downcase }.to_h, test_results_csv) end end diff --git a/hpxml-measures/workflow/tests/test_simulations2.rb b/hpxml-measures/workflow/tests/test_simulations2.rb index f8e37cd24..2a53ccc50 100644 --- a/hpxml-measures/workflow/tests/test_simulations2.rb +++ b/hpxml-measures/workflow/tests/test_simulations2.rb @@ -9,11 +9,11 @@ class WorkflowSimulations2Test < Minitest::Test def test_simulations2 - results_dir = File.join(File.dirname(__FILE__), 'results') + results_dir = File.join(File.dirname(__FILE__), 'test_results') FileUtils.mkdir_p results_dir - results_out = File.join(results_dir, 'results_simulations2.csv') - Dir.glob("#{File.dirname(results_out)}/#{File.basename(results_out).gsub('.csv', '*.csv')}").each { |file| File.delete(file) } + test_results_csv = File.join(results_dir, 'results_simulations2.csv') + Dir.glob("#{File.dirname(test_results_csv)}/#{File.basename(test_results_csv).gsub('.csv', '*.csv')}").each { |file| File.delete(file) } sample_files_dir = File.absolute_path(File.join(File.dirname(__FILE__), '..', 'sample_files')) real_homes_dir = File.absolute_path(File.join(File.dirname(__FILE__), '..', 'real_homes')) @@ -32,6 +32,6 @@ def test_simulations2 xmls = xmls[split_at_file..-1] all_annual_results = run_simulation_tests(xmls) - _write_results(all_annual_results.sort_by { |k, _v| k.downcase }.to_h, results_out) + _write_results(all_annual_results.sort_by { |k, _v| k.downcase }.to_h, test_results_csv) end end diff --git a/hpxml-measures/workflow/tests/util.rb b/hpxml-measures/workflow/tests/util.rb index 2f84153a4..eb959d118 100644 --- a/hpxml-measures/workflow/tests/util.rb +++ b/hpxml-measures/workflow/tests/util.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true +require 'csv' + def run_simulation_tests(xmls) # Run simulations puts "Running #{xmls.size} HPXML files..." @@ -68,7 +70,7 @@ def _run_xml(xml, worker_num, apply_unit_multiplier = false, annual_results_1x = print "Testing #{File.basename(xml)}...\n" - rundir = File.join(File.dirname(__FILE__), "test#{worker_num}") + rundir = File.join(File.dirname(__FILE__), "run#{worker_num}") # Uses 'monthly' to verify timeseries results match annual results via error-checking # inside the ReportSimulationOutput measure. cli_path = OpenStudio.getOpenStudioCLI @@ -782,29 +784,33 @@ def _verify_outputs(rundir, hpxml_path, results, hpxml, unit_multiplier) query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{door_id}' AND ColumnName='Gross Area' AND Units='m2'" sql_value = UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'm^2', 'ft^2') assert_operator(sql_value, :>, 0.01) - assert_in_epsilon(hpxml_value, sql_value, 0.1) + assert_in_delta(hpxml_value, sql_value, 0.1) end # R-Value next if door.r_value.nil? + hpxml_value = door.r_value if door.is_exterior col_name = 'U-Factor with Film' else col_name = 'U-Factor no Film' - end - hpxml_value = door.r_value - if door.is_interior - hpxml_value -= Material.AirFilmVertical.rvalue - hpxml_value -= Material.AirFilmVertical.rvalue + hpxml_value -= 2 * Material.AirFilmVertical.rvalue end query = "SELECT Value FROM TabularDataWithStrings WHERE ReportName='EnvelopeSummary' AND ReportForString='Entire Facility' AND TableName='#{table_name}' AND RowName='#{door_id}' AND ColumnName='#{col_name}' AND Units='W/m2-K'" sql_value = 1.0 / UnitConversions.convert(sqlFile.execAndReturnFirstDouble(query).get, 'W/(m^2*K)', 'Btu/(hr*ft^2*F)') - assert_in_epsilon(hpxml_value, sql_value, 0.1) + assert_in_delta(hpxml_value, sql_value, 0.2) + end + + is_warm_climate = false + if ['USA_FL_Miami.Intl.AP.722020_TMY3.epw', + 'USA_HI_Honolulu.Intl.AP.911820_TMY3.epw', + 'USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw'].include? hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath + is_warm_climate = true end # HVAC Load Fractions - if (not hpxml_path.include? 'location-miami') && (not hpxml_path.include? 'location-honolulu') && (not hpxml_path.include? 'location-phoenix') + if not is_warm_climate htg_energy = results.select { |k, _v| (k.include?(': Heating (MBtu)') || k.include?(': Heating Fans/Pumps (MBtu)')) && !k.include?('Load') }.values.sum(0.0) assert_equal(hpxml_bldg.total_fraction_heat_load_served > 0, htg_energy > 0) end @@ -913,13 +919,6 @@ def _verify_outputs(rundir, hpxml_path, results, hpxml, unit_multiplier) end end - is_warm_climate = false - if ['USA_FL_Miami.Intl.AP.722020_TMY3.epw', - 'USA_HI_Honolulu.Intl.AP.911820_TMY3.epw', - 'USA_AZ_Phoenix-Sky.Harbor.Intl.AP.722780_TMY3.epw'].include? hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath - is_warm_climate = true - end - # Fuel consumption checks [HPXML::FuelTypeNaturalGas, HPXML::FuelTypeOil, @@ -1157,3 +1156,384 @@ def _write_results(results, csv_out) puts "Wrote results to #{csv_out.gsub('.csv', '_*.csv')}." end + +# NOTE: Methods below are used by both OS-HPXML & OS-ERI + +def _write_ashrae_140_results(all_results, test_results_csv) + # Write results to csv + all_results = all_results.sort_by { |k, _v| k.downcase }.to_h + htg_loads = {} + clg_loads = {} + CSV.open(test_results_csv, 'w') do |csv| + csv << ['Test Case', 'Annual Heating Load [MMBtu]', 'Annual Cooling Load [MMBtu]'] + all_results.each do |xml, results| + next unless xml.include? 'C.xml' + + csv << [xml] + results + test_name = File.basename(xml, File.extname(xml)) + htg_loads[test_name] = results[0] + end + all_results.each do |xml, results| + next unless xml.include? 'L.xml' + + csv << [xml] + results + test_name = File.basename(xml, File.extname(xml)) + clg_loads[test_name] = results[1] + end + end + puts "Wrote results to #{test_results_csv}." + + return htg_loads, clg_loads +end + +def _write_hers_hvac_results(all_results, test_results_csv) + # Write results to csv + all_results = all_results.sort_by { |k, _v| k.downcase }.to_h + hvac_energy = {} + CSV.open(test_results_csv, 'w') do |csv| + csv << ['Test Case', 'HVAC (kWh or therm)', 'HVAC Fan (kWh)'] + all_results.each do |xml, results| + csv << [xml, results[0], results[1]] + test_name = File.basename(xml, File.extname(xml)) + if xml.include?('HVAC2a') || xml.include?('HVAC2b') + hvac_energy[test_name] = results[0] / 10.0 + results[1] / 293.08 + else + hvac_energy[test_name] = results[0] + results[1] + end + end + end + puts "Wrote results to #{test_results_csv}." + + return hvac_energy +end + +def _write_hers_dse_results(all_results, test_results_csv) + # Write results to csv + all_results = all_results.sort_by { |k, _v| k.downcase }.to_h + dhw_energy = {} + CSV.open(test_results_csv, 'w') do |csv| + csv << ['Test Case', 'Heat/Cool (kWh or therm)', 'HVAC Fan (kWh)'] + all_results.each do |xml, results| + next unless ['HVAC3a.xml', 'HVAC3e.xml'].include? xml + + csv << [xml, results[0], results[1]] + test_name = File.basename(xml, File.extname(xml)) + dhw_energy[test_name] = results[0] / 10.0 + results[1] / 293.08 + end + all_results.each do |xml, results| + next if ['HVAC3a.xml', 'HVAC3e.xml'].include? xml + + csv << [xml, results[0], results[1]] + test_name = File.basename(xml, File.extname(xml)) + dhw_energy[test_name] = results[0] / 10.0 + results[1] / 293.08 + end + end + puts "Wrote results to #{test_results_csv}." + + return dhw_energy +end + +def _write_hers_hot_water_results(all_results, test_results_csv) + # Write results to csv + all_results = all_results.sort_by { |k, _v| k.downcase }.to_h + dhw_energy = {} + CSV.open(test_results_csv, 'w') do |csv| + csv << ['Test Case', 'DHW Energy (therms)', 'Recirc Pump (kWh)'] + all_results.each do |xml, result| + wh_energy, recirc_energy = result + csv << [xml, (wh_energy * 10.0).round(1), (recirc_energy * 293.08).round(1)] + test_name = File.basename(xml, File.extname(xml)) + dhw_energy[test_name] = wh_energy + recirc_energy + end + end + puts "Wrote results to #{test_results_csv}." + + return dhw_energy +end + +def _get_simulation_load_results(results) + htg_load = results['Load: Heating: Delivered (MBtu)'].round(2) + clg_load = results['Load: Cooling: Delivered (MBtu)'].round(2) + + return htg_load, clg_load +end + +def _get_simulation_hvac_energy_results(results, is_heat, is_electric_heat) + if not is_heat + hvac = UnitConversions.convert(results["End Use: #{FT::Elec}: #{EUT::Cooling} (MBtu)"], 'MBtu', 'kwh').round(2) + hvac_fan = UnitConversions.convert(results["End Use: #{FT::Elec}: #{EUT::CoolingFanPump} (MBtu)"], 'MBtu', 'kwh').round(2) + else + if is_electric_heat + hvac = UnitConversions.convert(results["End Use: #{FT::Elec}: #{EUT::Heating} (MBtu)"], 'MBtu', 'kwh').round(2) + else + hvac = UnitConversions.convert(results["End Use: #{FT::Gas}: #{EUT::Heating} (MBtu)"], 'MBtu', 'therm').round(2) + end + hvac_fan = UnitConversions.convert(results["End Use: #{FT::Elec}: #{EUT::HeatingFanPump} (MBtu)"], 'MBtu', 'kwh').round(2) + end + + assert_operator(hvac, :>, 0) + assert_operator(hvac_fan, :>, 0) + + return hvac.round(2), hvac_fan.round(2) +end + +def _get_simulation_hot_water_results(results) + dhw_energy = (results["End Use: #{FT::Gas}: #{EUT::HotWater} (MBtu)"] + + results["End Use: #{FT::Elec}: #{EUT::HotWater} (MBtu)"]).round(2) + recirc_energy = results["End Use: #{FT::Elec}: #{EUT::HotWaterRecircPump} (MBtu)"].round(2) + return dhw_energy, recirc_energy +end + +def _check_ashrae_140_results(htg_loads, clg_loads) + # Pub 002-2024 + htg_min = [48.07, 74.30, 35.98, 39.74, 45.72, 39.13, 42.17, 48.30, 58.15, 121.76, 126.71, 24.59, 27.72, 57.57, 48.33] + htg_max = [61.35, 82.96, 48.09, 49.95, 51.97, 55.54, 58.15, 63.40, 74.24, 137.68, 146.84, 81.73, 70.27, 91.66, 56.47] + htg_dt_min = [17.53, -16.08, -12.92, -12.14, -10.90, -0.56, -1.96, 8.15, 71.16, 3.20, -25.78, -3.14, 7.79, 5.49] + htg_dt_max = [29.62, -9.44, -5.89, 0.24, -3.37, 6.42, 4.54, 15.14, 79.06, 11.26, 22.68, 11.47, 32.01, 38.95] + clg_min = [42.50, 47.72, 41.15, 31.54, 21.03, 50.55, 36.63, 52.26, 34.16, 57.07, 50.19] + clg_max = [58.66, 61.33, 51.69, 41.85, 29.35, 73.48, 59.72, 68.60, 47.58, 73.51, 60.72] + clg_dt_min = [0.69, -8.24, -18.53, -30.58, 7.51, -16.52, 6.75, -12.95, 11.62, 5.12] + clg_dt_max = [6.91, -0.22, -9.74, -20.48, 15.77, -11.15, 12.76, -6.58, 17.59, 14.14] + + # Annual Heating Loads + assert_operator(htg_loads['L100AC'], :<=, htg_max[0]) + assert_operator(htg_loads['L100AC'], :>=, htg_min[0]) + assert_operator(htg_loads['L110AC'], :<=, htg_max[1]) + assert_operator(htg_loads['L110AC'], :>=, htg_min[1]) + assert_operator(htg_loads['L120AC'], :<=, htg_max[2]) + assert_operator(htg_loads['L120AC'], :>=, htg_min[2]) + assert_operator(htg_loads['L130AC'], :<=, htg_max[3]) + assert_operator(htg_loads['L130AC'], :>=, htg_min[3]) + assert_operator(htg_loads['L140AC'], :<=, htg_max[4]) + assert_operator(htg_loads['L140AC'], :>=, htg_min[4]) + assert_operator(htg_loads['L150AC'], :<=, htg_max[5]) + assert_operator(htg_loads['L150AC'], :>=, htg_min[5]) + assert_operator(htg_loads['L155AC'], :<=, htg_max[6]) + assert_operator(htg_loads['L155AC'], :>=, htg_min[6]) + assert_operator(htg_loads['L160AC'], :<=, htg_max[7]) + assert_operator(htg_loads['L160AC'], :>=, htg_min[7]) + assert_operator(htg_loads['L170AC'], :<=, htg_max[8]) + assert_operator(htg_loads['L170AC'], :>=, htg_min[8]) + assert_operator(htg_loads['L200AC'], :<=, htg_max[9]) + assert_operator(htg_loads['L200AC'], :>=, htg_min[9]) + assert_operator(htg_loads['L202AC'], :<=, htg_max[10]) + assert_operator(htg_loads['L202AC'], :>=, htg_min[10]) + assert_operator(htg_loads['L302XC'], :<=, htg_max[11]) + assert_operator(htg_loads['L302XC'], :>=, htg_min[11]) + assert_operator(htg_loads['L304XC'], :<=, htg_max[12]) + assert_operator(htg_loads['L304XC'], :>=, htg_min[12]) + assert_operator(htg_loads['L322XC'], :<=, htg_max[13]) + assert_operator(htg_loads['L322XC'], :>=, htg_min[13]) + assert_operator(htg_loads['L324XC'], :<=, htg_max[14]) + assert_operator(htg_loads['L324XC'], :>=, htg_min[14]) + + # Annual Heating Load Deltas + assert_operator(htg_loads['L110AC'] - htg_loads['L100AC'], :<=, htg_dt_max[0]) + assert_operator(htg_loads['L110AC'] - htg_loads['L100AC'], :>=, htg_dt_min[0]) + assert_operator(htg_loads['L120AC'] - htg_loads['L100AC'], :<=, htg_dt_max[1]) + assert_operator(htg_loads['L120AC'] - htg_loads['L100AC'], :>=, htg_dt_min[1]) + assert_operator(htg_loads['L130AC'] - htg_loads['L100AC'], :<=, htg_dt_max[2]) + assert_operator(htg_loads['L130AC'] - htg_loads['L100AC'], :>=, htg_dt_min[2]) + assert_operator(htg_loads['L140AC'] - htg_loads['L100AC'], :<=, htg_dt_max[3]) + assert_operator(htg_loads['L140AC'] - htg_loads['L100AC'], :>=, htg_dt_min[3]) + assert_operator(htg_loads['L150AC'] - htg_loads['L100AC'], :<=, htg_dt_max[4]) + assert_operator(htg_loads['L150AC'] - htg_loads['L100AC'], :>=, htg_dt_min[4]) + assert_operator(htg_loads['L155AC'] - htg_loads['L150AC'], :<=, htg_dt_max[5]) + assert_operator(htg_loads['L155AC'] - htg_loads['L150AC'], :>=, htg_dt_min[5]) + assert_operator(htg_loads['L160AC'] - htg_loads['L100AC'], :<=, htg_dt_max[6]) + assert_operator(htg_loads['L160AC'] - htg_loads['L100AC'], :>=, htg_dt_min[6]) + assert_operator(htg_loads['L170AC'] - htg_loads['L100AC'], :<=, htg_dt_max[7]) + assert_operator(htg_loads['L170AC'] - htg_loads['L100AC'], :>=, htg_dt_min[7]) + assert_operator(htg_loads['L200AC'] - htg_loads['L100AC'], :<=, htg_dt_max[8]) + assert_operator(htg_loads['L200AC'] - htg_loads['L100AC'], :>=, htg_dt_min[8]) + assert_operator(htg_loads['L202AC'] - htg_loads['L200AC'], :<=, htg_dt_max[9]) + assert_operator(htg_loads['L202AC'] - htg_loads['L200AC'], :>=, htg_dt_min[9]) + assert_operator(htg_loads['L302XC'] - htg_loads['L100AC'], :<=, htg_dt_max[10]) + assert_operator(htg_loads['L302XC'] - htg_loads['L100AC'], :>=, htg_dt_min[10]) + assert_operator(htg_loads['L302XC'] - htg_loads['L304XC'], :<=, htg_dt_max[11]) + assert_operator(htg_loads['L302XC'] - htg_loads['L304XC'], :>=, htg_dt_min[11]) + assert_operator(htg_loads['L322XC'] - htg_loads['L100AC'], :<=, htg_dt_max[12]) + assert_operator(htg_loads['L322XC'] - htg_loads['L100AC'], :>=, htg_dt_min[12]) + assert_operator(htg_loads['L322XC'] - htg_loads['L324XC'], :<=, htg_dt_max[13]) + assert_operator(htg_loads['L322XC'] - htg_loads['L324XC'], :>=, htg_dt_min[13]) + + # Annual Cooling Loads + assert_operator(clg_loads['L100AL'], :<=, clg_max[0]) + assert_operator(clg_loads['L100AL'], :>=, clg_min[0]) + assert_operator(clg_loads['L110AL'], :<=, clg_max[1]) + assert_operator(clg_loads['L110AL'], :>=, clg_min[1]) + assert_operator(clg_loads['L120AL'], :<=, clg_max[2]) + assert_operator(clg_loads['L120AL'], :>=, clg_min[2]) + assert_operator(clg_loads['L130AL'], :<=, clg_max[3]) + assert_operator(clg_loads['L130AL'], :>=, clg_min[3]) + assert_operator(clg_loads['L140AL'], :<=, clg_max[4]) + assert_operator(clg_loads['L140AL'], :>=, clg_min[4]) + assert_operator(clg_loads['L150AL'], :<=, clg_max[5]) + assert_operator(clg_loads['L150AL'], :>=, clg_min[5]) + assert_operator(clg_loads['L155AL'], :<=, clg_max[6]) + assert_operator(clg_loads['L155AL'], :>=, clg_min[6]) + assert_operator(clg_loads['L160AL'], :<=, clg_max[7]) + assert_operator(clg_loads['L160AL'], :>=, clg_min[7]) + assert_operator(clg_loads['L170AL'], :<=, clg_max[8]) + assert_operator(clg_loads['L170AL'], :>=, clg_min[8]) + assert_operator(clg_loads['L200AL'], :<=, clg_max[9]) + assert_operator(clg_loads['L200AL'], :>=, clg_min[9]) + assert_operator(clg_loads['L202AL'], :<=, clg_max[10]) + assert_operator(clg_loads['L202AL'], :>=, clg_min[10]) + + # Annual Cooling Load Deltas + assert_operator(clg_loads['L110AL'] - clg_loads['L100AL'], :<=, clg_dt_max[0]) + assert_operator(clg_loads['L110AL'] - clg_loads['L100AL'], :>=, clg_dt_min[0]) + assert_operator(clg_loads['L120AL'] - clg_loads['L100AL'], :<=, clg_dt_max[1]) + assert_operator(clg_loads['L120AL'] - clg_loads['L100AL'], :>=, clg_dt_min[1]) + assert_operator(clg_loads['L130AL'] - clg_loads['L100AL'], :<=, clg_dt_max[2]) + assert_operator(clg_loads['L130AL'] - clg_loads['L100AL'], :>=, clg_dt_min[2]) + assert_operator(clg_loads['L140AL'] - clg_loads['L100AL'], :<=, clg_dt_max[3]) + assert_operator(clg_loads['L140AL'] - clg_loads['L100AL'], :>=, clg_dt_min[3]) + assert_operator(clg_loads['L150AL'] - clg_loads['L100AL'], :<=, clg_dt_max[4]) + assert_operator(clg_loads['L150AL'] - clg_loads['L100AL'], :>=, clg_dt_min[4]) + assert_operator(clg_loads['L155AL'] - clg_loads['L150AL'], :<=, clg_dt_max[5]) + assert_operator(clg_loads['L155AL'] - clg_loads['L150AL'], :>=, clg_dt_min[5]) + assert_operator(clg_loads['L160AL'] - clg_loads['L100AL'], :<=, clg_dt_max[6]) + assert_operator(clg_loads['L160AL'] - clg_loads['L100AL'], :>=, clg_dt_min[6]) + assert_operator(clg_loads['L170AL'] - clg_loads['L100AL'], :<=, clg_dt_max[7]) + assert_operator(clg_loads['L170AL'] - clg_loads['L100AL'], :>=, clg_dt_min[7]) + assert_operator(clg_loads['L200AL'] - clg_loads['L100AL'], :<=, clg_dt_max[8]) + assert_operator(clg_loads['L200AL'] - clg_loads['L100AL'], :>=, clg_dt_min[8]) + assert_operator(clg_loads['L200AL'] - clg_loads['L202AL'], :<=, clg_dt_max[9]) + assert_operator(clg_loads['L200AL'] - clg_loads['L202AL'], :>=, clg_dt_min[9]) +end + +def _check_hvac_test_results(energy) + # Pub 002-2024 + min = [-24.59, -13.13, -42.73, 59.35] + max = [-18.18, -12.60, -15.88, 110.25] + + # Cooling cases + assert_operator((energy['HVAC1b'] - energy['HVAC1a']) / energy['HVAC1a'] * 100, :>, min[0]) + assert_operator((energy['HVAC1b'] - energy['HVAC1a']) / energy['HVAC1a'] * 100, :<, max[0]) + + # Gas heating cases + assert_operator((energy['HVAC2b'] - energy['HVAC2a']) / energy['HVAC2a'] * 100, :>, min[1]) + assert_operator((energy['HVAC2b'] - energy['HVAC2a']) / energy['HVAC2a'] * 100, :<, max[1]) + + # Electric heating cases + assert_operator((energy['HVAC2d'] - energy['HVAC2c']) / energy['HVAC2c'] * 100, :>, min[2]) + assert_operator((energy['HVAC2d'] - energy['HVAC2c']) / energy['HVAC2c'] * 100, :<, max[2]) + assert_operator((energy['HVAC2e'] - energy['HVAC2c']) / energy['HVAC2c'] * 100, :>, min[3]) + assert_operator((energy['HVAC2e'] - energy['HVAC2c']) / energy['HVAC2c'] * 100, :<, max[3]) +end + +def _check_dse_test_results(energy) + # Pub 002-2024 + htg_min = [9.45, 3.11, 7.40] + htg_max = [25.72, 6.53, 19.77] + clg_min = [18.69, 5.23, 16.32] + clg_max = [29.39, 8.79, 27.47] + + # Heating cases + assert_operator((energy['HVAC3b'] - energy['HVAC3a']) / energy['HVAC3a'] * 100, :>, htg_min[0]) + assert_operator((energy['HVAC3b'] - energy['HVAC3a']) / energy['HVAC3a'] * 100, :<, htg_max[0]) + assert_operator((energy['HVAC3c'] - energy['HVAC3a']) / energy['HVAC3a'] * 100, :>, htg_min[1]) + assert_operator((energy['HVAC3c'] - energy['HVAC3a']) / energy['HVAC3a'] * 100, :<, htg_max[1]) + assert_operator((energy['HVAC3d'] - energy['HVAC3a']) / energy['HVAC3a'] * 100, :>, htg_min[2]) + assert_operator((energy['HVAC3d'] - energy['HVAC3a']) / energy['HVAC3a'] * 100, :<, htg_max[2]) + + # Cooling cases + assert_operator((energy['HVAC3f'] - energy['HVAC3e']) / energy['HVAC3e'] * 100, :>, clg_min[0]) + assert_operator((energy['HVAC3f'] - energy['HVAC3e']) / energy['HVAC3e'] * 100, :<, clg_max[0]) + assert_operator((energy['HVAC3g'] - energy['HVAC3e']) / energy['HVAC3e'] * 100, :>, clg_min[1]) + assert_operator((energy['HVAC3g'] - energy['HVAC3e']) / energy['HVAC3e'] * 100, :<, clg_max[1]) + assert_operator((energy['HVAC3h'] - energy['HVAC3e']) / energy['HVAC3e'] * 100, :>, clg_min[2]) + assert_operator((energy['HVAC3h'] - energy['HVAC3e']) / energy['HVAC3e'] * 100, :<, clg_max[2]) +end + +def _check_hot_water(energy) + # Pub 002-2024 + mn_min = [19.34, 25.76, 17.20, 24.94, 55.93, 22.61, 20.51] + mn_max = [19.88, 26.55, 17.70, 25.71, 57.58, 23.28, 21.09] + fl_min = [10.74, 13.37, 8.83, 13.06, 30.84, 12.09, 11.84] + fl_max = [11.24, 13.87, 9.33, 13.56, 31.55, 12.59, 12.34] + mn_dt_min = [-6.77, 1.92, 0.58, -31.03, 2.95, 5.09] + mn_dt_max = [-6.27, 2.42, 1.08, -30.17, 3.45, 5.59] + fl_dt_min = [-2.88, 1.67, 0.07, -17.82, 1.04, 1.28] + fl_dt_max = [-2.38, 2.17, 0.57, -17.32, 1.54, 1.78] + mn_fl_dt_min = [8.37, 12.26, 8.13, 11.75, 25.05, 10.35, 8.46] + mn_fl_dt_max = [8.87, 12.77, 8.63, 12.25, 26.04, 10.85, 8.96] + + # Duluth MN cases + assert_operator(energy['L100AD-HW-01'], :>, mn_min[0]) + assert_operator(energy['L100AD-HW-01'], :<, mn_max[0]) + assert_operator(energy['L100AD-HW-02'], :>, mn_min[1]) + assert_operator(energy['L100AD-HW-02'], :<, mn_max[1]) + assert_operator(energy['L100AD-HW-03'], :>, mn_min[2]) + assert_operator(energy['L100AD-HW-03'], :<, mn_max[2]) + assert_operator(energy['L100AD-HW-04'], :>, mn_min[3]) + assert_operator(energy['L100AD-HW-04'], :<, mn_max[3]) + assert_operator(energy['L100AD-HW-05'], :>, mn_min[4]) + assert_operator(energy['L100AD-HW-05'], :<, mn_max[4]) + assert_operator(energy['L100AD-HW-06'], :>, mn_min[5]) + assert_operator(energy['L100AD-HW-06'], :<, mn_max[5]) + assert_operator(energy['L100AD-HW-07'], :>, mn_min[6]) + assert_operator(energy['L100AD-HW-07'], :<, mn_max[6]) + + # Miami FL cases + assert_operator(energy['L100AM-HW-01'], :>, fl_min[0]) + assert_operator(energy['L100AM-HW-01'], :<, fl_max[0]) + assert_operator(energy['L100AM-HW-02'], :>, fl_min[1]) + assert_operator(energy['L100AM-HW-02'], :<, fl_max[1]) + assert_operator(energy['L100AM-HW-03'], :>, fl_min[2]) + assert_operator(energy['L100AM-HW-03'], :<, fl_max[2]) + assert_operator(energy['L100AM-HW-04'], :>, fl_min[3]) + assert_operator(energy['L100AM-HW-04'], :<, fl_max[3]) + assert_operator(energy['L100AM-HW-05'], :>, fl_min[4]) + assert_operator(energy['L100AM-HW-05'], :<, fl_max[4]) + assert_operator(energy['L100AM-HW-06'], :>, fl_min[5]) + assert_operator(energy['L100AM-HW-06'], :<, fl_max[5]) + assert_operator(energy['L100AM-HW-07'], :>, fl_min[6]) + assert_operator(energy['L100AM-HW-07'], :<, fl_max[6]) + + # MN Delta cases + assert_operator(energy['L100AD-HW-01'] - energy['L100AD-HW-02'], :>, mn_dt_min[0]) + assert_operator(energy['L100AD-HW-01'] - energy['L100AD-HW-02'], :<, mn_dt_max[0]) + assert_operator(energy['L100AD-HW-01'] - energy['L100AD-HW-03'], :>, mn_dt_min[1]) + assert_operator(energy['L100AD-HW-01'] - energy['L100AD-HW-03'], :<, mn_dt_max[1]) + assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-04'], :>, mn_dt_min[2]) + assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-04'], :<, mn_dt_max[2]) + assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-05'], :>, mn_dt_min[3]) + assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-05'], :<, mn_dt_max[3]) + assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-06'], :>, mn_dt_min[4]) + assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-06'], :<, mn_dt_max[4]) + assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-07'], :>, mn_dt_min[5]) + assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-07'], :<, mn_dt_max[5]) + + # FL Delta cases + assert_operator(energy['L100AM-HW-01'] - energy['L100AM-HW-02'], :>, fl_dt_min[0]) + assert_operator(energy['L100AM-HW-01'] - energy['L100AM-HW-02'], :<, fl_dt_max[0]) + assert_operator(energy['L100AM-HW-01'] - energy['L100AM-HW-03'], :>, fl_dt_min[1]) + assert_operator(energy['L100AM-HW-01'] - energy['L100AM-HW-03'], :<, fl_dt_max[1]) + assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-04'], :>, fl_dt_min[2]) + assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-04'], :<, fl_dt_max[2]) + assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-05'], :>, fl_dt_min[3]) + assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-05'], :<, fl_dt_max[3]) + assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-06'], :>, fl_dt_min[4]) + assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-06'], :<, fl_dt_max[4]) + assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-07'], :>, fl_dt_min[5]) + assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-07'], :<, fl_dt_max[5]) + + # MN-FL Delta cases + assert_operator(energy['L100AD-HW-01'] - energy['L100AM-HW-01'], :>, mn_fl_dt_min[0]) + assert_operator(energy['L100AD-HW-01'] - energy['L100AM-HW-01'], :<, mn_fl_dt_max[0]) + assert_operator(energy['L100AD-HW-02'] - energy['L100AM-HW-02'], :>, mn_fl_dt_min[1]) + assert_operator(energy['L100AD-HW-02'] - energy['L100AM-HW-02'], :<, mn_fl_dt_max[1]) + assert_operator(energy['L100AD-HW-03'] - energy['L100AM-HW-03'], :>, mn_fl_dt_min[2]) + assert_operator(energy['L100AD-HW-03'] - energy['L100AM-HW-03'], :<, mn_fl_dt_max[2]) + assert_operator(energy['L100AD-HW-04'] - energy['L100AM-HW-04'], :>, mn_fl_dt_min[3]) + assert_operator(energy['L100AD-HW-04'] - energy['L100AM-HW-04'], :<, mn_fl_dt_max[3]) + assert_operator(energy['L100AD-HW-05'] - energy['L100AM-HW-05'], :>, mn_fl_dt_min[4]) + assert_operator(energy['L100AD-HW-05'] - energy['L100AM-HW-05'], :<, mn_fl_dt_max[4]) + assert_operator(energy['L100AD-HW-06'] - energy['L100AM-HW-06'], :>, mn_fl_dt_min[5]) + assert_operator(energy['L100AD-HW-06'] - energy['L100AM-HW-06'], :<, mn_fl_dt_max[5]) + assert_operator(energy['L100AD-HW-07'] - energy['L100AM-HW-07'], :>, mn_fl_dt_min[6]) + assert_operator(energy['L100AD-HW-07'] - energy['L100AM-HW-07'], :<, mn_fl_dt_max[6]) +end diff --git a/tasks.rb b/tasks.rb index db43dddd7..45863cc91 100644 --- a/tasks.rb +++ b/tasks.rb @@ -16,6 +16,18 @@ def create_test_hpxmls FileUtils.rm_f(Dir.glob('workflow/tests/RESNET_Tests/4.1_Standard_140/*.xml')) FileUtils.cp(Dir.glob('hpxml-measures/workflow/tests/ASHRAE_Standard_140/*.xml'), 'workflow/tests/RESNET_Tests/4.1_Standard_140') + # Copy HERS HVAC files + FileUtils.rm_f(Dir.glob('workflow/tests/RESNET_Tests/4.4_HVAC/*.xml')) + FileUtils.cp(Dir.glob('hpxml-measures/workflow/tests/HERS_HVAC/*.xml'), 'workflow/tests/RESNET_Tests/4.4_HVAC') + + # Copy ASHRAE 140 files + FileUtils.rm_f(Dir.glob('workflow/tests/RESNET_Tests/4.5_DSE/*.xml')) + FileUtils.cp(Dir.glob('hpxml-measures/workflow/tests/HERS_DSE/*.xml'), 'workflow/tests/RESNET_Tests/4.5_DSE') + + # Copy ASHRAE 140 files + FileUtils.rm_f(Dir.glob('workflow/tests/RESNET_Tests/4.6_Hot_Water/*.xml')) + FileUtils.cp(Dir.glob('hpxml-measures/workflow/tests/HERS_Hot_Water/*.xml'), 'workflow/tests/RESNET_Tests/4.6_Hot_Water') + schema_path = File.join(File.dirname(__FILE__), 'hpxml-measures', 'HPXMLtoOpenStudio', 'resources', 'hpxml_schema', 'HPXML.xsd') schema_validator = XMLValidator.get_schema_validator(schema_path) @@ -77,35 +89,6 @@ def create_test_hpxmls 'RESNET_Tests/4.3_HERS_Method/L100A-03.xml' => 'RESNET_Tests/4.3_HERS_Method/L100A-01.xml', 'RESNET_Tests/4.3_HERS_Method/L100A-04.xml' => 'RESNET_Tests/4.3_HERS_Method/L100A-01.xml', 'RESNET_Tests/4.3_HERS_Method/L100A-05.xml' => 'RESNET_Tests/4.3_HERS_Method/L100A-01.xml', - 'RESNET_Tests/4.4_HVAC/HVAC1a.xml' => 'RESNET_Tests/4.1_Standard_140/L100AL.xml', - 'RESNET_Tests/4.4_HVAC/HVAC1b.xml' => 'RESNET_Tests/4.4_HVAC/HVAC1a.xml', - 'RESNET_Tests/4.4_HVAC/HVAC2a.xml' => 'RESNET_Tests/4.1_Standard_140/L100AC.xml', - 'RESNET_Tests/4.4_HVAC/HVAC2b.xml' => 'RESNET_Tests/4.4_HVAC/HVAC2a.xml', - 'RESNET_Tests/4.4_HVAC/HVAC2c.xml' => 'RESNET_Tests/4.4_HVAC/HVAC2a.xml', - 'RESNET_Tests/4.4_HVAC/HVAC2d.xml' => 'RESNET_Tests/4.4_HVAC/HVAC2a.xml', - 'RESNET_Tests/4.4_HVAC/HVAC2e.xml' => 'RESNET_Tests/4.4_HVAC/HVAC2a.xml', - 'RESNET_Tests/4.5_DSE/HVAC3a.xml' => 'RESNET_Tests/4.1_Standard_140/L322XC.xml', - 'RESNET_Tests/4.5_DSE/HVAC3b.xml' => 'RESNET_Tests/4.5_DSE/HVAC3a.xml', - 'RESNET_Tests/4.5_DSE/HVAC3c.xml' => 'RESNET_Tests/4.5_DSE/HVAC3b.xml', - 'RESNET_Tests/4.5_DSE/HVAC3d.xml' => 'RESNET_Tests/4.5_DSE/HVAC3c.xml', - 'RESNET_Tests/4.5_DSE/HVAC3e.xml' => 'RESNET_Tests/4.1_Standard_140/L100AL.xml', - 'RESNET_Tests/4.5_DSE/HVAC3f.xml' => 'RESNET_Tests/4.5_DSE/HVAC3e.xml', - 'RESNET_Tests/4.5_DSE/HVAC3g.xml' => 'RESNET_Tests/4.5_DSE/HVAC3f.xml', - 'RESNET_Tests/4.5_DSE/HVAC3h.xml' => 'RESNET_Tests/4.5_DSE/HVAC3g.xml', - 'RESNET_Tests/4.6_Hot_Water/L100AD-HW-01.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml', - 'RESNET_Tests/4.6_Hot_Water/L100AD-HW-02.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-02.xml', - 'RESNET_Tests/4.6_Hot_Water/L100AD-HW-03.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-03.xml', - 'RESNET_Tests/4.6_Hot_Water/L100AD-HW-04.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-04.xml', - 'RESNET_Tests/4.6_Hot_Water/L100AD-HW-05.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-05.xml', - 'RESNET_Tests/4.6_Hot_Water/L100AD-HW-06.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-06.xml', - 'RESNET_Tests/4.6_Hot_Water/L100AD-HW-07.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-07.xml', - 'RESNET_Tests/4.6_Hot_Water/L100AM-HW-01.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml', - 'RESNET_Tests/4.6_Hot_Water/L100AM-HW-02.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-02.xml', - 'RESNET_Tests/4.6_Hot_Water/L100AM-HW-03.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-03.xml', - 'RESNET_Tests/4.6_Hot_Water/L100AM-HW-04.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-04.xml', - 'RESNET_Tests/4.6_Hot_Water/L100AM-HW-05.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-05.xml', - 'RESNET_Tests/4.6_Hot_Water/L100AM-HW-06.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-06.xml', - 'RESNET_Tests/4.6_Hot_Water/L100AM-HW-07.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-07.xml', 'RESNET_Tests/Other_HERS_AutoGen_IAD_Home/01-L100.xml' => 'RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/01-L100.xml', 'RESNET_Tests/Other_HERS_AutoGen_IAD_Home/02-L100.xml' => 'RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/02-L100.xml', 'RESNET_Tests/Other_HERS_AutoGen_IAD_Home/03-L304.xml' => 'RESNET_Tests/4.2_HERS_AutoGen_Reference_Home/03-L304.xml', @@ -128,26 +111,6 @@ def create_test_hpxmls 'RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-03.xml' => 'RESNET_Tests/4.3_HERS_Method/L100A-03.xml', 'RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-04.xml' => 'RESNET_Tests/4.3_HERS_Method/L100A-04.xml', 'RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-05.xml' => 'RESNET_Tests/4.3_HERS_Method/L100A-05.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml' => 'RESNET_Tests/4.1_Standard_140/L100AC.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-02.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-03.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-04.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-02.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-05.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-02.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-06.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-05.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-07.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-02.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml' => 'RESNET_Tests/4.1_Standard_140/L100AC.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-02.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-03.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-04.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-02.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-05.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-02.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-06.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-05.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-07.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-02.xml', - 'RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-01.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml', - 'RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-02.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-02.xml', - 'RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AD-HW-03.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-03.xml', - 'RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-01.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml', - 'RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-02.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-02.xml', - 'RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA/L100AM-HW-03.xml' => 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-03.xml', } puts "Generating #{hpxmls_files.size} HPXML files..." @@ -267,21 +230,18 @@ def get_standard_140_hpxml(hpxml_path) end def set_hpxml_header(hpxml_file, hpxml, hpxml_bldg, orig_parent) - if hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') + if hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') hpxml.header.apply_ashrae140_assumptions = nil end - if hpxml_file.include?('RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA') - hpxml.header.eri_calculation_version = '2014' - elsif hpxml_file.include?('RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE') || - hpxml_file.include?('RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014') + if hpxml_file.include?('RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE') || + hpxml_file.include?('RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014') hpxml.header.eri_calculation_version = '2014A' elsif hpxml_file.include?('RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA') || - hpxml_file.include?('RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA') || - hpxml_file.include?('RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA') + hpxml_file.include?('RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA') hpxml.header.eri_calculation_version = '2019' elsif hpxml_file.include?('Other_HERS_AutoGen_IAD_Home') hpxml.header.eri_calculation_version = '2019ABCD' - elsif hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') + elsif hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') hpxml.header.eri_calculation_version = 'latest' elsif hpxml_file.include?('EPA_Tests') hpxml.header.xml_type = 'HPXML' @@ -321,7 +281,7 @@ def set_hpxml_site(hpxml_file, hpxml_bldg) else hpxml_bldg.site.fuels = [HPXML::FuelTypeElectricity, HPXML::FuelTypeNaturalGas] end - elsif hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') + elsif hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') hpxml_bldg.site.fuels = [HPXML::FuelTypeElectricity, HPXML::FuelTypeNaturalGas] end end @@ -329,21 +289,13 @@ def set_hpxml_site(hpxml_file, hpxml_bldg) def set_hpxml_building_construction(hpxml_file, hpxml_bldg) hpxml_bldg.building_construction.conditioned_building_volume = nil if ['RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/03-L304.xml', - 'RESNET_Tests/4.3_HERS_Method/L100A-03.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml'].include? hpxml_file + 'RESNET_Tests/4.3_HERS_Method/L100A-03.xml'].include? hpxml_file # 2 bedrooms hpxml_bldg.building_construction.number_of_bedrooms = 2 elsif ['RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/04-L324.xml', - 'RESNET_Tests/4.3_HERS_Method/L100A-04.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-02.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-02.xml'].include? hpxml_file + 'RESNET_Tests/4.3_HERS_Method/L100A-04.xml'].include? hpxml_file # 4 bedrooms hpxml_bldg.building_construction.number_of_bedrooms = 4 - elsif ['RESNET_Tests/4.5_DSE/HVAC3a.xml'].include? hpxml_file - # Unconditioned basement - hpxml_bldg.building_construction.number_of_conditioned_floors = 1 - hpxml_bldg.building_construction.conditioned_floor_area = 1539 elsif hpxml_file.include?('EPA_Tests') if hpxml_file.include?('SF') hpxml_bldg.building_construction.residential_facility_type = HPXML::ResidentialTypeSFD @@ -367,7 +319,7 @@ def set_hpxml_building_construction(hpxml_file, hpxml_bldg) end def set_hpxml_building_occupancy(hpxml_file, hpxml_bldg) - if hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') + if hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') hpxml_bldg.building_occupancy.number_of_residents = nil end end @@ -391,8 +343,7 @@ def set_hpxml_climate_and_risk_zones(hpxml_file, hpxml_bldg) hpxml_bldg.climate_and_risk_zones.weather_station_name = 'Dallas, TX' hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath = 'USA_TX_Dallas-Fort.Worth.Intl.AP.722590_TMY3.epw' hpxml_bldg.state_code = 'TX' - elsif ['RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/03-L304.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml'].include? hpxml_file + elsif ['RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/03-L304.xml'].include? hpxml_file # Miami hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs.clear hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs.add(year: 2006, @@ -401,16 +352,7 @@ def set_hpxml_climate_and_risk_zones(hpxml_file, hpxml_bldg) hpxml_bldg.climate_and_risk_zones.weather_station_name = 'Miami, FL' hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath = 'USA_FL_Miami.Intl.AP.722020_TMY3.epw' hpxml_bldg.state_code = 'FL' - elsif ['RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml'].include? hpxml_file - # Duluth - hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs.clear - hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs.add(year: 2006, - zone: '7') - hpxml_bldg.climate_and_risk_zones.weather_station_id = 'WeatherStation' - hpxml_bldg.climate_and_risk_zones.weather_station_name = 'Duluth, MN' - hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath = 'USA_MN_Duluth.Intl.AP.727450_TMY3.epw' - hpxml_bldg.state_code = 'MN' - elsif hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') + elsif hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') if hpxml_bldg.climate_and_risk_zones.weather_station_epw_filepath == 'USA_CO_Colorado.Springs-Peterson.Field.724660_TMY3.epw' hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs.clear hpxml_bldg.climate_and_risk_zones.climate_zone_ieccs.add(year: 2006, @@ -455,8 +397,7 @@ def set_hpxml_climate_and_risk_zones(hpxml_file, hpxml_bldg) end def set_hpxml_air_infiltration_measurements(hpxml_file, hpxml_bldg) - if hpxml_file.include?('Hot_Water') || - ['RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/01-L100.xml', + if ['RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/01-L100.xml', 'RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/02-L100.xml', 'RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2019_PreAddendumA/04-L324.xml'].include?(hpxml_file) # 3 ACH50 @@ -474,9 +415,6 @@ def set_hpxml_air_infiltration_measurements(hpxml_file, hpxml_bldg) house_pressure: 50, air_leakage: 5, infiltration_volume: hpxml_bldg.building_construction.conditioned_floor_area * 8.0) - elsif ['RESNET_Tests/4.5_DSE/HVAC3a.xml'].include? hpxml_file - hpxml_bldg.air_infiltration_measurements[0].infiltration_volume = 12312 - hpxml_bldg.air_infiltration_measurements[0].air_leakage = 0.67 elsif hpxml_file.include?('EPA_Tests/SF') if ['EPA_Tests/SF_National_3.0/SFNHv3_CZ4_MO_gas_vented_crawl.xml'].include? hpxml_file ach50 = 5 @@ -515,7 +453,7 @@ def set_hpxml_attics(hpxml_file, hpxml_bldg) hpxml_bldg.attics.add(id: "Attic#{hpxml_bldg.attics.size + 1}", attic_type: HPXML::AtticTypeVented, vented_attic_sla: (1.0 / 300.0).round(6)) - elsif hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') + elsif hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') hpxml_bldg.attics.clear hpxml_bldg.attics.add(id: "Attic#{hpxml_bldg.attics.size + 1}", attic_type: HPXML::AtticTypeVented, @@ -564,11 +502,7 @@ def set_hpxml_roofs(hpxml_file, hpxml_bldg) end def set_hpxml_rim_joists(hpxml_file, hpxml_bldg) - if ['RESNET_Tests/4.5_DSE/HVAC3a.xml'].include? hpxml_file - hpxml_bldg.rim_joists.each do |rim_joist| - rim_joist.interior_adjacent_to = HPXML::LocationBasementUnconditioned - end - elsif hpxml_file.include?('EPA_Tests/SF') + if hpxml_file.include?('EPA_Tests/SF') if ['EPA_Tests/SF_National_3.1/SFNHv31_CZ2_FL_elec_slab.xml', 'EPA_Tests/SF_National_3.0/SFNHv3_CZ2_FL_gas_slab.xml', 'EPA_Tests/SF_National_3.0/SFNHv3_CZ4_MO_gas_vented_crawl.xml'].include? hpxml_file @@ -821,10 +755,6 @@ def set_hpxml_foundation_walls(hpxml_file, hpxml_bldg) end end end - elsif ['RESNET_Tests/4.5_DSE/HVAC3a.xml'].include? hpxml_file - hpxml_bldg.foundation_walls.each do |foundation_wall| - foundation_wall.interior_adjacent_to = HPXML::LocationBasementUnconditioned - end elsif hpxml_file.include?('EPA_Tests') if hpxml_file.include?('EPA_Tests/SF') exterior_perimeter = 152 @@ -909,15 +839,7 @@ def set_hpxml_foundation_walls(hpxml_file, hpxml_bldg) end def set_hpxml_floors(hpxml_file, hpxml_bldg) - if ['RESNET_Tests/4.5_DSE/HVAC3a.xml'].include? hpxml_file - # R-11 floor from ASHRAE 140 but with 13% framing factor instead of 10% - hpxml_bldg.floors.add(id: "Floor#{hpxml_bldg.floors.size + 1}", - exterior_adjacent_to: HPXML::LocationBasementUnconditioned, - interior_adjacent_to: HPXML::LocationConditionedSpace, - floor_type: HPXML::FloorTypeWoodFrame, - area: 1539, - insulation_assembly_r_value: 13.85) - elsif ['RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/02-L100.xml'].include? hpxml_file + if ['RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/02-L100.xml'].include? hpxml_file # Uninsulated hpxml_bldg.floors[0].insulation_assembly_r_value = 4.24 hpxml_bldg.floors[0].exterior_adjacent_to = HPXML::LocationCrawlspaceUnvented @@ -1003,8 +925,6 @@ def set_hpxml_slabs(hpxml_file, hpxml_bldg) under_slab_insulation_r_value: 0, carpet_fraction: 0, carpet_r_value: 2.5) - elsif ['RESNET_Tests/4.5_DSE/HVAC3a.xml'].include? hpxml_file - hpxml_bldg.slabs[0].interior_adjacent_to = HPXML::LocationBasementUnconditioned elsif hpxml_file.include?('EPA_Tests') if hpxml_file.include?('slab') interior_adjacent_to = HPXML::LocationConditionedSpace @@ -1049,7 +969,7 @@ def set_hpxml_slabs(hpxml_file, hpxml_bldg) end def set_hpxml_windows(hpxml_file, hpxml_bldg) - if hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') + if hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') hpxml_bldg.windows.each do |window| window.interior_shading_factor_summer = nil window.interior_shading_factor_winter = nil @@ -1170,10 +1090,7 @@ def set_hpxml_doors(hpxml_file, hpxml_bldg) end def set_hpxml_heating_systems(hpxml_file, hpxml_bldg) - if ['RESNET_Tests/4.4_HVAC/HVAC2c.xml', - 'RESNET_Tests/4.4_HVAC/HVAC2d.xml'].include?(hpxml_file) - hpxml_bldg.heating_systems.clear - elsif ['RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/01-L100.xml'].include? hpxml_file + if ['RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/01-L100.xml'].include? hpxml_file # Gas furnace with AFUE = 82% hpxml_bldg.heating_systems.clear hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", @@ -1230,73 +1147,6 @@ def set_hpxml_heating_systems(hpxml_file, hpxml_bldg) fraction_heat_load_served: 1, fan_watts_per_cfm: 0.58, airflow_defect_ratio: -0.25) - elsif ['RESNET_Tests/4.4_HVAC/HVAC2a.xml', - 'RESNET_Tests/4.4_HVAC/HVAC1a.xml'].include? hpxml_file - # Gas Furnace; 56.1 kBtu/h; AFUE = 78%; 0.0005 kW/cfm - hpxml_bldg.heating_systems.clear - hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", - distribution_system_idref: 'HVACDistribution1', - heating_system_type: HPXML::HVACTypeFurnace, - heating_system_fuel: HPXML::FuelTypeNaturalGas, - heating_capacity: 56100, - heating_efficiency_afue: 0.78, - fraction_heat_load_served: 1, - fan_watts_per_cfm: 0.5) - elsif ['RESNET_Tests/4.4_HVAC/HVAC2b.xml'].include? hpxml_file - # Gas Furnace; 56.1 kBtu/h; AFUE = 90%; 0.000375 kW/cfm - hpxml_bldg.heating_systems.clear - hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", - distribution_system_idref: 'HVACDistribution1', - heating_system_type: HPXML::HVACTypeFurnace, - heating_system_fuel: HPXML::FuelTypeNaturalGas, - heating_capacity: 56100, - heating_efficiency_afue: 0.9, - fraction_heat_load_served: 1, - fan_watts_per_cfm: 0.5) - elsif ['RESNET_Tests/4.4_HVAC/HVAC2e.xml'].include? hpxml_file - # Electric Furnace; 56.1 kBtu/h; COP =1.0 - hpxml_bldg.heating_systems.clear - hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", - distribution_system_idref: 'HVACDistribution1', - heating_system_type: HPXML::HVACTypeFurnace, - heating_system_fuel: HPXML::FuelTypeElectricity, - heating_capacity: 56100, - heating_efficiency_afue: 1, - fraction_heat_load_served: 1, - fan_watts_per_cfm: 0.5) - elsif ['RESNET_Tests/4.5_DSE/HVAC3a.xml', - 'RESNET_Tests/4.5_DSE/HVAC3e.xml'].include? hpxml_file - # Gas Furnace; 46.6 kBtu/h - hpxml_bldg.heating_systems.clear - hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", - distribution_system_idref: 'HVACDistribution1', - heating_system_type: HPXML::HVACTypeFurnace, - heating_system_fuel: HPXML::FuelTypeNaturalGas, - heating_capacity: 46600, - heating_efficiency_afue: 0.78, - fraction_heat_load_served: 1, - fan_watts_per_cfm: 0.5) - elsif ['RESNET_Tests/4.5_DSE/HVAC3b.xml'].include? hpxml_file - # Change to 56.0 kBtu/h - hpxml_bldg.heating_systems[0].heating_capacity = 56000 - elsif ['RESNET_Tests/4.5_DSE/HVAC3c.xml'].include? hpxml_file - # Change to 49.0 kBtu/h - hpxml_bldg.heating_systems[0].heating_capacity = 49000 - elsif ['RESNET_Tests/4.5_DSE/HVAC3d.xml'].include? hpxml_file - # Change to 61.0 kBtu/h - hpxml_bldg.heating_systems[0].heating_capacity = 61000 - elsif hpxml_file.include? 'Hot_Water' - # Natural gas furnace with AFUE = 78% - hpxml_bldg.heating_systems.clear - hpxml_bldg.heating_systems.add(id: "HeatingSystem#{hpxml_bldg.heating_systems.size + 1}", - distribution_system_idref: 'HVACDistribution1', - heating_system_type: HPXML::HVACTypeFurnace, - heating_system_fuel: HPXML::FuelTypeNaturalGas, - heating_capacity: -1, - heating_efficiency_afue: 0.78, - fraction_heat_load_served: 1, - fan_watts_per_cfm: 0.58, - airflow_defect_ratio: -0.25) elsif hpxml_file.include?('EPA_Tests') if hpxml_file.include?('_elec_') return @@ -1330,10 +1180,7 @@ def set_hpxml_heating_systems(hpxml_file, hpxml_bldg) end def set_hpxml_cooling_systems(hpxml_file, hpxml_bldg) - if ['RESNET_Tests/4.4_HVAC/HVAC2c.xml', - 'RESNET_Tests/4.4_HVAC/HVAC2d.xml'].include?(hpxml_file) - hpxml_bldg.cooling_systems.clear - elsif ['RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/01-L100.xml'].include? hpxml_file + if ['RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/01-L100.xml'].include? hpxml_file # Central air conditioner with SEER = 11.0 hpxml_bldg.cooling_systems.clear hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", @@ -1373,55 +1220,6 @@ def set_hpxml_cooling_systems(hpxml_file, hpxml_bldg) fan_watts_per_cfm: 0.58, airflow_defect_ratio: -0.25, charge_defect_ratio: -0.25) - elsif ['RESNET_Tests/4.4_HVAC/HVAC1a.xml', - 'RESNET_Tests/4.4_HVAC/HVAC2a.xml'].include? hpxml_file - # Air cooled air conditioner; 38.3 kBtu/h; SEER = 10 - hpxml_bldg.cooling_systems.clear - hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", - distribution_system_idref: 'HVACDistribution1', - cooling_system_type: HPXML::HVACTypeCentralAirConditioner, - cooling_system_fuel: HPXML::FuelTypeElectricity, - cooling_capacity: 38300, - fraction_cool_load_served: 1, - cooling_efficiency_seer: 10, - fan_watts_per_cfm: 0.5) - elsif ['RESNET_Tests/4.4_HVAC/HVAC1b.xml'].include? hpxml_file - # Change to SEER = 13 - hpxml_bldg.cooling_systems[0].cooling_efficiency_seer = 13 - elsif ['RESNET_Tests/4.5_DSE/HVAC3e.xml', - 'RESNET_Tests/4.5_DSE/HVAC3a.xml'].include? hpxml_file - # Air Conditioner; 38.4 kBtu/h; SEER 10 - hpxml_bldg.cooling_systems.clear - hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", - distribution_system_idref: 'HVACDistribution1', - cooling_system_type: HPXML::HVACTypeCentralAirConditioner, - cooling_system_fuel: HPXML::FuelTypeElectricity, - cooling_capacity: 38400, - fraction_cool_load_served: 1, - cooling_efficiency_seer: 10, - fan_watts_per_cfm: 0.5) - elsif ['RESNET_Tests/4.5_DSE/HVAC3f.xml'].include? hpxml_file - # Change to 49.9 kBtu/h - hpxml_bldg.cooling_systems[0].cooling_capacity = 49900 - elsif ['RESNET_Tests/4.5_DSE/HVAC3g.xml'].include? hpxml_file - # Change to 42.2 kBtu/h - hpxml_bldg.cooling_systems[0].cooling_capacity = 42200 - elsif ['RESNET_Tests/4.5_DSE/HVAC3h.xml'].include? hpxml_file - # Change to 55.0 kBtu/h - hpxml_bldg.cooling_systems[0].cooling_capacity = 55000 - elsif hpxml_file.include? 'Hot_Water' - # Central air conditioner with SEER = 13.0 - hpxml_bldg.cooling_systems.clear - hpxml_bldg.cooling_systems.add(id: "CoolingSystem#{hpxml_bldg.cooling_systems.size + 1}", - distribution_system_idref: 'HVACDistribution1', - cooling_system_type: HPXML::HVACTypeCentralAirConditioner, - cooling_system_fuel: HPXML::FuelTypeElectricity, - cooling_capacity: -1, - fraction_cool_load_served: 1, - cooling_efficiency_seer: 13, - fan_watts_per_cfm: 0.58, - airflow_defect_ratio: -0.25, - charge_defect_ratio: -0.25) elsif hpxml_file.include?('EPA_Tests') if hpxml_file.include?('_elec_') return @@ -1517,42 +1315,6 @@ def set_hpxml_heat_pumps(hpxml_file, hpxml_bldg) elsif ['RESNET_Tests/4.3_HERS_Method/L100A-04.xml'].include? hpxml_file # Change to a high efficiency HP with HSPF = 9.85 hpxml_bldg.heat_pumps[0].heating_efficiency_hspf = 9.85 - elsif ['RESNET_Tests/4.4_HVAC/HVAC2c.xml'].include? hpxml_file - # Air Source Heat Pump; 56.1 kBtu/h; HSPF = 6.8 - hpxml_bldg.heat_pumps.clear - hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", - distribution_system_idref: 'HVACDistribution1', - heat_pump_type: HPXML::HVACTypeHeatPumpAirToAir, - heat_pump_fuel: HPXML::FuelTypeElectricity, - cooling_capacity: 56100, - heating_capacity: 56100, - backup_type: HPXML::HeatPumpBackupTypeIntegrated, - backup_heating_fuel: HPXML::FuelTypeElectricity, - backup_heating_capacity: 34121, - backup_heating_efficiency_percent: 1.0, - fraction_heat_load_served: 1, - fraction_cool_load_served: 1, - heating_efficiency_hspf: 6.8, - cooling_efficiency_seer: 10, - fan_watts_per_cfm: 0.5) - elsif ['RESNET_Tests/4.4_HVAC/HVAC2d.xml'].include? hpxml_file - # Air Source Heat Pump; 56.1 kBtu/h; HSPF = 9.85 - hpxml_bldg.heat_pumps.clear - hpxml_bldg.heat_pumps.add(id: "HeatPump#{hpxml_bldg.heat_pumps.size + 1}", - distribution_system_idref: 'HVACDistribution1', - heat_pump_type: HPXML::HVACTypeHeatPumpAirToAir, - heat_pump_fuel: HPXML::FuelTypeElectricity, - cooling_capacity: 56100, - heating_capacity: 56100, - backup_type: HPXML::HeatPumpBackupTypeIntegrated, - backup_heating_fuel: HPXML::FuelTypeElectricity, - backup_heating_capacity: 34121, - backup_heating_efficiency_percent: 1.0, - fraction_heat_load_served: 1, - fraction_cool_load_served: 1, - heating_efficiency_hspf: 9.85, - cooling_efficiency_seer: 13, - fan_watts_per_cfm: 0.5) elsif hpxml_file.include?('EPA_Tests') if hpxml_file.include?('_gas_') return @@ -1614,7 +1376,7 @@ def set_hpxml_heat_pumps(hpxml_file, hpxml_bldg) end def set_hpxml_hvac_controls(hpxml_file, hpxml_bldg) - if hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') + if hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') hpxml_bldg.hvac_controls.clear if hpxml_bldg.heating_systems.size + hpxml_bldg.cooling_systems.size + hpxml_bldg.heat_pumps.size > 0 hpxml_bldg.hvac_controls.add(id: "HVACControl#{hpxml_bldg.hvac_controls.size + 1}", @@ -1633,22 +1395,12 @@ def set_hpxml_hvac_distributions(hpxml_file, hpxml_bldg) 'RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/02-L100.xml', 'RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/03-L304.xml', 'RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/04-L324.xml', - 'RESNET_Tests/4.3_HERS_Method/L100A-01.xml', - 'RESNET_Tests/4.5_DSE/HVAC3a.xml', - 'RESNET_Tests/4.5_DSE/HVAC3e.xml'].include?(hpxml_file) || - hpxml_file.include?('Hot_Water') || + 'RESNET_Tests/4.3_HERS_Method/L100A-01.xml'].include?(hpxml_file) || hpxml_file.include?('EPA_Tests') hpxml_bldg.hvac_distributions.clear hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", distribution_system_type: HPXML::HVACDistributionTypeAir, air_type: HPXML::AirTypeRegularVelocity) - elsif ['RESNET_Tests/4.4_HVAC/HVAC1a.xml', - 'RESNET_Tests/4.4_HVAC/HVAC2a.xml'].include? hpxml_file - hpxml_bldg.hvac_distributions.clear - hpxml_bldg.hvac_distributions.add(id: "HVACDistribution#{hpxml_bldg.hvac_distributions.size + 1}", - distribution_system_type: HPXML::HVACDistributionTypeDSE, - annual_heating_dse: 1, - annual_cooling_dse: 1) end # Leakage @@ -1656,10 +1408,7 @@ def set_hpxml_hvac_distributions(hpxml_file, hpxml_bldg) 'RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/02-L100.xml', 'RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/03-L304.xml', 'RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/04-L324.xml', - 'RESNET_Tests/4.3_HERS_Method/L100A-01.xml', - 'RESNET_Tests/4.5_DSE/HVAC3a.xml', - 'RESNET_Tests/4.5_DSE/HVAC3e.xml'].include?(hpxml_file) || - hpxml_file.include?('Hot_Water') || + 'RESNET_Tests/4.3_HERS_Method/L100A-01.xml'].include?(hpxml_file) || hpxml_file.include?('EPA_Tests/SF_National_3.2') || hpxml_file.include?('EPA_Tests/SF_National_3.1') || hpxml_file.include?('EPA_Tests/MF_National_1.2') || @@ -1674,12 +1423,6 @@ def set_hpxml_hvac_distributions(hpxml_file, hpxml_bldg) duct_leakage_units: HPXML::UnitsCFM25, duct_leakage_value: 0, duct_leakage_total_or_to_outside: HPXML::DuctLeakageToOutside) - elsif ['RESNET_Tests/4.5_DSE/HVAC3d.xml', - 'RESNET_Tests/4.5_DSE/HVAC3h.xml'].include? hpxml_file - # Supply and return duct leakage = 125 cfm each - hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.each do |duct_leakage_measurement| - duct_leakage_measurement.duct_leakage_value = 125 - end elsif hpxml_file.include?('EPA_Tests') tot_cfm25 = 4.0 * hpxml_bldg.building_construction.conditioned_floor_area / 100.0 hpxml_bldg.hvac_distributions[0].duct_leakage_measurements.clear @@ -1698,10 +1441,7 @@ def set_hpxml_hvac_distributions(hpxml_file, hpxml_bldg) 'RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/02-L100.xml', 'RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/03-L304.xml', 'RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/04-L324.xml', - 'RESNET_Tests/4.3_HERS_Method/L100A-01.xml', - 'RESNET_Tests/4.5_DSE/HVAC3a.xml', - 'RESNET_Tests/4.5_DSE/HVAC3e.xml'].include?(hpxml_file) || - hpxml_file.include?('Hot_Water') + 'RESNET_Tests/4.3_HERS_Method/L100A-01.xml'].include?(hpxml_file) # Supply duct area = 308 ft2; Return duct area = 77 ft2 # Duct R-val = 0 # Duct Location = 100% conditioned @@ -1716,22 +1456,6 @@ def set_hpxml_hvac_distributions(hpxml_file, hpxml_bldg) duct_insulation_r_value: 0, duct_location: HPXML::LocationConditionedSpace, duct_surface_area: 77) - elsif ['RESNET_Tests/4.5_DSE/HVAC3b.xml'].include? hpxml_file - # Change to Duct Location = 100% in basement - hpxml_bldg.hvac_distributions[0].ducts.each do |duct| - duct.duct_location = HPXML::LocationBasementUnconditioned - end - elsif ['RESNET_Tests/4.5_DSE/HVAC3f.xml'].include? hpxml_file - # Change to Duct Location = 100% in attic - hpxml_bldg.hvac_distributions[0].ducts.each do |duct| - duct.duct_location = HPXML::LocationAtticVented - end - elsif ['RESNET_Tests/4.5_DSE/HVAC3c.xml', - 'RESNET_Tests/4.5_DSE/HVAC3g.xml'].include? hpxml_file - # Change to Duct R-val = 6 - hpxml_bldg.hvac_distributions[0].ducts.each do |duct| - duct.duct_insulation_r_value = 6 - end elsif hpxml_file.include?('EPA_Tests') supply_area = 0.27 * hpxml_bldg.building_construction.conditioned_floor_area return_area = 0.05 * hpxml_bldg.building_construction.conditioned_floor_area @@ -1796,22 +1520,6 @@ def set_hpxml_hvac_distributions(hpxml_file, hpxml_bldg) duct_surface_area: (return_area * non_attic_frac).round(2)) end end - # For DSE tests, use effective R-values instead of nominal R-values to match the test specs. - if hpxml_file.include? '4.5_DSE' - hpxml_bldg.hvac_distributions[0].ducts.each do |duct| - next if duct.duct_insulation_r_value.nil? - - if duct.duct_insulation_r_value == 0 - duct.duct_insulation_r_value = nil - duct.duct_effective_r_value = 1.5 - elsif duct.duct_insulation_r_value == 6 - duct.duct_insulation_r_value = nil - duct.duct_effective_r_value = 7 - else - fail 'Unexpected error.' - end - end - end # CFA served if hpxml_bldg.hvac_distributions.size == 1 @@ -1909,32 +1617,6 @@ def set_hpxml_water_heating_systems(hpxml_file, hpxml_bldg) location: HPXML::LocationConditionedSpace, fraction_dhw_load_served: 1, energy_factor: 0.82) - elsif ['RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml'].include? hpxml_file - # 40 gallon storage; gas; EF = 0.56; RE = 0.78; conditioned space - hpxml_bldg.water_heating_systems.clear - hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", - is_shared_system: false, - fuel_type: HPXML::FuelTypeNaturalGas, - water_heater_type: HPXML::WaterHeaterTypeStorage, - location: HPXML::LocationConditionedSpace, - tank_volume: 40, - fraction_dhw_load_served: 1, - energy_factor: 0.56, - recovery_efficiency: 0.78) - elsif ['RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-03.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-03.xml'].include? hpxml_file - # 40 gallon storage; gas; EF = 0.62; RE = 0.78; conditioned space - hpxml_bldg.water_heating_systems.clear - hpxml_bldg.water_heating_systems.add(id: "WaterHeatingSystem#{hpxml_bldg.water_heating_systems.size + 1}", - is_shared_system: false, - fuel_type: HPXML::FuelTypeNaturalGas, - water_heater_type: HPXML::WaterHeaterTypeStorage, - location: HPXML::LocationConditionedSpace, - tank_volume: 40, - fraction_dhw_load_served: 1, - energy_factor: 0.62, - recovery_efficiency: 0.78) elsif hpxml_file.include?('HERS_AutoGen') # 40 gal electric with EF = 0.92 hpxml_bldg.water_heating_systems.clear @@ -2016,33 +1698,13 @@ def set_hpxml_water_heating_systems(hpxml_file, hpxml_bldg) end def set_hpxml_hot_water_distribution(hpxml_file, hpxml_bldg) - if ['RESNET_Tests/4.3_HERS_Method/L100A-01.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml'].include?(hpxml_file) || + if ['RESNET_Tests/4.3_HERS_Method/L100A-01.xml'].include?(hpxml_file) || hpxml_file.include?('EPA_Tests') # Standard hpxml_bldg.hot_water_distributions.clear hpxml_bldg.hot_water_distributions.add(id: "HotWaterDstribution#{hpxml_bldg.hot_water_distributions.size + 1}", system_type: HPXML::DHWDistTypeStandard, pipe_r_value: 0.0) - elsif ['RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-05.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-05.xml'].include? hpxml_file - # Change to recirculation: Control = none; 50 W pump; Loop length is same as reference loop length; Branch length is 10 ft; All hot water pipes insulated to R-3 - hpxml_bldg.hot_water_distributions[0].system_type = HPXML::DHWDistTypeRecirc - hpxml_bldg.hot_water_distributions[0].recirculation_control_type = HPXML::DHWRecircControlTypeNone - hpxml_bldg.hot_water_distributions[0].recirculation_branch_piping_length = 10 - hpxml_bldg.hot_water_distributions[0].recirculation_pump_power = 50 - hpxml_bldg.hot_water_distributions[0].pipe_r_value = 3 - elsif ['RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-06.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-06.xml'].include? hpxml_file - # Change to recirculation: Control = manual - hpxml_bldg.hot_water_distributions[0].recirculation_control_type = HPXML::DHWRecircControlTypeManual - elsif ['RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-07.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-07.xml'].include? hpxml_file - # Change to drain Water Heat Recovery (DWHR) with all facilities connected; equal flow; DWHR eff = 54% - hpxml_bldg.hot_water_distributions[0].dwhr_facilities_connected = HPXML::DWHRFacilitiesConnectedAll - hpxml_bldg.hot_water_distributions[0].dwhr_equal_flow = true - hpxml_bldg.hot_water_distributions[0].dwhr_efficiency = 0.54 elsif hpxml_file.include?('HERS_AutoGen') # Standard hpxml_bldg.hot_water_distributions.clear @@ -2067,9 +1729,7 @@ def set_hpxml_hot_water_distribution(hpxml_file, hpxml_bldg) end def set_hpxml_water_fixtures(hpxml_file, hpxml_bldg) - if ['RESNET_Tests/4.3_HERS_Method/L100A-01.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml'].include?(hpxml_file) || + if ['RESNET_Tests/4.3_HERS_Method/L100A-01.xml'].include?(hpxml_file) || hpxml_file.include?('EPA_Tests/SF') # Standard hpxml_bldg.water_fixtures.clear @@ -2079,9 +1739,7 @@ def set_hpxml_water_fixtures(hpxml_file, hpxml_bldg) hpxml_bldg.water_fixtures.add(id: "WaterFixture#{hpxml_bldg.water_fixtures.size + 1}", water_fixture_type: HPXML::WaterFixtureTypeFaucet, low_flow: false) - elsif ['RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-04.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-04.xml'].include?(hpxml_file) || - hpxml_file.include?('EPA_Tests/MF') + elsif hpxml_file.include?('EPA_Tests/MF') # Low-flow hpxml_bldg.water_fixtures.clear hpxml_bldg.water_fixtures.add(id: "WaterFixture#{hpxml_bldg.water_fixtures.size + 1}", @@ -2103,7 +1761,7 @@ def set_hpxml_water_fixtures(hpxml_file, hpxml_bldg) end def set_hpxml_clothes_washer(hpxml_file, eri_version, hpxml_bldg) - return unless hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') || hpxml_file.include?('EPA_Tests') + return unless hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('EPA_Tests') if hpxml_file.include?('SF_National_3.2') || hpxml_file.include?('MF_National_1.2') default_values = { integrated_modified_energy_factor: 1.57, # ft3/(kWh/cyc) @@ -2131,7 +1789,7 @@ def set_hpxml_clothes_washer(hpxml_file, eri_version, hpxml_bldg) end def set_hpxml_clothes_dryer(hpxml_file, eri_version, hpxml_bldg) - return unless hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') || hpxml_file.include?('EPA_Tests') + return unless hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('EPA_Tests') if ['RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/01-L100.xml', 'RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/04-L324.xml', @@ -2160,9 +1818,7 @@ def set_hpxml_clothes_dryer(hpxml_file, eri_version, hpxml_bldg) 'RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-01.xml', 'RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-04.xml', 'RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-01.xml', - 'RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-04.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml'].include?(hpxml_file) || + 'RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-04.xml'].include?(hpxml_file) || (hpxml_file.include?('EPA_Tests') && hpxml_file.include?('_elec_')) # Standard electric default_values = HotWaterAndAppliances.get_clothes_dryer_default_values(eri_version, HPXML::FuelTypeElectricity) @@ -2188,7 +1844,7 @@ def set_hpxml_dishwasher(hpxml_file, eri_version, hpxml_bldg) label_gas_rate: 1.09, label_annual_gas_cost: 22.23, label_usage: 208 / 52) - elsif hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') + elsif hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') default_values = HotWaterAndAppliances.get_dishwasher_default_values(eri_version) hpxml_bldg.dishwashers.clear hpxml_bldg.dishwashers.add(id: "Dishwasher#{hpxml_bldg.dishwashers.size + 1}", @@ -2216,7 +1872,7 @@ def set_hpxml_refrigerator(hpxml_file, hpxml_bldg) hpxml_bldg.refrigerators.add(id: "Refrigerator#{hpxml_bldg.refrigerators.size + 1}", location: HPXML::LocationConditionedSpace, rated_annual_kwh: rated_annual_kwh) - elsif hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') + elsif hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') # Standard default_values = HotWaterAndAppliances.get_refrigerator_default_values(hpxml_bldg.building_construction.number_of_bedrooms) hpxml_bldg.refrigerators.clear @@ -2227,7 +1883,7 @@ def set_hpxml_refrigerator(hpxml_file, hpxml_bldg) end def set_hpxml_cooking_range(hpxml_file, hpxml_bldg) - return unless hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') || hpxml_file.include?('EPA_Tests') + return unless hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('EPA_Tests') if ['RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/01-L100.xml', 'RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/04-L324.xml', @@ -2252,9 +1908,7 @@ def set_hpxml_cooking_range(hpxml_file, hpxml_bldg) 'RESNET_Tests/Other_HERS_AutoGen_Reference_Home_301_2014/03-L304.xml', 'RESNET_Tests/4.3_HERS_Method/L100A-01.xml', 'RESNET_Tests/Other_HERS_Method_301_2014_PreAddendumE/L100A-01.xml', - 'RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-01.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-01.xml', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-01.xml'].include?(hpxml_file) || + 'RESNET_Tests/Other_HERS_Method_301_2019_PreAddendumA/L100A-01.xml'].include?(hpxml_file) || (hpxml_file.include?('EPA_Tests') && hpxml_file.include?('_elec_')) # Standard electric default_values = HotWaterAndAppliances.get_range_oven_default_values() @@ -2267,7 +1921,7 @@ def set_hpxml_cooking_range(hpxml_file, hpxml_bldg) end def set_hpxml_oven(hpxml_file, hpxml_bldg) - return unless hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') || hpxml_file.include?('EPA_Tests') + return unless hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('EPA_Tests') default_values = HotWaterAndAppliances.get_range_oven_default_values() hpxml_bldg.ovens.clear @@ -2276,7 +1930,7 @@ def set_hpxml_oven(hpxml_file, hpxml_bldg) end def set_hpxml_lighting(hpxml_file, hpxml_bldg) - return unless hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') || hpxml_file.include?('EPA_Tests') + return unless hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('EPA_Tests') if hpxml_file.include?('EPA_Tests/SF_National_3.2') ltg_fracs = { [HPXML::LocationInterior, HPXML::LightingTypeLED] => 1.0, @@ -2333,7 +1987,7 @@ def set_hpxml_lighting(hpxml_file, hpxml_bldg) end def set_hpxml_plug_loads(hpxml_file, hpxml_bldg) - return unless hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('Hot_Water') || hpxml_file.include?('EPA_Tests') + return unless hpxml_file.include?('HERS_AutoGen') || hpxml_file.include?('HERS_Method') || hpxml_file.include?('EPA_Tests') hpxml_bldg.plug_loads.clear end diff --git a/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml b/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml index 742d2971f..4190fb7d5 100644 --- a/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml +++ b/workflow/sample_files/base-appliances-dehumidifier-ief-portable.xml @@ -399,7 +399,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml b/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml index 562fd65a3..80af5116e 100644 --- a/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml +++ b/workflow/sample_files/base-appliances-dehumidifier-ief-whole-home.xml @@ -399,7 +399,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-appliances-dehumidifier-multiple.xml b/workflow/sample_files/base-appliances-dehumidifier-multiple.xml index 8f427d4ae..7d523fc61 100644 --- a/workflow/sample_files/base-appliances-dehumidifier-multiple.xml +++ b/workflow/sample_files/base-appliances-dehumidifier-multiple.xml @@ -399,7 +399,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-appliances-dehumidifier.xml b/workflow/sample_files/base-appliances-dehumidifier.xml index dd41ee0bf..86d796465 100644 --- a/workflow/sample_files/base-appliances-dehumidifier.xml +++ b/workflow/sample_files/base-appliances-dehumidifier.xml @@ -399,7 +399,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-appliances-gas.xml b/workflow/sample_files/base-appliances-gas.xml index 3f89300fb..a6ec19e13 100644 --- a/workflow/sample_files/base-appliances-gas.xml +++ b/workflow/sample_files/base-appliances-gas.xml @@ -441,7 +441,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-appliances-modified.xml b/workflow/sample_files/base-appliances-modified.xml index effe30710..2f0b4a1ca 100644 --- a/workflow/sample_files/base-appliances-modified.xml +++ b/workflow/sample_files/base-appliances-modified.xml @@ -442,7 +442,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-appliances-oil.xml b/workflow/sample_files/base-appliances-oil.xml index 33611a6a1..3092913d0 100644 --- a/workflow/sample_files/base-appliances-oil.xml +++ b/workflow/sample_files/base-appliances-oil.xml @@ -441,7 +441,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-appliances-propane.xml b/workflow/sample_files/base-appliances-propane.xml index fc4db5aa4..fcd9d8edf 100644 --- a/workflow/sample_files/base-appliances-propane.xml +++ b/workflow/sample_files/base-appliances-propane.xml @@ -441,7 +441,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-appliances-wood.xml b/workflow/sample_files/base-appliances-wood.xml index bff10c7e5..87ade3959 100644 --- a/workflow/sample_files/base-appliances-wood.xml +++ b/workflow/sample_files/base-appliances-wood.xml @@ -441,7 +441,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-atticroof-cathedral.xml b/workflow/sample_files/base-atticroof-cathedral.xml index 2a3b4b7d5..b885e6cc4 100644 --- a/workflow/sample_files/base-atticroof-cathedral.xml +++ b/workflow/sample_files/base-atticroof-cathedral.xml @@ -408,7 +408,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-atticroof-conditioned.xml b/workflow/sample_files/base-atticroof-conditioned.xml index 1622efb5e..031525dc0 100644 --- a/workflow/sample_files/base-atticroof-conditioned.xml +++ b/workflow/sample_files/base-atticroof-conditioned.xml @@ -509,7 +509,6 @@ basement - conditioned 650.0 - true diff --git a/workflow/sample_files/base-atticroof-flat.xml b/workflow/sample_files/base-atticroof-flat.xml index 7b4c158ee..d4e601752 100644 --- a/workflow/sample_files/base-atticroof-flat.xml +++ b/workflow/sample_files/base-atticroof-flat.xml @@ -408,7 +408,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-atticroof-radiant-barrier.xml b/workflow/sample_files/base-atticroof-radiant-barrier.xml index 069dc5d23..495a006d0 100644 --- a/workflow/sample_files/base-atticroof-radiant-barrier.xml +++ b/workflow/sample_files/base-atticroof-radiant-barrier.xml @@ -403,7 +403,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml b/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml index dfd2aa8b1..269436a06 100644 --- a/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml +++ b/workflow/sample_files/base-atticroof-unvented-insulated-roof.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-atticroof-vented.xml b/workflow/sample_files/base-atticroof-vented.xml index e42a081c3..e6bb01a61 100644 --- a/workflow/sample_files/base-atticroof-vented.xml +++ b/workflow/sample_files/base-atticroof-vented.xml @@ -447,7 +447,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-battery.xml b/workflow/sample_files/base-battery.xml index c68f57915..4498d36ba 100644 --- a/workflow/sample_files/base-battery.xml +++ b/workflow/sample_files/base-battery.xml @@ -460,7 +460,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml b/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml index 4a039736d..3f221a7f2 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-adjacent-to-multiple.xml @@ -459,7 +459,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-location-portland-or.xml b/workflow/sample_files/base-bldgtype-mf-unit-location-portland-or.xml index 77aa78932..24b51dc80 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-location-portland-or.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-location-portland-or.xml @@ -355,7 +355,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml index 8f21b5047..6b17323a8 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml @@ -306,7 +306,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml index 107f026a2..91153aade 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml @@ -339,7 +339,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml index 1ed5b5486..2aaf30376 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml @@ -307,7 +307,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml index 41c7aa58d..e2c897778 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml @@ -357,7 +357,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml index 2a7dce545..88b210e5a 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml @@ -304,7 +304,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml index 6623f5a62..11f865e70 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml @@ -337,7 +337,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml index 9816291c9..bb4704ed3 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml @@ -305,7 +305,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml index d8470cdf5..004a4bc1a 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-chiller-only-water-loop-heat-pump.xml @@ -355,7 +355,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml index 95eabc310..6bd918b91 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-cooling-tower-only-water-loop-heat-pump.xml @@ -350,7 +350,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-generator.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-generator.xml index 69cb93380..1a5e25cae 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-generator.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-generator.xml @@ -367,7 +367,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml index 297ccf9af..3302e9bd1 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-ground-loop-ground-to-air-heat-pump.xml @@ -354,7 +354,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml index c82c35255..c16f9ac08 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room-multiple-water-heaters.xml @@ -380,7 +380,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml index 755bb409f..6b8bdd4f9 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-laundry-room.xml @@ -365,7 +365,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml index 56ca47eff..ab92f883d 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent-preconditioning.xml @@ -397,7 +397,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent.xml index 173f0f7d2..181bc866b 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-mechvent.xml @@ -381,7 +381,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-pv-battery.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-pv-battery.xml index 3f5bdb1a5..9e3f2175e 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-pv-battery.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-pv-battery.xml @@ -396,7 +396,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-pv.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-pv.xml index c9ae3e37c..6e364e915 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-pv.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-pv.xml @@ -376,7 +376,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml index 836d1531f..0bf765e2f 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-heat-pump.xml @@ -357,7 +357,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml index a6c89ee24..597349d71 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater-recirc.xml @@ -367,7 +367,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater.xml b/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater.xml index 944cb12fb..84e52d74b 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit-shared-water-heater.xml @@ -359,7 +359,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-mf-unit.xml b/workflow/sample_files/base-bldgtype-mf-unit.xml index 351bd9bce..bd816743e 100644 --- a/workflow/sample_files/base-bldgtype-mf-unit.xml +++ b/workflow/sample_files/base-bldgtype-mf-unit.xml @@ -355,7 +355,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-bldgtype-sfa-unit.xml b/workflow/sample_files/base-bldgtype-sfa-unit.xml index 1e3035d2f..538c701bb 100644 --- a/workflow/sample_files/base-bldgtype-sfa-unit.xml +++ b/workflow/sample_files/base-bldgtype-sfa-unit.xml @@ -497,7 +497,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-combi-tankless.xml b/workflow/sample_files/base-dhw-combi-tankless.xml index ec6567167..5fd87def5 100644 --- a/workflow/sample_files/base-dhw-combi-tankless.xml +++ b/workflow/sample_files/base-dhw-combi-tankless.xml @@ -386,7 +386,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-desuperheater.xml b/workflow/sample_files/base-dhw-desuperheater.xml index 68a660d52..cc580a52b 100644 --- a/workflow/sample_files/base-dhw-desuperheater.xml +++ b/workflow/sample_files/base-dhw-desuperheater.xml @@ -427,7 +427,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-dwhr.xml b/workflow/sample_files/base-dhw-dwhr.xml index 36d241c05..b5aed2700 100644 --- a/workflow/sample_files/base-dhw-dwhr.xml +++ b/workflow/sample_files/base-dhw-dwhr.xml @@ -448,7 +448,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-indirect-standbyloss.xml b/workflow/sample_files/base-dhw-indirect-standbyloss.xml index 5f79311c1..ebef99ce1 100644 --- a/workflow/sample_files/base-dhw-indirect-standbyloss.xml +++ b/workflow/sample_files/base-dhw-indirect-standbyloss.xml @@ -391,7 +391,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-jacket-gas.xml b/workflow/sample_files/base-dhw-jacket-gas.xml index 16b243b0f..ca014756b 100644 --- a/workflow/sample_files/base-dhw-jacket-gas.xml +++ b/workflow/sample_files/base-dhw-jacket-gas.xml @@ -449,7 +449,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-jacket-hpwh.xml b/workflow/sample_files/base-dhw-jacket-hpwh.xml index c5243f4ac..83854660a 100644 --- a/workflow/sample_files/base-dhw-jacket-hpwh.xml +++ b/workflow/sample_files/base-dhw-jacket-hpwh.xml @@ -447,7 +447,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-jacket-indirect.xml b/workflow/sample_files/base-dhw-jacket-indirect.xml index d3f160fe1..f52978e45 100644 --- a/workflow/sample_files/base-dhw-jacket-indirect.xml +++ b/workflow/sample_files/base-dhw-jacket-indirect.xml @@ -392,7 +392,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-low-flow-fixtures.xml b/workflow/sample_files/base-dhw-low-flow-fixtures.xml index fdb56cc18..bc794c44b 100644 --- a/workflow/sample_files/base-dhw-low-flow-fixtures.xml +++ b/workflow/sample_files/base-dhw-low-flow-fixtures.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-multiple.xml b/workflow/sample_files/base-dhw-multiple.xml index 372196b1c..f2eda7571 100644 --- a/workflow/sample_files/base-dhw-multiple.xml +++ b/workflow/sample_files/base-dhw-multiple.xml @@ -445,7 +445,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-none.xml b/workflow/sample_files/base-dhw-none.xml index 6fcad8f1b..0192bec9d 100644 --- a/workflow/sample_files/base-dhw-none.xml +++ b/workflow/sample_files/base-dhw-none.xml @@ -377,7 +377,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-recirc-demand.xml b/workflow/sample_files/base-dhw-recirc-demand.xml index b0bc4c9fa..7acc4a3d2 100644 --- a/workflow/sample_files/base-dhw-recirc-demand.xml +++ b/workflow/sample_files/base-dhw-recirc-demand.xml @@ -446,7 +446,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-solar-fraction.xml b/workflow/sample_files/base-dhw-solar-fraction.xml index 3e8742377..cca3fcd40 100644 --- a/workflow/sample_files/base-dhw-solar-fraction.xml +++ b/workflow/sample_files/base-dhw-solar-fraction.xml @@ -451,7 +451,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml b/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml index 919319cff..f51da7fa3 100644 --- a/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml +++ b/workflow/sample_files/base-dhw-solar-indirect-flat-plate.xml @@ -458,7 +458,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-tank-elec-uef.xml b/workflow/sample_files/base-dhw-tank-elec-uef.xml index b32c24409..1205b90a5 100644 --- a/workflow/sample_files/base-dhw-tank-elec-uef.xml +++ b/workflow/sample_files/base-dhw-tank-elec-uef.xml @@ -444,7 +444,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-tank-gas-uef.xml b/workflow/sample_files/base-dhw-tank-gas-uef.xml index 111b80ac0..176d00287 100644 --- a/workflow/sample_files/base-dhw-tank-gas-uef.xml +++ b/workflow/sample_files/base-dhw-tank-gas-uef.xml @@ -445,7 +445,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml b/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml index b73f78c45..1c6d0cde1 100644 --- a/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml +++ b/workflow/sample_files/base-dhw-tank-heat-pump-uef.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-tank-oil.xml b/workflow/sample_files/base-dhw-tank-oil.xml index 6f5e60318..4d2e5cfc1 100644 --- a/workflow/sample_files/base-dhw-tank-oil.xml +++ b/workflow/sample_files/base-dhw-tank-oil.xml @@ -444,7 +444,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-tank-wood.xml b/workflow/sample_files/base-dhw-tank-wood.xml index e70972752..13e52f9ba 100644 --- a/workflow/sample_files/base-dhw-tank-wood.xml +++ b/workflow/sample_files/base-dhw-tank-wood.xml @@ -444,7 +444,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-tankless-electric-uef.xml b/workflow/sample_files/base-dhw-tankless-electric-uef.xml index b4b6e6361..e032bc792 100644 --- a/workflow/sample_files/base-dhw-tankless-electric-uef.xml +++ b/workflow/sample_files/base-dhw-tankless-electric-uef.xml @@ -441,7 +441,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-tankless-gas-uef.xml b/workflow/sample_files/base-dhw-tankless-gas-uef.xml index 4260e516c..13acbbd3a 100644 --- a/workflow/sample_files/base-dhw-tankless-gas-uef.xml +++ b/workflow/sample_files/base-dhw-tankless-gas-uef.xml @@ -441,7 +441,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-dhw-tankless-propane.xml b/workflow/sample_files/base-dhw-tankless-propane.xml index 949305fa0..37b7a2f97 100644 --- a/workflow/sample_files/base-dhw-tankless-propane.xml +++ b/workflow/sample_files/base-dhw-tankless-propane.xml @@ -441,7 +441,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-2stories-garage.xml b/workflow/sample_files/base-enclosure-2stories-garage.xml index 1dc0fed47..1b6e3b735 100644 --- a/workflow/sample_files/base-enclosure-2stories-garage.xml +++ b/workflow/sample_files/base-enclosure-2stories-garage.xml @@ -542,7 +542,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-2stories.xml b/workflow/sample_files/base-enclosure-2stories.xml index 5a9aaf593..322410c2f 100644 --- a/workflow/sample_files/base-enclosure-2stories.xml +++ b/workflow/sample_files/base-enclosure-2stories.xml @@ -469,7 +469,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-beds-1.xml b/workflow/sample_files/base-enclosure-beds-1.xml index 18c61d81a..165b412ab 100644 --- a/workflow/sample_files/base-enclosure-beds-1.xml +++ b/workflow/sample_files/base-enclosure-beds-1.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-beds-2.xml b/workflow/sample_files/base-enclosure-beds-2.xml index a583f18eb..757c8a939 100644 --- a/workflow/sample_files/base-enclosure-beds-2.xml +++ b/workflow/sample_files/base-enclosure-beds-2.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-beds-4.xml b/workflow/sample_files/base-enclosure-beds-4.xml index cf70650f3..b8c789417 100644 --- a/workflow/sample_files/base-enclosure-beds-4.xml +++ b/workflow/sample_files/base-enclosure-beds-4.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-beds-5.xml b/workflow/sample_files/base-enclosure-beds-5.xml index c96805e5e..e4f0bc191 100644 --- a/workflow/sample_files/base-enclosure-beds-5.xml +++ b/workflow/sample_files/base-enclosure-beds-5.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-ceilingtypes.xml b/workflow/sample_files/base-enclosure-ceilingtypes.xml index eeed3c72d..550726828 100644 --- a/workflow/sample_files/base-enclosure-ceilingtypes.xml +++ b/workflow/sample_files/base-enclosure-ceilingtypes.xml @@ -468,7 +468,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-floortypes.xml b/workflow/sample_files/base-enclosure-floortypes.xml index 47afe62e4..2a903e95f 100644 --- a/workflow/sample_files/base-enclosure-floortypes.xml +++ b/workflow/sample_files/base-enclosure-floortypes.xml @@ -409,7 +409,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-garage.xml b/workflow/sample_files/base-enclosure-garage.xml index 68259a0e2..213c81971 100644 --- a/workflow/sample_files/base-enclosure-garage.xml +++ b/workflow/sample_files/base-enclosure-garage.xml @@ -517,7 +517,6 @@ garage 650.0 - true diff --git a/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml b/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml index bc466c7dc..29ab9e79d 100644 --- a/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml +++ b/workflow/sample_files/base-enclosure-infil-ach-house-pressure.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml b/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml index 06baaed30..b4b9b4880 100644 --- a/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml +++ b/workflow/sample_files/base-enclosure-infil-cfm-house-pressure.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-infil-cfm50.xml b/workflow/sample_files/base-enclosure-infil-cfm50.xml index 976b5729a..ca6b5ed5a 100644 --- a/workflow/sample_files/base-enclosure-infil-cfm50.xml +++ b/workflow/sample_files/base-enclosure-infil-cfm50.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-infil-ela.xml b/workflow/sample_files/base-enclosure-infil-ela.xml index 264700b1a..5b0ea98f5 100644 --- a/workflow/sample_files/base-enclosure-infil-ela.xml +++ b/workflow/sample_files/base-enclosure-infil-ela.xml @@ -439,7 +439,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-infil-natural-ach.xml b/workflow/sample_files/base-enclosure-infil-natural-ach.xml index 51a0e101d..a1ad54da3 100644 --- a/workflow/sample_files/base-enclosure-infil-natural-ach.xml +++ b/workflow/sample_files/base-enclosure-infil-natural-ach.xml @@ -442,7 +442,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-infil-natural-cfm.xml b/workflow/sample_files/base-enclosure-infil-natural-cfm.xml index 2c428fd7e..a07f75605 100644 --- a/workflow/sample_files/base-enclosure-infil-natural-cfm.xml +++ b/workflow/sample_files/base-enclosure-infil-natural-cfm.xml @@ -442,7 +442,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-overhangs.xml b/workflow/sample_files/base-enclosure-overhangs.xml index ac0418f6f..322be966f 100644 --- a/workflow/sample_files/base-enclosure-overhangs.xml +++ b/workflow/sample_files/base-enclosure-overhangs.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-skylights.xml b/workflow/sample_files/base-enclosure-skylights.xml index e0ed3ac60..b72d457bd 100644 --- a/workflow/sample_files/base-enclosure-skylights.xml +++ b/workflow/sample_files/base-enclosure-skylights.xml @@ -471,7 +471,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-enclosure-walltypes.xml b/workflow/sample_files/base-enclosure-walltypes.xml index e0d4541ac..5a7e62393 100644 --- a/workflow/sample_files/base-enclosure-walltypes.xml +++ b/workflow/sample_files/base-enclosure-walltypes.xml @@ -717,7 +717,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-foundation-ambient.xml b/workflow/sample_files/base-foundation-ambient.xml index 0f7b58299..a09a2d2a3 100644 --- a/workflow/sample_files/base-foundation-ambient.xml +++ b/workflow/sample_files/base-foundation-ambient.xml @@ -385,7 +385,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-foundation-basement-garage.xml b/workflow/sample_files/base-foundation-basement-garage.xml index 2b317854f..be2ba7a37 100644 --- a/workflow/sample_files/base-foundation-basement-garage.xml +++ b/workflow/sample_files/base-foundation-basement-garage.xml @@ -524,7 +524,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml index 899449db2..3b8ec7dff 100644 --- a/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml +++ b/workflow/sample_files/base-foundation-conditioned-basement-slab-insulation.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml b/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml index 57895d2a8..8c88bab0a 100644 --- a/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml +++ b/workflow/sample_files/base-foundation-conditioned-basement-wall-insulation.xml @@ -444,7 +444,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-foundation-multiple.xml b/workflow/sample_files/base-foundation-multiple.xml index ba1eab7ff..51bf8b93b 100644 --- a/workflow/sample_files/base-foundation-multiple.xml +++ b/workflow/sample_files/base-foundation-multiple.xml @@ -563,7 +563,6 @@ basement - unconditioned 650.0 - true diff --git a/workflow/sample_files/base-foundation-slab.xml b/workflow/sample_files/base-foundation-slab.xml index 91eb81714..d3d5b902b 100644 --- a/workflow/sample_files/base-foundation-slab.xml +++ b/workflow/sample_files/base-foundation-slab.xml @@ -400,7 +400,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml b/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml index d8618fb19..f56218efb 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement-assembly-r.xml @@ -447,7 +447,6 @@ basement - unconditioned 650.0 - true diff --git a/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml b/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml index 44b47f0d7..0fc8c32e4 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement-wall-insulation.xml @@ -458,7 +458,6 @@ basement - unconditioned 650.0 - true diff --git a/workflow/sample_files/base-foundation-unconditioned-basement.xml b/workflow/sample_files/base-foundation-unconditioned-basement.xml index 6aa0f5f18..480c73269 100644 --- a/workflow/sample_files/base-foundation-unconditioned-basement.xml +++ b/workflow/sample_files/base-foundation-unconditioned-basement.xml @@ -458,7 +458,6 @@ basement - unconditioned 650.0 - true diff --git a/workflow/sample_files/base-foundation-unvented-crawlspace.xml b/workflow/sample_files/base-foundation-unvented-crawlspace.xml index 1f5eb17e5..f3a6cc13f 100644 --- a/workflow/sample_files/base-foundation-unvented-crawlspace.xml +++ b/workflow/sample_files/base-foundation-unvented-crawlspace.xml @@ -458,7 +458,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml b/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml index 6a38ad880..4d8700abd 100644 --- a/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml +++ b/workflow/sample_files/base-foundation-vented-crawlspace-above-grade.xml @@ -451,7 +451,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-foundation-vented-crawlspace.xml b/workflow/sample_files/base-foundation-vented-crawlspace.xml index 87b2f8da4..b09062a70 100644 --- a/workflow/sample_files/base-foundation-vented-crawlspace.xml +++ b/workflow/sample_files/base-foundation-vented-crawlspace.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-foundation-walkout-basement.xml b/workflow/sample_files/base-foundation-walkout-basement.xml index eac55d821..ec197487c 100644 --- a/workflow/sample_files/base-foundation-walkout-basement.xml +++ b/workflow/sample_files/base-foundation-walkout-basement.xml @@ -502,7 +502,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml index 6d9b8c79b..3855180ed 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml @@ -435,7 +435,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml index 8ead81d1f..373fa776e 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml @@ -442,7 +442,6 @@ conditioned space 650.0 - true 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 2ab6e2fe5..51c14ee61 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 @@ -448,7 +448,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml index 961f29f0c..81fe800e5 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml @@ -442,7 +442,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml index bf43a6101..2b1ef829d 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-1-speed.xml @@ -442,7 +442,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml index 8fad77761..1364c87b1 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-2-speed.xml @@ -442,7 +442,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml index cfeca8157..4166f1d06 100644 --- a/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml +++ b/workflow/sample_files/base-hvac-air-to-air-heat-pump-var-speed.xml @@ -442,7 +442,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-boiler-elec-only.xml b/workflow/sample_files/base-hvac-boiler-elec-only.xml index 20d64838e..feac9e602 100644 --- a/workflow/sample_files/base-hvac-boiler-elec-only.xml +++ b/workflow/sample_files/base-hvac-boiler-elec-only.xml @@ -389,7 +389,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-boiler-gas-only.xml b/workflow/sample_files/base-hvac-boiler-gas-only.xml index 9315c3843..03b7dca6c 100644 --- a/workflow/sample_files/base-hvac-boiler-gas-only.xml +++ b/workflow/sample_files/base-hvac-boiler-gas-only.xml @@ -389,7 +389,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-boiler-oil-only.xml b/workflow/sample_files/base-hvac-boiler-oil-only.xml index e2e94f279..e71132643 100644 --- a/workflow/sample_files/base-hvac-boiler-oil-only.xml +++ b/workflow/sample_files/base-hvac-boiler-oil-only.xml @@ -389,7 +389,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-boiler-propane-only.xml b/workflow/sample_files/base-hvac-boiler-propane-only.xml index 2e6a77428..6334659a7 100644 --- a/workflow/sample_files/base-hvac-boiler-propane-only.xml +++ b/workflow/sample_files/base-hvac-boiler-propane-only.xml @@ -389,7 +389,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml b/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml index 11d1fdf09..2a9d46c6e 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-1-speed-seer2.xml @@ -425,7 +425,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml b/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml index ef005d2f7..2739e6f13 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-1-speed.xml @@ -425,7 +425,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml b/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml index 51f9bc894..231582dca 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-2-speed.xml @@ -425,7 +425,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml b/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml index 4e95c4340..90e959fb8 100644 --- a/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml +++ b/workflow/sample_files/base-hvac-central-ac-only-var-speed.xml @@ -425,7 +425,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml b/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml index c223d89eb..b557fbd36 100644 --- a/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml +++ b/workflow/sample_files/base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml @@ -461,7 +461,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-dse.xml b/workflow/sample_files/base-hvac-dse.xml index 81e21729a..f4ab24b48 100644 --- a/workflow/sample_files/base-hvac-dse.xml +++ b/workflow/sample_files/base-hvac-dse.xml @@ -411,7 +411,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml index 5742e7a59..47e89f3b9 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml @@ -444,7 +444,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml index 9fc7ef689..c0a6ff5d0 100644 --- a/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml +++ b/workflow/sample_files/base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-ducts-area-fractions.xml b/workflow/sample_files/base-hvac-ducts-area-fractions.xml index 2588f47c7..9f06d0e63 100644 --- a/workflow/sample_files/base-hvac-ducts-area-fractions.xml +++ b/workflow/sample_files/base-hvac-ducts-area-fractions.xml @@ -469,7 +469,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-ducts-buried.xml b/workflow/sample_files/base-hvac-ducts-buried.xml index 7e36a94de..08a27fe0f 100644 --- a/workflow/sample_files/base-hvac-ducts-buried.xml +++ b/workflow/sample_files/base-hvac-ducts-buried.xml @@ -445,7 +445,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml b/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml index f5dc9e32e..1e075eb8f 100644 --- a/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml +++ b/workflow/sample_files/base-hvac-ducts-leakage-cfm50.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-ducts-shape-mixed.xml b/workflow/sample_files/base-hvac-ducts-shape-mixed.xml index 8fa22b86d..785de4b96 100644 --- a/workflow/sample_files/base-hvac-ducts-shape-mixed.xml +++ b/workflow/sample_files/base-hvac-ducts-shape-mixed.xml @@ -449,7 +449,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml b/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml index eced55ac8..6b75bf273 100644 --- a/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml +++ b/workflow/sample_files/base-hvac-ducts-shape-rectangular.xml @@ -445,7 +445,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-ducts-shape-round.xml b/workflow/sample_files/base-hvac-ducts-shape-round.xml index 94cdeeece..accdb10ea 100644 --- a/workflow/sample_files/base-hvac-ducts-shape-round.xml +++ b/workflow/sample_files/base-hvac-ducts-shape-round.xml @@ -445,7 +445,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-elec-resistance-only.xml b/workflow/sample_files/base-hvac-elec-resistance-only.xml index 3817b92c3..cc4c9a002 100644 --- a/workflow/sample_files/base-hvac-elec-resistance-only.xml +++ b/workflow/sample_files/base-hvac-elec-resistance-only.xml @@ -379,7 +379,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml b/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml index b19209d00..497223fc7 100644 --- a/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml +++ b/workflow/sample_files/base-hvac-evap-cooler-only-ducted.xml @@ -407,7 +407,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-evap-cooler-only.xml b/workflow/sample_files/base-hvac-evap-cooler-only.xml index b94e67cfd..87b07ea9d 100644 --- a/workflow/sample_files/base-hvac-evap-cooler-only.xml +++ b/workflow/sample_files/base-hvac-evap-cooler-only.xml @@ -373,7 +373,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-fireplace-wood-only.xml b/workflow/sample_files/base-hvac-fireplace-wood-only.xml index 80b7055aa..bc8cac0d9 100644 --- a/workflow/sample_files/base-hvac-fireplace-wood-only.xml +++ b/workflow/sample_files/base-hvac-fireplace-wood-only.xml @@ -382,7 +382,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml b/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml index 810837b81..3c7ac8998 100644 --- a/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml +++ b/workflow/sample_files/base-hvac-floor-furnace-propane-only.xml @@ -382,7 +382,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-furnace-elec-only.xml b/workflow/sample_files/base-hvac-furnace-elec-only.xml index 34e7add42..a0fb42653 100644 --- a/workflow/sample_files/base-hvac-furnace-elec-only.xml +++ b/workflow/sample_files/base-hvac-furnace-elec-only.xml @@ -424,7 +424,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-furnace-gas-only.xml b/workflow/sample_files/base-hvac-furnace-gas-only.xml index 62ad20b21..70b2a0f5c 100644 --- a/workflow/sample_files/base-hvac-furnace-gas-only.xml +++ b/workflow/sample_files/base-hvac-furnace-gas-only.xml @@ -424,7 +424,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml index 3244c24ae..de51dc245 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-cooling-only.xml @@ -432,7 +432,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml index 1f4f23666..b970092b2 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump-heating-only.xml @@ -439,7 +439,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml index c67ffcc62..878b5f417 100644 --- a/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-ground-to-air-heat-pump.xml @@ -439,7 +439,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml index 181a70d7c..72896e677 100644 --- a/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml @@ -442,7 +442,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml index ced0ae2df..b6e8ef72e 100644 --- a/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml +++ b/workflow/sample_files/base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml index 3e05b4561..c252491de 100644 --- a/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml +++ b/workflow/sample_files/base-hvac-install-quality-ground-to-air-heat-pump.xml @@ -439,7 +439,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml b/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml index 27c733399..f34798d89 100644 --- a/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml +++ b/workflow/sample_files/base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml @@ -424,7 +424,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml b/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml index 346337b13..29ee03e02 100644 --- a/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml +++ b/workflow/sample_files/base-hvac-install-quality-mini-split-heat-pump-ducted.xml @@ -441,7 +441,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml index 1e3b16bbf..42cdc429f 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ducted.xml @@ -424,7 +424,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml index 554d95673..dd2f44397 100644 --- a/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml +++ b/workflow/sample_files/base-hvac-mini-split-air-conditioner-only-ductless.xml @@ -383,7 +383,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml index d30d4d900..f031316a7 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-cooling-only.xml @@ -434,7 +434,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml index 02e1a9fe4..fe4604f47 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted-heating-only.xml @@ -441,7 +441,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml index 2622222c0..1b5fbbefe 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ducted.xml @@ -441,7 +441,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml index 89e1dfcea..2f5cbc41f 100644 --- a/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml +++ b/workflow/sample_files/base-hvac-mini-split-heat-pump-ductless.xml @@ -393,7 +393,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-multiple.xml b/workflow/sample_files/base-hvac-multiple.xml index 70fe15f21..ff12abaea 100644 --- a/workflow/sample_files/base-hvac-multiple.xml +++ b/workflow/sample_files/base-hvac-multiple.xml @@ -849,7 +849,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-none.xml b/workflow/sample_files/base-hvac-none.xml index 0bfbfbcb1..4df9148b7 100644 --- a/workflow/sample_files/base-hvac-none.xml +++ b/workflow/sample_files/base-hvac-none.xml @@ -314,7 +314,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-programmable-thermostat.xml b/workflow/sample_files/base-hvac-programmable-thermostat.xml index c8a3f88c1..b91316151 100644 --- a/workflow/sample_files/base-hvac-programmable-thermostat.xml +++ b/workflow/sample_files/base-hvac-programmable-thermostat.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml b/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml index 2ded54104..e01665595 100644 --- a/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml +++ b/workflow/sample_files/base-hvac-ptac-with-heating-electricity.xml @@ -385,7 +385,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml b/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml index af75425c5..112c0d64f 100644 --- a/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml +++ b/workflow/sample_files/base-hvac-ptac-with-heating-natural-gas.xml @@ -385,7 +385,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-ptac.xml b/workflow/sample_files/base-hvac-ptac.xml index 44b000462..10a16f87b 100644 --- a/workflow/sample_files/base-hvac-ptac.xml +++ b/workflow/sample_files/base-hvac-ptac.xml @@ -378,7 +378,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-pthp.xml b/workflow/sample_files/base-hvac-pthp.xml index d4258138e..86ddb1c38 100644 --- a/workflow/sample_files/base-hvac-pthp.xml +++ b/workflow/sample_files/base-hvac-pthp.xml @@ -397,7 +397,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-room-ac-only-ceer.xml b/workflow/sample_files/base-hvac-room-ac-only-ceer.xml index e2eb7da4b..5e42b364c 100644 --- a/workflow/sample_files/base-hvac-room-ac-only-ceer.xml +++ b/workflow/sample_files/base-hvac-room-ac-only-ceer.xml @@ -378,7 +378,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-room-ac-only.xml b/workflow/sample_files/base-hvac-room-ac-only.xml index d7c19ffd8..cb1bcf089 100644 --- a/workflow/sample_files/base-hvac-room-ac-only.xml +++ b/workflow/sample_files/base-hvac-room-ac-only.xml @@ -378,7 +378,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-room-ac-with-heating.xml b/workflow/sample_files/base-hvac-room-ac-with-heating.xml index cd33bb60a..2694e25f0 100644 --- a/workflow/sample_files/base-hvac-room-ac-with-heating.xml +++ b/workflow/sample_files/base-hvac-room-ac-with-heating.xml @@ -385,7 +385,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml b/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml index df8885d90..a3301b8d8 100644 --- a/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml +++ b/workflow/sample_files/base-hvac-room-ac-with-reverse-cycle.xml @@ -397,7 +397,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-space-heater-gas-only.xml b/workflow/sample_files/base-hvac-space-heater-gas-only.xml index 2273f3b25..59f1bd988 100644 --- a/workflow/sample_files/base-hvac-space-heater-gas-only.xml +++ b/workflow/sample_files/base-hvac-space-heater-gas-only.xml @@ -382,7 +382,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml b/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml index 979107b28..a27820701 100644 --- a/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml +++ b/workflow/sample_files/base-hvac-stove-wood-pellets-only.xml @@ -382,7 +382,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-undersized.xml b/workflow/sample_files/base-hvac-undersized.xml index 433d35753..c47f065b0 100644 --- a/workflow/sample_files/base-hvac-undersized.xml +++ b/workflow/sample_files/base-hvac-undersized.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml b/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml index fbf4a384a..3c35f8859 100644 --- a/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml +++ b/workflow/sample_files/base-hvac-wall-furnace-elec-only.xml @@ -382,7 +382,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml b/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml index f7c4dee41..6066fa88c 100644 --- a/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml +++ b/workflow/sample_files/base-lighting-ceiling-fans-label-energy-use.xml @@ -446,7 +446,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-lighting-ceiling-fans.xml b/workflow/sample_files/base-lighting-ceiling-fans.xml index 2bf0bd5fe..ea6b304f9 100644 --- a/workflow/sample_files/base-lighting-ceiling-fans.xml +++ b/workflow/sample_files/base-lighting-ceiling-fans.xml @@ -446,7 +446,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-location-baltimore-md.xml b/workflow/sample_files/base-location-baltimore-md.xml index 2e6ca332d..f496c0639 100644 --- a/workflow/sample_files/base-location-baltimore-md.xml +++ b/workflow/sample_files/base-location-baltimore-md.xml @@ -458,7 +458,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-location-capetown-zaf.xml b/workflow/sample_files/base-location-capetown-zaf.xml index 92f6b93ff..81b5f8e85 100644 --- a/workflow/sample_files/base-location-capetown-zaf.xml +++ b/workflow/sample_files/base-location-capetown-zaf.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-location-dallas-tx.xml b/workflow/sample_files/base-location-dallas-tx.xml index 2d2d978c3..246e22e9f 100644 --- a/workflow/sample_files/base-location-dallas-tx.xml +++ b/workflow/sample_files/base-location-dallas-tx.xml @@ -399,7 +399,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-location-duluth-mn.xml b/workflow/sample_files/base-location-duluth-mn.xml index 266b63249..d3373be13 100644 --- a/workflow/sample_files/base-location-duluth-mn.xml +++ b/workflow/sample_files/base-location-duluth-mn.xml @@ -458,7 +458,6 @@ basement - unconditioned 650.0 - true diff --git a/workflow/sample_files/base-location-helena-mt.xml b/workflow/sample_files/base-location-helena-mt.xml index 85f2a9aa4..ca5bed907 100644 --- a/workflow/sample_files/base-location-helena-mt.xml +++ b/workflow/sample_files/base-location-helena-mt.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-location-honolulu-hi.xml b/workflow/sample_files/base-location-honolulu-hi.xml index 3a34e58d3..b233050d1 100644 --- a/workflow/sample_files/base-location-honolulu-hi.xml +++ b/workflow/sample_files/base-location-honolulu-hi.xml @@ -399,7 +399,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-location-miami-fl.xml b/workflow/sample_files/base-location-miami-fl.xml index 505725b48..6e88e0bb4 100644 --- a/workflow/sample_files/base-location-miami-fl.xml +++ b/workflow/sample_files/base-location-miami-fl.xml @@ -399,7 +399,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-location-phoenix-az.xml b/workflow/sample_files/base-location-phoenix-az.xml index 7b8bea06c..78cda765e 100644 --- a/workflow/sample_files/base-location-phoenix-az.xml +++ b/workflow/sample_files/base-location-phoenix-az.xml @@ -399,7 +399,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-location-portland-or.xml b/workflow/sample_files/base-location-portland-or.xml index ceb14aeea..c7bd52f45 100644 --- a/workflow/sample_files/base-location-portland-or.xml +++ b/workflow/sample_files/base-location-portland-or.xml @@ -462,7 +462,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-mechvent-balanced.xml b/workflow/sample_files/base-mechvent-balanced.xml index 4ce82e41c..24ab8cf33 100644 --- a/workflow/sample_files/base-mechvent-balanced.xml +++ b/workflow/sample_files/base-mechvent-balanced.xml @@ -456,7 +456,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml b/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml index 2b6619e76..ce099495a 100644 --- a/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +++ b/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml index 169740934..488ec5c35 100644 --- a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +++ b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml @@ -472,7 +472,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-mechvent-cfis.xml b/workflow/sample_files/base-mechvent-cfis.xml index 42f0b5a41..317c85dcb 100644 --- a/workflow/sample_files/base-mechvent-cfis.xml +++ b/workflow/sample_files/base-mechvent-cfis.xml @@ -463,7 +463,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-mechvent-erv-atre-asre.xml b/workflow/sample_files/base-mechvent-erv-atre-asre.xml index 5dfd1a4fd..727dcd158 100644 --- a/workflow/sample_files/base-mechvent-erv-atre-asre.xml +++ b/workflow/sample_files/base-mechvent-erv-atre-asre.xml @@ -458,7 +458,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-mechvent-erv.xml b/workflow/sample_files/base-mechvent-erv.xml index b94bc5627..18c553015 100644 --- a/workflow/sample_files/base-mechvent-erv.xml +++ b/workflow/sample_files/base-mechvent-erv.xml @@ -458,7 +458,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-mechvent-exhaust.xml b/workflow/sample_files/base-mechvent-exhaust.xml index cc986b872..e6cf6f85a 100644 --- a/workflow/sample_files/base-mechvent-exhaust.xml +++ b/workflow/sample_files/base-mechvent-exhaust.xml @@ -456,7 +456,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-mechvent-hrv-asre.xml b/workflow/sample_files/base-mechvent-hrv-asre.xml index a3f840ba8..f1a9d7e6f 100644 --- a/workflow/sample_files/base-mechvent-hrv-asre.xml +++ b/workflow/sample_files/base-mechvent-hrv-asre.xml @@ -457,7 +457,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-mechvent-hrv.xml b/workflow/sample_files/base-mechvent-hrv.xml index c4ec51bc9..ed77cd962 100644 --- a/workflow/sample_files/base-mechvent-hrv.xml +++ b/workflow/sample_files/base-mechvent-hrv.xml @@ -457,7 +457,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-mechvent-multiple.xml b/workflow/sample_files/base-mechvent-multiple.xml index a8fa7e908..8fb8015d4 100644 --- a/workflow/sample_files/base-mechvent-multiple.xml +++ b/workflow/sample_files/base-mechvent-multiple.xml @@ -684,7 +684,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-mechvent-supply.xml b/workflow/sample_files/base-mechvent-supply.xml index 0f6dd2c93..007097225 100644 --- a/workflow/sample_files/base-mechvent-supply.xml +++ b/workflow/sample_files/base-mechvent-supply.xml @@ -456,7 +456,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-mechvent-whole-house-fan.xml b/workflow/sample_files/base-mechvent-whole-house-fan.xml index 5265f82ab..40568e6c3 100644 --- a/workflow/sample_files/base-mechvent-whole-house-fan.xml +++ b/workflow/sample_files/base-mechvent-whole-house-fan.xml @@ -453,7 +453,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-misc-generators.xml b/workflow/sample_files/base-misc-generators.xml index 208c4bc17..54c257872 100644 --- a/workflow/sample_files/base-misc-generators.xml +++ b/workflow/sample_files/base-misc-generators.xml @@ -461,7 +461,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-pv-battery.xml b/workflow/sample_files/base-pv-battery.xml index d88f62581..3cd644590 100644 --- a/workflow/sample_files/base-pv-battery.xml +++ b/workflow/sample_files/base-pv-battery.xml @@ -490,7 +490,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-pv.xml b/workflow/sample_files/base-pv.xml index fa5119957..137c1eee5 100644 --- a/workflow/sample_files/base-pv.xml +++ b/workflow/sample_files/base-pv.xml @@ -473,7 +473,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-co2-2019ABCD.xml b/workflow/sample_files/base-version-co2-2019ABCD.xml index f3f2c66f9..ace364413 100644 --- a/workflow/sample_files/base-version-co2-2019ABCD.xml +++ b/workflow/sample_files/base-version-co2-2019ABCD.xml @@ -431,7 +431,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-co2-2022.xml b/workflow/sample_files/base-version-co2-2022.xml index 5e1e2600a..d423c17d9 100644 --- a/workflow/sample_files/base-version-co2-2022.xml +++ b/workflow/sample_files/base-version-co2-2022.xml @@ -431,7 +431,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-co2-2022C.xml b/workflow/sample_files/base-version-co2-2022C.xml index 585f2569d..1a33cc483 100644 --- a/workflow/sample_files/base-version-co2-2022C.xml +++ b/workflow/sample_files/base-version-co2-2022C.xml @@ -431,7 +431,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-eri-2014.xml b/workflow/sample_files/base-version-eri-2014.xml index 3859885ef..8b2de8ce9 100644 --- a/workflow/sample_files/base-version-eri-2014.xml +++ b/workflow/sample_files/base-version-eri-2014.xml @@ -432,7 +432,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-eri-2014A.xml b/workflow/sample_files/base-version-eri-2014A.xml index ccf6403fa..627812ce1 100644 --- a/workflow/sample_files/base-version-eri-2014A.xml +++ b/workflow/sample_files/base-version-eri-2014A.xml @@ -432,7 +432,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-eri-2014AE.xml b/workflow/sample_files/base-version-eri-2014AE.xml index 29893ba23..349522bdd 100644 --- a/workflow/sample_files/base-version-eri-2014AE.xml +++ b/workflow/sample_files/base-version-eri-2014AE.xml @@ -432,7 +432,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-eri-2014AEG.xml b/workflow/sample_files/base-version-eri-2014AEG.xml index 84f964c8c..b01987a91 100644 --- a/workflow/sample_files/base-version-eri-2014AEG.xml +++ b/workflow/sample_files/base-version-eri-2014AEG.xml @@ -432,7 +432,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-eri-2019.xml b/workflow/sample_files/base-version-eri-2019.xml index 90a9f6eef..f58867bf8 100644 --- a/workflow/sample_files/base-version-eri-2019.xml +++ b/workflow/sample_files/base-version-eri-2019.xml @@ -432,7 +432,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-eri-2019A.xml b/workflow/sample_files/base-version-eri-2019A.xml index c0e1db54f..667fe8b83 100644 --- a/workflow/sample_files/base-version-eri-2019A.xml +++ b/workflow/sample_files/base-version-eri-2019A.xml @@ -431,7 +431,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-eri-2019AB.xml b/workflow/sample_files/base-version-eri-2019AB.xml index 21b6c9ec2..804a24c69 100644 --- a/workflow/sample_files/base-version-eri-2019AB.xml +++ b/workflow/sample_files/base-version-eri-2019AB.xml @@ -431,7 +431,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-eri-2019ABC.xml b/workflow/sample_files/base-version-eri-2019ABC.xml index 9a78f352e..9910a45a1 100644 --- a/workflow/sample_files/base-version-eri-2019ABC.xml +++ b/workflow/sample_files/base-version-eri-2019ABC.xml @@ -431,7 +431,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-eri-2019ABCD.xml b/workflow/sample_files/base-version-eri-2019ABCD.xml index e200ffa7f..5c5d3170b 100644 --- a/workflow/sample_files/base-version-eri-2019ABCD.xml +++ b/workflow/sample_files/base-version-eri-2019ABCD.xml @@ -431,7 +431,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-eri-2022.xml b/workflow/sample_files/base-version-eri-2022.xml index e333041fa..300f58509 100644 --- a/workflow/sample_files/base-version-eri-2022.xml +++ b/workflow/sample_files/base-version-eri-2022.xml @@ -431,7 +431,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-eri-2022C.xml b/workflow/sample_files/base-version-eri-2022C.xml index 8f207eaf7..be4f35816 100644 --- a/workflow/sample_files/base-version-eri-2022C.xml +++ b/workflow/sample_files/base-version-eri-2022C.xml @@ -431,7 +431,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-iecc-eri-2015.xml b/workflow/sample_files/base-version-iecc-eri-2015.xml index 78f327351..ac92b5d30 100644 --- a/workflow/sample_files/base-version-iecc-eri-2015.xml +++ b/workflow/sample_files/base-version-iecc-eri-2015.xml @@ -435,7 +435,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-iecc-eri-2018.xml b/workflow/sample_files/base-version-iecc-eri-2018.xml index 65821f132..19c74343b 100644 --- a/workflow/sample_files/base-version-iecc-eri-2018.xml +++ b/workflow/sample_files/base-version-iecc-eri-2018.xml @@ -435,7 +435,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base-version-iecc-eri-2021.xml b/workflow/sample_files/base-version-iecc-eri-2021.xml index 631996354..216c3fbc0 100644 --- a/workflow/sample_files/base-version-iecc-eri-2021.xml +++ b/workflow/sample_files/base-version-iecc-eri-2021.xml @@ -431,7 +431,6 @@ conditioned space 650.0 - true diff --git a/workflow/sample_files/base.xml b/workflow/sample_files/base.xml index 634410f5d..f91453e0d 100644 --- a/workflow/sample_files/base.xml +++ b/workflow/sample_files/base.xml @@ -443,7 +443,6 @@ conditioned space 650.0 - true diff --git a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1a.xml b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1a.xml index 163fb1b5c..5099a5684 100644 --- a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1a.xml +++ b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1a.xml @@ -13,12 +13,6 @@
- - -
- 00000 -
-
proposed workscope @@ -38,12 +32,8 @@ 8.0 3 1539.0 + 12312.0 - - - L100AL.xml - - @@ -348,6 +338,10 @@ + + + + diff --git a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1b.xml b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1b.xml index 37f1fb0e4..d709802ed 100644 --- a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1b.xml +++ b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC1b.xml @@ -13,12 +13,6 @@
- - -
- 00000 -
-
proposed workscope @@ -38,12 +32,8 @@ 8.0 3 1539.0 + 12312.0 - - - HVAC1a.xml - - @@ -348,6 +338,10 @@ + + + + diff --git a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2a.xml b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2a.xml index fd1bb9557..e5c7b4462 100644 --- a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2a.xml +++ b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2a.xml @@ -13,12 +13,6 @@
- - -
- 00000 -
-
proposed workscope @@ -38,12 +32,8 @@ 8.0 3 1539.0 + 12312.0 - - - L100AC.xml - - @@ -348,6 +338,10 @@ + + + + diff --git a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2b.xml b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2b.xml index 56111bec7..1911cf636 100644 --- a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2b.xml +++ b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2b.xml @@ -13,12 +13,6 @@
- - -
- 00000 -
-
proposed workscope @@ -38,12 +32,8 @@ 8.0 3 1539.0 + 12312.0 - - - HVAC2a.xml - - @@ -348,6 +338,10 @@ + + + + diff --git a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2c.xml b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2c.xml index 4b0692633..bbccca493 100644 --- a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2c.xml +++ b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2c.xml @@ -13,12 +13,6 @@
- - -
- 00000 -
-
proposed workscope @@ -38,12 +32,8 @@ 8.0 3 1539.0 + 12312.0 - - - HVAC2a.xml - - @@ -348,6 +338,10 @@ + + + + diff --git a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2d.xml b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2d.xml index b5fcba431..bd2227e66 100644 --- a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2d.xml +++ b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2d.xml @@ -13,12 +13,6 @@
- - -
- 00000 -
-
proposed workscope @@ -38,12 +32,8 @@ 8.0 3 1539.0 + 12312.0 - - - HVAC2a.xml - - @@ -348,6 +338,10 @@ + + + + diff --git a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2e.xml b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2e.xml index c48652d7c..f5ee24050 100644 --- a/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2e.xml +++ b/workflow/tests/RESNET_Tests/4.4_HVAC/HVAC2e.xml @@ -13,12 +13,6 @@
- - -
- 00000 -
-
proposed workscope @@ -38,12 +32,8 @@ 8.0 3 1539.0 + 12312.0 - - - HVAC2a.xml - - @@ -348,6 +338,10 @@ + + + + diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3a.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3a.xml index 459b61251..920413d4b 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3a.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3a.xml @@ -13,12 +13,6 @@
- - -
- 00000 -
-
proposed workscope @@ -38,12 +32,8 @@ 8.0 3 1539.0 + 12312.0 - - - L322XC.xml - - @@ -81,7 +71,7 @@ - + @@ -395,33 +385,34 @@ - attic - vented + basement - unconditioned conditioned space - ceiling + floor 1539.0 - - gypsum board - 0.5 - - 18.45 + 13.85 - basement - unconditioned + attic - vented conditioned space + ceiling 1539.0 + + gypsum board + 0.5 + - 13.85 + 18.45 @@ -530,6 +521,10 @@ + + + + @@ -590,23 +585,21 @@ - + supply 1.5 conditioned space 308.0 - + return 1.5 conditioned space 77.0 - 1 - 1539.0
diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3b.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3b.xml index a58dc4ec7..b4a2d102e 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3b.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3b.xml @@ -13,12 +13,6 @@ - - -
- 00000 -
-
proposed workscope @@ -38,12 +32,8 @@ 8.0 3 1539.0 + 12312.0 - - - HVAC3a.xml - - @@ -81,7 +71,7 @@ - + @@ -395,33 +385,34 @@ - attic - vented + basement - unconditioned conditioned space - ceiling + floor 1539.0 - - gypsum board - 0.5 - - 18.45 + 13.85 - basement - unconditioned + attic - vented conditioned space + ceiling 1539.0 + + gypsum board + 0.5 + - 13.85 + 18.45 @@ -530,6 +521,10 @@ + + + + @@ -590,23 +585,21 @@ - + supply 1.5 basement - unconditioned 308.0 - + return 1.5 basement - unconditioned 77.0 - 1 - 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3c.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3c.xml index b2727b3ef..d8b10ebcb 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3c.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3c.xml @@ -13,12 +13,6 @@ - - -
- 00000 -
-
proposed workscope @@ -38,12 +32,8 @@ 8.0 3 1539.0 + 12312.0 - - - HVAC3b.xml - - @@ -81,7 +71,7 @@ - + @@ -395,33 +385,34 @@ - attic - vented + basement - unconditioned conditioned space - ceiling + floor 1539.0 - - gypsum board - 0.5 - - 18.45 + 13.85 - basement - unconditioned + attic - vented conditioned space + ceiling 1539.0 + + gypsum board + 0.5 + - 13.85 + 18.45 @@ -530,6 +521,10 @@ + + + + @@ -590,23 +585,21 @@ - + supply 7.0 basement - unconditioned 308.0 - + return 7.0 basement - unconditioned 77.0 - 1 - 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3d.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3d.xml index 2bf4c07cf..7c672e3fa 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3d.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3d.xml @@ -13,12 +13,6 @@ - - -
- 00000 -
-
proposed workscope @@ -38,12 +32,8 @@ 8.0 3 1539.0 + 12312.0 - - - HVAC3c.xml - - @@ -81,7 +71,7 @@ - + @@ -395,33 +385,34 @@ - attic - vented + basement - unconditioned conditioned space - ceiling + floor 1539.0 - - gypsum board - 0.5 - - 18.45 + 13.85 - basement - unconditioned + attic - vented conditioned space + ceiling 1539.0 + + gypsum board + 0.5 + - 13.85 + 18.45 @@ -530,6 +521,10 @@ + + + + @@ -590,23 +585,21 @@ - + supply 7.0 basement - unconditioned 308.0 - + return 7.0 basement - unconditioned 77.0 - 1 - 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3e.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3e.xml index 90c8c5486..fe30c8397 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3e.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3e.xml @@ -13,12 +13,6 @@ - - -
- 00000 -
-
proposed workscope @@ -38,12 +32,8 @@ 8.0 3 1539.0 + 12312.0 - - - L100AL.xml - - @@ -348,6 +338,10 @@ + + + + @@ -408,23 +402,21 @@ - + supply 1.5 conditioned space 308.0 - + return 1.5 conditioned space 77.0 - 1 - 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3f.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3f.xml index 2a822a0c8..7c58b3909 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3f.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3f.xml @@ -13,12 +13,6 @@ - - -
- 00000 -
-
proposed workscope @@ -38,12 +32,8 @@ 8.0 3 1539.0 + 12312.0 - - - HVAC3e.xml - - @@ -348,6 +338,10 @@ + + + + @@ -408,23 +402,21 @@ - + supply 1.5 attic - vented 308.0 - + return 1.5 attic - vented 77.0 - 1 - 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3g.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3g.xml index 41058c9a9..44b920f14 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3g.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3g.xml @@ -13,12 +13,6 @@ - - -
- 00000 -
-
proposed workscope @@ -38,12 +32,8 @@ 8.0 3 1539.0 + 12312.0 - - - HVAC3f.xml - - @@ -348,6 +338,10 @@ + + + + @@ -408,23 +402,21 @@ - + supply 7.0 attic - vented 308.0 - + return 7.0 attic - vented 77.0 - 1 - 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3h.xml b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3h.xml index 4d6694f27..d8fbff3b7 100644 --- a/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3h.xml +++ b/workflow/tests/RESNET_Tests/4.5_DSE/HVAC3h.xml @@ -13,12 +13,6 @@ - - -
- 00000 -
-
proposed workscope @@ -38,12 +32,8 @@ 8.0 3 1539.0 + 12312.0 - - - HVAC3g.xml - - @@ -348,6 +338,10 @@ + + + + @@ -408,23 +402,21 @@ - + supply 7.0 attic - vented 308.0 - + return 7.0 attic - vented 77.0 - 1 - 1539.0 diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-01.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-01.xml index 3003788c7..afeabc4ef 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-01.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-01.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - latest - - - + - - -
- MN - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 2 1539.0 + 12312.0 - - - L100AD-HW-01.xml - - - - 2006 - 7 - - Duluth, MN + USA_MN_Duluth.Intl.AP.727450_TMY3 USA_MN_Duluth.Intl.AP.727450_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 1.0 - 400.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.0 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 0.12 - 1.09 - 33.12 - 4.0 - conditioned space - 673.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-02.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-02.xml index ba9fab4af..561c75f12 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-02.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-02.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - latest - - - + - - -
- MN - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AD-HW-02.xml - - - - 2006 - 7 - - Duluth, MN + USA_MN_Duluth.Intl.AP.727450_TMY3 USA_MN_Duluth.Intl.AP.727450_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 1.0 - 400.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.0 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 0.12 - 1.09 - 33.12 - 4.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-03.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-03.xml index 87cf0c219..16487b354 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-03.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-03.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - latest - - - + - - -
- MN - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 2 1539.0 + 12312.0 - - - L100AD-HW-03.xml - - - - 2006 - 7 - - Duluth, MN + USA_MN_Duluth.Intl.AP.727450_TMY3 USA_MN_Duluth.Intl.AP.727450_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.62 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 1.0 - 400.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.0 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 0.12 - 1.09 - 33.12 - 4.0 - conditioned space - 673.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-04.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-04.xml index ec09249d8..07bdb8ed8 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-04.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-04.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - latest - - - + - - -
- MN - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AD-HW-04.xml - - - - 2006 - 7 - - Duluth, MN + USA_MN_Duluth.Intl.AP.727450_TMY3 USA_MN_Duluth.Intl.AP.727450_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 1.0 - 400.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.0 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 0.12 - 1.09 - 33.12 - 4.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-05.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-05.xml index 046dd9150..d3ae82914 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-05.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-05.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - latest - - - + - - -
- MN - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AD-HW-05.xml - - - - 2006 - 7 - - Duluth, MN + USA_MN_Duluth.Intl.AP.727450_TMY3 USA_MN_Duluth.Intl.AP.727450_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,18 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + no control - 156.92 10.0 50.0 @@ -458,49 +369,23 @@ - false - conditioned space - 1.0 - 400.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.0 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 0.12 - 1.09 - 33.12 - 4.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -552,31 +437,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-06.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-06.xml index 3d63c9f45..edbbe68e3 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-06.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-06.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - latest - - - + - - -
- MN - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AD-HW-06.xml - - - - 2006 - 7 - - Duluth, MN + USA_MN_Duluth.Intl.AP.727450_TMY3 USA_MN_Duluth.Intl.AP.727450_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,18 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + manual demand control - 156.92 10.0 50.0 @@ -458,49 +369,23 @@ - false - conditioned space - 1.0 - 400.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.0 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 0.12 - 1.09 - 33.12 - 4.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -552,31 +437,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-07.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-07.xml index 4f797dfa2..494d3de6c 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-07.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AD-HW-07.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - latest - - - + - - -
- MN - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AD-HW-07.xml - - - - 2006 - 7 - - Duluth, MN + USA_MN_Duluth.Intl.AP.727450_TMY3 USA_MN_Duluth.Intl.AP.727450_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - all true @@ -460,49 +367,23 @@ - false - conditioned space - 1.0 - 400.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.0 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 0.12 - 1.09 - 33.12 - 4.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -554,31 +435,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-01.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-01.xml index 92b78e3fe..07f55f1a6 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-01.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-01.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - latest - - - + - - -
- FL - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 2 1539.0 + 12312.0 - - - L100AM-HW-01.xml - - - - 2006 - 1A - - Miami, FL + USA_FL_Miami.Intl.AP.722020_TMY3 USA_FL_Miami.Intl.AP.722020_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 12.2 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 12.2 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 12.2 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 12.2 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 15.63 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 28.57 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 1.2 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 1.2 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 1.2 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 1.2 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 0.83 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 1.0 - 400.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.0 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 0.12 - 1.09 - 33.12 - 4.0 - conditioned space - 673.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-02.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-02.xml index bc414e22f..90a48c5e3 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-02.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-02.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - latest - - - + - - -
- FL - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AM-HW-02.xml - - - - 2006 - 1A - - Miami, FL + USA_FL_Miami.Intl.AP.722020_TMY3 USA_FL_Miami.Intl.AP.722020_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 1.0 - 400.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.0 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 0.12 - 1.09 - 33.12 - 4.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-03.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-03.xml index a5310ff62..6b59575d8 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-03.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-03.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - latest - - - + - - -
- FL - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 2 1539.0 + 12312.0 - - - L100AM-HW-03.xml - - - - 2006 - 1A - - Miami, FL + USA_FL_Miami.Intl.AP.722020_TMY3 USA_FL_Miami.Intl.AP.722020_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.62 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 1.0 - 400.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.0 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 0.12 - 1.09 - 33.12 - 4.0 - conditioned space - 673.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-04.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-04.xml index 5e3acc582..6ce0b2acc 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-04.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-04.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - latest - - - + - - -
- FL - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AM-HW-04.xml - - - - 2006 - 1A - - Miami, FL + USA_FL_Miami.Intl.AP.722020_TMY3 USA_FL_Miami.Intl.AP.722020_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - @@ -455,49 +362,23 @@ - false - conditioned space - 1.0 - 400.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.0 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 0.12 - 1.09 - 33.12 - 4.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -549,31 +430,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-05.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-05.xml index ddc20e023..b94288e81 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-05.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-05.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - latest - - - + - - -
- FL - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AM-HW-05.xml - - - - 2006 - 1A - - Miami, FL + USA_FL_Miami.Intl.AP.722020_TMY3 USA_FL_Miami.Intl.AP.722020_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,18 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + no control - 156.92 10.0 50.0 @@ -458,49 +369,23 @@ - false - conditioned space - 1.0 - 400.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.0 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 0.12 - 1.09 - 33.12 - 4.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -552,31 +437,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-06.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-06.xml index 0d6b969bb..e0f973da7 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-06.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-06.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - latest - - - + - - -
- FL - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AM-HW-06.xml - - - - 2006 - 1A - - Miami, FL + USA_FL_Miami.Intl.AP.722020_TMY3 USA_FL_Miami.Intl.AP.722020_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,18 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + manual demand control - 156.92 10.0 50.0 @@ -458,49 +369,23 @@ - false - conditioned space - 1.0 - 400.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.0 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 0.12 - 1.09 - 33.12 - 4.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -552,31 +437,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-07.xml b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-07.xml index f5e6aa94d..c6fc7a364 100644 --- a/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-07.xml +++ b/workflow/tests/RESNET_Tests/4.6_Hot_Water/L100AM-HW-07.xml @@ -6,22 +6,9 @@ 2000-01-01T00:00:00-07:00 create - - - - latest - - - + - - -
- FL - 00000 -
-
proposed workscope @@ -30,10 +17,7 @@ stand-alone no units above or below - - electricity - natural gas - + 180 single-family detached @@ -42,21 +26,13 @@ 8.0 4 1539.0 + 12312.0 - - - L100AM-HW-07.xml - - - - 2006 - 1A - - Miami, FL + USA_FL_Miami.Intl.AP.722020_TMY3 USA_FL_Miami.Intl.AP.722020_TMY3.epw @@ -66,11 +42,7 @@ - 50.0 - - ACH - 3.0 - + 79.8 12312.0 @@ -82,12 +54,22 @@ true - - SLA - 0.003333 - + + + + + + + + + + + + + + @@ -95,7 +77,7 @@ 811.1 0 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -109,7 +91,7 @@ 811.1 180 asphalt or fiberglass shingles - 0.6 + 0.75 0.9 4.0 @@ -129,15 +111,11 @@ 456.0 0 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -150,15 +128,11 @@ 216.0 90 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -171,15 +145,11 @@ 456.0 180 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -192,15 +162,11 @@ 216.0 270 wood siding - 0.6 + 0.75 0.9 - - gypsum board - 0.5 - - 11.76 + 17.54 @@ -214,11 +180,11 @@ 60.8 90 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -232,11 +198,11 @@ 60.8 270 wood siding - 0.6 + 0.75 0.9 - 2.15 + 4.0 @@ -252,7 +218,7 @@ 1539.0 - 14.15 + 30.3 @@ -264,13 +230,9 @@ 1539.0 - - gypsum board - 0.5 - - 18.45 + 38.46 @@ -279,40 +241,36 @@ 90.0 0 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 90 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 90.0 180 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential 45.0 270 - 1.039 - 0.67 + 0.35 + 0.4 0.0 - residential @@ -320,22 +278,19 @@ - 20.0 + 40.0 180 - 3.04 - - - - - 20.0 - 0 - 3.04 + 2.86 + + + + @@ -343,78 +298,36 @@ natural gas - -1.0 AFUE 0.78 1.0 - - 0.58 - -0.25 - central air conditioner electricity - -1.0 1.0 SEER 13.0 - - -0.25 - -0.25 - 0.58 - - manual thermostat + 68.0 + 78.0 - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - + DSE - 1539.0 + 1.0 + 1.0 @@ -423,22 +336,16 @@ natural gas storage water heater conditioned space - false 40.0 1.0 0.56 0.78 - + - - 88.46 - + - - 0.0 - all true @@ -460,49 +367,23 @@ - false - conditioned space - 1.0 - 400.0 - 0.12 - 1.09 - 27.0 - 6.0 - 3.0 - false - conditioned space electricity - 2.62 - timer - false - conditioned space - 467.0 - 12 - 0.12 - 1.09 - 33.12 - 4.0 - conditioned space - 709.0 - conditioned space electricity - false - false @@ -554,31 +435,17 @@ - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - + + + + TV other + + + + other + +
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-03.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-03.xml deleted file mode 100644 index 77dda1d40..000000000 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AD-HW-03.xml +++ /dev/null @@ -1,579 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 2019 - - - - - - - -
- MN - 00000 -
-
- - proposed workscope - - - - - stand-alone - no units above or below - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 2 - 1539.0 - - - - L100AD-HW-01.xml - - - - - - 2006 - 7 - - - - Duluth, MN - - USA_MN_Duluth.Intl.AP.727450_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 12312.0 - - - - - - - - true - - - - SLA - 0.003333 - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - - - 1.99 - - - - - - - outside - conditioned space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - conditioned space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - conditioned space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - conditioned space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - conditioned space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - conditioned space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - 0.0 - residential - - - - - 45.0 - 90 - 1.039 - 0.67 - 0.0 - residential - - - - - 90.0 - 180 - 1.039 - 0.67 - 0.0 - residential - - - - - 45.0 - 270 - 1.039 - 0.67 - 0.0 - residential - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - - - - - - natural gas - -1.0 - - AFUE - 0.78 - - 1.0 - - 0.58 - -0.25 - - - - - - central air conditioner - electricity - -1.0 - 1.0 - - SEER - 13.0 - - - -0.25 - -0.25 - 0.58 - - - - - - manual thermostat - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - - - 1539.0 - - - - - - natural gas - storage water heater - conditioned space - false - 40.0 - 1.0 - 0.62 - 0.78 - - - - - - 88.46 - - - - 0.0 - - - - - shower head - false - - - - faucet - false - - - - - - - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - - - - false - conditioned space - electricity - 2.62 - timer - - - - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - - - - conditioned space - 673.0 - - - - conditioned space - electricity - false - - - - false - - - - - - interior - 0.1 - - - - - - - interior - 0.0 - - - - - - - interior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - -
-
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-02.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-02.xml deleted file mode 100644 index dc1c33ec3..000000000 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-02.xml +++ /dev/null @@ -1,579 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 2019 - - - - - - - -
- FL - 00000 -
-
- - proposed workscope - - - - - stand-alone - no units above or below - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 4 - 1539.0 - - - - L100AM-HW-01.xml - - - - - - 2006 - 1A - - - - Miami, FL - - USA_FL_Miami.Intl.AP.722020_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 12312.0 - - - - - - - - true - - - - SLA - 0.003333 - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - - - 1.99 - - - - - - - outside - conditioned space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - conditioned space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - conditioned space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - conditioned space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - conditioned space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - conditioned space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - 0.0 - residential - - - - - 45.0 - 90 - 1.039 - 0.67 - 0.0 - residential - - - - - 90.0 - 180 - 1.039 - 0.67 - 0.0 - residential - - - - - 45.0 - 270 - 1.039 - 0.67 - 0.0 - residential - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - - - - - - natural gas - -1.0 - - AFUE - 0.78 - - 1.0 - - 0.58 - -0.25 - - - - - - central air conditioner - electricity - -1.0 - 1.0 - - SEER - 13.0 - - - -0.25 - -0.25 - 0.58 - - - - - - manual thermostat - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - - - 1539.0 - - - - - - natural gas - storage water heater - conditioned space - false - 40.0 - 1.0 - 0.56 - 0.78 - - - - - - 88.46 - - - - 0.0 - - - - - shower head - false - - - - faucet - false - - - - - - - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - - - - false - conditioned space - electricity - 2.62 - timer - - - - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - - - - conditioned space - 709.0 - - - - conditioned space - electricity - false - - - - false - - - - - - interior - 0.1 - - - - - - - interior - 0.0 - - - - - - - interior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - -
-
\ No newline at end of file diff --git a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-03.xml b/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-03.xml deleted file mode 100644 index 0941474d9..000000000 --- a/workflow/tests/RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA/L100AM-HW-03.xml +++ /dev/null @@ -1,579 +0,0 @@ - - - - HPXML - tasks.rb - 2000-01-01T00:00:00-07:00 - create - - - - - 2019 - - - - - - - -
- FL - 00000 -
-
- - proposed workscope - - - - - stand-alone - no units above or below - - electricity - natural gas - - - - single-family detached - 1.0 - 1.0 - 8.0 - 2 - 1539.0 - - - - L100AM-HW-01.xml - - - - - - 2006 - 1A - - - - Miami, FL - - USA_FL_Miami.Intl.AP.722020_TMY3.epw - - - - - - - - 50.0 - - ACH - 3.0 - - 12312.0 - - - - - - - - true - - - - SLA - 0.003333 - - - - - - - attic - vented - 811.1 - 0 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - - - 1.99 - - - - - attic - vented - 811.1 - 180 - asphalt or fiberglass shingles - 0.6 - 0.9 - 4.0 - - - 1.99 - - - - - - - outside - conditioned space - - - - 456.0 - 0 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - conditioned space - - - - 216.0 - 90 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - conditioned space - - - - 456.0 - 180 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - conditioned space - - - - 216.0 - 270 - wood siding - 0.6 - 0.9 - - gypsum board - 0.5 - - - - 11.76 - - - - - outside - attic - vented - gable - - - - 60.8 - 90 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - outside - attic - vented - gable - - - - 60.8 - 270 - wood siding - 0.6 - 0.9 - - - 2.15 - - - - - - - outside - conditioned space - floor - - - - 1539.0 - - - 14.15 - - - - - attic - vented - conditioned space - ceiling - - - - 1539.0 - - gypsum board - 0.5 - - - - 18.45 - - - - - - - 90.0 - 0 - 1.039 - 0.67 - 0.0 - residential - - - - - 45.0 - 90 - 1.039 - 0.67 - 0.0 - residential - - - - - 90.0 - 180 - 1.039 - 0.67 - 0.0 - residential - - - - - 45.0 - 270 - 1.039 - 0.67 - 0.0 - residential - - - - - - - - 20.0 - 180 - 3.04 - - - - - 20.0 - 0 - 3.04 - - - - - - - - - - - - - natural gas - -1.0 - - AFUE - 0.78 - - 1.0 - - 0.58 - -0.25 - - - - - - central air conditioner - electricity - -1.0 - 1.0 - - SEER - 13.0 - - - -0.25 - -0.25 - 0.58 - - - - - - manual thermostat - - - - - - regular velocity - - supply - - CFM25 - 0.0 - to outside - - - - return - - CFM25 - 0.0 - to outside - - - - - supply - 0.0 - conditioned space - 308.0 - - - - return - 0.0 - conditioned space - 77.0 - - 1 - - - 1539.0 - - - - - - natural gas - storage water heater - conditioned space - false - 40.0 - 1.0 - 0.62 - 0.78 - - - - - - 88.46 - - - - 0.0 - - - - - shower head - false - - - - faucet - false - - - - - - - false - conditioned space - 0.331 - 704.0 - 0.08 - 0.58 - 23.0 - 999.0 - 2.874 - - - - false - conditioned space - electricity - 2.62 - timer - - - - false - conditioned space - 467.0 - 12 - 999.0 - 999.0 - 999.0 - 999.0 - - - - conditioned space - 673.0 - - - - conditioned space - electricity - false - - - - false - - - - - - interior - 0.1 - - - - - - - interior - 0.0 - - - - - - - interior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - exterior - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - - garage - 0.0 - - - - - - -
-
\ No newline at end of file diff --git a/workflow/tests/base_results/RESNET_Test_4.1_Standard_140.csv b/workflow/tests/base_results/RESNET_Test_4.1_Standard_140.csv index f1d456669..445aaded3 100644 --- a/workflow/tests/base_results/RESNET_Test_4.1_Standard_140.csv +++ b/workflow/tests/base_results/RESNET_Test_4.1_Standard_140.csv @@ -1,4 +1,4 @@ -Test,Annual Heating Load [MMBtu],Annual Cooling Load [MMBtu] +Test Case,Annual Heating Load [MMBtu],Annual Cooling Load [MMBtu] L100AC.xml,51.41,N/A L110AC.xml,77.05,N/A L120AC.xml,39.84,N/A diff --git a/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv b/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv index 4cfea8bd1..005598ee3 100644 --- a/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv +++ b/workflow/tests/base_results/RESNET_Test_4.6_Hot_Water.csv @@ -1,15 +1,15 @@ -Test Case,DHW Energy (therms),Recirc Pump (kWh),GPD -L100AD-HW-01.xml,196.0,0.0,44 -L100AD-HW-02.xml,260.7,0.0,64 -L100AD-HW-03.xml,174.8,0.0,44 -L100AD-HW-04.xml,252.4,0.0,62 -L100AD-HW-05.xml,551.3,439.6,55 -L100AD-HW-06.xml,228.7,5.9,55 -L100AD-HW-07.xml,207.7,0.0,59 -L100AM-HW-01.xml,110.3,0.0,33 -L100AM-HW-02.xml,136.4,0.0,48 -L100AM-HW-03.xml,91.3,0.0,33 -L100AM-HW-04.xml,133.2,0.0,46 -L100AM-HW-05.xml,297.4,439.6,42 -L100AM-HW-06.xml,123.4,5.9,42 -L100AM-HW-07.xml,121.1,0.0,44 +Test Case,DHW Energy (therms),Recirc Pump (kWh) +L100AD-HW-01.xml,194.9,0.0 +L100AD-HW-02.xml,259.5,0.0 +L100AD-HW-03.xml,174.1,0.0 +L100AD-HW-04.xml,251.2,0.0 +L100AD-HW-05.xml,548.5,439.6 +L100AD-HW-06.xml,227.5,5.9 +L100AD-HW-07.xml,206.5,0.0 +L100AM-HW-01.xml,110.3,0.0 +L100AM-HW-02.xml,135.7,0.0 +L100AM-HW-03.xml,90.9,0.0 +L100AM-HW-04.xml,132.5,0.0 +L100AM-HW-05.xml,295.8,439.6 +L100AM-HW-06.xml,122.7,5.9 +L100AM-HW-07.xml,120.4,0.0 diff --git a/workflow/tests/base_results/RESNET_Test_Other_Hot_Water_301_2014_PreAddendumA.csv b/workflow/tests/base_results/RESNET_Test_Other_Hot_Water_301_2014_PreAddendumA.csv deleted file mode 100644 index 372d969ba..000000000 --- a/workflow/tests/base_results/RESNET_Test_Other_Hot_Water_301_2014_PreAddendumA.csv +++ /dev/null @@ -1,7 +0,0 @@ -Test Case,DHW Energy (therms),Recirc Pump (kWh),GPD -L100AD-HW-01.xml,201.7,0.0,50 -L100AD-HW-02.xml,260.1,0.0,71 -L100AD-HW-03.xml,182.7,0.0,50 -L100AM-HW-01.xml,123.5,0.0,50 -L100AM-HW-02.xml,153.2,0.0,71 -L100AM-HW-03.xml,106.7,0.0,50 diff --git a/workflow/tests/base_results/RESNET_Test_Other_Hot_Water_301_2019_PreAddendumA.csv b/workflow/tests/base_results/RESNET_Test_Other_Hot_Water_301_2019_PreAddendumA.csv deleted file mode 100644 index f7f916ebd..000000000 --- a/workflow/tests/base_results/RESNET_Test_Other_Hot_Water_301_2019_PreAddendumA.csv +++ /dev/null @@ -1,15 +0,0 @@ -Test Case,DHW Energy (therms),Recirc Pump (kWh),GPD -L100AD-HW-01.xml,194.6,0.0,43 -L100AD-HW-02.xml,258.7,0.0,63 -L100AD-HW-03.xml,173.3,0.0,43 -L100AD-HW-04.xml,250.4,0.0,61 -L100AD-HW-05.xml,546.6,439.6,54 -L100AD-HW-06.xml,226.7,5.9,54 -L100AD-HW-07.xml,206.1,0.0,58 -L100AM-HW-01.xml,109.6,0.0,32 -L100AM-HW-02.xml,135.3,0.0,47 -L100AM-HW-03.xml,90.6,0.0,32 -L100AM-HW-04.xml,132.2,0.0,45 -L100AM-HW-05.xml,295.0,439.6,41 -L100AM-HW-06.xml,122.4,5.9,41 -L100AM-HW-07.xml,120.2,0.0,43 diff --git a/workflow/tests/base_results/sample_files1.csv b/workflow/tests/base_results/sample_files.csv similarity index 52% rename from workflow/tests/base_results/sample_files1.csv rename to workflow/tests/base_results/sample_files.csv index c43715986..96afdd74c 100644 --- a/workflow/tests/base_results/sample_files1.csv +++ b/workflow/tests/base_results/sample_files.csv @@ -21,7 +21,7 @@ base-bldgtype-mf-unit-location-portland-or.xml,73.9,34.214,27.0913,36.6603,0.181 base-bldgtype-mf-unit-shared-boiler-only-baseboard.xml,73.28,39.506,31.4732,42.947,0.219,1.0675,1.0,1.0184,1.0871,1.0,29.3386,0.0,0.0,5.98,6.56,10.49,9.79,4.23,11.49,16.47,0.0,0.0,0.7635,0.4074,0.9918,1.25,0.2625,1.087,3.3215,6.0427,8.7151,0.0,0.0,5.4383,3.894,9.551,6.01,3.89,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,90.23,3041.17,3100.57,59.57,1.0,59.57,73.28,73.28,0.0,51.02,1.0,51.02,73.28,73.28,0.0,67.87,39.539,29.2096,43.0357,0.22222,1.0685,1.0,1.0187,1.0884,1.0,27.7388,0.0,0.0,6.9,5.68,10.49,11.29,3.81,11.5,16.46,0.0,0.0,0.7646,0.3918,0.9915,1.25,0.2625,1.087,1.9981,5.508,8.7066,0.0,0.0,3.2668,3.691,9.545,3.61,3.69,9.55,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil-ducted.xml,73.76,39.506,31.6793,42.947,0.219,1.0675,1.0,1.0184,1.0871,1.0,29.5844,0.0,0.0,5.98,6.56,10.49,9.79,4.23,11.49,16.47,0.0,0.0,0.7635,0.4074,0.9918,1.25,0.2625,1.087,3.5276,6.0427,8.7151,0.0,0.0,5.7757,3.894,9.551,6.39,3.89,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,91.59,3087.07,3100.57,59.69,1.0,59.69,73.76,73.76,0.0,51.13,1.0,51.13,73.76,73.76,0.0,68.19,39.539,29.3468,43.0357,0.22222,1.0685,1.0,1.0187,1.0884,1.0,27.8998,0.0,0.0,6.9,5.68,10.49,11.29,3.81,11.5,16.46,0.0,0.0,0.7646,0.3918,0.9915,1.25,0.2625,1.087,2.1353,5.508,8.7066,0.0,0.0,3.4911,3.691,9.545,3.86,3.69,9.55,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 base-bldgtype-mf-unit-shared-boiler-only-fan-coil.xml,73.36,39.506,31.5053,42.947,0.219,1.0675,1.0,1.0184,1.0871,1.0,29.4992,0.0,0.0,5.98,6.56,10.49,9.79,4.23,11.49,16.47,0.0,0.0,0.7635,0.4074,0.9918,1.25,0.2625,1.087,3.3536,6.0427,8.7151,0.0,0.0,5.4908,3.894,9.551,6.07,3.89,9.55,12.97,0.42,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,90.1,3036.92,3100.57,59.69,1.0,59.69,73.36,73.36,0.0,51.13,1.0,51.13,73.36,73.36,0.0,67.92,39.539,29.2295,43.0357,0.22222,1.0685,1.0,1.0187,1.0884,1.0,27.8432,0.0,0.0,6.9,5.68,10.49,11.29,3.81,11.5,16.46,0.0,0.0,0.7646,0.3918,0.9915,1.25,0.2625,1.087,2.018,5.508,8.7066,0.0,0.0,3.2993,3.691,9.545,3.65,3.69,9.55,13.0,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,72.28,39.502,30.9943,42.8823,0.21531,1.0663,1.0,1.0181,1.0856,1.0,29.1248,0.0,0.0,5.98,6.56,10.49,9.32,4.23,11.49,16.47,0.0,0.0,1.1058,0.4074,0.9918,1.6932,0.2625,1.087,2.8426,6.0427,8.7151,0.0,0.0,4.5802,3.894,9.551,5.04,3.89,9.55,12.97,0.42,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,85.58,2880.6,3100.57,58.69,1.0,58.69,72.28,73.29,0.0,50.59,1.0,50.59,72.28,73.29,0.0,67.32,39.537,28.93,42.9711,0.21841,1.0673,1.0,1.0183,1.0869,1.0,27.609,0.0,0.0,6.9,5.68,10.49,10.620000000000001,3.81,11.5,16.46,0.0,0.0,1.1312,0.3918,0.9915,1.6932,0.2625,1.087,1.7185,5.508,8.7066,0.0,0.0,2.7499,3.691,9.545,3.0300000000000002,3.69,9.55,13.0,0.0,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 +base-bldgtype-mf-unit-shared-boiler-only-water-loop-heat-pump.xml,72.28,39.502,30.9943,42.8823,0.21531,1.0663,1.0,1.0181,1.0856,1.0,29.1248,0.0,0.0,5.98,6.56,10.49,9.32,4.23,11.49,16.47,0.0,0.0,1.1058,0.4074,0.9918,1.6932,0.2625,1.087,2.8426,6.0427,8.7151,0.0,0.0,4.5802,3.894,9.551,5.04,3.89,9.55,12.97,0.42,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,85.58,2880.6,3100.57,58.69,1.0,58.69,72.28,73.29,0.0,50.59,1.0,50.59,72.28,73.29,0.0,67.32,39.537,28.93,42.9711,0.21841,1.0673,1.0,1.0183,1.0869,1.0,27.609,0.0,0.0,6.9,5.68,10.49,10.62,3.81,11.5,16.46,0.0,0.0,1.1312,0.3918,0.9915,1.6932,0.2625,1.087,1.7185,5.508,8.7066,0.0,0.0,2.7499,3.691,9.545,3.03,3.69,9.55,13.0,0.0,0.0,1.3143,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 base-bldgtype-mf-unit-shared-chiller-only-baseboard.xml,74.63,39.505,31.9481,42.8112,0.21076,1.0649,1.0,1.0177,1.0837,1.0,29.385,0.0,0.0,5.98,6.56,10.49,9.52,4.23,11.49,16.47,0.0,0.0,0.8054,0.4074,0.9918,1.2821,0.2625,1.087,5.2318,4.6073,8.7151,0.0,0.0,8.3286,2.969,9.551,8.33,2.97,9.55,12.97,0.42,0.0,1.2821,0.2741,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,98.47,3308.74,3100.57,63.43,1.0,63.43,74.63,74.63,0.0,52.1,1.0,52.1,74.63,74.63,0.0,67.68,39.538,29.0335,42.8965,0.21379,1.0658,1.0,1.0179,1.0849,1.0,27.4322,0.0,0.0,6.9,5.68,10.49,10.99,3.81,11.5,16.46,0.0,0.0,0.8053,0.3918,0.9915,1.2821,0.2625,1.087,3.1173,4.2127,8.7066,0.0,0.0,4.9627,2.823,9.545,4.96,2.82,9.55,13.0,0.0,0.0,1.2821,0.2741,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 base-bldgtype-mf-unit-shared-chiller-only-fan-coil-ducted.xml,76.7,39.505,32.8367,42.8112,0.21076,1.0649,1.0,1.0177,1.0837,1.0,29.9576,0.0,0.0,5.98,6.56,10.49,9.52,4.23,11.49,16.47,0.0,0.0,0.8054,0.4074,0.9918,1.2821,0.2625,1.087,5.2312,5.4964,8.7151,0.0,0.0,8.3276,3.542,9.551,8.33,3.54,9.55,12.97,0.42,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,99.73,3350.85,3100.57,63.96,1.0,63.96,76.7,76.7,0.0,52.59,1.0,52.59,76.7,76.7,0.0,69.65,39.538,29.876,42.8965,0.21379,1.0658,1.0,1.0179,1.0849,1.0,27.9968,0.0,0.0,6.9,5.68,10.49,10.99,3.81,11.5,16.46,0.0,0.0,0.8053,0.3918,0.9915,1.2821,0.2625,1.087,3.1167,5.0558,8.7066,0.0,0.0,4.9617,3.388,9.545,4.96,3.39,9.55,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 base-bldgtype-mf-unit-shared-chiller-only-fan-coil.xml,75.25,39.505,32.215,42.8112,0.21076,1.0649,1.0,1.0177,1.0837,1.0,29.557,0.0,0.0,5.98,6.56,10.49,9.52,4.23,11.49,16.47,0.0,0.0,0.8054,0.4074,0.9918,1.2821,0.2625,1.087,5.2318,4.8742,8.7151,0.0,0.0,8.3286,3.141,9.551,8.33,3.14,9.55,12.97,0.42,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,98.84,3321.14,3100.57,63.96,1.0,63.96,75.25,75.25,0.0,52.59,1.0,52.59,75.25,75.25,0.0,68.24,39.538,29.2738,42.8965,0.21379,1.0658,1.0,1.0179,1.0849,1.0,27.5932,0.0,0.0,6.9,5.68,10.49,10.99,3.81,11.5,16.46,0.0,0.0,0.8053,0.3918,0.9915,1.2821,0.2625,1.087,3.1173,4.4529,8.7066,0.0,0.0,4.9627,2.984,9.545,4.96,2.98,9.55,13.0,0.0,0.0,1.2821,0.3023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 @@ -96,3 +96,104 @@ base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,85.1,78.056,67.1158,78.8 base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,85.0,78.118,67.0867,78.923,0.21641,0.9923,1.0,1.0182,1.0103,1.0,57.916,0.0,0.0,30.56,9.84,10.49,23.65,6.03,11.52,27.23,0.0,0.0,0.5727,0.4286,0.9898,0.4432,0.2625,1.087,28.8027,8.9435,8.2125,0.0,0.0,22.2932,5.478,9.019,22.29,5.48,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,84.0,4900.25,5774.15,55.59,1.0,55.59,85.0,85.0,0.0,49.97,1.0,49.97,85.0,85.0,0.0,80.62,80.619,65.6787,81.462,0.21958,0.9922,1.0,1.0184,1.0105,1.0,57.054,0.0,0.0,34.64,8.27,10.49,26.61,5.25,11.52,27.22,0.0,0.0,0.577,0.4136,0.9894,0.4432,0.2625,1.087,28.812,7.5381,8.2105,0.0,0.0,22.1322,4.785,9.02,22.13,4.79,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 base-hvac-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,84.16,78.124,66.4334,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,56.564,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,28.806,8.2869,8.2125,0.0,0.0,22.0452,4.374,9.019,22.05,4.37,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.45,4785.6,5675.77,52.47,1.0,52.47,84.16,84.16,0.0,46.68,1.0,46.68,84.16,84.16,0.0,79.66,80.622,64.9006,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,55.569,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,28.5932,6.9778,8.2105,0.0,0.0,21.7132,3.72,9.02,21.71,3.72,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,84.14,78.124,66.4153,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,56.557,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,28.8125,8.2623,8.2125,0.0,0.0,22.0502,4.361,9.019,22.05,4.36,9.02,21.12,0.01,0.0,0.4461,0.2615,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.41,4783.41,5675.77,52.47,1.0,52.47,84.14,84.14,0.0,46.68,1.0,46.68,84.14,84.14,0.0,79.64,80.622,64.8839,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,55.562,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,28.5972,6.9572,8.2105,0.0,0.0,21.7162,3.709,9.02,21.72,3.71,9.02,21.12,0.0,0.0,0.4461,0.2615,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,83.93,78.124,66.2492,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,56.424,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,28.6218,8.2869,8.2125,0.0,0.0,21.9042,4.374,9.019,21.9,4.37,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.2,4771.2,5675.77,52.47,1.0,52.47,83.93,83.93,0.0,46.68,1.0,46.68,83.93,83.93,0.0,79.43,80.622,64.7149,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,55.429,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,28.4076,6.9778,8.2105,0.0,0.0,21.5722,3.72,9.02,21.57,3.72,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,71.97,78.124,56.8099,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,49.808,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,21.742,5.7274,8.2125,0.0,0.0,16.6391,3.023,9.019,16.64,3.02,9.02,21.12,0.01,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.31,4203.89,5675.77,52.47,1.0,52.47,71.97,71.97,0.0,46.68,1.0,46.68,71.97,71.97,0.0,68.5,80.622,55.8054,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,49.147,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,21.6402,4.8357,8.2105,0.0,0.0,16.4331,2.578,9.02,16.43,2.58,9.02,21.12,0.0,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,71.1,78.124,56.1189,78.9343,0.21782,0.9922,1.0,1.0183,1.0104,1.0,49.463,0.0,0.0,30.56,9.85,10.49,23.39,5.06,11.52,27.23,0.0,0.0,0.5792,0.5106,0.9898,0.4432,0.2625,1.087,22.0975,4.681,8.2125,0.0,0.0,16.9112,2.407,9.019,16.91,2.41,9.02,21.12,0.01,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.05,4182.14,5666.23,52.53,1.0,52.53,71.1,71.1,0.0,46.74,1.0,46.74,71.1,71.1,0.0,68.05,80.622,55.4446,81.4708,0.22107,0.9921,1.0,1.0186,1.0105,1.0,49.006,0.0,0.0,34.64,8.27,10.49,26.31,4.3,11.52,27.22,0.0,0.0,0.5837,0.5056,0.9894,0.4432,0.2625,1.087,22.1129,4.0022,8.2105,0.0,0.0,16.7922,2.078,9.02,16.79,2.08,9.02,21.12,0.0,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-boiler-elec-only.xml,99.59,78.118,78.602,78.923,0.21641,0.9923,1.0,1.0182,1.0103,1.0,66.83,0.0,0.0,30.56,9.84,10.49,23.65,6.03,11.52,27.23,0.0,0.0,0.5727,0.4286,0.9898,0.4432,0.2625,1.087,40.3197,8.9419,8.2125,0.0,0.0,31.2073,5.477,9.019,31.21,5.48,9.02,21.12,0.01,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,97.51,5688.63,5774.15,55.59,1.0,55.59,99.59,99.59,0.0,49.97,1.0,49.97,99.59,99.59,0.0,94.68,80.619,77.1306,81.462,0.21958,0.9922,1.0,1.0184,1.0105,1.0,65.851,0.0,0.0,34.64,8.27,10.49,26.61,5.25,11.52,27.22,0.0,0.0,0.577,0.4136,0.9894,0.4432,0.2625,1.087,40.2655,7.5365,8.2105,0.0,0.0,30.9303,4.784,9.02,30.93,4.78,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-boiler-gas-only.xml,71.73,78.118,56.6448,78.9661,0.22794,0.9919,1.0,1.0191,1.0109,1.0,49.0462,0.0,0.0,30.56,9.84,10.49,50.01,6.03,11.52,27.23,0.0,0.0,0.7638,0.4286,0.9898,1.25,0.2625,1.087,18.3624,8.9419,8.2125,0.0,0.0,30.0522,5.477,9.019,33.23,5.48,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,133.01,7763.35,5774.15,56.84,1.0,56.84,71.73,71.73,0.0,51.61,1.0,51.61,71.73,71.73,0.0,67.61,80.619,55.1109,81.5076,0.2314,0.9917,1.0,1.0194,1.011,1.0,48.226,0.0,0.0,34.64,8.27,10.49,56.55,5.25,11.52,27.22,0.0,0.0,0.7657,0.4136,0.9894,1.25,0.2625,1.087,18.2459,7.5365,8.2105,0.0,0.0,29.7854,4.784,9.02,32.93,4.78,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-boiler-oil-only.xml,71.75,78.118,56.6564,78.9661,0.22794,0.9919,1.0,1.0191,1.0109,1.0,49.1776,0.0,0.0,30.56,9.84,10.49,50.01,6.03,11.52,27.23,0.0,0.0,0.7638,0.4286,0.9898,1.25,0.2625,1.087,18.3741,8.9419,8.2125,0.0,0.0,30.0712,5.477,9.019,33.25,5.48,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.19,9350.04,5774.15,56.84,1.0,56.84,71.75,71.75,0.0,51.61,1.0,51.61,71.75,71.75,0.0,67.63,80.619,55.1226,81.5076,0.2314,0.9917,1.0,1.0194,1.011,1.0,48.3552,0.0,0.0,34.64,8.27,10.49,56.55,5.25,11.52,27.22,0.0,0.0,0.7657,0.4136,0.9894,1.25,0.2625,1.087,18.2575,7.5365,8.2105,0.0,0.0,29.8044,4.784,9.02,32.95,4.78,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-boiler-propane-only.xml,71.73,78.118,56.6448,78.9661,0.22794,0.9919,1.0,1.0191,1.0109,1.0,49.0462,0.0,0.0,30.56,9.84,10.49,50.01,6.03,11.52,27.23,0.0,0.0,0.7638,0.4286,0.9898,1.25,0.2625,1.087,18.3624,8.9419,8.2125,0.0,0.0,30.0522,5.477,9.019,33.23,5.48,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.25,8770.09,5774.15,56.84,1.0,56.84,71.73,71.73,0.0,51.61,1.0,51.61,71.73,71.73,0.0,67.61,80.619,55.1109,81.5076,0.2314,0.9917,1.0,1.0194,1.011,1.0,48.226,0.0,0.0,34.64,8.27,10.49,56.55,5.25,11.52,27.22,0.0,0.0,0.7657,0.4136,0.9894,1.25,0.2625,1.087,18.2459,7.5365,8.2105,0.0,0.0,29.7854,4.784,9.02,32.93,4.78,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,85.06,78.118,67.1362,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,54.7602,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,9.0219,8.2125,0.0,0.0,45.7837,5.526,9.019,45.79,5.53,9.02,21.12,0.01,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.74,9553.41,5774.15,70.95,1.0,70.95,85.06,85.06,0.0,61.8,1.0,61.8,85.06,85.06,0.0,80.4,80.618,65.5042,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,53.9156,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5068,7.6689,8.2105,0.0,0.0,45.3587,4.868,9.02,45.36,4.87,9.02,21.12,0.0,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-1-speed.xml,85.09,78.118,67.1606,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,54.7742,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,9.0464,8.2125,0.0,0.0,45.7837,5.541,9.019,45.79,5.54,9.02,21.12,0.01,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.76,9554.43,5774.15,70.95,1.0,70.95,85.09,85.09,0.0,61.8,1.0,61.8,85.09,85.09,0.0,80.43,80.618,65.5246,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,53.9276,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5068,7.6893,8.2105,0.0,0.0,45.3587,4.881,9.02,45.36,4.88,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-2-speed.xml,81.97,78.118,64.6986,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,53.2662,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,6.5844,8.2125,0.0,0.0,45.7837,4.033,9.019,45.79,4.03,9.02,21.12,0.01,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.9,9445.56,5774.15,70.95,1.0,70.95,81.97,81.97,0.0,61.8,1.0,61.8,81.97,81.97,0.0,77.93,80.618,63.4909,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,52.6366,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5068,5.6555,8.2105,0.0,0.0,45.3587,3.59,9.02,45.36,3.59,9.02,21.12,0.0,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-only-var-speed.xml,80.94,78.118,63.8838,78.9319,0.2188,0.9922,1.0,1.0184,1.0104,1.0,52.6872,0.0,0.0,30.56,9.84,10.49,48.62,5.89,11.52,27.23,0.0,0.0,0.8057,0.4387,0.9898,1.2821,0.2625,1.087,28.7738,5.7695,8.2125,0.0,0.0,45.7837,3.453,9.019,45.79,3.45,9.02,21.12,0.01,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.43,9402.45,5764.38,70.96,1.0,70.96,80.94,80.94,0.0,61.8,1.0,61.8,80.94,80.94,0.0,77.07,80.617,62.7878,81.4697,0.22211,0.9921,1.0,1.0186,1.0106,1.0,52.1216,0.0,0.0,34.64,8.27,10.49,55.12,5.13,11.52,27.22,0.0,0.0,0.8057,0.4229,0.9894,1.2821,0.2625,1.087,28.5068,4.9515,8.2105,0.0,0.0,45.3587,3.074,9.02,45.36,3.07,9.02,21.12,0.0,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,85.14,78.118,67.1912,78.923,0.21641,0.9923,1.0,1.0182,1.0103,1.0,57.98,0.0,0.0,30.56,9.84,10.49,23.65,6.03,11.52,27.23,0.0,0.0,0.5727,0.4286,0.9898,0.4432,0.2625,1.087,28.8027,9.048,8.2125,0.0,0.0,22.2932,5.542,9.019,22.29,5.54,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,84.04,4902.45,5774.15,54.24,1.0,54.24,85.14,85.14,0.0,48.47,1.0,48.47,85.14,85.14,0.0,80.81,80.619,65.8309,81.462,0.21958,0.9922,1.0,1.0184,1.0105,1.0,57.15,0.0,0.0,34.64,8.27,10.49,26.61,5.25,11.52,27.22,0.0,0.0,0.577,0.4136,0.9894,0.4432,0.2625,1.087,28.812,7.6893,8.2105,0.0,0.0,22.1322,4.881,9.02,22.13,4.88,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-dse.xml,79.22,78.12,62.5223,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,52.5558,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.745,10.4368,8.2125,0.0,0.0,36.1909,6.0321,9.019,39.01,6.03,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.92,8596.65,5675.77,55.99,1.0,55.99,79.22,79.22,0.0,50.49,1.0,50.49,79.22,79.22,0.0,74.71,80.619,60.8519,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.6464,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.5334,8.9899,8.2105,0.0,0.0,35.8542,5.283,9.02,38.65,5.28,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,81.07,78.124,63.9923,78.9328,0.21742,0.9922,1.0,1.0182,1.0104,1.0,54.506,0.0,0.0,30.56,9.85,10.49,32.86,5.2,11.52,27.23,0.0,0.0,1.4137,0.4974,0.9898,1.7253,0.2625,1.087,26.3649,8.2869,8.2125,0.0,0.0,27.5364,4.374,9.019,28.99,4.37,9.02,21.12,0.01,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,108.36,6214.13,5675.77,52.47,1.0,52.47,81.07,81.07,0.0,46.68,1.0,46.68,81.07,81.07,0.0,76.67,80.622,62.4663,81.469,0.22061,0.9921,1.0,1.0185,1.0105,1.0,53.5556,0.0,0.0,34.65,8.27,10.49,36.72,4.41,11.52,27.22,0.0,0.0,1.4198,0.4925,0.9894,1.7253,0.2625,1.087,26.159,6.9778,8.2105,0.0,0.0,27.2258,3.72,9.02,28.67,3.72,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,80.4,78.123,63.4596,78.9305,0.21707,0.9923,1.0,1.0182,1.0103,1.0,54.355,0.0,0.0,30.55,9.85,10.49,36.43,5.2,11.52,27.23,0.0,0.0,1.4146,0.4974,0.9898,1.7253,0.2625,1.087,25.8322,8.2869,8.2125,0.0,0.0,30.0417,4.374,9.019,32.03,4.37,9.02,21.12,0.01,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,118.41,6789.97,5675.77,52.47,1.0,52.47,80.4,80.4,0.0,46.68,1.0,46.68,80.4,80.4,0.0,76.06,80.622,61.9641,81.4677,0.22029,0.9921,1.0,1.0185,1.0105,1.0,53.4376,0.0,0.0,34.64,8.27,10.49,40.71,4.41,11.52,27.22,0.0,0.0,1.4224,0.4925,0.9894,1.7253,0.2625,1.087,25.6567,6.9778,8.2105,0.0,0.0,29.7455,3.72,9.02,31.72,3.72,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-area-fractions.xml,85.18,107.117,88.1647,103.4987,0.21602,0.9662,1.0,1.0,0.9662,1.0,70.4254,0.0,0.0,46.45,14.85,10.49,73.91,8.08,11.52,35.33,0.0,0.0,0.8057,0.4822,0.9898,1.2821,0.2625,1.087,37.1167,15.7047,8.0713,0.0,0.0,59.0631,8.5511,8.864,63.67,8.55,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,174.4,12944.69,7681.89,55.84,1.0,55.84,85.18,85.18,0.0,50.76,1.0,50.76,85.18,85.18,0.0,77.54,114.141,85.4936,110.2582,0.21758,0.966,1.0,1.0,0.966,1.0,69.0062,0.0,0.0,56.08,12.25,10.49,89.23,6.7,11.52,35.32,0.0,0.0,0.8057,0.4801,0.9893,1.2821,0.2625,1.087,36.8458,13.31,8.0687,0.0,0.0,58.629,7.2791,8.865,63.2,7.28,8.87,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-buried.xml,75.35,78.12,59.4711,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,50.6292,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,21.5936,8.537,8.2125,0.0,0.0,34.3589,4.934,9.019,37.04,4.93,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,143.46,8226.16,5675.77,56.16,1.0,56.16,75.35,75.35,0.0,50.71,1.0,50.71,75.35,75.35,0.0,71.09,80.619,57.9089,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,49.7656,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,21.3984,7.181,8.2105,0.0,0.0,34.0481,4.22,9.02,36.71,4.22,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-leakage-cfm50.xml,77.61,78.12,61.2543,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,51.7934,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.6069,9.307,8.2125,0.0,0.0,35.9711,5.379,9.019,38.78,5.38,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.45,8512.22,5675.77,56.16,1.0,56.16,77.61,77.61,0.0,50.71,1.0,50.71,77.61,77.61,0.0,73.25,80.619,59.6673,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,50.9344,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.425,7.9127,8.2105,0.0,0.0,35.6817,4.65,9.02,38.47,4.65,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-shape-mixed.xml,78.02,78.12,61.5791,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,52.0388,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9351,9.3035,8.2125,0.0,0.0,36.4933,5.377,9.019,39.34,5.38,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.85,8592.43,5675.77,56.16,1.0,56.16,78.02,78.02,0.0,50.71,1.0,50.71,78.02,78.02,0.0,73.62,80.619,59.9644,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.1498,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7357,7.8991,8.2105,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-shape-rectangular.xml,77.68,78.12,61.3102,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,51.8588,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.7631,9.2066,8.2125,0.0,0.0,36.2197,5.321,9.019,39.05,5.32,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.03,8545.56,5675.77,56.16,1.0,56.16,77.68,77.68,0.0,50.71,1.0,50.71,77.68,77.68,0.0,73.4,80.619,59.7885,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.0236,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.5649,7.894,8.2105,0.0,0.0,35.9043,4.639,9.02,38.71,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ducts-shape-round.xml,78.26,78.12,61.7619,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,52.1524,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9916,9.4298,8.2125,0.0,0.0,36.5833,5.45,9.019,39.44,5.45,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.19,8611.85,5675.77,56.16,1.0,56.16,78.26,78.26,0.0,50.71,1.0,50.71,78.26,78.26,0.0,73.81,80.619,60.1184,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.2488,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7876,8.0012,8.2105,0.0,0.0,36.2586,4.702,9.02,39.09,4.7,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-elec-resistance-only.xml,95.65,78.118,75.4896,78.923,0.21641,0.9923,1.0,1.0182,1.0103,1.0,64.421,0.0,0.0,30.56,9.84,10.49,23.65,6.03,11.52,27.23,0.0,0.0,0.5727,0.4286,0.9898,0.4432,0.2625,1.087,37.2072,8.9419,8.2125,0.0,0.0,28.7983,5.477,9.019,28.8,5.48,9.02,21.12,0.01,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,93.94,5480.02,5774.15,55.59,1.0,55.59,95.65,95.65,0.0,49.97,1.0,49.97,95.65,95.65,0.0,90.85,80.619,74.0075,81.462,0.21958,0.9922,1.0,1.0184,1.0105,1.0,63.452,0.0,0.0,34.64,8.27,10.49,26.61,5.25,11.52,27.22,0.0,0.0,0.577,0.4136,0.9894,0.4432,0.2625,1.087,37.1424,7.5365,8.2105,0.0,0.0,28.5313,4.784,9.02,28.53,4.78,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-evap-cooler-only-ducted.xml,75.28,78.118,59.4204,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,50.0332,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,1.3061,8.2125,0.0,0.0,45.7837,0.8,9.019,45.79,0.8,9.02,21.12,0.01,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,157.7,9200.67,5774.15,70.95,1.0,70.95,75.28,75.28,0.0,61.8,1.0,61.8,75.28,75.28,0.0,72.31,80.618,58.9113,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,49.7296,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5068,1.076,8.2105,0.0,0.0,45.3587,0.683,9.02,45.36,0.68,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-evap-cooler-only.xml,75.15,78.118,59.3143,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,49.9682,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,1.2,8.2125,0.0,0.0,45.7837,0.735,9.019,45.79,0.74,9.02,21.12,0.01,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,157.62,9196.17,5774.15,70.95,1.0,70.95,75.15,75.15,0.0,61.8,1.0,61.8,75.15,75.15,0.0,72.2,80.618,58.8231,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,49.6736,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5068,0.9878,8.2105,0.0,0.0,45.3587,0.627,9.02,45.36,0.63,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-fireplace-wood-only.xml,76.86,78.118,60.6706,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,50.0218,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,22.3882,8.9419,8.2125,0.0,0.0,35.6232,5.477,9.019,36.0,5.48,9.02,21.12,0.01,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.34,1.0,57.34,76.86,76.86,0.0,52.0,1.0,52.0,76.86,76.86,0.0,72.47,80.618,59.0456,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,49.1862,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,22.1805,7.5365,8.2105,0.0,0.0,35.2927,4.784,9.02,35.66,4.78,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-floor-furnace-propane-only.xml,76.86,78.118,60.6706,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,50.0218,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,22.3882,8.9419,8.2125,0.0,0.0,35.6232,5.477,9.019,36.0,5.48,9.02,21.12,0.01,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,159.09,9281.64,5774.15,57.34,1.0,57.34,76.86,76.86,0.0,52.0,1.0,52.0,76.86,76.86,0.0,72.47,80.618,59.0456,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,49.1862,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,22.1805,7.5365,8.2105,0.0,0.0,35.2927,4.784,9.02,35.66,4.78,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-furnace-elec-only.xml,109.11,78.118,86.1115,78.923,0.21641,0.9923,1.0,1.0182,1.0103,1.0,72.641,0.0,0.0,30.56,9.84,10.49,23.65,6.03,11.52,27.23,0.0,0.0,0.5727,0.4286,0.9898,0.4432,0.2625,1.087,47.8275,8.9435,8.2125,0.0,0.0,37.0183,5.478,9.019,37.02,5.48,9.02,21.12,0.01,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,106.62,6219.59,5774.15,55.59,1.0,55.59,109.11,109.11,0.0,49.97,1.0,49.97,109.11,109.11,0.0,103.9,80.619,84.6398,81.462,0.21958,0.9922,1.0,1.0184,1.0105,1.0,71.618,0.0,0.0,34.64,8.27,10.49,26.61,5.25,11.52,27.22,0.0,0.0,0.577,0.4136,0.9894,0.4432,0.2625,1.087,47.7731,7.5381,8.2105,0.0,0.0,36.6973,4.785,9.02,36.7,4.79,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-furnace-gas-only.xml,77.56,78.118,61.2226,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,52.1422,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,22.9386,8.9435,8.2125,0.0,0.0,36.4989,5.478,9.019,39.35,5.48,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,147.46,8603.06,5774.15,57.34,1.0,57.34,77.56,77.56,0.0,52.0,1.0,52.0,77.56,77.56,0.0,73.16,80.618,59.6065,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,51.2956,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,22.7398,7.5381,8.2105,0.0,0.0,36.1826,4.785,9.02,39.01,4.79,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,83.31,78.056,65.7003,78.8651,0.2177,0.9922,1.0,1.0183,1.0104,1.0,53.1292,0.0,0.0,30.56,9.78,10.49,48.62,5.02,11.52,27.23,0.0,0.0,0.8057,0.5112,0.9898,1.2821,0.2625,1.087,28.774,7.5858,8.2125,0.0,0.0,45.7837,3.896,9.019,45.79,3.9,9.02,21.12,0.01,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.06,9428.69,5688.06,69.41,1.0,69.41,83.31,83.31,0.0,60.28,1.0,60.28,83.31,83.31,0.0,78.73,80.579,64.1072,81.4282,0.22132,0.9921,1.0,1.0186,1.0105,1.0,52.3006,0.0,0.0,34.64,8.23,10.49,55.12,4.27,11.52,27.22,0.0,0.0,0.8058,0.5061,0.9894,1.2821,0.2625,1.087,28.5073,6.2714,8.2105,0.0,0.0,45.3587,3.253,9.02,45.36,3.25,9.02,21.12,0.0,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,71.24,78.118,56.2261,78.923,0.21641,0.9923,1.0,1.0182,1.0103,1.0,49.51,0.0,0.0,30.56,9.84,10.49,23.65,6.03,11.52,27.23,0.0,0.0,0.5727,0.4286,0.9898,0.4432,0.2625,1.087,17.9421,8.9435,8.2125,0.0,0.0,13.8871,5.478,9.019,13.89,5.48,9.02,21.12,0.01,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,70.78,4129.23,5774.15,55.59,1.0,55.59,71.24,71.24,0.0,49.97,1.0,49.97,71.24,71.24,0.0,67.23,80.619,54.7707,81.462,0.21958,0.9922,1.0,1.0184,1.0105,1.0,48.675,0.0,0.0,34.64,8.27,10.49,26.61,5.25,11.52,27.22,0.0,0.0,0.577,0.4136,0.9894,0.4432,0.2625,1.087,17.904,7.5381,8.2105,0.0,0.0,13.7531,4.785,9.02,13.75,4.79,9.02,21.12,0.0,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-ground-to-air-heat-pump.xml,68.12,78.124,53.7708,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,47.25,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,17.7292,6.7012,8.2125,0.0,0.0,13.5681,3.537,9.019,13.57,3.54,9.02,21.12,0.01,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.87,3949.75,5675.77,52.47,1.0,52.47,68.12,68.12,0.0,46.68,1.0,46.68,68.12,68.12,0.0,64.56,80.622,52.5968,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,46.545,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,17.7001,5.5672,8.2105,0.0,0.0,13.4411,2.968,9.02,13.44,2.97,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,82.21,78.124,64.8947,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,55.545,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,27.9266,7.6276,8.2125,0.0,0.0,21.3722,4.026,9.019,21.37,4.03,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,81.93,4698.31,5675.77,52.47,1.0,52.47,82.21,82.21,0.0,46.68,1.0,46.68,82.21,82.21,0.0,77.96,80.622,63.5129,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,54.639,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,27.757,6.4263,8.2105,0.0,0.0,21.0782,3.426,9.02,21.08,3.43,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,77.32,78.12,61.0213,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,51.4398,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9846,8.6962,8.2125,0.0,0.0,36.5722,5.026,9.019,39.43,5.03,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.09,8606.35,5675.77,56.16,1.0,56.16,77.32,77.32,0.0,50.71,1.0,50.71,77.32,77.32,0.0,73.11,80.619,59.5477,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,50.6308,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7853,7.4329,8.2105,0.0,0.0,36.2549,4.368,9.02,39.08,4.37,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,66.57,78.124,52.5441,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,46.462,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,17.1333,6.0703,8.2125,0.0,0.0,13.1121,3.204,9.019,13.11,3.2,9.02,21.12,0.01,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.74,3884.48,5675.77,52.47,1.0,52.47,66.57,66.57,0.0,46.68,1.0,46.68,66.57,66.57,0.0,63.18,80.622,51.4758,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,45.814,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,17.1062,5.0402,8.2105,0.0,0.0,12.9901,2.687,9.02,12.99,2.69,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,80.4,78.118,63.4644,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,52.5102,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,5.3501,8.2125,0.0,0.0,45.7837,3.277,9.019,45.79,3.28,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.94,9389.92,5774.15,70.95,1.0,70.95,80.4,80.4,0.0,61.8,1.0,61.8,80.4,80.4,0.0,76.61,80.618,62.4153,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,51.9532,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5061,4.5796,8.2105,0.0,0.0,45.3577,2.907,9.02,45.36,2.91,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,66.3,78.124,52.3367,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,46.687,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,18.5459,4.4504,8.2125,0.0,0.0,14.1931,2.349,9.019,14.19,2.35,9.02,21.12,0.01,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.54,3930.59,5675.77,52.47,1.0,52.47,66.3,66.3,0.0,46.68,1.0,46.68,66.3,66.3,0.0,63.44,80.622,51.682,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,46.252,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,18.5495,3.804,8.2105,0.0,0.0,14.0861,2.028,9.02,14.09,2.03,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,80.65,78.118,63.6619,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,52.6322,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,5.5477,8.2125,0.0,0.0,45.7837,3.398,9.019,45.79,3.4,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.09,9398.52,5774.15,70.95,1.0,70.95,80.65,80.65,0.0,61.8,1.0,61.8,80.65,80.65,0.0,76.79,80.618,62.5639,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,52.0492,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5061,4.7292,8.2105,0.0,0.0,45.3577,3.002,9.02,45.36,3.0,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,79.76,78.118,62.955,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,52.1982,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,4.8407,8.2125,0.0,0.0,45.7837,2.965,9.019,45.79,2.97,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.56,9367.68,5774.15,70.95,1.0,70.95,79.76,79.76,0.0,61.8,1.0,61.8,79.76,79.76,0.0,75.95,80.618,61.8793,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,51.6146,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5068,4.044,8.2105,0.0,0.0,45.3587,2.567,9.02,45.36,2.57,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,79.71,78.056,62.8654,78.8651,0.2177,0.9922,1.0,1.0183,1.0104,1.0,51.6732,0.0,0.0,30.56,9.78,10.49,48.62,5.02,11.52,27.23,0.0,0.0,0.8057,0.5112,0.9898,1.2821,0.2625,1.087,28.774,4.7509,8.2125,0.0,0.0,45.7837,2.44,9.019,45.79,2.44,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.15,9318.63,5688.06,69.41,1.0,69.41,79.71,79.71,0.0,60.28,1.0,60.28,79.71,79.71,0.0,75.94,80.579,61.8374,81.4282,0.22132,0.9921,1.0,1.0186,1.0105,1.0,51.1222,0.0,0.0,34.64,8.23,10.49,55.12,4.27,11.52,27.22,0.0,0.0,0.8058,0.5061,0.9894,1.2821,0.2625,1.087,28.5067,4.0023,8.2105,0.0,0.0,45.3577,2.076,9.02,45.36,2.08,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,72.24,78.118,57.0139,78.923,0.21641,0.9923,1.0,1.0182,1.0103,1.0,50.12,0.0,0.0,30.56,9.84,10.49,23.65,6.03,11.52,27.23,0.0,0.0,0.5727,0.4286,0.9898,0.4432,0.2625,1.087,18.7315,8.9419,8.2125,0.0,0.0,14.4981,5.477,9.019,14.5,5.48,9.02,21.12,0.01,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,71.98,4198.85,5774.15,55.59,1.0,55.59,72.24,72.24,0.0,49.97,1.0,49.97,72.24,72.24,0.0,68.25,80.619,55.5973,81.462,0.21958,0.9922,1.0,1.0184,1.0105,1.0,49.31,0.0,0.0,34.64,8.27,10.49,26.61,5.25,11.52,27.22,0.0,0.0,0.577,0.4136,0.9894,0.4432,0.2625,1.087,18.7307,7.5381,8.2105,0.0,0.0,14.3881,4.785,9.02,14.39,4.79,9.02,21.12,0.0,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,66.75,78.124,52.688,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,46.937,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,18.8137,4.5338,8.2125,0.0,0.0,14.3981,2.393,9.019,14.4,2.39,9.02,21.12,0.01,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.93,3952.85,5675.77,52.47,1.0,52.47,66.75,66.75,0.0,46.68,1.0,46.68,66.75,66.75,0.0,63.85,80.622,52.0208,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,46.492,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,18.8207,3.8716,8.2105,0.0,0.0,14.2921,2.064,9.02,14.29,2.06,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-mini-split-heat-pump-ductless.xml,61.37,78.124,48.4456,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,43.864,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,15.3027,3.8024,8.2125,0.0,0.0,11.7111,2.007,9.019,11.71,2.01,9.02,21.12,0.01,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,64.22,3682.63,5675.77,52.47,1.0,52.47,61.37,61.37,0.0,46.68,1.0,46.68,61.37,61.37,0.0,58.67,80.622,47.7955,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,43.443,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,15.3007,3.1663,8.2105,0.0,0.0,11.6191,1.688,9.02,11.62,1.69,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-multiple.xml,94.46,78.077,74.4828,78.852,0.20849,0.9926,1.0,1.0175,1.0099,1.0,67.5432,0.0,0.0,30.5,9.84,10.49,36.66,7.9,11.52,27.23,0.0,0.0,6.0317,2.1654,0.9898,7.7555,1.5750000000000002,1.087,36.9534,8.1898,8.2116,0.0,0.0,43.0895,6.114,9.018,44.09,6.11,9.02,21.12,0.01,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0,135.09,8552.89,6269.09,54.94,1.0,54.94,94.46,94.46,0.0,50.16,1.0,50.16,94.46,94.46,0.0,90.99,80.5722,74.0511,81.3874,0.21252,0.9924,1.0,1.0178,1.0101,1.0,66.8652,0.0,0.0,34.6,8.25,10.49,40.89,7.14,11.52,27.22,0.0,0.0,6.1333,2.0809,0.9894,7.7555,1.5750000000000002,1.087,37.8888,6.8337,8.2096,0.0,0.0,43.1822,5.373,9.019,44.17,5.37,9.02,21.12,0.0,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0 +base-hvac-none.xml,92.58,69.909,67.9283,73.3692,0.18718,1.0333,1.0,1.0157,1.0495,1.0,47.343,0.0,0.0,0.0,45.36,5.18,0.0,25.4,6.1,19.36,0.0,0.0,0.0,0.469,0.9238,1.2821,0.2625,1.087,0.0,48.3787,4.0346,0.0,0.0,0.0,27.0832,4.747,0.0,27.08,4.75,15.2,0.32,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,68.46,1.0,68.46,92.58,92.58,0.0,61.35,1.0,61.35,92.58,92.58,0.0,89.25,66.724,62.5143,70.0406,0.18796,1.0334,1.0,1.0158,1.0497,1.0,44.365,0.0,0.0,0.0,42.18,5.18,0.0,23.8,6.1,19.36,0.0,0.0,0.0,0.4653,0.9238,1.2821,0.2625,1.087,0.0,43.2817,4.0346,0.0,0.0,0.0,24.4222,4.747,0.0,24.42,4.75,15.2,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-programmable-thermostat.xml,75.2,78.12,59.3508,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,50.6036,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,21.9172,8.0993,8.2143,0.0,0.0,34.8737,4.681,9.021,37.6,4.68,9.02,21.11,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.69,8296.82,5675.77,56.16,1.0,56.16,75.2,75.2,0.0,50.71,1.0,50.71,75.2,75.2,0.0,70.59,80.619,57.5003,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,49.5414,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,21.5476,6.6314,8.2124,0.0,0.0,34.2856,3.897,9.022,36.96,3.9,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ptac-with-heating-electricity.xml,92.75,78.125,73.2159,78.9363,0.21808,0.9922,1.0,1.0183,1.0104,1.0,62.539,0.0,0.0,30.56,9.85,10.49,23.39,5.67,11.52,27.23,0.0,0.0,0.5792,0.456,0.9898,0.4432,0.2625,1.087,37.6301,6.2453,8.2125,0.0,0.0,28.7983,3.596,9.019,28.8,3.6,9.02,21.12,0.01,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,92.39,5329.88,5709.65,52.4,1.0,52.4,92.75,92.75,0.0,46.62,1.0,46.62,92.75,92.75,0.0,88.62,80.623,72.2005,81.4725,0.22127,0.9921,1.0,1.0186,1.0105,1.0,61.759,0.0,0.0,34.64,8.27,10.49,26.31,4.83,11.52,27.22,0.0,0.0,0.5837,0.4502,0.9894,0.4432,0.2625,1.087,37.5704,5.3016,8.2105,0.0,0.0,28.5303,3.092,9.02,28.53,3.09,9.02,21.12,0.0,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-ptac-with-heating-natural-gas.xml,72.46,78.106,57.189,78.9196,0.21877,0.9922,1.0,1.0184,1.0104,1.0,48.1408,0.0,0.0,30.56,9.83,10.49,48.62,6.48,11.52,27.23,0.0,0.0,0.8058,0.3986,0.9898,1.2821,0.2625,1.087,22.3887,5.4599,8.2125,0.0,0.0,35.6232,3.596,9.019,36.0,3.6,9.02,21.12,0.01,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,139.25,8033.64,5709.65,55.97,1.0,55.97,72.46,72.46,0.0,50.49,1.0,50.49,72.46,72.46,0.0,68.79,80.61,56.0384,81.4622,0.222,0.9921,1.0,1.0186,1.0106,1.0,47.4942,0.0,0.0,34.64,8.26,10.49,55.12,5.64,11.52,27.22,0.0,0.0,0.8058,0.3845,0.9894,1.2821,0.2625,1.087,22.1809,4.5289,8.2105,0.0,0.0,35.2927,3.092,9.02,35.66,3.09,9.02,21.12,0.0,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-ptac.xml,80.56,78.106,63.5747,78.9196,0.21877,0.9922,1.0,1.0184,1.0104,1.0,52.8292,0.0,0.0,30.56,9.83,10.49,48.62,6.48,11.52,27.23,0.0,0.0,0.8058,0.3986,0.9898,1.2821,0.2625,1.087,28.7744,5.4599,8.2125,0.0,0.0,45.7837,3.596,9.019,45.79,3.6,9.02,21.12,0.01,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.26,9402.14,5806.23,70.93,1.0,70.93,80.56,80.56,0.0,61.79,1.0,61.79,80.56,80.56,0.0,76.56,80.61,62.3648,81.4622,0.222,0.9921,1.0,1.0186,1.0106,1.0,52.1386,0.0,0.0,34.64,8.26,10.49,55.12,5.64,11.52,27.22,0.0,0.0,0.8058,0.3845,0.9894,1.2821,0.2625,1.087,28.5073,4.5289,8.2105,0.0,0.0,45.3587,3.092,9.02,45.36,3.09,9.02,21.12,0.0,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-pthp.xml,65.49,78.125,51.6952,78.9363,0.21808,0.9922,1.0,1.0183,1.0104,1.0,46.102,0.0,0.0,30.56,9.85,10.49,23.39,5.67,11.52,27.23,0.0,0.0,0.5792,0.456,0.9898,0.4432,0.2625,1.087,16.2761,6.0786,8.2125,0.0,0.0,12.4561,3.5,9.019,12.46,3.5,9.02,21.12,0.01,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,66.79,3853.1,5709.65,52.4,1.0,52.4,65.49,65.49,0.0,46.62,1.0,46.62,65.49,65.49,0.0,62.29,80.623,50.7459,81.4725,0.22127,0.9921,1.0,1.0186,1.0105,1.0,45.495,0.0,0.0,34.64,8.27,10.49,26.31,4.83,11.52,27.22,0.0,0.0,0.5837,0.4502,0.9894,0.4432,0.2625,1.087,16.2752,5.1422,8.2105,0.0,0.0,12.3591,2.999,9.02,12.36,3.0,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-room-ac-only-ceer.xml,82.36,78.106,65.0004,78.9196,0.21877,0.9922,1.0,1.0184,1.0104,1.0,53.7682,0.0,0.0,30.56,9.83,10.49,48.62,6.48,11.52,27.23,0.0,0.0,0.8058,0.3986,0.9898,1.2821,0.2625,1.087,28.7744,6.8856,8.2125,0.0,0.0,45.7837,4.535,9.019,45.79,4.54,9.02,21.12,0.01,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.41,9469.56,5806.23,70.93,1.0,70.93,82.36,82.36,0.0,61.79,1.0,61.79,82.36,82.36,0.0,78.01,80.61,63.5483,81.4622,0.222,0.9921,1.0,1.0186,1.0106,1.0,52.9466,0.0,0.0,34.64,8.26,10.49,55.12,5.64,11.52,27.22,0.0,0.0,0.8058,0.3845,0.9894,1.2821,0.2625,1.087,28.5073,5.7124,8.2105,0.0,0.0,45.3587,3.9,9.02,45.36,3.9,9.02,21.12,0.0,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-room-ac-only.xml,82.35,78.106,64.9883,78.9196,0.21877,0.9922,1.0,1.0184,1.0104,1.0,53.7602,0.0,0.0,30.56,9.83,10.49,48.62,6.48,11.52,27.23,0.0,0.0,0.8058,0.3986,0.9898,1.2821,0.2625,1.087,28.7744,6.8734,8.2125,0.0,0.0,45.7837,4.527,9.019,45.79,4.53,9.02,21.12,0.01,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.4,9468.95,5806.23,70.93,1.0,70.93,82.35,82.35,0.0,61.79,1.0,61.79,82.35,82.35,0.0,78.0,80.61,63.5365,81.4622,0.222,0.9921,1.0,1.0186,1.0106,1.0,52.9396,0.0,0.0,34.64,8.26,10.49,55.12,5.64,11.52,27.22,0.0,0.0,0.8058,0.3845,0.9894,1.2821,0.2625,1.087,28.5073,5.7007,8.2105,0.0,0.0,45.3587,3.892,9.02,45.36,3.89,9.02,21.12,0.0,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-room-ac-with-heating.xml,94.8,78.125,74.8328,78.9363,0.21808,0.9922,1.0,1.0183,1.0104,1.0,63.47,0.0,0.0,30.56,9.85,10.49,23.39,5.67,11.52,27.23,0.0,0.0,0.5792,0.456,0.9898,0.4432,0.2625,1.087,37.6301,7.8623,8.2125,0.0,0.0,28.7983,4.527,9.019,28.8,4.53,9.02,21.12,0.01,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,93.55,5396.69,5709.65,52.4,1.0,52.4,94.8,94.8,0.0,46.62,1.0,46.62,94.8,94.8,0.0,90.3,80.623,73.5722,81.4725,0.22127,0.9921,1.0,1.0186,1.0105,1.0,62.559,0.0,0.0,34.64,8.27,10.49,26.31,4.83,11.52,27.22,0.0,0.0,0.5837,0.4502,0.9894,0.4432,0.2625,1.087,37.5704,6.6733,8.2105,0.0,0.0,28.5303,3.892,9.02,28.53,3.89,9.02,21.12,0.0,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-room-ac-with-reverse-cycle.xml,65.49,78.125,51.6952,78.9363,0.21808,0.9922,1.0,1.0183,1.0104,1.0,46.102,0.0,0.0,30.56,9.85,10.49,23.39,5.67,11.52,27.23,0.0,0.0,0.5792,0.456,0.9898,0.4432,0.2625,1.087,16.2761,6.0786,8.2125,0.0,0.0,12.4561,3.5,9.019,12.46,3.5,9.02,21.12,0.01,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,66.79,3853.1,5709.65,52.4,1.0,52.4,65.49,65.49,0.0,46.62,1.0,46.62,65.49,65.49,0.0,62.29,80.623,50.7459,81.4725,0.22127,0.9921,1.0,1.0186,1.0105,1.0,45.495,0.0,0.0,34.64,8.27,10.49,26.31,4.83,11.52,27.22,0.0,0.0,0.5837,0.4502,0.9894,0.4432,0.2625,1.087,16.2752,5.1422,8.2105,0.0,0.0,12.3591,2.999,9.02,12.36,3.0,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-hvac-space-heater-gas-only.xml,68.82,78.118,54.323,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,47.1422,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,16.0406,8.9419,8.2125,0.0,0.0,25.5232,5.477,9.019,28.8,5.48,9.02,21.12,0.01,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,122.09,7123.26,5774.15,57.34,1.0,57.34,68.82,68.82,0.0,52.0,1.0,52.0,68.82,68.82,0.0,64.75,80.618,52.7564,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,46.333,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,15.8914,7.5365,8.2105,0.0,0.0,25.2856,4.784,9.02,28.53,4.78,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-stove-wood-pellets-only.xml,76.84,78.118,60.6538,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,50.0764,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,22.3714,8.9419,8.2125,0.0,0.0,35.5965,5.477,9.019,35.97,5.48,9.02,21.12,0.01,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.34,1.0,57.34,76.84,76.84,0.0,52.0,1.0,52.0,76.84,76.84,0.0,72.45,80.618,59.0288,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,49.2402,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,22.1637,7.5365,8.2105,0.0,0.0,35.2659,4.784,9.02,35.64,4.78,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-undersized.xml,73.96,78.12,58.3709,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,49.8344,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,20.4831,8.5474,8.2125,0.0,0.0,32.5918,4.94,9.019,35.14,4.94,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,138.63,7949.15,5675.77,56.16,1.0,56.16,73.96,73.96,0.0,50.71,1.0,50.71,73.96,73.96,0.0,69.83,80.619,56.8793,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,49.0156,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,20.2983,7.2525,8.2105,0.0,0.0,32.2977,4.262,9.02,34.82,4.26,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-hvac-wall-furnace-elec-only.xml,96.61,78.118,76.248,78.923,0.21641,0.9923,1.0,1.0182,1.0103,1.0,65.008,0.0,0.0,30.56,9.84,10.49,23.65,6.03,11.52,27.23,0.0,0.0,0.5727,0.4286,0.9898,0.4432,0.2625,1.087,37.9656,8.9419,8.2125,0.0,0.0,29.3853,5.477,9.019,29.39,5.48,9.02,21.12,0.01,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,94.85,5533.0,5774.15,55.59,1.0,55.59,96.61,96.61,0.0,49.97,1.0,49.97,96.61,96.61,0.0,91.78,80.619,74.7638,81.462,0.21958,0.9922,1.0,1.0184,1.0105,1.0,64.034,0.0,0.0,34.64,8.27,10.49,26.61,5.25,11.52,27.22,0.0,0.0,0.577,0.4136,0.9894,0.4432,0.2625,1.087,37.8988,7.5365,8.2105,0.0,0.0,29.1123,4.784,9.02,29.11,4.78,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 +base-lighting-ceiling-fans-label-energy-use.xml,77.98,78.521,61.8565,79.3206,0.21389,0.9924,1.0,1.0179,1.0102,1.0,52.5126,0.0,0.0,30.54,9.51,10.49,48.6,5.53,11.52,27.98,0.0,0.0,0.8057,0.4519,0.99,1.2821,0.2625,1.087,22.9209,8.9069,8.2128,0.0,0.0,36.4711,5.174,9.017,39.32,5.17,9.02,21.81,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.23,8635.29,5728.21,56.14,1.0,56.14,77.98,77.98,0.0,50.74,1.0,50.74,77.98,77.98,0.0,73.62,81.022,60.2604,81.853,0.21541,0.9923,1.0,1.0181,1.0103,1.0,51.6342,0.0,0.0,34.62,7.94,10.49,55.09,4.7,11.52,27.97,0.0,0.0,0.8058,0.4437,0.9897,1.2821,0.2625,1.087,22.722,7.5216,8.2109,0.0,0.0,36.1529,4.45,9.018,38.97,4.45,9.02,21.81,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-lighting-ceiling-fans.xml,77.69,78.521,61.6278,79.3206,0.21389,0.9924,1.0,1.0179,1.0102,1.0,52.313,0.0,0.0,30.54,9.51,10.49,48.6,5.53,11.52,27.98,0.0,0.0,0.8057,0.4519,0.99,1.2821,0.2625,1.087,22.9215,8.8346,8.2128,0.0,0.0,36.472,5.132,9.017,39.32,5.13,9.02,21.65,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.94,8618.38,5728.21,56.14,1.0,56.14,77.69,77.69,0.0,50.74,1.0,50.74,77.69,77.69,0.0,73.35,81.022,60.0364,81.853,0.21541,0.9923,1.0,1.0181,1.0103,1.0,51.4366,0.0,0.0,34.62,7.94,10.49,55.09,4.7,11.52,27.97,0.0,0.0,0.8058,0.4437,0.9897,1.2821,0.2625,1.087,22.7226,7.454,8.2109,0.0,0.0,36.1538,4.41,9.018,38.98,4.41,9.02,21.65,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-baltimore-md.xml,72.33,61.115,47.3771,65.4996,0.26846,1.0481,1.0,1.0226,1.0717,1.0,39.9714,0.0,0.0,20.51,11.85,9.61,32.72,7.32,10.62,19.15,0.0,0.0,0.8037,0.425,0.9828,1.2821,0.2625,1.087,11.9729,12.374,7.6982,0.0,0.0,19.0996,7.6441,8.514,20.59,7.64,8.51,15.02,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,75.42,9503.33,11757.68,51.33,1.0,51.33,72.33,72.33,0.0,48.92,1.0,48.92,72.33,72.33,0.0,67.44,60.987,44.1267,65.4294,0.27243,1.0488,1.0,1.0229,1.0728,1.0,38.024,0.0,0.0,21.74,10.5,9.61,34.66,6.68,10.81,19.14,0.0,0.0,0.804,0.4128,0.9661,1.2821,0.2625,1.087,10.6769,10.8637,7.5671,0.0,0.0,17.0245,6.9091,8.514,18.35,6.91,8.51,15.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-capetown-zaf.xml,79.6,36.847,30.6839,38.547,0.17477,1.031,1.0,1.0146,1.0461,1.0,27.7604,0.0,0.0,4.04,5.28,8.36,6.45,2.92,9.36,19.18,0.0,0.0,0.8025,0.475,0.9704,1.2821,0.2625,1.087,0.7194,7.8634,6.7081,0.0,0.0,1.1493,4.346,7.514,1.24,4.35,7.51,15.08,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,49.92,1.0,49.92,79.6,79.6,0.0,47.68,1.0,47.68,79.6,79.6,0.0,77.56,36.528,29.6502,38.2282,0.17627,1.0313,1.0,1.0148,1.0465,1.0,27.131,0.0,0.0,4.71,4.29,8.36,7.53,2.42,9.47,19.17,0.0,0.0,0.8029,0.4662,0.9591,1.2821,0.2625,1.087,0.4618,7.4742,6.6302,0.0,0.0,0.7375,4.209,7.514,0.8,4.21,7.51,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-dallas-tx.xml,70.17,64.677,48.6232,69.2957,0.26726,1.0479,1.0,1.0225,1.0714,1.0,38.7052,0.0,0.0,9.88,28.06,7.52,15.77,16.71,8.5,19.22,0.0,0.0,0.8029,0.441,0.9613,1.2821,0.2625,1.087,3.0835,24.1931,5.9376,0.0,0.0,4.9238,14.4041,6.714,5.31,14.4,6.71,15.09,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,74.3,6166.34,7746.31,46.7,1.0,46.7,70.17,70.17,0.0,43.86,1.0,43.86,70.17,70.17,0.0,66.08,63.611,45.1088,68.2627,0.27346,1.049,1.0,1.023,1.0731,1.0,36.6532,0.0,0.0,10.41,26.46,7.52,16.62,16.03,8.5,19.22,0.0,0.0,0.8032,0.4335,0.9612,1.2821,0.2625,1.087,2.5716,21.5061,5.9361,0.0,0.0,4.1047,13.0241,6.713,4.43,13.02,6.71,15.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-duluth-mn.xml,75.21,79.382,63.7937,84.817,0.2566,1.0459,1.0,1.0216,1.0685,1.0,54.7434,0.0,0.0,46.02,2.03,13.08,73.19,2.07,14.52,18.26,0.0,0.0,0.8062,0.257,0.9792,1.2821,0.2625,1.087,36.5074,2.3764,10.2919,0.0,0.0,58.0576,2.428,11.425,62.59,2.43,11.43,14.3,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.41,11246.45,6363.47,53.96,1.0,53.96,75.21,75.21,0.0,58.59,1.0,58.59,75.21,75.21,0.0,67.0,83.897,60.0844,89.6765,0.25812,1.0462,1.0,1.0217,1.0689,1.0,52.189,0.0,0.0,51.0,1.56,13.08,81.11,1.87,14.52,18.26,0.0,0.0,0.8062,0.2189,0.9791,1.2821,0.2625,1.087,33.5718,1.9246,10.2921,0.0,0.0,53.388,2.308,11.426,57.55,2.31,11.43,14.3,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-helena-mt.xml,75.86,93.104,71.3685,94.0832,0.22085,0.9921,1.0,1.0185,1.0105,1.0,60.5564,0.0,0.0,49.73,4.29,11.89,79.11,2.89,12.94,27.19,0.0,0.0,0.8059,0.3901,0.9988,1.2821,0.2625,1.087,37.3078,3.6258,9.3429,0.0,0.0,59.347,2.44,10.167,63.98,2.44,10.17,21.09,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,192.1,11484.06,5915.96,57.69,1.0,57.69,75.86,75.86,0.0,50.84,1.0,50.84,75.86,75.86,0.0,70.43,98.853,70.362,99.9041,0.22326,0.992,1.0,1.0187,1.0106,1.0,60.0424,0.0,0.0,56.36,3.42,11.89,89.65,2.51,12.95,27.18,0.0,0.0,0.806,0.3578,0.9985,1.2821,0.2625,1.087,36.9719,2.9652,9.34,0.0,0.0,58.8108,2.176,10.167,63.4,2.18,10.17,21.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-honolulu-hi.xml,81.14,69.913,59.5271,73.3632,0.18664,1.0332,1.0,1.0156,1.0493,1.0,42.474,0.0,0.0,0.0,45.37,5.18,0.0,25.21,6.1,19.36,0.0,0.0,0.0,0.4725,0.9238,1.2821,0.2625,1.087,0.0,39.9775,4.0346,0.0,0.0,0.0,22.2142,4.747,0.0,22.21,4.75,15.2,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,61.49,1.0,61.49,81.14,81.14,0.0,40.29,1.0,40.29,81.14,81.14,0.0,78.61,66.727,55.054,70.0352,0.18749,1.0333,1.0,1.0157,1.0496,1.0,40.002,0.0,0.0,0.0,42.18,5.18,0.0,23.62,6.1,19.36,0.0,0.0,0.0,0.4688,0.9238,1.2821,0.2625,1.087,0.0,35.8214,4.0346,0.0,0.0,0.0,20.0592,4.747,0.0,20.06,4.75,15.2,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-miami-fl.xml,78.92,68.053,56.5896,71.7024,0.2024,1.036,1.0,1.017,1.0536,1.0,41.7064,0.0,0.0,0.05,43.32,5.34,0.08,25.02,6.26,19.34,0.0,0.0,0.8032,0.4546,0.9264,1.2821,0.2625,1.087,0.0006,36.9285,4.1565,0.0,0.0,0.0009,21.3272,4.877,0.0,21.33,4.88,15.19,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.83,6124.22,7468.33,62.55,1.0,62.55,78.92,78.92,0.0,42.43,1.0,42.43,78.92,78.92,0.0,75.8,65.348,52.2224,68.8968,0.2049,1.0365,1.0,1.0172,1.0543,1.0,39.216,0.0,0.0,0.06,40.61,5.34,0.1,23.66,6.26,19.34,0.0,0.0,0.8062,0.4506,0.9264,1.2821,0.2625,1.087,0.0,32.8799,4.1565,0.0,0.0,0.0,19.1552,4.877,0.0,19.15,4.88,15.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-phoenix-az.xml,72.04,80.531,62.3609,86.5651,0.27996,1.0502,1.0,1.0236,1.0749,1.0,44.567,0.0,0.0,1.44,54.21,5.6,2.3,30.56,6.55,19.29,0.0,0.0,0.8012,0.4656,0.9292,1.2821,0.2625,1.087,0.1055,42.4184,4.365,0.0,0.0,0.1688,23.9172,5.106,0.18,23.92,5.11,15.16,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,72.35,4986.34,6411.54,48.11,1.0,48.11,72.04,72.04,0.0,43.7,1.0,43.7,72.04,72.04,0.0,69.84,77.9,58.5505,83.8342,0.28446,1.051,1.0,1.0239,1.0762,1.0,42.358,0.0,0.0,1.46,51.56,5.6,2.33,29.18,6.55,19.29,0.0,0.0,0.801,0.4639,0.9291,1.2821,0.2625,1.087,0.0585,38.9695,4.3635,0.0,0.0,0.0937,22.0562,5.105,0.1,22.06,5.11,15.16,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-location-portland-or.xml,79.82,46.415,38.8905,48.7208,0.18786,1.0334,1.0,1.0157,1.0497,1.0,35.1544,0.0,0.0,13.25,4.08,9.97,21.16,2.85,11.01,19.12,0.0,0.0,0.8028,0.3755,0.9849,1.2821,0.2625,1.087,10.9186,4.5938,8.0921,0.0,0.0,17.4373,3.212,8.931,18.8,3.21,8.93,14.97,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.38,4512.07,2897.01,65.67,1.0,65.67,79.82,79.82,0.0,50.39,1.0,50.39,79.82,79.82,0.0,73.79,46.882,36.3234,49.2282,0.18921,1.0336,1.0,1.0159,1.05,1.0,33.5694,0.0,0.0,14.53,3.27,9.97,23.18,2.45,11.25,19.11,0.0,0.0,0.8033,0.3506,0.9636,1.2821,0.2625,1.087,9.5411,3.8882,7.9191,0.0,0.0,15.2268,2.912,8.933,16.42,2.91,8.93,14.98,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-balanced.xml,82.28,79.488,66.0771,80.3056,0.21602,0.9923,1.0,1.0181,1.0103,1.0,55.613,0.0,0.0,30.16,10.03,10.49,48.0,5.77,11.52,27.23,1.58,0.0,0.8057,0.456,0.9898,1.2821,0.2625,1.087,25.3974,9.5564,8.2134,0.0,0.0,40.4106,5.502,9.02,43.56,5.5,9.02,21.12,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.2,9372.68,5790.97,56.16,1.0,56.16,82.28,82.28,0.0,50.71,1.0,50.71,82.28,82.28,0.0,79.15,81.962,65.5451,82.8112,0.21758,0.9922,1.0,1.0183,1.0104,1.0,55.5434,0.0,0.0,34.23,8.44,10.49,54.46,4.94,11.52,27.22,1.58,0.0,0.8058,0.449,0.9895,1.2821,0.2625,1.087,26.0814,8.3456,8.2122,0.0,0.0,41.4978,4.88,9.021,44.74,4.88,9.02,21.11,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis-airflow-fraction-zero.xml,78.85,79.043,62.969,79.856,0.21602,0.9923,1.0,1.0181,1.0103,1.0,53.3238,0.0,0.0,30.29,9.97,10.49,48.2,5.75,11.52,27.23,1.07,0.0,0.8057,0.4554,0.9898,1.2821,0.2625,1.087,22.1689,9.6905,8.2116,0.0,0.0,35.2744,5.5861,9.018,38.03,5.59,9.02,21.12,1.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,147.54,8575.73,5753.44,56.16,1.0,56.16,78.85,78.85,0.0,50.71,1.0,50.71,78.85,78.85,0.0,74.87,81.507,61.6598,82.3514,0.21758,0.9922,1.0,1.0183,1.0104,1.0,52.7042,0.0,0.0,34.37,8.38,10.49,54.69,4.91,11.52,27.22,1.04,0.0,0.8058,0.4482,0.9894,1.2821,0.2625,1.087,22.0883,8.437,8.2105,0.0,0.0,35.1446,4.942,9.02,37.89,4.94,9.02,21.12,1.81,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,76.05,79.043,60.7312,79.856,0.21602,0.9923,1.0,1.0181,1.0103,1.0,51.3946,0.0,0.0,30.29,9.97,10.49,48.2,5.75,11.52,27.23,1.07,0.0,0.8057,0.4554,0.9898,1.2821,0.2625,1.087,21.46,9.4407,8.2125,0.0,0.0,34.1464,5.442,9.019,36.81,5.44,9.02,21.12,0.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,142.49,8282.14,5753.44,56.16,1.0,56.16,76.05,76.05,0.0,50.71,1.0,50.71,76.05,76.05,0.0,71.74,81.507,59.0765,82.3514,0.21758,0.9922,1.0,1.0183,1.0104,1.0,50.5194,0.0,0.0,34.37,8.38,10.49,54.69,4.91,11.52,27.22,1.04,0.0,0.8058,0.4482,0.9894,1.2821,0.2625,1.087,21.0598,8.1792,8.2114,0.0,0.0,33.5083,4.791,9.021,36.12,4.79,9.02,21.12,0.51,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-cfis.xml,79.58,79.043,63.5468,79.856,0.21602,0.9923,1.0,1.0181,1.0103,1.0,53.7308,0.0,0.0,30.29,9.97,10.49,48.2,5.75,11.52,27.23,1.07,0.0,0.8057,0.4554,0.9898,1.2821,0.2625,1.087,22.8009,9.6645,8.2125,0.0,0.0,36.28,5.5711,9.019,39.11,5.57,9.02,21.12,1.75,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.18,8729.39,5753.44,56.16,1.0,56.16,79.58,79.58,0.0,50.71,1.0,50.71,79.58,79.58,0.0,75.62,81.507,62.2741,82.3514,0.21758,0.9922,1.0,1.0183,1.0104,1.0,53.1348,0.0,0.0,34.37,8.38,10.49,54.69,4.91,11.52,27.22,1.04,0.0,0.8058,0.4482,0.9894,1.2821,0.2625,1.087,22.7301,8.4404,8.2105,0.0,0.0,36.1659,4.944,9.02,38.99,4.94,9.02,21.12,1.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-erv-atre-asre.xml,71.79,80.077,58.0822,80.9007,0.21602,0.9923,1.0,1.0181,1.0103,1.0,49.8102,0.0,0.0,30.0,10.11,10.49,47.73,5.81,11.52,27.23,2.26,0.0,0.8057,0.4568,0.9898,1.2821,0.2625,1.087,17.0471,9.9018,8.2114,0.0,0.0,27.1244,5.6911,9.017,29.24,5.69,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,123.83,7306.2,5840.3,56.16,1.0,56.16,71.79,71.79,0.0,50.71,1.0,50.71,71.79,71.79,0.0,68.67,82.537,57.2679,83.3921,0.21758,0.9922,1.0,1.0183,1.0104,1.0,49.5298,0.0,0.0,34.06,8.52,10.49,54.19,4.97,11.52,27.22,2.26,0.0,0.8058,0.4499,0.9895,1.2821,0.2625,1.087,17.5017,8.6377,8.2094,0.0,0.0,27.847,5.041,9.018,30.02,5.04,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-erv.xml,71.8,80.077,58.084,80.9007,0.21602,0.9923,1.0,1.0181,1.0103,1.0,49.8114,0.0,0.0,30.0,10.11,10.49,47.73,5.81,11.52,27.23,2.26,0.0,0.8057,0.4568,0.9898,1.2821,0.2625,1.087,17.0488,9.9018,8.2114,0.0,0.0,27.1272,5.6911,9.017,29.24,5.69,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,123.83,7306.68,5840.3,56.16,1.0,56.16,71.8,71.8,0.0,50.71,1.0,50.71,71.8,71.8,0.0,68.68,82.537,57.2702,83.3921,0.21758,0.9922,1.0,1.0183,1.0104,1.0,49.531,0.0,0.0,34.06,8.52,10.49,54.19,4.97,11.52,27.22,2.26,0.0,0.8058,0.4499,0.9895,1.2821,0.2625,1.087,17.504,8.6377,8.2094,0.0,0.0,27.8507,5.041,9.018,30.02,5.04,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-exhaust.xml,78.94,79.043,63.0417,79.856,0.21602,0.9923,1.0,1.0181,1.0103,1.0,53.152,0.0,0.0,30.29,9.97,10.49,48.2,5.75,11.52,27.23,1.07,0.0,0.8057,0.4554,0.9898,1.2821,0.2625,1.087,23.336,9.4771,8.2125,0.0,0.0,37.1315,5.463,9.019,40.03,5.46,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.14,8785.28,5753.44,56.16,1.0,56.16,78.94,78.94,0.0,50.71,1.0,50.71,78.94,78.94,0.0,75.03,81.507,61.7893,82.3514,0.21758,0.9922,1.0,1.0183,1.0104,1.0,52.5654,0.0,0.0,34.37,8.38,10.49,54.69,4.91,11.52,27.22,1.04,0.0,0.8058,0.4482,0.9894,1.2821,0.2625,1.087,23.3423,8.2236,8.2114,0.0,0.0,37.1399,4.817,9.021,40.04,4.82,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-hrv-asre.xml,71.8,80.077,58.0851,80.9007,0.21602,0.9923,1.0,1.0181,1.0103,1.0,49.8108,0.0,0.0,30.0,10.11,10.49,47.73,5.81,11.52,27.23,2.26,0.0,0.8057,0.4568,0.9898,1.2821,0.2625,1.087,17.0465,9.9053,8.2114,0.0,0.0,27.1235,5.6931,9.017,29.24,5.69,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,123.83,7306.15,5840.3,56.16,1.0,56.16,71.8,71.8,0.0,50.71,1.0,50.71,71.8,71.8,0.0,68.67,82.537,57.2667,83.3921,0.21758,0.9922,1.0,1.0183,1.0104,1.0,49.529,0.0,0.0,34.06,8.52,10.49,54.19,4.97,11.52,27.22,2.26,0.0,0.8058,0.4499,0.9895,1.2821,0.2625,1.087,17.5005,8.6377,8.2094,0.0,0.0,27.8452,5.041,9.018,30.02,5.04,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-hrv.xml,71.8,80.077,58.0869,80.9007,0.21602,0.9923,1.0,1.0181,1.0103,1.0,49.812,0.0,0.0,30.0,10.11,10.49,47.73,5.81,11.52,27.23,2.26,0.0,0.8057,0.4568,0.9898,1.2821,0.2625,1.087,17.0483,9.9053,8.2114,0.0,0.0,27.1263,5.6931,9.017,29.24,5.69,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,123.83,7306.63,5840.3,56.16,1.0,56.16,71.8,71.8,0.0,50.71,1.0,50.71,71.8,71.8,0.0,68.68,82.537,57.2696,83.3921,0.21758,0.9922,1.0,1.0183,1.0104,1.0,49.5306,0.0,0.0,34.06,8.52,10.49,54.19,4.97,11.52,27.22,2.26,0.0,0.8058,0.4499,0.9895,1.2821,0.2625,1.087,17.5035,8.6377,8.2094,0.0,0.0,27.8498,5.041,9.018,30.02,5.04,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-multiple.xml,82.64,79.705,66.5463,80.5273,0.21666,0.9923,1.0,1.0182,1.0103,1.0,56.5826,0.0,0.0,30.1,10.06,10.49,47.9,6.7,11.52,27.23,1.83,0.0,1.6114,0.7879,0.9898,2.5642,0.525,1.087,25.7434,9.9906,8.2143,0.0,0.0,40.9635,6.658,9.021,44.16,6.22,9.02,21.11,1.48,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0,161.5,9544.41,5849.66,56.89,1.0,56.89,82.64,82.64,0.0,51.46,1.0,51.46,82.64,82.64,0.0,79.29,82.133,65.7997,82.9866,0.21826,0.9922,1.0,1.0183,1.0104,1.0,56.349,0.0,0.0,34.18,8.46,10.49,54.39,5.84,11.52,27.22,1.78,0.0,1.6114,0.7613000000000001,0.9895,2.5642,0.525,1.087,26.3144,8.7092,8.2131,0.0,0.0,41.8707,6.007,9.022,45.14,5.6,9.02,21.11,1.45,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0 +base-mechvent-supply.xml,77.89,79.043,62.1993,79.856,0.21602,0.9923,1.0,1.0181,1.0103,1.0,52.5338,0.0,0.0,30.29,9.97,10.49,48.2,5.75,11.52,27.23,1.07,0.0,0.8057,0.4554,0.9898,1.2821,0.2625,1.087,22.3695,9.6003,8.2125,0.0,0.0,35.5935,5.534,9.019,38.37,5.53,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,147.08,8549.27,5753.44,56.16,1.0,56.16,77.89,77.89,0.0,50.71,1.0,50.71,77.89,77.89,0.0,73.88,81.507,60.8426,82.3514,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.8734,0.0,0.0,34.37,8.38,10.49,54.69,4.91,11.52,27.22,1.04,0.0,0.8058,0.4482,0.9894,1.2821,0.2625,1.087,22.276,8.3431,8.2105,0.0,0.0,35.4433,4.887,9.02,38.21,4.89,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-mechvent-whole-house-fan.xml,76.01,78.12,59.9898,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,51.1252,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,23.0144,7.6494,8.217,0.0,0.0,36.6195,4.421,9.024,39.48,3.74,9.02,21.1,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.08,8548.58,5675.77,56.16,1.0,56.16,76.01,76.01,0.0,50.71,1.0,50.71,76.01,76.01,0.0,72.03,80.619,58.6746,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,50.3982,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.8115,6.548,8.2151,0.0,0.0,36.2967,3.848,9.025,39.13,3.2,9.03,21.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-misc-generators.xml,76.18,78.12,61.5791,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,0.9764,58.8388,1.389,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9351,9.3035,8.2125,0.0,0.0,36.4933,5.377,9.019,39.34,5.38,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,188.79,10825.64,5675.77,56.16,1.0,56.16,78.02,78.02,0.0,50.71,1.0,50.71,78.02,78.02,0.0,71.85,80.619,59.9644,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,0.976,57.9498,1.389,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7357,7.8991,8.2105,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-pv-battery.xml,39.51,78.12,61.5791,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,0.5063,52.8408,26.886,0.801,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9351,9.3035,8.2125,0.0,0.0,36.4933,5.377,9.019,39.34,5.38,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,116.11,6657.74,5675.77,56.16,1.0,56.16,78.02,78.02,0.0,50.71,1.0,50.71,78.02,78.02,0.0,68.31,80.619,59.9644,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,0.9279,51.1498,3.6889,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7357,7.8991,8.2105,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-pv.xml,37.71,78.12,61.5791,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,0.4833,52.0388,26.886,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9351,9.3035,8.2125,0.0,0.0,36.4933,5.377,9.019,39.34,5.38,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,118.15,6775.15,5675.77,56.16,1.0,56.16,78.02,78.02,0.0,50.71,1.0,50.71,78.02,78.02,0.0,68.31,80.619,59.9644,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,0.9279,51.1498,3.6889,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7357,7.8991,8.2105,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-version-co2-2019ABCD.xml,,,,,,,,,1.0104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,149.44,8489.34,5622.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-co2-2022.xml,,,,,,,,,1.0104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,149.44,8489.34,5622.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-co2-2022C.xml,,,,,,,,,1.0103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,149.85,8592.43,5675.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2014.xml,76.82,79.733,61.2507,,,,,,,1.0,52.2094,0.0,0.0,31.9,8.32,11.44,50.69,4.13,12.37,28.08,0.0,0.0,0.8067,0.5291,1.005,1.2821,0.2625,1.087,21.7053,7.3728,10.6206,0.0,0.0,34.4971,3.658,11.487,37.19,3.66,11.49,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2014A.xml,74.26,78.648,58.4023,,,,,,,1.0,49.2646,0.0,0.0,31.85,8.34,10.38,50.61,4.14,11.41,28.08,0.0,0.0,0.8067,0.5296,0.9887,1.2821,0.2625,1.087,21.6832,7.3869,7.7802,0.0,0.0,34.4618,3.662,8.553,37.15,3.66,8.55,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2014AE.xml,73.42,78.648,58.4023,79.544,0.23914,0.9915,1.0,1.0201,1.0114,1.0,49.2646,0.0,0.0,31.85,8.34,10.38,50.61,4.14,11.41,28.08,0.0,0.0,0.8067,0.5296,0.9887,1.2821,0.2625,1.087,21.6832,7.3869,7.7802,0.0,0.0,34.4618,3.662,8.553,37.15,3.66,8.55,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2014AEG.xml,72.77,78.648,57.8919,79.5595,0.24325,0.9913,1.0,1.0204,1.0116,1.0,48.7268,0.0,0.0,31.85,8.34,10.38,50.61,4.14,11.41,28.08,0.0,0.0,0.8067,0.5296,0.9887,1.2821,0.2625,1.087,21.9225,7.3062,7.7802,0.0,0.0,34.8422,3.622,8.553,37.56,3.62,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2019.xml,74.16,77.313,57.9109,78.0869,0.21026,0.9925,1.0,1.0176,1.01,1.0,48.739,0.0,0.0,30.49,8.37,10.38,48.46,4.15,11.41,28.08,0.0,0.0,0.8066,0.5298,0.9887,1.2821,0.2625,1.087,21.939,7.3087,7.7802,0.0,0.0,34.8691,3.622,8.553,37.59,3.62,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2019A.xml,75.71,76.595,58.574,77.3696,0.21241,0.9924,1.0,1.0178,1.0101,1.0,49.4378,0.0,0.0,30.54,8.34,10.49,48.54,4.13,11.52,27.23,0.0,0.0,0.8067,0.5295,0.9896,1.2821,0.2625,1.087,21.9344,7.3086,8.212,0.0,0.0,34.8607,3.624,9.02,37.58,3.62,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2019AB.xml,77.45,76.592,59.9354,77.3855,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.1498,0.0,0.0,30.54,8.34,10.49,48.6,4.92,11.52,27.23,0.0,0.0,0.8057,0.445,0.9896,1.2821,0.2625,1.087,22.7356,7.8689,8.212,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2019ABC.xml,77.45,76.592,59.9354,77.3855,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.1498,0.0,0.0,30.54,8.34,10.49,48.6,4.92,11.52,27.23,0.0,0.0,0.8057,0.445,0.9896,1.2821,0.2625,1.087,22.7356,7.8689,8.212,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2019ABCD.xml,77.45,76.592,59.9354,77.3855,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.1498,0.0,0.0,30.54,8.34,10.49,48.6,4.92,11.52,27.23,0.0,0.0,0.8057,0.445,0.9896,1.2821,0.2625,1.087,22.7356,7.8689,8.212,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2022.xml,77.45,76.592,59.9354,77.3855,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.1498,0.0,0.0,30.54,8.34,10.49,48.6,4.92,11.52,27.23,0.0,0.0,0.8057,0.445,0.9896,1.2821,0.2625,1.087,22.7356,7.8689,8.212,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-eri-2022C.xml,78.02,78.12,61.5791,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,52.0388,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9351,9.3035,8.2125,0.0,0.0,36.4933,5.377,9.019,39.34,5.38,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +base-version-iecc-eri-2015.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72.77,78.648,57.8919,79.5595,0.24325,0.9913,1.0,1.0204,1.0116,1.0,48.7268,0.0,0.0,31.85,8.34,10.38,50.61,4.14,11.41,28.08,0.0,0.0,0.8067,0.5296,0.9887,1.2821,0.2625,1.087,21.9225,7.3062,7.7802,0.0,0.0,34.8422,3.622,8.553,37.56,3.62,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-version-iecc-eri-2018.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,70.36,81.338,57.8891,82.2807,0.24325,0.9913,1.0,1.0204,1.0116,1.0,48.7268,0.0,0.0,34.58,8.3,10.38,54.96,4.12,11.41,28.08,0.0,0.0,0.8067,0.5294,0.9887,1.2821,0.2625,1.087,21.9226,7.3039,7.7795,0.0,0.0,34.8422,3.622,8.553,37.56,3.62,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base-version-iecc-eri-2021.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.62,80.619,59.9644,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.1498,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7357,7.8991,8.2105,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 +base.xml,78.02,78.12,61.5791,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,52.0388,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9351,9.3035,8.2125,0.0,0.0,36.4933,5.377,9.019,39.34,5.38,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.85,8592.43,5675.77,56.16,1.0,56.16,78.02,78.02,0.0,50.71,1.0,50.71,78.02,78.02,0.0,73.62,80.619,59.9644,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.1498,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7357,7.8991,8.2105,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 diff --git a/workflow/tests/base_results/sample_files2.csv b/workflow/tests/base_results/sample_files2.csv deleted file mode 100644 index e7a157400..000000000 --- a/workflow/tests/base_results/sample_files2.csv +++ /dev/null @@ -1,102 +0,0 @@ -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,ACO2 (lb CO2e),ARCO2 (lb CO2e),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,ZERH Reference Home ERI,ZERH SAF (Size Adjustment Factor),ZERH SAF Adjusted ERI Target,ZERH Rated Home ERI,ZERH Rated Home ERI w/o OPP,ZERH Zero Energy Ready 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 -base-hvac-air-to-air-heat-pump-1-speed.xml,83.93,78.124,66.2492,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,56.424,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,28.6218,8.2869,8.2125,0.0,0.0,21.9042,4.374,9.019,21.9,4.37,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,83.2,4771.2,5675.77,52.47,1.0,52.47,83.93,83.93,0.0,46.68,1.0,46.68,83.93,83.93,0.0,79.43,80.622,64.7149,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,55.429,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,28.4076,6.9778,8.2105,0.0,0.0,21.5722,3.72,9.02,21.57,3.72,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,71.97,78.124,56.8099,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,49.808,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,21.742,5.7274,8.2125,0.0,0.0,16.6391,3.023,9.019,16.64,3.02,9.02,21.12,0.01,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.31,4203.89,5675.77,52.47,1.0,52.47,71.97,71.97,0.0,46.68,1.0,46.68,71.97,71.97,0.0,68.5,80.622,55.8054,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,49.147,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,21.6402,4.8357,8.2105,0.0,0.0,16.4331,2.578,9.02,16.43,2.58,9.02,21.12,0.0,0.0,0.367,0.1896,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,71.1,78.124,56.1189,78.9343,0.21782,0.9922,1.0,1.0183,1.0104,1.0,49.463,0.0,0.0,30.56,9.85,10.49,23.39,5.06,11.52,27.23,0.0,0.0,0.5792,0.5106,0.9898,0.4432,0.2625,1.087,22.0975,4.681,8.2125,0.0,0.0,16.9112,2.407,9.019,16.91,2.41,9.02,21.12,0.01,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,73.05,4182.14,5666.23,52.53,1.0,52.53,71.1,71.1,0.0,46.74,1.0,46.74,71.1,71.1,0.0,68.05,80.622,55.4446,81.4708,0.22107,0.9921,1.0,1.0186,1.0105,1.0,49.006,0.0,0.0,34.64,8.27,10.49,26.31,4.3,11.52,27.22,0.0,0.0,0.5837,0.5056,0.9894,0.4432,0.2625,1.087,22.1129,4.0022,8.2105,0.0,0.0,16.7922,2.078,9.02,16.79,2.08,9.02,21.12,0.0,0.0,0.3413,0.1551,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-boiler-elec-only.xml,99.59,78.118,78.602,78.923,0.21641,0.9923,1.0,1.0182,1.0103,1.0,66.83,0.0,0.0,30.56,9.84,10.49,23.65,6.03,11.52,27.23,0.0,0.0,0.5727,0.4286,0.9898,0.4432,0.2625,1.087,40.3197,8.9419,8.2125,0.0,0.0,31.2073,5.477,9.019,31.21,5.48,9.02,21.12,0.01,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,97.51,5688.63,5774.15,55.59,1.0,55.59,99.59,99.59,0.0,49.97,1.0,49.97,99.59,99.59,0.0,94.68,80.619,77.1306,81.462,0.21958,0.9922,1.0,1.0184,1.0105,1.0,65.851,0.0,0.0,34.64,8.27,10.49,26.61,5.25,11.52,27.22,0.0,0.0,0.577,0.4136,0.9894,0.4432,0.2625,1.087,40.2655,7.5365,8.2105,0.0,0.0,30.9303,4.784,9.02,30.93,4.78,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-boiler-gas-only.xml,71.73,78.118,56.6448,78.9661,0.22794,0.9919,1.0,1.0191,1.0109,1.0,49.0462,0.0,0.0,30.56,9.84,10.49,50.01,6.03,11.52,27.23,0.0,0.0,0.7638,0.4286,0.9898,1.25,0.2625,1.087,18.3624,8.9419,8.2125,0.0,0.0,30.0522,5.477,9.019,33.23,5.48,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,133.01,7763.35,5774.15,56.84,1.0,56.84,71.73,71.73,0.0,51.61,1.0,51.61,71.73,71.73,0.0,67.61,80.619,55.1109,81.5076,0.2314,0.9917,1.0,1.0194,1.011,1.0,48.226,0.0,0.0,34.64,8.27,10.49,56.55,5.25,11.52,27.22,0.0,0.0,0.7657,0.4136,0.9894,1.25,0.2625,1.087,18.2459,7.5365,8.2105,0.0,0.0,29.7854,4.784,9.02,32.93,4.78,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-boiler-oil-only.xml,71.75,78.118,56.6564,78.9661,0.22794,0.9919,1.0,1.0191,1.0109,1.0,49.1776,0.0,0.0,30.56,9.84,10.49,50.01,6.03,11.52,27.23,0.0,0.0,0.7638,0.4286,0.9898,1.25,0.2625,1.087,18.3741,8.9419,8.2125,0.0,0.0,30.0712,5.477,9.019,33.25,5.48,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.19,9350.04,5774.15,56.84,1.0,56.84,71.75,71.75,0.0,51.61,1.0,51.61,71.75,71.75,0.0,67.63,80.619,55.1226,81.5076,0.2314,0.9917,1.0,1.0194,1.011,1.0,48.3552,0.0,0.0,34.64,8.27,10.49,56.55,5.25,11.52,27.22,0.0,0.0,0.7657,0.4136,0.9894,1.25,0.2625,1.087,18.2575,7.5365,8.2105,0.0,0.0,29.8044,4.784,9.02,32.95,4.78,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-boiler-propane-only.xml,71.73,78.118,56.6448,78.9661,0.22794,0.9919,1.0,1.0191,1.0109,1.0,49.0462,0.0,0.0,30.56,9.84,10.49,50.01,6.03,11.52,27.23,0.0,0.0,0.7638,0.4286,0.9898,1.25,0.2625,1.087,18.3624,8.9419,8.2125,0.0,0.0,30.0522,5.477,9.019,33.23,5.48,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.25,8770.09,5774.15,56.84,1.0,56.84,71.73,71.73,0.0,51.61,1.0,51.61,71.73,71.73,0.0,67.61,80.619,55.1109,81.5076,0.2314,0.9917,1.0,1.0194,1.011,1.0,48.226,0.0,0.0,34.64,8.27,10.49,56.55,5.25,11.52,27.22,0.0,0.0,0.7657,0.4136,0.9894,1.25,0.2625,1.087,18.2459,7.5365,8.2105,0.0,0.0,29.7854,4.784,9.02,32.93,4.78,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,85.06,78.118,67.1362,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,54.7602,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,9.0219,8.2125,0.0,0.0,45.7837,5.526,9.019,45.79,5.53,9.02,21.12,0.01,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.74,9553.41,5774.15,70.95,1.0,70.95,85.06,85.06,0.0,61.8,1.0,61.8,85.06,85.06,0.0,80.4,80.618,65.5042,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,53.9156,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5068,7.6689,8.2105,0.0,0.0,45.3587,4.868,9.02,45.36,4.87,9.02,21.12,0.0,0.0,1.2821,0.2615,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-1-speed.xml,85.09,78.118,67.1606,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,54.7742,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,9.0464,8.2125,0.0,0.0,45.7837,5.541,9.019,45.79,5.54,9.02,21.12,0.01,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,163.76,9554.43,5774.15,70.95,1.0,70.95,85.09,85.09,0.0,61.8,1.0,61.8,85.09,85.09,0.0,80.43,80.618,65.5246,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,53.9276,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5068,7.6893,8.2105,0.0,0.0,45.3587,4.881,9.02,45.36,4.88,9.02,21.12,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-2-speed.xml,81.97,78.118,64.6986,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,53.2662,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,6.5844,8.2125,0.0,0.0,45.7837,4.033,9.019,45.79,4.03,9.02,21.12,0.01,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.9,9445.56,5774.15,70.95,1.0,70.95,81.97,81.97,0.0,61.8,1.0,61.8,81.97,81.97,0.0,77.93,80.618,63.4909,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,52.6366,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5068,5.6555,8.2105,0.0,0.0,45.3587,3.59,9.02,45.36,3.59,9.02,21.12,0.0,0.0,1.2821,0.1896,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-only-var-speed.xml,80.94,78.118,63.8838,78.9319,0.2188,0.9922,1.0,1.0184,1.0104,1.0,52.6872,0.0,0.0,30.56,9.84,10.49,48.62,5.89,11.52,27.23,0.0,0.0,0.8057,0.4387,0.9898,1.2821,0.2625,1.087,28.7738,5.7695,8.2125,0.0,0.0,45.7837,3.453,9.019,45.79,3.45,9.02,21.12,0.01,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.43,9402.45,5764.38,70.96,1.0,70.96,80.94,80.94,0.0,61.8,1.0,61.8,80.94,80.94,0.0,77.07,80.617,62.7878,81.4697,0.22211,0.9921,1.0,1.0186,1.0106,1.0,52.1216,0.0,0.0,34.64,8.27,10.49,55.12,5.13,11.52,27.22,0.0,0.0,0.8057,0.4229,0.9894,1.2821,0.2625,1.087,28.5068,4.9515,8.2105,0.0,0.0,45.3587,3.074,9.02,45.36,3.07,9.02,21.12,0.0,0.0,1.2821,0.1422,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,85.14,78.118,67.1912,78.923,0.21641,0.9923,1.0,1.0182,1.0103,1.0,57.98,0.0,0.0,30.56,9.84,10.49,23.65,6.03,11.52,27.23,0.0,0.0,0.5727,0.4286,0.9898,0.4432,0.2625,1.087,28.8027,9.048,8.2125,0.0,0.0,22.2932,5.542,9.019,22.29,5.54,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,84.04,4902.45,5774.15,54.24,1.0,54.24,85.14,85.14,0.0,48.47,1.0,48.47,85.14,85.14,0.0,80.81,80.619,65.8309,81.462,0.21958,0.9922,1.0,1.0184,1.0105,1.0,57.15,0.0,0.0,34.64,8.27,10.49,26.61,5.25,11.52,27.22,0.0,0.0,0.577,0.4136,0.9894,0.4432,0.2625,1.087,28.812,7.6893,8.2105,0.0,0.0,22.1322,4.881,9.02,22.13,4.88,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-dse.xml,79.22,78.12,62.5223,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,52.5558,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.745,10.4368,8.2125,0.0,0.0,36.1909,6.0321,9.019,39.01,6.03,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.92,8596.65,5675.77,55.99,1.0,55.99,79.22,79.22,0.0,50.49,1.0,50.49,79.22,79.22,0.0,74.71,80.619,60.8519,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.6464,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.5334,8.9899,8.2105,0.0,0.0,35.8542,5.283,9.02,38.65,5.28,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-lockout-temperatures.xml,81.07,78.124,63.9923,78.9328,0.21742,0.9922,1.0,1.0182,1.0104,1.0,54.506,0.0,0.0,30.56,9.85,10.49,32.86,5.2,11.52,27.23,0.0,0.0,1.4137,0.4974,0.9898,1.7253,0.2625,1.087,26.3649,8.2869,8.2125,0.0,0.0,27.5364,4.374,9.019,28.990000000000002,4.37,9.02,21.12,0.01,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,108.36,6214.13,5675.77,52.47,1.0,52.47,81.07,81.07,0.0,46.68,1.0,46.68,81.07,81.07,0.0,76.67,80.622,62.4663,81.469,0.22061,0.9921,1.0,1.0185,1.0105,1.0,53.5556,0.0,0.0,34.65,8.27,10.49,36.72,4.41,11.52,27.22,0.0,0.0,1.4198,0.4925,0.9894,1.7253,0.2625,1.087,26.159,6.9778,8.2105,0.0,0.0,27.2258,3.72,9.02,28.67,3.72,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,80.4,78.123,63.4596,78.9305,0.21707,0.9923,1.0,1.0182,1.0103,1.0,54.355,0.0,0.0,30.549999999999997,9.85,10.49,36.43,5.2,11.52,27.23,0.0,0.0,1.4146,0.4974,0.9898,1.7253,0.2625,1.087,25.8322,8.2869,8.2125,0.0,0.0,30.0417,4.374,9.019,32.03,4.37,9.02,21.12,0.01,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0,118.41,6789.97,5675.77,52.47,1.0,52.47,80.4,80.4,0.0,46.68,1.0,46.68,80.4,80.4,0.0,76.06,80.622,61.9641,81.4677,0.22029,0.9921,1.0,1.0185,1.0105,1.0,53.4376,0.0,0.0,34.64,8.27,10.49,40.71,4.41,11.52,27.22,0.0,0.0,1.4224,0.4925,0.9894,1.7253,0.2625,1.087,25.6567,6.9778,8.2105,0.0,0.0,29.7455,3.72,9.02,31.720000000000002,3.72,9.02,21.12,0.0,0.0,1.4958,0.2625,1.0526,3.3504,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-area-fractions.xml,85.18,107.117,88.1647,103.4987,0.21602,0.9662,1.0,1.0,0.9662,1.0,70.4254,0.0,0.0,46.45,14.85,10.49,73.91,8.08,11.52,35.33,0.0,0.0,0.8057,0.4822,0.9898,1.2821,0.2625,1.087,37.1167,15.7047,8.0713,0.0,0.0,59.0631,8.5511,8.864,63.67,8.55,8.86,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,174.4,12944.69,7681.89,55.84,1.0,55.84,85.18,85.18,0.0,50.76,1.0,50.76,85.18,85.18,0.0,77.54,114.141,85.4936,110.2582,0.21758,0.966,1.0,1.0,0.966,1.0,69.0062,0.0,0.0,56.08,12.25,10.49,89.23,6.7,11.52,35.32,0.0,0.0,0.8057,0.4801,0.9893,1.2821,0.2625,1.087,36.8458,13.31,8.0687,0.0,0.0,58.629,7.2791,8.865,63.2,7.28,8.87,27.27,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-buried.xml,75.35,78.12,59.4711,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,50.6292,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,21.5936,8.537,8.2125,0.0,0.0,34.3589,4.934,9.019,37.04,4.93,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,143.46,8226.16,5675.77,56.16,1.0,56.16,75.35,75.35,0.0,50.71,1.0,50.71,75.35,75.35,0.0,71.09,80.619,57.9089,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,49.7656,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,21.3984,7.181,8.2105,0.0,0.0,34.0481,4.22,9.02,36.71,4.22,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-leakage-cfm50.xml,77.61,78.12,61.2543,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,51.7934,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.6069,9.307,8.2125,0.0,0.0,35.9711,5.379,9.019,38.78,5.38,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.45,8512.22,5675.77,56.16,1.0,56.16,77.61,77.61,0.0,50.71,1.0,50.71,77.61,77.61,0.0,73.25,80.619,59.6673,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,50.9344,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.425,7.9127,8.2105,0.0,0.0,35.6817,4.65,9.02,38.47,4.65,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-shape-mixed.xml,78.02,78.12,61.5791,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,52.0388,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9351,9.3035,8.2125,0.0,0.0,36.4933,5.377,9.019,39.34,5.38,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.85,8592.43,5675.77,56.16,1.0,56.16,78.02,78.02,0.0,50.71,1.0,50.71,78.02,78.02,0.0,73.62,80.619,59.9644,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.1498,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7357,7.8991,8.2105,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-shape-rectangular.xml,77.68,78.12,61.3102,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,51.8588,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.7631,9.2066,8.2125,0.0,0.0,36.2197,5.321,9.019,39.05,5.32,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.03,8545.56,5675.77,56.16,1.0,56.16,77.68,77.68,0.0,50.71,1.0,50.71,77.68,77.68,0.0,73.4,80.619,59.7885,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.0236,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.5649,7.894,8.2105,0.0,0.0,35.9043,4.639,9.02,38.71,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ducts-shape-round.xml,78.26,78.12,61.7619,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,52.1524,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9916,9.4298,8.2125,0.0,0.0,36.5833,5.45,9.019,39.44,5.45,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.19,8611.85,5675.77,56.16,1.0,56.16,78.26,78.26,0.0,50.71,1.0,50.71,78.26,78.26,0.0,73.81,80.619,60.1184,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.2488,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7876,8.0012,8.2105,0.0,0.0,36.2586,4.702,9.02,39.09,4.7,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-elec-resistance-only.xml,95.65,78.118,75.4896,78.923,0.21641,0.9923,1.0,1.0182,1.0103,1.0,64.421,0.0,0.0,30.56,9.84,10.49,23.65,6.03,11.52,27.23,0.0,0.0,0.5727,0.4286,0.9898,0.4432,0.2625,1.087,37.2072,8.9419,8.2125,0.0,0.0,28.7983,5.477,9.019,28.8,5.48,9.02,21.12,0.01,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,93.94,5480.02,5774.15,55.59,1.0,55.59,95.65,95.65,0.0,49.97,1.0,49.97,95.65,95.65,0.0,90.85,80.619,74.0075,81.462,0.21958,0.9922,1.0,1.0184,1.0105,1.0,63.452,0.0,0.0,34.64,8.27,10.49,26.61,5.25,11.52,27.22,0.0,0.0,0.577,0.4136,0.9894,0.4432,0.2625,1.087,37.1424,7.5365,8.2105,0.0,0.0,28.5313,4.784,9.02,28.53,4.78,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-evap-cooler-only-ducted.xml,75.28,78.118,59.4204,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,50.0332,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,1.3061,8.2125,0.0,0.0,45.7837,0.8,9.019,45.79,0.8,9.02,21.12,0.01,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,157.7,9200.67,5774.15,70.95,1.0,70.95,75.28,75.28,0.0,61.8,1.0,61.8,75.28,75.28,0.0,72.31,80.618,58.9113,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,49.7296,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5068,1.076,8.2105,0.0,0.0,45.3587,0.683,9.02,45.36,0.68,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-evap-cooler-only.xml,75.15,78.118,59.3143,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,49.9682,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,1.2,8.2125,0.0,0.0,45.7837,0.735,9.019,45.79,0.74,9.02,21.12,0.01,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,157.62,9196.17,5774.15,70.95,1.0,70.95,75.15,75.15,0.0,61.8,1.0,61.8,75.15,75.15,0.0,72.2,80.618,58.8231,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,49.6736,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5068,0.9878,8.2105,0.0,0.0,45.3587,0.627,9.02,45.36,0.63,9.02,21.12,0.0,0.0,1.2821,0.2275,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-fireplace-wood-only.xml,76.86,78.118,60.6706,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,50.0218,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,22.3882,8.9419,8.2125,0.0,0.0,35.6232,5.477,9.019,36.0,5.48,9.02,21.12,0.01,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.34,1.0,57.34,76.86,76.86,0.0,52.0,1.0,52.0,76.86,76.86,0.0,72.47,80.618,59.0456,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,49.1862,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,22.1805,7.5365,8.2105,0.0,0.0,35.2927,4.784,9.02,35.66,4.78,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-floor-furnace-propane-only.xml,76.86,78.118,60.6706,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,50.0218,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,22.3882,8.9419,8.2125,0.0,0.0,35.6232,5.477,9.019,36.0,5.48,9.02,21.12,0.01,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,159.09,9281.64,5774.15,57.34,1.0,57.34,76.86,76.86,0.0,52.0,1.0,52.0,76.86,76.86,0.0,72.47,80.618,59.0456,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,49.1862,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,22.1805,7.5365,8.2105,0.0,0.0,35.2927,4.784,9.02,35.66,4.78,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-furnace-elec-only.xml,109.11,78.118,86.1115,78.923,0.21641,0.9923,1.0,1.0182,1.0103,1.0,72.641,0.0,0.0,30.56,9.84,10.49,23.65,6.03,11.52,27.23,0.0,0.0,0.5727,0.4286,0.9898,0.4432,0.2625,1.087,47.8275,8.9435,8.2125,0.0,0.0,37.0183,5.478,9.019,37.02,5.48,9.02,21.12,0.01,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,106.62,6219.59,5774.15,55.59,1.0,55.59,109.11,109.11,0.0,49.97,1.0,49.97,109.11,109.11,0.0,103.9,80.619,84.6398,81.462,0.21958,0.9922,1.0,1.0184,1.0105,1.0,71.618,0.0,0.0,34.64,8.27,10.49,26.61,5.25,11.52,27.22,0.0,0.0,0.577,0.4136,0.9894,0.4432,0.2625,1.087,47.7731,7.5381,8.2105,0.0,0.0,36.6973,4.785,9.02,36.7,4.79,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-furnace-gas-only.xml,77.56,78.118,61.2226,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,52.1422,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,22.9386,8.9435,8.2125,0.0,0.0,36.4989,5.478,9.019,39.35,5.48,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,147.46,8603.06,5774.15,57.34,1.0,57.34,77.56,77.56,0.0,52.0,1.0,52.0,77.56,77.56,0.0,73.16,80.618,59.6065,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,51.2956,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,22.7398,7.5381,8.2105,0.0,0.0,36.1826,4.785,9.02,39.01,4.79,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,83.31,78.056,65.7003,78.8651,0.2177,0.9922,1.0,1.0183,1.0104,1.0,53.1292,0.0,0.0,30.56,9.78,10.49,48.62,5.02,11.52,27.23,0.0,0.0,0.8057,0.5112,0.9898,1.2821,0.2625,1.087,28.774,7.5858,8.2125,0.0,0.0,45.7837,3.896,9.019,45.79,3.9,9.02,21.12,0.01,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,164.06,9428.69,5688.06,69.41,1.0,69.41,83.31,83.31,0.0,60.28,1.0,60.28,83.31,83.31,0.0,78.73,80.579,64.1072,81.4282,0.22132,0.9921,1.0,1.0186,1.0105,1.0,52.3006,0.0,0.0,34.64,8.23,10.49,55.12,4.27,11.52,27.22,0.0,0.0,0.8058,0.5061,0.9894,1.2821,0.2625,1.087,28.5073,6.2714,8.2105,0.0,0.0,45.3587,3.253,9.02,45.36,3.25,9.02,21.12,0.0,0.0,1.2821,0.2056,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,71.24,78.118,56.2261,78.923,0.21641,0.9923,1.0,1.0182,1.0103,1.0,49.51,0.0,0.0,30.56,9.84,10.49,23.65,6.03,11.52,27.23,0.0,0.0,0.5727,0.4286,0.9898,0.4432,0.2625,1.087,17.9421,8.9435,8.2125,0.0,0.0,13.8871,5.478,9.019,13.89,5.48,9.02,21.12,0.01,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,70.78,4129.23,5774.15,55.59,1.0,55.59,71.24,71.24,0.0,49.97,1.0,49.97,71.24,71.24,0.0,67.23,80.619,54.7707,81.462,0.21958,0.9922,1.0,1.0184,1.0105,1.0,48.675,0.0,0.0,34.64,8.27,10.49,26.61,5.25,11.52,27.22,0.0,0.0,0.577,0.4136,0.9894,0.4432,0.2625,1.087,17.904,7.5381,8.2105,0.0,0.0,13.7531,4.785,9.02,13.75,4.79,9.02,21.12,0.0,0.0,0.2778,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-ground-to-air-heat-pump.xml,68.12,78.124,53.7708,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,47.25,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,17.7292,6.7012,8.2125,0.0,0.0,13.5681,3.537,9.019,13.57,3.54,9.02,21.12,0.01,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.87,3949.75,5675.77,52.47,1.0,52.47,68.12,68.12,0.0,46.68,1.0,46.68,68.12,68.12,0.0,64.56,80.622,52.5968,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,46.545,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,17.7001,5.5672,8.2105,0.0,0.0,13.4411,2.968,9.02,13.44,2.97,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,82.21,78.124,64.8947,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,55.545,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,27.9266,7.6276,8.2125,0.0,0.0,21.3722,4.026,9.019,21.37,4.03,9.02,21.12,0.01,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,81.93,4698.31,5675.77,52.47,1.0,52.47,82.21,82.21,0.0,46.68,1.0,46.68,82.21,82.21,0.0,77.96,80.622,63.5129,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,54.639,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,27.757,6.4263,8.2105,0.0,0.0,21.0782,3.426,9.02,21.08,3.43,9.02,21.12,0.0,0.0,0.4432,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,77.32,78.12,61.0213,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,51.4398,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9846,8.6962,8.2125,0.0,0.0,36.5722,5.026,9.019,39.43,5.03,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.09,8606.35,5675.77,56.16,1.0,56.16,77.32,77.32,0.0,50.71,1.0,50.71,77.32,77.32,0.0,73.11,80.619,59.5477,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,50.6308,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7853,7.4329,8.2105,0.0,0.0,36.2549,4.368,9.02,39.08,4.37,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,66.57,78.124,52.5441,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,46.462,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,17.1333,6.0703,8.2125,0.0,0.0,13.1121,3.204,9.019,13.11,3.2,9.02,21.12,0.01,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,67.74,3884.48,5675.77,52.47,1.0,52.47,66.57,66.57,0.0,46.68,1.0,46.68,66.57,66.57,0.0,63.18,80.622,51.4758,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,45.814,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,17.1062,5.0402,8.2105,0.0,0.0,12.9901,2.687,9.02,12.99,2.69,9.02,21.12,0.0,0.0,0.2778,0.2056,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,80.4,78.118,63.4644,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,52.5102,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,5.3501,8.2125,0.0,0.0,45.7837,3.277,9.019,45.79,3.28,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.94,9389.92,5774.15,70.95,1.0,70.95,80.4,80.4,0.0,61.8,1.0,61.8,80.4,80.4,0.0,76.61,80.618,62.4153,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,51.9532,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5061,4.5796,8.2105,0.0,0.0,45.3577,2.907,9.02,45.36,2.91,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,66.3,78.124,52.3367,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,46.687,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,18.5459,4.4504,8.2125,0.0,0.0,14.1931,2.349,9.019,14.19,2.35,9.02,21.12,0.01,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.54,3930.59,5675.77,52.47,1.0,52.47,66.3,66.3,0.0,46.68,1.0,46.68,66.3,66.3,0.0,63.44,80.622,51.682,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,46.252,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,18.5495,3.804,8.2105,0.0,0.0,14.0861,2.028,9.02,14.09,2.03,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,80.65,78.118,63.6619,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,52.6322,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,5.5477,8.2125,0.0,0.0,45.7837,3.398,9.019,45.79,3.4,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.09,9398.52,5774.15,70.95,1.0,70.95,80.65,80.65,0.0,61.8,1.0,61.8,80.65,80.65,0.0,76.79,80.618,62.5639,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,52.0492,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5061,4.7292,8.2105,0.0,0.0,45.3577,3.002,9.02,45.36,3.0,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,79.76,78.118,62.955,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,52.1982,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,28.7738,4.8407,8.2125,0.0,0.0,45.7837,2.965,9.019,45.79,2.97,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.56,9367.68,5774.15,70.95,1.0,70.95,79.76,79.76,0.0,61.8,1.0,61.8,79.76,79.76,0.0,75.95,80.618,61.8793,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,51.6146,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,28.5068,4.044,8.2105,0.0,0.0,45.3587,2.567,9.02,45.36,2.57,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,79.71,78.056,62.8654,78.8651,0.2177,0.9922,1.0,1.0183,1.0104,1.0,51.6732,0.0,0.0,30.56,9.78,10.49,48.62,5.02,11.52,27.23,0.0,0.0,0.8057,0.5112,0.9898,1.2821,0.2625,1.087,28.774,4.7509,8.2125,0.0,0.0,45.7837,2.44,9.019,45.79,2.44,9.02,21.12,0.01,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,162.15,9318.63,5688.06,69.41,1.0,69.41,79.71,79.71,0.0,60.28,1.0,60.28,79.71,79.71,0.0,75.94,80.579,61.8374,81.4282,0.22132,0.9921,1.0,1.0186,1.0105,1.0,51.1222,0.0,0.0,34.64,8.23,10.49,55.12,4.27,11.52,27.22,0.0,0.0,0.8058,0.5061,0.9894,1.2821,0.2625,1.087,28.5067,4.0023,8.2105,0.0,0.0,45.3577,2.076,9.02,45.36,2.08,9.02,21.12,0.0,0.0,1.2821,0.1796,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,72.24,78.118,57.0139,78.923,0.21641,0.9923,1.0,1.0182,1.0103,1.0,50.12,0.0,0.0,30.56,9.84,10.49,23.65,6.03,11.52,27.23,0.0,0.0,0.5727,0.4286,0.9898,0.4432,0.2625,1.087,18.7315,8.9419,8.2125,0.0,0.0,14.4981,5.477,9.019,14.5,5.48,9.02,21.12,0.01,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,71.98,4198.85,5774.15,55.59,1.0,55.59,72.24,72.24,0.0,49.97,1.0,49.97,72.24,72.24,0.0,68.25,80.619,55.5973,81.462,0.21958,0.9922,1.0,1.0184,1.0105,1.0,49.31,0.0,0.0,34.64,8.27,10.49,26.61,5.25,11.52,27.22,0.0,0.0,0.577,0.4136,0.9894,0.4432,0.2625,1.087,18.7307,7.5381,8.2105,0.0,0.0,14.3881,4.785,9.02,14.39,4.79,9.02,21.12,0.0,0.0,0.3413,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,66.75,78.124,52.688,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,46.937,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,18.8137,4.5338,8.2125,0.0,0.0,14.3981,2.393,9.019,14.4,2.39,9.02,21.12,0.01,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,68.93,3952.85,5675.77,52.47,1.0,52.47,66.75,66.75,0.0,46.68,1.0,46.68,66.75,66.75,0.0,63.85,80.622,52.0208,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,46.492,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,18.8207,3.8716,8.2105,0.0,0.0,14.2921,2.064,9.02,14.29,2.06,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-mini-split-heat-pump-ductless.xml,61.37,78.124,48.4456,78.9347,0.21793,0.9922,1.0,1.0183,1.0104,1.0,43.864,0.0,0.0,30.56,9.85,10.49,23.39,5.2,11.52,27.23,0.0,0.0,0.5792,0.4974,0.9898,0.4432,0.2625,1.087,15.3027,3.8024,8.2125,0.0,0.0,11.7111,2.007,9.019,11.71,2.01,9.02,21.12,0.01,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,64.22,3682.63,5675.77,52.47,1.0,52.47,61.37,61.37,0.0,46.68,1.0,46.68,61.37,61.37,0.0,58.67,80.622,47.7955,81.471,0.22115,0.9921,1.0,1.0186,1.0105,1.0,43.443,0.0,0.0,34.64,8.27,10.49,26.31,4.41,11.52,27.22,0.0,0.0,0.5837,0.4925,0.9894,0.4432,0.2625,1.087,15.3007,3.1663,8.2105,0.0,0.0,11.6191,1.688,9.02,11.62,1.69,9.02,21.12,0.0,0.0,0.3413,0.1796,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-multiple.xml,94.46,78.077,74.4828,78.852,0.20849,0.9926,1.0,1.0175,1.0099,1.0,67.5432,0.0,0.0,30.5,9.84,10.49,36.66,7.9,11.52,27.23,0.0,0.0,6.0317,2.1654,0.9898,7.7555,1.5750000000000002,1.087,36.9534,8.1898,8.2116,0.0,0.0,43.0895,6.114,9.018,44.09,6.11,9.02,21.12,0.01,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0,135.09,8552.89,6269.09,54.94,1.0,54.94,94.46,94.46,0.0,50.16,1.0,50.16,94.46,94.46,0.0,90.99,80.5722,74.0511,81.3874,0.21252,0.9924,1.0,1.0178,1.0101,1.0,66.8652,0.0,0.0,34.6,8.25,10.49,40.89,7.14,11.52,27.22,0.0,0.0,6.1333,2.0808999999999997,0.9894,7.7555,1.5750000000000002,1.087,37.8888,6.8337,8.2096,0.0,0.0,43.1822,5.373,9.019,44.17,5.37,9.02,21.12,0.0,0.0,8.7363,1.6307,1.0526,17.913800000000002,1.612,22.854,0.0,0.92,0.0 -base-hvac-none.xml,92.58,69.909,67.9283,73.3692,0.18718,1.0333,1.0,1.0157,1.0495,1.0,47.343,0.0,0.0,0.0,45.36,5.18,0.0,25.4,6.1,19.36,0.0,0.0,0.0,0.469,0.9238,1.2821,0.2625,1.087,0.0,48.3787,4.0346,0.0,0.0,0.0,27.0832,4.747,0.0,27.08,4.75,15.2,0.32,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,68.46,1.0,68.46,92.58,92.58,0.0,61.35,1.0,61.35,92.58,92.58,0.0,89.25,66.724,62.5143,70.0406,0.18796,1.0334,1.0,1.0158,1.0497,1.0,44.365,0.0,0.0,0.0,42.18,5.18,0.0,23.8,6.1,19.36,0.0,0.0,0.0,0.4653,0.9238,1.2821,0.2625,1.087,0.0,43.2817,4.0346,0.0,0.0,0.0,24.4222,4.747,0.0,24.42,4.75,15.2,0.0,0.0,1.2821,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-programmable-thermostat.xml,75.2,78.12,59.3508,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,50.6036,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,21.9172,8.0993,8.2143,0.0,0.0,34.8737,4.681,9.021,37.6,4.68,9.02,21.11,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,144.69,8296.82,5675.77,56.16,1.0,56.16,75.2,75.2,0.0,50.71,1.0,50.71,75.2,75.2,0.0,70.59,80.619,57.5003,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,49.5414,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,21.5476,6.6314,8.2124,0.0,0.0,34.2856,3.897,9.022,36.96,3.9,9.02,21.11,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ptac-with-heating-electricity.xml,92.75,78.125,73.2159,78.9363,0.21808,0.9922,1.0,1.0183,1.0104,1.0,62.539,0.0,0.0,30.56,9.85,10.49,23.39,5.67,11.52,27.23,0.0,0.0,0.5792,0.456,0.9898,0.4432,0.2625,1.087,37.6301,6.2453,8.2125,0.0,0.0,28.7983,3.596,9.019,28.8,3.6,9.02,21.12,0.01,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,92.39,5329.88,5709.65,52.4,1.0,52.4,92.75,92.75,0.0,46.62,1.0,46.62,92.75,92.75,0.0,88.62,80.623,72.2005,81.4725,0.22127,0.9921,1.0,1.0186,1.0105,1.0,61.759,0.0,0.0,34.64,8.27,10.49,26.31,4.83,11.52,27.22,0.0,0.0,0.5837,0.4502,0.9894,0.4432,0.2625,1.087,37.5704,5.3016,8.2105,0.0,0.0,28.5303,3.092,9.02,28.53,3.09,9.02,21.12,0.0,0.0,1.0,0.319,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-ptac-with-heating-natural-gas.xml,72.46,78.106,57.189,78.9196,0.21877,0.9922,1.0,1.0184,1.0104,1.0,48.1408,0.0,0.0,30.56,9.83,10.49,48.62,6.48,11.52,27.23,0.0,0.0,0.8058,0.3986,0.9898,1.2821,0.2625,1.087,22.3887,5.4599,8.2125,0.0,0.0,35.6232,3.596,9.019,36.0,3.6,9.02,21.12,0.01,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,139.25,8033.64,5709.65,55.97,1.0,55.97,72.46,72.46,0.0,50.49,1.0,50.49,72.46,72.46,0.0,68.79,80.61,56.0384,81.4622,0.222,0.9921,1.0,1.0186,1.0106,1.0,47.4942,0.0,0.0,34.64,8.26,10.49,55.12,5.64,11.52,27.22,0.0,0.0,0.8058,0.3845,0.9894,1.2821,0.2625,1.087,22.1809,4.5289,8.2105,0.0,0.0,35.2927,3.092,9.02,35.66,3.09,9.02,21.12,0.0,0.0,1.25,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-ptac.xml,80.56,78.106,63.5747,78.9196,0.21877,0.9922,1.0,1.0184,1.0104,1.0,52.8292,0.0,0.0,30.56,9.83,10.49,48.62,6.48,11.52,27.23,0.0,0.0,0.8058,0.3986,0.9898,1.2821,0.2625,1.087,28.7744,5.4599,8.2125,0.0,0.0,45.7837,3.596,9.019,45.79,3.6,9.02,21.12,0.01,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.26,9402.14,5806.23,70.93,1.0,70.93,80.56,80.56,0.0,61.79,1.0,61.79,80.56,80.56,0.0,76.56,80.61,62.3648,81.4622,0.222,0.9921,1.0,1.0186,1.0106,1.0,52.1386,0.0,0.0,34.64,8.26,10.49,55.12,5.64,11.52,27.22,0.0,0.0,0.8058,0.3845,0.9894,1.2821,0.2625,1.087,28.5073,4.5289,8.2105,0.0,0.0,45.3587,3.092,9.02,45.36,3.09,9.02,21.12,0.0,0.0,1.2821,0.319,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-pthp.xml,65.49,78.125,51.6952,78.9363,0.21808,0.9922,1.0,1.0183,1.0104,1.0,46.102,0.0,0.0,30.56,9.85,10.49,23.39,5.67,11.52,27.23,0.0,0.0,0.5792,0.456,0.9898,0.4432,0.2625,1.087,16.2761,6.0786,8.2125,0.0,0.0,12.4561,3.5,9.019,12.46,3.5,9.02,21.12,0.01,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,66.79,3853.1,5709.65,52.4,1.0,52.4,65.49,65.49,0.0,46.62,1.0,46.62,65.49,65.49,0.0,62.29,80.623,50.7459,81.4725,0.22127,0.9921,1.0,1.0186,1.0105,1.0,45.495,0.0,0.0,34.64,8.27,10.49,26.31,4.83,11.52,27.22,0.0,0.0,0.5837,0.4502,0.9894,0.4432,0.2625,1.087,16.2752,5.1422,8.2105,0.0,0.0,12.3591,2.999,9.02,12.36,3.0,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-room-ac-only-ceer.xml,82.36,78.106,65.0004,78.9196,0.21877,0.9922,1.0,1.0184,1.0104,1.0,53.7682,0.0,0.0,30.56,9.83,10.49,48.62,6.48,11.52,27.23,0.0,0.0,0.8058,0.3986,0.9898,1.2821,0.2625,1.087,28.7744,6.8856,8.2125,0.0,0.0,45.7837,4.535,9.019,45.79,4.54,9.02,21.12,0.01,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.41,9469.56,5806.23,70.93,1.0,70.93,82.36,82.36,0.0,61.79,1.0,61.79,82.36,82.36,0.0,78.01,80.61,63.5483,81.4622,0.222,0.9921,1.0,1.0186,1.0106,1.0,52.9466,0.0,0.0,34.64,8.26,10.49,55.12,5.64,11.52,27.22,0.0,0.0,0.8058,0.3845,0.9894,1.2821,0.2625,1.087,28.5073,5.7124,8.2105,0.0,0.0,45.3587,3.9,9.02,45.36,3.9,9.02,21.12,0.0,0.0,1.2821,0.4023,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-room-ac-only.xml,82.35,78.106,64.9883,78.9196,0.21877,0.9922,1.0,1.0184,1.0104,1.0,53.7602,0.0,0.0,30.56,9.83,10.49,48.62,6.48,11.52,27.23,0.0,0.0,0.8058,0.3986,0.9898,1.2821,0.2625,1.087,28.7744,6.8734,8.2125,0.0,0.0,45.7837,4.527,9.019,45.79,4.53,9.02,21.12,0.01,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,161.4,9468.95,5806.23,70.93,1.0,70.93,82.35,82.35,0.0,61.79,1.0,61.79,82.35,82.35,0.0,78.0,80.61,63.5365,81.4622,0.222,0.9921,1.0,1.0186,1.0106,1.0,52.9396,0.0,0.0,34.64,8.26,10.49,55.12,5.64,11.52,27.22,0.0,0.0,0.8058,0.3845,0.9894,1.2821,0.2625,1.087,28.5073,5.7007,8.2105,0.0,0.0,45.3587,3.892,9.02,45.36,3.89,9.02,21.12,0.0,0.0,1.2821,0.4015,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-room-ac-with-heating.xml,94.8,78.125,74.8328,78.9363,0.21808,0.9922,1.0,1.0183,1.0104,1.0,63.47,0.0,0.0,30.56,9.85,10.49,23.39,5.67,11.52,27.23,0.0,0.0,0.5792,0.456,0.9898,0.4432,0.2625,1.087,37.6301,7.8623,8.2125,0.0,0.0,28.7983,4.527,9.019,28.8,4.53,9.02,21.12,0.01,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,93.55,5396.69,5709.65,52.4,1.0,52.4,94.8,94.8,0.0,46.62,1.0,46.62,94.8,94.8,0.0,90.3,80.623,73.5722,81.4725,0.22127,0.9921,1.0,1.0186,1.0105,1.0,62.559,0.0,0.0,34.64,8.27,10.49,26.31,4.83,11.52,27.22,0.0,0.0,0.5837,0.4502,0.9894,0.4432,0.2625,1.087,37.5704,6.6733,8.2105,0.0,0.0,28.5303,3.892,9.02,28.53,3.89,9.02,21.12,0.0,0.0,1.0,0.4015,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-room-ac-with-reverse-cycle.xml,65.49,78.125,51.6952,78.9363,0.21808,0.9922,1.0,1.0183,1.0104,1.0,46.102,0.0,0.0,30.56,9.85,10.49,23.39,5.67,11.52,27.23,0.0,0.0,0.5792,0.456,0.9898,0.4432,0.2625,1.087,16.2761,6.0786,8.2125,0.0,0.0,12.4561,3.5,9.019,12.46,3.5,9.02,21.12,0.01,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,66.79,3853.1,5709.65,52.4,1.0,52.4,65.49,65.49,0.0,46.62,1.0,46.62,65.49,65.49,0.0,62.29,80.623,50.7459,81.4725,0.22127,0.9921,1.0,1.0186,1.0105,1.0,45.495,0.0,0.0,34.64,8.27,10.49,26.31,4.83,11.52,27.22,0.0,0.0,0.5837,0.4502,0.9894,0.4432,0.2625,1.087,16.2752,5.1422,8.2105,0.0,0.0,12.3591,2.999,9.02,12.36,3.0,9.02,21.12,0.0,0.0,0.2778,0.2994,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-hvac-space-heater-gas-only.xml,68.82,78.118,54.323,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,47.1422,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,16.0406,8.9419,8.2125,0.0,0.0,25.5232,5.477,9.019,28.8,5.48,9.02,21.12,0.01,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,122.09,7123.26,5774.15,57.34,1.0,57.34,68.82,68.82,0.0,52.0,1.0,52.0,68.82,68.82,0.0,64.75,80.618,52.7564,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,46.333,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,15.8914,7.5365,8.2105,0.0,0.0,25.2856,4.784,9.02,28.53,4.78,9.02,21.12,0.0,0.0,1.0,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-stove-wood-pellets-only.xml,76.84,78.118,60.6538,78.9323,0.21891,0.9922,1.0,1.0184,1.0104,1.0,50.0764,0.0,0.0,30.56,9.84,10.49,48.62,6.03,11.52,27.23,0.0,0.0,0.8057,0.4286,0.9898,1.2821,0.2625,1.087,22.3714,8.9419,8.2125,0.0,0.0,35.5965,5.477,9.019,35.97,5.48,9.02,21.12,0.01,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,57.34,1.0,57.34,76.84,76.84,0.0,52.0,1.0,52.0,76.84,76.84,0.0,72.45,80.618,59.0288,81.471,0.22218,0.9921,1.0,1.0187,1.0106,1.0,49.2402,0.0,0.0,34.64,8.27,10.49,55.12,5.25,11.52,27.22,0.0,0.0,0.8057,0.4136,0.9894,1.2821,0.2625,1.087,22.1637,7.5365,8.2105,0.0,0.0,35.2659,4.784,9.02,35.64,4.78,9.02,21.12,0.0,0.0,1.25,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-undersized.xml,73.96,78.12,58.3709,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,49.8344,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,20.4831,8.5474,8.2125,0.0,0.0,32.5918,4.94,9.019,35.14,4.94,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,138.63,7949.15,5675.77,56.16,1.0,56.16,73.96,73.96,0.0,50.71,1.0,50.71,73.96,73.96,0.0,69.83,80.619,56.8793,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,49.0156,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,20.2983,7.2525,8.2105,0.0,0.0,32.2977,4.262,9.02,34.82,4.26,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-hvac-wall-furnace-elec-only.xml,96.61,78.118,76.248,78.923,0.21641,0.9923,1.0,1.0182,1.0103,1.0,65.008,0.0,0.0,30.56,9.84,10.49,23.65,6.03,11.52,27.23,0.0,0.0,0.5727,0.4286,0.9898,0.4432,0.2625,1.087,37.9656,8.9419,8.2125,0.0,0.0,29.3853,5.477,9.019,29.39,5.48,9.02,21.12,0.01,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0,94.85,5533.0,5774.15,55.59,1.0,55.59,96.61,96.61,0.0,49.97,1.0,49.97,96.61,96.61,0.0,91.78,80.619,74.7638,81.462,0.21958,0.9922,1.0,1.0184,1.0105,1.0,64.034,0.0,0.0,34.64,8.27,10.49,26.61,5.25,11.52,27.22,0.0,0.0,0.577,0.4136,0.9894,0.4432,0.2625,1.087,37.8988,7.5365,8.2105,0.0,0.0,29.1123,4.784,9.02,29.11,4.78,9.02,21.12,0.0,0.0,1.0204,0.2625,1.0526,2.2561,0.0,3.809,0.0,0.92,0.0 -base-lighting-ceiling-fans-label-energy-use.xml,77.98,78.521,61.8565,79.3206,0.21389,0.9924,1.0,1.0179,1.0102,1.0,52.5126,0.0,0.0,30.54,9.51,10.49,48.6,5.53,11.52,27.98,0.0,0.0,0.8057,0.4519,0.99,1.2821,0.2625,1.087,22.9209,8.9069,8.2128,0.0,0.0,36.4711,5.174,9.017,39.32,5.17,9.02,21.81,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.23,8635.29,5728.21,56.14,1.0,56.14,77.98,77.98,0.0,50.74,1.0,50.74,77.98,77.98,0.0,73.62,81.022,60.2604,81.853,0.21541,0.9923,1.0,1.0181,1.0103,1.0,51.6342,0.0,0.0,34.62,7.94,10.49,55.09,4.7,11.52,27.97,0.0,0.0,0.8058,0.4437,0.9897,1.2821,0.2625,1.087,22.722,7.5216,8.2109,0.0,0.0,36.1529,4.45,9.018,38.97,4.45,9.02,21.81,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-lighting-ceiling-fans.xml,77.69,78.521,61.6278,79.3206,0.21389,0.9924,1.0,1.0179,1.0102,1.0,52.313,0.0,0.0,30.54,9.51,10.49,48.6,5.53,11.52,27.98,0.0,0.0,0.8057,0.4519,0.99,1.2821,0.2625,1.087,22.9215,8.8346,8.2128,0.0,0.0,36.472,5.132,9.017,39.32,5.13,9.02,21.65,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.94,8618.38,5728.21,56.14,1.0,56.14,77.69,77.69,0.0,50.74,1.0,50.74,77.69,77.69,0.0,73.35,81.022,60.0364,81.853,0.21541,0.9923,1.0,1.0181,1.0103,1.0,51.4366,0.0,0.0,34.62,7.94,10.49,55.09,4.7,11.52,27.97,0.0,0.0,0.8058,0.4437,0.9897,1.2821,0.2625,1.087,22.7226,7.454,8.2109,0.0,0.0,36.1538,4.41,9.018,38.98,4.41,9.02,21.65,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-baltimore-md.xml,72.33,61.115,47.3771,65.4996,0.26846,1.0481,1.0,1.0226,1.0717,1.0,39.9714,0.0,0.0,20.51,11.85,9.61,32.72,7.32,10.62,19.15,0.0,0.0,0.8037,0.425,0.9828,1.2821,0.2625,1.087,11.9729,12.374,7.6982,0.0,0.0,19.0996,7.6441,8.514,20.59,7.64,8.51,15.02,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,75.42,9503.33,11757.68,51.33,1.0,51.33,72.33,72.33,0.0,48.92,1.0,48.92,72.33,72.33,0.0,67.44,60.987,44.1267,65.4294,0.27243,1.0488,1.0,1.0229,1.0728,1.0,38.024,0.0,0.0,21.74,10.5,9.61,34.66,6.68,10.81,19.14,0.0,0.0,0.804,0.4128,0.9661,1.2821,0.2625,1.087,10.6769,10.8637,7.5671,0.0,0.0,17.0245,6.9091,8.514,18.35,6.91,8.51,15.02,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-capetown-zaf.xml,79.6,36.847,30.6839,38.547,0.17477,1.031,1.0,1.0146,1.0461,1.0,27.7604,0.0,0.0,4.04,5.28,8.36,6.45,2.92,9.36,19.18,0.0,0.0,0.8025,0.475,0.9704,1.2821,0.2625,1.087,0.7194,7.8634,6.7081,0.0,0.0,1.1493,4.346,7.514,1.24,4.35,7.51,15.08,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,49.92,1.0,49.92,79.6,79.6,0.0,47.68,1.0,47.68,79.6,79.6,0.0,77.56,36.528,29.6502,38.2282,0.17627,1.0313,1.0,1.0148,1.0465,1.0,27.131,0.0,0.0,4.71,4.29,8.36,7.53,2.42,9.47,19.17,0.0,0.0,0.8029,0.4662,0.9591,1.2821,0.2625,1.087,0.4618,7.4742,6.6302,0.0,0.0,0.7375,4.209,7.514,0.8,4.21,7.51,15.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-dallas-tx.xml,70.17,64.677,48.6232,69.2957,0.26726,1.0479,1.0,1.0225,1.0714,1.0,38.7052,0.0,0.0,9.88,28.06,7.52,15.77,16.71,8.5,19.22,0.0,0.0,0.8029,0.441,0.9613,1.2821,0.2625,1.087,3.0835,24.1931,5.9376,0.0,0.0,4.9238,14.4041,6.714,5.31,14.4,6.71,15.09,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,74.3,6166.34,7746.31,46.7,1.0,46.7,70.17,70.17,0.0,43.86,1.0,43.86,70.17,70.17,0.0,66.08,63.611,45.1088,68.2627,0.27346,1.049,1.0,1.023,1.0731,1.0,36.6532,0.0,0.0,10.41,26.46,7.52,16.62,16.03,8.5,19.22,0.0,0.0,0.8032,0.4335,0.9612,1.2821,0.2625,1.087,2.5716,21.5061,5.9361,0.0,0.0,4.1047,13.0241,6.713,4.43,13.02,6.71,15.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-duluth-mn.xml,75.21,79.382,63.7937,84.817,0.2566,1.0459,1.0,1.0216,1.0685,1.0,54.7434,0.0,0.0,46.02,2.03,13.08,73.19,2.07,14.52,18.26,0.0,0.0,0.8062,0.257,0.9792,1.2821,0.2625,1.087,36.5074,2.3764,10.2919,0.0,0.0,58.0576,2.428,11.425,62.59,2.43,11.43,14.3,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,165.41,11246.45,6363.47,53.96,1.0,53.96,75.21,75.21,0.0,58.59,1.0,58.59,75.21,75.21,0.0,67.0,83.897,60.0844,89.6765,0.25812,1.0462,1.0,1.0217,1.0689,1.0,52.189,0.0,0.0,51.0,1.56,13.08,81.11,1.87,14.52,18.26,0.0,0.0,0.8062,0.2189,0.9791,1.2821,0.2625,1.087,33.5718,1.9246,10.2921,0.0,0.0,53.388,2.308,11.426,57.55,2.31,11.43,14.3,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-helena-mt.xml,75.86,93.104,71.3685,94.0832,0.22085,0.9921,1.0,1.0185,1.0105,1.0,60.5564,0.0,0.0,49.73,4.29,11.89,79.11,2.89,12.94,27.19,0.0,0.0,0.8059,0.3901,0.9988,1.2821,0.2625,1.087,37.3078,3.6258,9.3429,0.0,0.0,59.347,2.44,10.167,63.98,2.44,10.17,21.09,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,192.1,11484.06,5915.96,57.69,1.0,57.69,75.86,75.86,0.0,50.84,1.0,50.84,75.86,75.86,0.0,70.43,98.853,70.362,99.9041,0.22326,0.992,1.0,1.0187,1.0106,1.0,60.0424,0.0,0.0,56.36,3.42,11.89,89.65,2.51,12.95,27.18,0.0,0.0,0.806,0.3578,0.9985,1.2821,0.2625,1.087,36.9719,2.9652,9.34,0.0,0.0,58.8108,2.176,10.167,63.4,2.18,10.17,21.08,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-honolulu-hi.xml,81.14,69.913,59.5271,73.3632,0.18664,1.0332,1.0,1.0156,1.0493,1.0,42.474,0.0,0.0,0.0,45.37,5.18,0.0,25.21,6.1,19.36,0.0,0.0,0.0,0.4725,0.9238,1.2821,0.2625,1.087,0.0,39.9775,4.0346,0.0,0.0,0.0,22.2142,4.747,0.0,22.21,4.75,15.2,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,61.49,1.0,61.49,81.14,81.14,0.0,40.29,1.0,40.29,81.14,81.14,0.0,78.61,66.727,55.054,70.0352,0.18749,1.0333,1.0,1.0157,1.0496,1.0,40.002,0.0,0.0,0.0,42.18,5.18,0.0,23.62,6.1,19.36,0.0,0.0,0.0,0.4688,0.9238,1.2821,0.2625,1.087,0.0,35.8214,4.0346,0.0,0.0,0.0,20.0592,4.747,0.0,20.06,4.75,15.2,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-miami-fl.xml,78.92,68.053,56.5896,71.7024,0.2024,1.036,1.0,1.017,1.0536,1.0,41.7064,0.0,0.0,0.05,43.32,5.34,0.08,25.02,6.26,19.34,0.0,0.0,0.8032,0.4546,0.9264,1.2821,0.2625,1.087,0.0006,36.9285,4.1565,0.0,0.0,0.0009,21.3272,4.877,0.0,21.33,4.88,15.19,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,77.83,6124.22,7468.33,62.55,1.0,62.55,78.92,78.92,0.0,42.43,1.0,42.43,78.92,78.92,0.0,75.8,65.348,52.2224,68.8968,0.2049,1.0365,1.0,1.0172,1.0543,1.0,39.216,0.0,0.0,0.06,40.61,5.34,0.1,23.66,6.26,19.34,0.0,0.0,0.8062,0.4506,0.9264,1.2821,0.2625,1.087,0.0,32.8799,4.1565,0.0,0.0,0.0,19.1552,4.877,0.0,19.15,4.88,15.19,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-phoenix-az.xml,72.04,80.531,62.3609,86.5651,0.27996,1.0502,1.0,1.0236,1.0749,1.0,44.567,0.0,0.0,1.44,54.21,5.6,2.3,30.56,6.55,19.29,0.0,0.0,0.8012,0.4656,0.9292,1.2821,0.2625,1.087,0.1055,42.4184,4.365,0.0,0.0,0.1688,23.9172,5.106,0.18,23.92,5.11,15.16,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,72.35,4986.34,6411.54,48.11,1.0,48.11,72.04,72.04,0.0,43.7,1.0,43.7,72.04,72.04,0.0,69.84,77.9,58.5505,83.8342,0.28446,1.051,1.0,1.0239,1.0762,1.0,42.358,0.0,0.0,1.46,51.56,5.6,2.33,29.18,6.55,19.29,0.0,0.0,0.801,0.4639,0.9291,1.2821,0.2625,1.087,0.0585,38.9695,4.3635,0.0,0.0,0.0937,22.0562,5.105,0.1,22.06,5.11,15.16,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-location-portland-or.xml,79.82,46.415,38.8905,48.7208,0.18786,1.0334,1.0,1.0157,1.0497,1.0,35.1544,0.0,0.0,13.25,4.08,9.97,21.16,2.85,11.01,19.12,0.0,0.0,0.8028,0.3755,0.9849,1.2821,0.2625,1.087,10.9186,4.5938,8.0921,0.0,0.0,17.4373,3.212,8.931,18.8,3.21,8.93,14.97,0.32,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,148.38,4512.07,2897.01,65.67,1.0,65.67,79.82,79.82,0.0,50.39,1.0,50.39,79.82,79.82,0.0,73.79,46.882,36.3234,49.2282,0.18921,1.0336,1.0,1.0159,1.05,1.0,33.5694,0.0,0.0,14.53,3.27,9.97,23.18,2.45,11.25,19.11,0.0,0.0,0.8033,0.3506,0.9636,1.2821,0.2625,1.087,9.5411,3.8882,7.9191,0.0,0.0,15.2268,2.912,8.933,16.42,2.91,8.93,14.98,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-balanced.xml,82.28,79.488,66.0771,80.3056,0.21602,0.9923,1.0,1.0181,1.0103,1.0,55.613,0.0,0.0,30.16,10.03,10.49,48.0,5.77,11.52,27.23,1.58,0.0,0.8057,0.456,0.9898,1.2821,0.2625,1.087,25.3974,9.5564,8.2134,0.0,0.0,40.4106,5.502,9.02,43.56,5.5,9.02,21.12,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,160.2,9372.68,5790.97,56.16,1.0,56.16,82.28,82.28,0.0,50.71,1.0,50.71,82.28,82.28,0.0,79.15,81.962,65.5451,82.8112,0.21758,0.9922,1.0,1.0183,1.0104,1.0,55.5434,0.0,0.0,34.23,8.44,10.49,54.46,4.94,11.52,27.22,1.58,0.0,0.8058,0.449,0.9895,1.2821,0.2625,1.087,26.0814,8.3456,8.2122,0.0,0.0,41.4978,4.88,9.021,44.74,4.88,9.02,21.11,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis-airflow-fraction-zero.xml,78.85,79.043,62.969,79.856,0.21602,0.9923,1.0,1.0181,1.0103,1.0,53.3238,0.0,0.0,30.29,9.97,10.49,48.2,5.75,11.52,27.23,1.07,0.0,0.8057,0.4554,0.9898,1.2821,0.2625,1.087,22.1689,9.6905,8.2116,0.0,0.0,35.2744,5.5861,9.018,38.03,5.59,9.02,21.12,1.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,147.54,8575.73,5753.44,56.16,1.0,56.16,78.85,78.85,0.0,50.71,1.0,50.71,78.85,78.85,0.0,74.87,81.507,61.6598,82.3514,0.21758,0.9922,1.0,1.0183,1.0104,1.0,52.7042,0.0,0.0,34.37,8.38,10.49,54.69,4.91,11.52,27.22,1.04,0.0,0.8058,0.4482,0.9894,1.2821,0.2625,1.087,22.0883,8.437,8.2105,0.0,0.0,35.1446,4.942,9.02,37.89,4.94,9.02,21.12,1.81,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis-supplemental-fan-exhaust.xml,76.05,79.043,60.7312,79.856,0.21602,0.9923,1.0,1.0181,1.0103,1.0,51.3946,0.0,0.0,30.29,9.97,10.49,48.2,5.75,11.52,27.23,1.07,0.0,0.8057,0.4554,0.9898,1.2821,0.2625,1.087,21.46,9.4407,8.2125,0.0,0.0,34.1464,5.442,9.019,36.81,5.44,9.02,21.12,0.5,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,142.49,8282.14,5753.44,56.16,1.0,56.16,76.05,76.05,0.0,50.71,1.0,50.71,76.05,76.05,0.0,71.74,81.507,59.0765,82.3514,0.21758,0.9922,1.0,1.0183,1.0104,1.0,50.5194,0.0,0.0,34.37,8.38,10.49,54.69,4.91,11.52,27.22,1.04,0.0,0.8058,0.4482,0.9894,1.2821,0.2625,1.087,21.0598,8.1792,8.2114,0.0,0.0,33.5083,4.791,9.021,36.12,4.79,9.02,21.12,0.51,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-cfis.xml,79.58,79.043,63.5468,79.856,0.21602,0.9923,1.0,1.0181,1.0103,1.0,53.7308,0.0,0.0,30.29,9.97,10.49,48.2,5.75,11.52,27.23,1.07,0.0,0.8057,0.4554,0.9898,1.2821,0.2625,1.087,22.8009,9.6645,8.2125,0.0,0.0,36.28,5.5711,9.019,39.11,5.57,9.02,21.12,1.75,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,150.18,8729.39,5753.44,56.16,1.0,56.16,79.58,79.58,0.0,50.71,1.0,50.71,79.58,79.58,0.0,75.62,81.507,62.2741,82.3514,0.21758,0.9922,1.0,1.0183,1.0104,1.0,53.1348,0.0,0.0,34.37,8.38,10.49,54.69,4.91,11.52,27.22,1.04,0.0,0.8058,0.4482,0.9894,1.2821,0.2625,1.087,22.7301,8.4404,8.2105,0.0,0.0,36.1659,4.944,9.02,38.99,4.94,9.02,21.12,1.78,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-erv-atre-asre.xml,71.79,80.077,58.0822,80.9007,0.21602,0.9923,1.0,1.0181,1.0103,1.0,49.8102,0.0,0.0,30.0,10.11,10.49,47.73,5.81,11.52,27.23,2.26,0.0,0.8057,0.4568,0.9898,1.2821,0.2625,1.087,17.0471,9.9018,8.2114,0.0,0.0,27.1244,5.6911,9.017,29.24,5.69,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,123.83,7306.2,5840.3,56.16,1.0,56.16,71.79,71.79,0.0,50.71,1.0,50.71,71.79,71.79,0.0,68.67,82.537,57.2679,83.3921,0.21758,0.9922,1.0,1.0183,1.0104,1.0,49.5298,0.0,0.0,34.06,8.52,10.49,54.19,4.97,11.52,27.22,2.26,0.0,0.8058,0.4499,0.9895,1.2821,0.2625,1.087,17.5017,8.6377,8.2094,0.0,0.0,27.847,5.041,9.018,30.02,5.04,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-erv.xml,71.8,80.077,58.084,80.9007,0.21602,0.9923,1.0,1.0181,1.0103,1.0,49.8114,0.0,0.0,30.0,10.11,10.49,47.73,5.81,11.52,27.23,2.26,0.0,0.8057,0.4568,0.9898,1.2821,0.2625,1.087,17.0488,9.9018,8.2114,0.0,0.0,27.1272,5.6911,9.017,29.24,5.69,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,123.83,7306.68,5840.3,56.16,1.0,56.16,71.8,71.8,0.0,50.71,1.0,50.71,71.8,71.8,0.0,68.68,82.537,57.2702,83.3921,0.21758,0.9922,1.0,1.0183,1.0104,1.0,49.531,0.0,0.0,34.06,8.52,10.49,54.19,4.97,11.52,27.22,2.26,0.0,0.8058,0.4499,0.9895,1.2821,0.2625,1.087,17.504,8.6377,8.2094,0.0,0.0,27.8507,5.041,9.018,30.02,5.04,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-exhaust.xml,78.94,79.043,63.0417,79.856,0.21602,0.9923,1.0,1.0181,1.0103,1.0,53.152,0.0,0.0,30.29,9.97,10.49,48.2,5.75,11.52,27.23,1.07,0.0,0.8057,0.4554,0.9898,1.2821,0.2625,1.087,23.336,9.4771,8.2125,0.0,0.0,37.1315,5.463,9.019,40.03,5.46,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,151.14,8785.28,5753.44,56.16,1.0,56.16,78.94,78.94,0.0,50.71,1.0,50.71,78.94,78.94,0.0,75.03,81.507,61.7893,82.3514,0.21758,0.9922,1.0,1.0183,1.0104,1.0,52.5654,0.0,0.0,34.37,8.38,10.49,54.69,4.91,11.52,27.22,1.04,0.0,0.8058,0.4482,0.9894,1.2821,0.2625,1.087,23.3423,8.2236,8.2114,0.0,0.0,37.1399,4.817,9.021,40.04,4.82,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-hrv-asre.xml,71.8,80.077,58.0851,80.9007,0.21602,0.9923,1.0,1.0181,1.0103,1.0,49.8108,0.0,0.0,30.0,10.11,10.49,47.73,5.81,11.52,27.23,2.26,0.0,0.8057,0.4568,0.9898,1.2821,0.2625,1.087,17.0465,9.9053,8.2114,0.0,0.0,27.1235,5.6931,9.017,29.24,5.69,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,123.83,7306.15,5840.3,56.16,1.0,56.16,71.8,71.8,0.0,50.71,1.0,50.71,71.8,71.8,0.0,68.67,82.537,57.2667,83.3921,0.21758,0.9922,1.0,1.0183,1.0104,1.0,49.529,0.0,0.0,34.06,8.52,10.49,54.19,4.97,11.52,27.22,2.26,0.0,0.8058,0.4499,0.9895,1.2821,0.2625,1.087,17.5005,8.6377,8.2094,0.0,0.0,27.8452,5.041,9.018,30.02,5.04,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-hrv.xml,71.8,80.077,58.0869,80.9007,0.21602,0.9923,1.0,1.0181,1.0103,1.0,49.812,0.0,0.0,30.0,10.11,10.49,47.73,5.81,11.52,27.23,2.26,0.0,0.8057,0.4568,0.9898,1.2821,0.2625,1.087,17.0483,9.9053,8.2114,0.0,0.0,27.1263,5.6931,9.017,29.24,5.69,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,123.83,7306.63,5840.3,56.16,1.0,56.16,71.8,71.8,0.0,50.71,1.0,50.71,71.8,71.8,0.0,68.68,82.537,57.2696,83.3921,0.21758,0.9922,1.0,1.0183,1.0104,1.0,49.5306,0.0,0.0,34.06,8.52,10.49,54.19,4.97,11.52,27.22,2.26,0.0,0.8058,0.4499,0.9895,1.2821,0.2625,1.087,17.5035,8.6377,8.2094,0.0,0.0,27.8498,5.041,9.018,30.02,5.04,9.02,21.13,1.79,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-multiple.xml,82.64,79.705,66.5463,80.5273,0.21666,0.9923,1.0,1.0182,1.0103,1.0,56.5826,0.0,0.0,30.1,10.06,10.49,47.9,6.7,11.52,27.23,1.83,0.0,1.6114,0.7879,0.9898,2.5642,0.525,1.087,25.7434,9.9906,8.2143,0.0,0.0,40.963499999999996,6.6579999999999995,9.021,44.16,6.22,9.02,21.11,1.48,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0,161.5,9544.41,5849.66,56.89,1.0,56.89,82.64,82.64,0.0,51.46,1.0,51.46,82.64,82.64,0.0,79.29,82.133,65.7997,82.9866,0.21826,0.9922,1.0,1.0183,1.0104,1.0,56.349,0.0,0.0,34.18,8.46,10.49,54.39,5.84,11.52,27.22,1.78,0.0,1.6114,0.7613000000000001,0.9895,2.5642,0.525,1.087,26.3144,8.7092,8.2131,0.0,0.0,41.8707,6.007,9.022,45.14,5.6,9.02,21.11,1.45,0.0,2.174,0.525,1.0526,2.1886,0.806,7.618,0.0,0.92,0.0 -base-mechvent-supply.xml,77.89,79.043,62.1993,79.856,0.21602,0.9923,1.0,1.0181,1.0103,1.0,52.5338,0.0,0.0,30.29,9.97,10.49,48.2,5.75,11.52,27.23,1.07,0.0,0.8057,0.4554,0.9898,1.2821,0.2625,1.087,22.3695,9.6003,8.2125,0.0,0.0,35.5935,5.534,9.019,38.37,5.53,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,147.08,8549.27,5753.44,56.16,1.0,56.16,77.89,77.89,0.0,50.71,1.0,50.71,77.89,77.89,0.0,73.88,81.507,60.8426,82.3514,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.8734,0.0,0.0,34.37,8.38,10.49,54.69,4.91,11.52,27.22,1.04,0.0,0.8058,0.4482,0.9894,1.2821,0.2625,1.087,22.276,8.3431,8.2105,0.0,0.0,35.4433,4.887,9.02,38.21,4.89,9.02,21.12,0.9,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-mechvent-whole-house-fan.xml,76.01,78.12,59.9898,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,51.1252,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,23.0144,7.6494,8.217,0.0,0.0,36.6195,4.421,9.024,39.48,3.74,9.02,21.1,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.08,8548.58,5675.77,56.16,1.0,56.16,76.01,76.01,0.0,50.71,1.0,50.71,76.01,76.01,0.0,72.03,80.619,58.6746,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,50.3982,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.8115,6.548,8.2151,0.0,0.0,36.2967,3.848,9.025,39.13,3.2,9.03,21.1,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-misc-generators.xml,76.18,78.12,61.5791,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,0.9764,58.8388,1.389,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9351,9.3035,8.2125,0.0,0.0,36.4933,5.377,9.019,39.34,5.38,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,188.79,10825.64,5675.77,56.16,1.0,56.16,78.02,78.02,0.0,50.71,1.0,50.71,78.02,78.02,0.0,71.85,80.619,59.9644,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,0.976,57.9498,1.389,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7357,7.8991,8.2105,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-pv-battery.xml,39.51,78.12,61.5791,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,0.5063,52.8408,26.886,0.801,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9351,9.3035,8.2125,0.0,0.0,36.4933,5.377,9.019,39.34,5.38,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,116.11,6657.74,5675.77,56.16,1.0,56.16,78.02,78.02,0.0,50.71,1.0,50.71,78.02,78.02,0.0,68.31,80.619,59.9644,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,0.9279,51.1498,3.6889,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7357,7.8991,8.2105,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-pv.xml,37.71,78.12,61.5791,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,0.4833,52.0388,26.886,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9351,9.3035,8.2125,0.0,0.0,36.4933,5.377,9.019,39.34,5.38,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,118.15,6775.15,5675.77,56.16,1.0,56.16,78.02,78.02,0.0,50.71,1.0,50.71,78.02,78.02,0.0,68.31,80.619,59.9644,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,0.9279,51.1498,3.6889,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7357,7.8991,8.2105,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-version-co2-2019ABCD.xml,,,,,,,,,1.0104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,149.44,8489.34,5622.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-co2-2022.xml,,,,,,,,,1.0104,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,149.44,8489.34,5622.54,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-co2-2022C.xml,,,,,,,,,1.0103,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,149.85,8592.43,5675.77,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014.xml,76.82,79.733,61.2507,,,,,,,1.0,52.2094,0.0,0.0,31.9,8.32,11.44,50.69,4.13,12.37,28.08,0.0,0.0,0.8067,0.5291,1.005,1.2821,0.2625,1.087,21.7053,7.3728,10.6206,0.0,0.0,34.4971,3.658,11.487,37.19,3.66,11.49,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014A.xml,74.26,78.648,58.4023,,,,,,,1.0,49.2646,0.0,0.0,31.85,8.34,10.38,50.61,4.14,11.41,28.08,0.0,0.0,0.8067,0.5296,0.9887,1.2821,0.2625,1.087,21.6832,7.3869,7.7802,0.0,0.0,34.4618,3.662,8.553,37.15,3.66,8.55,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014AE.xml,73.42,78.648,58.4023,79.544,0.23914,0.9915,1.0,1.0201,1.0114,1.0,49.2646,0.0,0.0,31.85,8.34,10.38,50.61,4.14,11.41,28.08,0.0,0.0,0.8067,0.5296,0.9887,1.2821,0.2625,1.087,21.6832,7.3869,7.7802,0.0,0.0,34.4618,3.662,8.553,37.15,3.66,8.55,21.55,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2014AEG.xml,72.77,78.648,57.8919,79.5595,0.24325,0.9913,1.0,1.0204,1.0116,1.0,48.7268,0.0,0.0,31.85,8.34,10.38,50.61,4.14,11.41,28.08,0.0,0.0,0.8067,0.5296,0.9887,1.2821,0.2625,1.087,21.9225,7.3062,7.7802,0.0,0.0,34.8422,3.622,8.553,37.56,3.62,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019.xml,74.16,77.313,57.9109,78.0869,0.21026,0.9925,1.0,1.0176,1.01,1.0,48.739,0.0,0.0,30.49,8.37,10.38,48.46,4.15,11.41,28.08,0.0,0.0,0.8066,0.5298,0.9887,1.2821,0.2625,1.087,21.939,7.3087,7.7802,0.0,0.0,34.8691,3.622,8.553,37.59,3.62,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019A.xml,75.71,76.595,58.574,77.3696,0.21241,0.9924,1.0,1.0178,1.0101,1.0,49.4378,0.0,0.0,30.54,8.34,10.49,48.54,4.13,11.52,27.23,0.0,0.0,0.8067,0.5295,0.9896,1.2821,0.2625,1.087,21.9344,7.3086,8.212,0.0,0.0,34.8607,3.624,9.02,37.58,3.62,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019AB.xml,77.45,76.592,59.9354,77.3855,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.1498,0.0,0.0,30.54,8.34,10.49,48.6,4.92,11.52,27.23,0.0,0.0,0.8057,0.445,0.9896,1.2821,0.2625,1.087,22.7356,7.8689,8.212,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019ABC.xml,77.45,76.592,59.9354,77.3855,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.1498,0.0,0.0,30.54,8.34,10.49,48.6,4.92,11.52,27.23,0.0,0.0,0.8057,0.445,0.9896,1.2821,0.2625,1.087,22.7356,7.8689,8.212,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2019ABCD.xml,77.45,76.592,59.9354,77.3855,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.1498,0.0,0.0,30.54,8.34,10.49,48.6,4.92,11.52,27.23,0.0,0.0,0.8057,0.445,0.9896,1.2821,0.2625,1.087,22.7356,7.8689,8.212,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2022.xml,77.45,76.592,59.9354,77.3855,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.1498,0.0,0.0,30.54,8.34,10.49,48.6,4.92,11.52,27.23,0.0,0.0,0.8057,0.445,0.9896,1.2821,0.2625,1.087,22.7356,7.8689,8.212,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-eri-2022C.xml,78.02,78.12,61.5791,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,52.0388,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9351,9.3035,8.2125,0.0,0.0,36.4933,5.377,9.019,39.34,5.38,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -base-version-iecc-eri-2015.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,72.77,78.648,57.8919,79.5595,0.24325,0.9913,1.0,1.0204,1.0116,1.0,48.7268,0.0,0.0,31.85,8.34,10.38,50.61,4.14,11.41,28.08,0.0,0.0,0.8067,0.5296,0.9887,1.2821,0.2625,1.087,21.9225,7.3062,7.7802,0.0,0.0,34.8422,3.622,8.553,37.56,3.62,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-version-iecc-eri-2018.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,70.36,81.338,57.8891,82.2807,0.24325,0.9913,1.0,1.0204,1.0116,1.0,48.7268,0.0,0.0,34.58,8.3,10.38,54.96,4.12,11.41,28.08,0.0,0.0,0.8067,0.5294,0.9887,1.2821,0.2625,1.087,21.9226,7.3039,7.7795,0.0,0.0,34.8422,3.622,8.553,37.56,3.62,8.55,20.88,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base-version-iecc-eri-2021.xml,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,73.62,80.619,59.9644,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.1498,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7357,7.8991,8.2105,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 -base.xml,78.02,78.12,61.5791,78.9235,0.21602,0.9923,1.0,1.0181,1.0103,1.0,52.0388,0.0,0.0,30.56,9.85,10.49,48.62,5.69,11.52,27.23,0.0,0.0,0.8057,0.4543,0.9898,1.2821,0.2625,1.087,22.9351,9.3035,8.2125,0.0,0.0,36.4933,5.377,9.019,39.34,5.38,9.02,21.12,0.01,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0,149.85,8592.43,5675.77,56.16,1.0,56.16,78.02,78.02,0.0,50.71,1.0,50.71,78.02,78.02,0.0,73.62,80.619,59.9644,81.4542,0.21758,0.9922,1.0,1.0183,1.0104,1.0,51.1498,0.0,0.0,34.64,8.27,10.49,55.12,4.86,11.52,27.22,0.0,0.0,0.8057,0.4467,0.9894,1.2821,0.2625,1.087,22.7357,7.8991,8.2105,0.0,0.0,36.1761,4.642,9.02,39.0,4.64,9.02,21.12,0.0,0.0,1.087,0.2625,1.0526,1.0943,0.403,3.809,0.0,0.92,0.0 diff --git a/workflow/tests/resnet_hers_test.rb b/workflow/tests/resnet_hers_test.rb index 339128bd9..f631bb004 100644 --- a/workflow/tests/resnet_hers_test.rb +++ b/workflow/tests/resnet_hers_test.rb @@ -3,6 +3,7 @@ # Current official RESNET HERS tests require_relative '../../hpxml-measures/HPXMLtoOpenStudio/resources/minitest_helper' +require_relative '../../hpxml-measures/workflow/tests/util.rb' require 'openstudio' require 'openstudio/measure/ShowRunnerOutput' require 'fileutils' @@ -25,42 +26,23 @@ def test_resnet_ashrae_140 # Run simulations xmldir = File.join(File.dirname(__FILE__), 'RESNET_Tests/4.1_Standard_140') - all_results = [] + all_results = {} Dir["#{xmldir}/*.xml"].sort.each do |xml| csv_path = _run_simulation(xml, test_name) - htg_load, clg_load = _get_simulation_load_results(csv_path) + results = _get_csv_results([csv_path]) + htg_load, clg_load = _get_simulation_load_results(results) xml = File.basename(xml) if xml.include? 'C.xml' - all_results << [xml, htg_load, 'N/A'] + all_results[xml] = [htg_load, 'N/A'] assert_operator(htg_load, :>, 0) elsif xml.include? 'L.xml' - all_results << [xml, 'N/A', clg_load] + all_results[xml] = ['N/A', clg_load] assert_operator(clg_load, :>, 0) end end assert(all_results.size > 0) - # Write results to csv - htg_loads = {} - clg_loads = {} - CSV.open(test_results_csv, 'w') do |csv| - csv << ['Test', 'Annual Heating Load [MMBtu]', 'Annual Cooling Load [MMBtu]'] - all_results.each do |results| - next unless results[0].include? 'C.xml' - - csv << results - test_name = File.basename(results[0], File.extname(results[0])) - htg_loads[test_name] = results[1] - end - all_results.each do |results| - next unless results[0].include? 'L.xml' - - csv << results - test_name = File.basename(results[0], File.extname(results[0])) - clg_loads[test_name] = results[2] - end - end - puts "Wrote results to #{test_results_csv}." + htg_loads, clg_loads = _write_ashrae_140_results(all_results, test_results_csv) # Check results _check_ashrae_140_results(htg_loads, clg_loads) @@ -109,26 +91,12 @@ def test_resnet_hvac if xml.include?('HVAC2a') || xml.include?('HVAC2b') is_electric_heat = false end - hvac, hvac_fan = _get_simulation_hvac_energy_results(csv_path, is_heat, is_electric_heat) - all_results[File.basename(xml)] = [hvac, hvac_fan] + results = _get_csv_results([csv_path]) + all_results[File.basename(xml)] = _get_simulation_hvac_energy_results(results, is_heat, is_electric_heat) end assert(all_results.size > 0) - # Write results to csv - hvac_energy = {} - CSV.open(test_results_csv, 'w') do |csv| - csv << ['Test Case', 'HVAC (kWh or therm)', 'HVAC Fan (kWh)'] - all_results.each do |xml, results| - csv << [xml, results[0], results[1]] - test_name = File.basename(xml, File.extname(xml)) - if xml.include?('HVAC2a') || xml.include?('HVAC2b') - hvac_energy[test_name] = results[0] / 10.0 + results[1] / 293.08 - else - hvac_energy[test_name] = results[0] + results[1] - end - end - end - puts "Wrote results to #{test_results_csv}." + hvac_energy = _write_hers_hvac_results(all_results, test_results_csv) # Check results _check_hvac_test_results(hvac_energy) @@ -150,39 +118,35 @@ def test_resnet_dse is_heat = true end is_electric_heat = false - hvac, hvac_fan = _get_simulation_hvac_energy_results(csv_path, is_heat, is_electric_heat) - all_results[File.basename(xml)] = [hvac, hvac_fan] + results = _get_csv_results([csv_path]) + all_results[File.basename(xml)] = _get_simulation_hvac_energy_results(results, is_heat, is_electric_heat) end assert(all_results.size > 0) - # Write results to csv - dhw_energy = {} - CSV.open(test_results_csv, 'w') do |csv| - csv << ['Test Case', 'Heat/Cool (kWh or therm)', 'HVAC Fan (kWh)'] - all_results.each do |xml, results| - next unless ['HVAC3a.xml', 'HVAC3e.xml'].include? xml - - csv << [xml, results[0], results[1]] - test_name = File.basename(xml, File.extname(xml)) - dhw_energy[test_name] = results[0] / 10.0 + results[1] / 293.08 - end - all_results.each do |xml, results| - next if ['HVAC3a.xml', 'HVAC3e.xml'].include? xml - - csv << [xml, results[0], results[1]] - test_name = File.basename(xml, File.extname(xml)) - dhw_energy[test_name] = results[0] / 10.0 + results[1] / 293.08 - end - end - puts "Wrote results to #{test_results_csv}." + dse_energy = _write_hers_dse_results(all_results, test_results_csv) # Check results - _check_dse_test_results(dhw_energy) + _check_dse_test_results(dse_energy) end def test_resnet_hot_water - dhw_energy = _test_resnet_hot_water('RESNET_Test_4.6_Hot_Water', - 'RESNET_Tests/4.6_Hot_Water') + test_name = 'RESNET_Test_4.6_Hot_Water' + test_results_csv = File.absolute_path(File.join(@test_results_dir, "#{test_name}.csv")) + File.delete(test_results_csv) if File.exist? test_results_csv + + # Run simulations + all_results = {} + xmldir = File.join(File.dirname(__FILE__), 'RESNET_Tests/4.6_Hot_Water') + Dir["#{xmldir}/*.xml"].sort.each do |xml| + csv_path = _run_simulation(xml, test_name) + + results = _get_csv_results([csv_path]) + all_results[File.basename(xml)] = _get_simulation_hot_water_results(results) + assert_operator(all_results[File.basename(xml)][0], :>, 0) + end + assert(all_results.size > 0) + + dhw_energy = _write_hers_hot_water_results(all_results, test_results_csv) # Check results _check_hot_water(dhw_energy) diff --git a/workflow/tests/resnet_other_test.rb b/workflow/tests/resnet_other_test.rb index 3fd75bc00..d0f874d99 100644 --- a/workflow/tests/resnet_other_test.rb +++ b/workflow/tests/resnet_other_test.rb @@ -103,22 +103,4 @@ def test_resnet_hers_method_301_2014_pre_addendum_e _check_method_results(results, test_num, test_num == 2, '2014') end end - - def test_resnet_hot_water_301_2019_pre_addendum_a - # Tests w/o 301-2019 Addendum A - dhw_energy = _test_resnet_hot_water('RESNET_Test_Other_Hot_Water_301_2019_PreAddendumA', - 'RESNET_Tests/Other_Hot_Water_301_2019_PreAddendumA') - - # Check results - _check_hot_water_301_2019_pre_addendum_a(dhw_energy) - end - - def test_resnet_hot_water_301_2014_pre_addendum_a - # Tests w/o 301-2014 Addendum A - dhw_energy = _test_resnet_hot_water('RESNET_Test_Other_Hot_Water_301_2014_PreAddendumA', - 'RESNET_Tests/Other_Hot_Water_301_2014_PreAddendumA') - - # Check results - _check_hot_water_301_2014_pre_addendum_a(dhw_energy) - end end diff --git a/workflow/tests/util.rb b/workflow/tests/util.rb index 03d84e5c7..be8528fc2 100644 --- a/workflow/tests/util.rb +++ b/workflow/tests/util.rb @@ -207,14 +207,6 @@ def _run_simulation(xml, test_name) return csv_path end -def _get_simulation_load_results(csv_path) - results = _get_csv_results([csv_path]) - htg_load = results['Load: Heating: Delivered (MBtu)'].round(2) - clg_load = results['Load: Cooling: Delivered (MBtu)'].round(2) - - return htg_load, clg_load -end - def _get_csv_results(csvs) results = {} csvs.each do |csv| @@ -259,43 +251,6 @@ def _rm_path(path) end end -def _test_resnet_hot_water(test_name, dir_name) - test_results_csv = File.absolute_path(File.join(@test_results_dir, "#{test_name}.csv")) - File.delete(test_results_csv) if File.exist? test_results_csv - - # Run simulations - all_results = {} - xmldir = File.join(File.dirname(__FILE__), dir_name) - Dir["#{xmldir}/*.xml"].sort.each do |xml| - # TODO: We can remove the _run_ruleset call if we address https://github.com/NREL/OpenStudio-ERI/issues/541 - out_xml = File.join(@test_files_dir, File.basename(xml)) - _run_ruleset(Constants.CalcTypeERIRatedHome, xml, out_xml) - - csv_path = _run_simulation(out_xml, test_name) - - all_results[File.basename(xml)] = _get_hot_water(csv_path) - assert_operator(all_results[File.basename(xml)][0], :>, 0) - - File.delete(out_xml) - end - assert(all_results.size > 0) - - # Write results to csv - dhw_energy = {} - CSV.open(test_results_csv, 'w') do |csv| - csv << ['Test Case', 'DHW Energy (therms)', 'Recirc Pump (kWh)', 'GPD'] - all_results.each do |xml, result| - rated_dhw, rated_recirc, rated_gpd = result - csv << [xml, (rated_dhw * 10.0).round(1), (rated_recirc * 293.08).round(1), rated_gpd] - test_name = File.basename(xml, File.extname(xml)) - dhw_energy[test_name] = rated_dhw + rated_recirc - end - end - puts "Wrote results to #{test_results_csv}." - - return dhw_energy -end - def _test_resnet_hers_reference_home_auto_generation(test_name, dir_name, version) test_results_csv = File.absolute_path(File.join(@test_results_dir, "#{test_name}.csv")) File.delete(test_results_csv) if File.exist? test_results_csv @@ -396,146 +351,6 @@ def _test_resnet_hers_method(test_name, dir_name) return all_results end -def _get_simulation_hvac_energy_results(csv_path, is_heat, is_electric_heat) - results = _get_csv_results([csv_path]) - if not is_heat - hvac = UnitConversions.convert(results["End Use: #{FT::Elec}: #{EUT::Cooling} (MBtu)"], 'MBtu', 'kwh').round(2) - hvac_fan = UnitConversions.convert(results["End Use: #{FT::Elec}: #{EUT::CoolingFanPump} (MBtu)"], 'MBtu', 'kwh').round(2) - else - if is_electric_heat - hvac = UnitConversions.convert(results["End Use: #{FT::Elec}: #{EUT::Heating} (MBtu)"], 'MBtu', 'kwh').round(2) - else - hvac = UnitConversions.convert(results["End Use: #{FT::Gas}: #{EUT::Heating} (MBtu)"], 'MBtu', 'therm').round(2) - end - hvac_fan = UnitConversions.convert(results["End Use: #{FT::Elec}: #{EUT::HeatingFanPump} (MBtu)"], 'MBtu', 'kwh').round(2) - end - - assert_operator(hvac, :>, 0) - assert_operator(hvac_fan, :>, 0) - - return hvac.round(2), hvac_fan.round(2) -end - -def _check_ashrae_140_results(htg_loads, clg_loads) - # Pub 002-2024 - htg_min = [48.07, 74.30, 35.98, 39.74, 45.72, 39.13, 42.17, 48.30, 58.15, 121.76, 126.71, 24.59, 27.72, 57.57, 48.33] - htg_max = [61.35, 82.96, 48.09, 49.95, 51.97, 55.54, 58.15, 63.40, 74.24, 137.68, 146.84, 81.73, 70.27, 91.66, 56.47] - htg_dt_min = [17.53, -16.08, -12.92, -12.14, -10.90, -0.56, -1.96, 8.15, 71.16, 3.20, -25.78, -3.14, 7.79, 5.49] - htg_dt_max = [29.62, -9.44, -5.89, 0.24, -3.37, 6.42, 4.54, 15.14, 79.06, 11.26, 22.68, 11.47, 32.01, 38.95] - clg_min = [42.50, 47.72, 41.15, 31.54, 21.03, 50.55, 36.63, 52.26, 34.16, 57.07, 50.19] - clg_max = [58.66, 61.33, 51.69, 41.85, 29.35, 73.48, 59.72, 68.60, 47.58, 73.51, 60.72] - clg_dt_min = [0.69, -8.24, -18.53, -30.58, 7.51, -16.52, 6.75, -12.95, 11.62, 5.12] - clg_dt_max = [6.91, -0.22, -9.74, -20.48, 15.77, -11.15, 12.76, -6.58, 17.59, 14.14] - - # Annual Heating Loads - assert_operator(htg_loads['L100AC'], :<=, htg_max[0]) - assert_operator(htg_loads['L100AC'], :>=, htg_min[0]) - assert_operator(htg_loads['L110AC'], :<=, htg_max[1]) - assert_operator(htg_loads['L110AC'], :>=, htg_min[1]) - assert_operator(htg_loads['L120AC'], :<=, htg_max[2]) - assert_operator(htg_loads['L120AC'], :>=, htg_min[2]) - assert_operator(htg_loads['L130AC'], :<=, htg_max[3]) - assert_operator(htg_loads['L130AC'], :>=, htg_min[3]) - assert_operator(htg_loads['L140AC'], :<=, htg_max[4]) - assert_operator(htg_loads['L140AC'], :>=, htg_min[4]) - assert_operator(htg_loads['L150AC'], :<=, htg_max[5]) - assert_operator(htg_loads['L150AC'], :>=, htg_min[5]) - assert_operator(htg_loads['L155AC'], :<=, htg_max[6]) - assert_operator(htg_loads['L155AC'], :>=, htg_min[6]) - assert_operator(htg_loads['L160AC'], :<=, htg_max[7]) - assert_operator(htg_loads['L160AC'], :>=, htg_min[7]) - assert_operator(htg_loads['L170AC'], :<=, htg_max[8]) - assert_operator(htg_loads['L170AC'], :>=, htg_min[8]) - assert_operator(htg_loads['L200AC'], :<=, htg_max[9]) - assert_operator(htg_loads['L200AC'], :>=, htg_min[9]) - assert_operator(htg_loads['L202AC'], :<=, htg_max[10]) - assert_operator(htg_loads['L202AC'], :>=, htg_min[10]) - assert_operator(htg_loads['L302XC'], :<=, htg_max[11]) - assert_operator(htg_loads['L302XC'], :>=, htg_min[11]) - assert_operator(htg_loads['L304XC'], :<=, htg_max[12]) - assert_operator(htg_loads['L304XC'], :>=, htg_min[12]) - assert_operator(htg_loads['L322XC'], :<=, htg_max[13]) - assert_operator(htg_loads['L322XC'], :>=, htg_min[13]) - assert_operator(htg_loads['L324XC'], :<=, htg_max[14]) - assert_operator(htg_loads['L324XC'], :>=, htg_min[14]) - - # Annual Heating Load Deltas - assert_operator(htg_loads['L110AC'] - htg_loads['L100AC'], :<=, htg_dt_max[0]) - assert_operator(htg_loads['L110AC'] - htg_loads['L100AC'], :>=, htg_dt_min[0]) - assert_operator(htg_loads['L120AC'] - htg_loads['L100AC'], :<=, htg_dt_max[1]) - assert_operator(htg_loads['L120AC'] - htg_loads['L100AC'], :>=, htg_dt_min[1]) - assert_operator(htg_loads['L130AC'] - htg_loads['L100AC'], :<=, htg_dt_max[2]) - assert_operator(htg_loads['L130AC'] - htg_loads['L100AC'], :>=, htg_dt_min[2]) - assert_operator(htg_loads['L140AC'] - htg_loads['L100AC'], :<=, htg_dt_max[3]) - assert_operator(htg_loads['L140AC'] - htg_loads['L100AC'], :>=, htg_dt_min[3]) - assert_operator(htg_loads['L150AC'] - htg_loads['L100AC'], :<=, htg_dt_max[4]) - assert_operator(htg_loads['L150AC'] - htg_loads['L100AC'], :>=, htg_dt_min[4]) - assert_operator(htg_loads['L155AC'] - htg_loads['L150AC'], :<=, htg_dt_max[5]) - assert_operator(htg_loads['L155AC'] - htg_loads['L150AC'], :>=, htg_dt_min[5]) - assert_operator(htg_loads['L160AC'] - htg_loads['L100AC'], :<=, htg_dt_max[6]) - assert_operator(htg_loads['L160AC'] - htg_loads['L100AC'], :>=, htg_dt_min[6]) - assert_operator(htg_loads['L170AC'] - htg_loads['L100AC'], :<=, htg_dt_max[7]) - assert_operator(htg_loads['L170AC'] - htg_loads['L100AC'], :>=, htg_dt_min[7]) - assert_operator(htg_loads['L200AC'] - htg_loads['L100AC'], :<=, htg_dt_max[8]) - assert_operator(htg_loads['L200AC'] - htg_loads['L100AC'], :>=, htg_dt_min[8]) - assert_operator(htg_loads['L202AC'] - htg_loads['L200AC'], :<=, htg_dt_max[9]) - assert_operator(htg_loads['L202AC'] - htg_loads['L200AC'], :>=, htg_dt_min[9]) - assert_operator(htg_loads['L302XC'] - htg_loads['L100AC'], :<=, htg_dt_max[10]) - assert_operator(htg_loads['L302XC'] - htg_loads['L100AC'], :>=, htg_dt_min[10]) - assert_operator(htg_loads['L302XC'] - htg_loads['L304XC'], :<=, htg_dt_max[11]) - assert_operator(htg_loads['L302XC'] - htg_loads['L304XC'], :>=, htg_dt_min[11]) - assert_operator(htg_loads['L322XC'] - htg_loads['L100AC'], :<=, htg_dt_max[12]) - assert_operator(htg_loads['L322XC'] - htg_loads['L100AC'], :>=, htg_dt_min[12]) - assert_operator(htg_loads['L322XC'] - htg_loads['L324XC'], :<=, htg_dt_max[13]) - assert_operator(htg_loads['L322XC'] - htg_loads['L324XC'], :>=, htg_dt_min[13]) - - # Annual Cooling Loads - assert_operator(clg_loads['L100AL'], :<=, clg_max[0]) - assert_operator(clg_loads['L100AL'], :>=, clg_min[0]) - assert_operator(clg_loads['L110AL'], :<=, clg_max[1]) - assert_operator(clg_loads['L110AL'], :>=, clg_min[1]) - assert_operator(clg_loads['L120AL'], :<=, clg_max[2]) - assert_operator(clg_loads['L120AL'], :>=, clg_min[2]) - assert_operator(clg_loads['L130AL'], :<=, clg_max[3]) - assert_operator(clg_loads['L130AL'], :>=, clg_min[3]) - assert_operator(clg_loads['L140AL'], :<=, clg_max[4]) - assert_operator(clg_loads['L140AL'], :>=, clg_min[4]) - assert_operator(clg_loads['L150AL'], :<=, clg_max[5]) - assert_operator(clg_loads['L150AL'], :>=, clg_min[5]) - assert_operator(clg_loads['L155AL'], :<=, clg_max[6]) - assert_operator(clg_loads['L155AL'], :>=, clg_min[6]) - assert_operator(clg_loads['L160AL'], :<=, clg_max[7]) - assert_operator(clg_loads['L160AL'], :>=, clg_min[7]) - assert_operator(clg_loads['L170AL'], :<=, clg_max[8]) - assert_operator(clg_loads['L170AL'], :>=, clg_min[8]) - assert_operator(clg_loads['L200AL'], :<=, clg_max[9]) - assert_operator(clg_loads['L200AL'], :>=, clg_min[9]) - assert_operator(clg_loads['L202AL'], :<=, clg_max[10]) - assert_operator(clg_loads['L202AL'], :>=, clg_min[10]) - - # Annual Cooling Load Deltas - assert_operator(clg_loads['L110AL'] - clg_loads['L100AL'], :<=, clg_dt_max[0]) - assert_operator(clg_loads['L110AL'] - clg_loads['L100AL'], :>=, clg_dt_min[0]) - assert_operator(clg_loads['L120AL'] - clg_loads['L100AL'], :<=, clg_dt_max[1]) - assert_operator(clg_loads['L120AL'] - clg_loads['L100AL'], :>=, clg_dt_min[1]) - assert_operator(clg_loads['L130AL'] - clg_loads['L100AL'], :<=, clg_dt_max[2]) - assert_operator(clg_loads['L130AL'] - clg_loads['L100AL'], :>=, clg_dt_min[2]) - assert_operator(clg_loads['L140AL'] - clg_loads['L100AL'], :<=, clg_dt_max[3]) - assert_operator(clg_loads['L140AL'] - clg_loads['L100AL'], :>=, clg_dt_min[3]) - assert_operator(clg_loads['L150AL'] - clg_loads['L100AL'], :<=, clg_dt_max[4]) - assert_operator(clg_loads['L150AL'] - clg_loads['L100AL'], :>=, clg_dt_min[4]) - assert_operator(clg_loads['L155AL'] - clg_loads['L150AL'], :<=, clg_dt_max[5]) - assert_operator(clg_loads['L155AL'] - clg_loads['L150AL'], :>=, clg_dt_min[5]) - assert_operator(clg_loads['L160AL'] - clg_loads['L100AL'], :<=, clg_dt_max[6]) - assert_operator(clg_loads['L160AL'] - clg_loads['L100AL'], :>=, clg_dt_min[6]) - assert_operator(clg_loads['L170AL'] - clg_loads['L100AL'], :<=, clg_dt_max[7]) - assert_operator(clg_loads['L170AL'] - clg_loads['L100AL'], :>=, clg_dt_min[7]) - assert_operator(clg_loads['L200AL'] - clg_loads['L100AL'], :<=, clg_dt_max[8]) - assert_operator(clg_loads['L200AL'] - clg_loads['L100AL'], :>=, clg_dt_min[8]) - assert_operator(clg_loads['L200AL'] - clg_loads['L202AL'], :<=, clg_dt_max[9]) - assert_operator(clg_loads['L200AL'] - clg_loads['L202AL'], :>=, clg_dt_min[9]) -end - def _get_reference_home_components(hpxml, test_num, version) results = {} hpxml = HPXML.new(hpxml_path: hpxml) @@ -1379,266 +1194,3 @@ def _check_method_results(results, test_num, has_tankless_water_heater, version) assert_operator((results['ERI'] - eri).abs / results['ERI'], :<, 0.005) end - -def _check_hvac_test_results(energy) - # Pub 002-2024 - min = [-24.59, -13.13, -42.73, 59.35] - max = [-18.18, -12.60, -15.88, 110.25] - - # Cooling cases - assert_operator((energy['HVAC1b'] - energy['HVAC1a']) / energy['HVAC1a'] * 100, :>, min[0]) - assert_operator((energy['HVAC1b'] - energy['HVAC1a']) / energy['HVAC1a'] * 100, :<, max[0]) - - # Gas heating cases - assert_operator((energy['HVAC2b'] - energy['HVAC2a']) / energy['HVAC2a'] * 100, :>, min[1]) - assert_operator((energy['HVAC2b'] - energy['HVAC2a']) / energy['HVAC2a'] * 100, :<, max[1]) - - # Electric heating cases - assert_operator((energy['HVAC2d'] - energy['HVAC2c']) / energy['HVAC2c'] * 100, :>, min[2]) - assert_operator((energy['HVAC2d'] - energy['HVAC2c']) / energy['HVAC2c'] * 100, :<, max[2]) - assert_operator((energy['HVAC2e'] - energy['HVAC2c']) / energy['HVAC2c'] * 100, :>, min[3]) - assert_operator((energy['HVAC2e'] - energy['HVAC2c']) / energy['HVAC2c'] * 100, :<, max[3]) -end - -def _check_dse_test_results(energy) - # Pub 002-2024 - htg_min = [9.45, 3.11, 7.40] - htg_max = [25.72, 6.53, 19.77] - clg_min = [18.69, 5.23, 16.32] - clg_max = [29.39, 8.79, 27.47] - - # Heating cases - assert_operator((energy['HVAC3b'] - energy['HVAC3a']) / energy['HVAC3a'] * 100, :>, htg_min[0]) - assert_operator((energy['HVAC3b'] - energy['HVAC3a']) / energy['HVAC3a'] * 100, :<, htg_max[0]) - assert_operator((energy['HVAC3c'] - energy['HVAC3a']) / energy['HVAC3a'] * 100, :>, htg_min[1]) - assert_operator((energy['HVAC3c'] - energy['HVAC3a']) / energy['HVAC3a'] * 100, :<, htg_max[1]) - assert_operator((energy['HVAC3d'] - energy['HVAC3a']) / energy['HVAC3a'] * 100, :>, htg_min[2]) - assert_operator((energy['HVAC3d'] - energy['HVAC3a']) / energy['HVAC3a'] * 100, :<, htg_max[2]) - - # Cooling cases - assert_operator((energy['HVAC3f'] - energy['HVAC3e']) / energy['HVAC3e'] * 100, :>, clg_min[0]) - assert_operator((energy['HVAC3f'] - energy['HVAC3e']) / energy['HVAC3e'] * 100, :<, clg_max[0]) - assert_operator((energy['HVAC3g'] - energy['HVAC3e']) / energy['HVAC3e'] * 100, :>, clg_min[1]) - assert_operator((energy['HVAC3g'] - energy['HVAC3e']) / energy['HVAC3e'] * 100, :<, clg_max[1]) - assert_operator((energy['HVAC3h'] - energy['HVAC3e']) / energy['HVAC3e'] * 100, :>, clg_min[2]) - assert_operator((energy['HVAC3h'] - energy['HVAC3e']) / energy['HVAC3e'] * 100, :<, clg_max[2]) -end - -def _get_hot_water(results_csv) - rated_dhw = nil - rated_recirc = nil - rated_gpd = 0 - CSV.foreach(results_csv) do |row| - next if row.nil? || row[0].nil? - - if ["End Use: #{FT::Gas}: #{EUT::HotWater} (MBtu)", - "End Use: #{FT::Elec}: #{EUT::HotWater} (MBtu)"].include? row[0] - rated_dhw = Float(row[1]).round(2) - elsif row[0] == "End Use: #{FT::Elec}: #{EUT::HotWaterRecircPump} (MBtu)" - rated_recirc = Float(row[1]).round(2) - elsif row[0].start_with?('Hot Water:') && row[0].include?('(gal)') - rated_gpd += (Float(row[1]) / 365.0).round - end - end - return rated_dhw, rated_recirc, rated_gpd -end - -def _check_hot_water(energy) - # Proposed acceptance criteria as of 2/6/2024 - mn_min = [19.34, 25.76, 17.20, 24.94, 55.93, 22.61, 20.51] - mn_max = [19.88, 26.55, 17.70, 25.71, 57.58, 23.28, 21.09] - fl_min = [10.74, 13.37, 8.83, 13.06, 30.84, 12.09, 11.84] - fl_max = [11.24, 13.87, 9.33, 13.56, 31.55, 12.59, 12.34] - mn_dt_min = [-6.77, 1.92, 0.58, -31.03, 2.95, 5.09] - mn_dt_max = [-6.27, 2.42, 1.08, -30.17, 3.45, 5.59] - fl_dt_min = [-2.88, 1.67, 0.07, -17.82, 1.04, 1.28] - fl_dt_max = [-2.38, 2.17, 0.57, -17.32, 1.54, 1.78] - mn_fl_dt_min = [8.37, 12.26, 8.13, 11.75, 25.05, 10.35, 8.46] - mn_fl_dt_max = [8.87, 12.77, 8.63, 12.25, 26.04, 10.85, 8.96] - - # Duluth MN cases - assert_operator(energy['L100AD-HW-01'], :>, mn_min[0]) - assert_operator(energy['L100AD-HW-01'], :<, mn_max[0]) - assert_operator(energy['L100AD-HW-02'], :>, mn_min[1]) - assert_operator(energy['L100AD-HW-02'], :<, mn_max[1]) - assert_operator(energy['L100AD-HW-03'], :>, mn_min[2]) - assert_operator(energy['L100AD-HW-03'], :<, mn_max[2]) - assert_operator(energy['L100AD-HW-04'], :>, mn_min[3]) - assert_operator(energy['L100AD-HW-04'], :<, mn_max[3]) - assert_operator(energy['L100AD-HW-05'], :>, mn_min[4]) - assert_operator(energy['L100AD-HW-05'], :<, mn_max[4]) - assert_operator(energy['L100AD-HW-06'], :>, mn_min[5]) - assert_operator(energy['L100AD-HW-06'], :<, mn_max[5]) - assert_operator(energy['L100AD-HW-07'], :>, mn_min[6]) - assert_operator(energy['L100AD-HW-07'], :<, mn_max[6]) - - # Miami FL cases - assert_operator(energy['L100AM-HW-01'], :>, fl_min[0]) - assert_operator(energy['L100AM-HW-01'], :<, fl_max[0]) - assert_operator(energy['L100AM-HW-02'], :>, fl_min[1]) - assert_operator(energy['L100AM-HW-02'], :<, fl_max[1]) - assert_operator(energy['L100AM-HW-03'], :>, fl_min[2]) - assert_operator(energy['L100AM-HW-03'], :<, fl_max[2]) - assert_operator(energy['L100AM-HW-04'], :>, fl_min[3]) - assert_operator(energy['L100AM-HW-04'], :<, fl_max[3]) - assert_operator(energy['L100AM-HW-05'], :>, fl_min[4]) - assert_operator(energy['L100AM-HW-05'], :<, fl_max[4]) - assert_operator(energy['L100AM-HW-06'], :>, fl_min[5]) - assert_operator(energy['L100AM-HW-06'], :<, fl_max[5]) - assert_operator(energy['L100AM-HW-07'], :>, fl_min[6]) - assert_operator(energy['L100AM-HW-07'], :<, fl_max[6]) - - # MN Delta cases - assert_operator(energy['L100AD-HW-01'] - energy['L100AD-HW-02'], :>, mn_dt_min[0]) - assert_operator(energy['L100AD-HW-01'] - energy['L100AD-HW-02'], :<, mn_dt_max[0]) - assert_operator(energy['L100AD-HW-01'] - energy['L100AD-HW-03'], :>, mn_dt_min[1]) - assert_operator(energy['L100AD-HW-01'] - energy['L100AD-HW-03'], :<, mn_dt_max[1]) - assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-04'], :>, mn_dt_min[2]) - assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-04'], :<, mn_dt_max[2]) - assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-05'], :>, mn_dt_min[3]) - assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-05'], :<, mn_dt_max[3]) - assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-06'], :>, mn_dt_min[4]) - assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-06'], :<, mn_dt_max[4]) - assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-07'], :>, mn_dt_min[5]) - assert_operator(energy['L100AD-HW-02'] - energy['L100AD-HW-07'], :<, mn_dt_max[5]) - - # FL Delta cases - assert_operator(energy['L100AM-HW-01'] - energy['L100AM-HW-02'], :>, fl_dt_min[0]) - assert_operator(energy['L100AM-HW-01'] - energy['L100AM-HW-02'], :<, fl_dt_max[0]) - assert_operator(energy['L100AM-HW-01'] - energy['L100AM-HW-03'], :>, fl_dt_min[1]) - assert_operator(energy['L100AM-HW-01'] - energy['L100AM-HW-03'], :<, fl_dt_max[1]) - assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-04'], :>, fl_dt_min[2]) - assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-04'], :<, fl_dt_max[2]) - assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-05'], :>, fl_dt_min[3]) - assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-05'], :<, fl_dt_max[3]) - assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-06'], :>, fl_dt_min[4]) - assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-06'], :<, fl_dt_max[4]) - assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-07'], :>, fl_dt_min[5]) - assert_operator(energy['L100AM-HW-02'] - energy['L100AM-HW-07'], :<, fl_dt_max[5]) - - # MN-FL Delta cases - assert_operator(energy['L100AD-HW-01'] - energy['L100AM-HW-01'], :>, mn_fl_dt_min[0]) - assert_operator(energy['L100AD-HW-01'] - energy['L100AM-HW-01'], :<, mn_fl_dt_max[0]) - assert_operator(energy['L100AD-HW-02'] - energy['L100AM-HW-02'], :>, mn_fl_dt_min[1]) - assert_operator(energy['L100AD-HW-02'] - energy['L100AM-HW-02'], :<, mn_fl_dt_max[1]) - assert_operator(energy['L100AD-HW-03'] - energy['L100AM-HW-03'], :>, mn_fl_dt_min[2]) - assert_operator(energy['L100AD-HW-03'] - energy['L100AM-HW-03'], :<, mn_fl_dt_max[2]) - assert_operator(energy['L100AD-HW-04'] - energy['L100AM-HW-04'], :>, mn_fl_dt_min[3]) - assert_operator(energy['L100AD-HW-04'] - energy['L100AM-HW-04'], :<, mn_fl_dt_max[3]) - assert_operator(energy['L100AD-HW-05'] - energy['L100AM-HW-05'], :>, mn_fl_dt_min[4]) - assert_operator(energy['L100AD-HW-05'] - energy['L100AM-HW-05'], :<, mn_fl_dt_max[4]) - assert_operator(energy['L100AD-HW-06'] - energy['L100AM-HW-06'], :>, mn_fl_dt_min[5]) - assert_operator(energy['L100AD-HW-06'] - energy['L100AM-HW-06'], :<, mn_fl_dt_max[5]) - assert_operator(energy['L100AD-HW-07'] - energy['L100AM-HW-07'], :>, mn_fl_dt_min[6]) - assert_operator(energy['L100AD-HW-07'] - energy['L100AM-HW-07'], :<, mn_fl_dt_max[6]) -end - -def _check_hot_water_301_2019_pre_addendum_a(energy) - # Acceptance Criteria for Hot Water Tests - - # Duluth MN cases - assert_operator(energy['L100AD-HW-01'], :>, 19.11) - assert_operator(energy['L100AD-HW-01'], :<, 19.73) - assert_operator(energy['L100AD-HW-02'], :>, 25.54) - assert_operator(energy['L100AD-HW-02'], :<, 26.36) - assert_operator(energy['L100AD-HW-03'], :>, 17.03) - assert_operator(energy['L100AD-HW-03'], :<, 17.50) - assert_operator(energy['L100AD-HW-04'], :>, 24.75) - assert_operator(energy['L100AD-HW-04'], :<, 25.52) - assert_operator(energy['L100AD-HW-05'], :>, 55.43) - assert_operator(energy['L100AD-HW-05'], :<, 57.15) - assert_operator(energy['L100AD-HW-06'], :>, 22.39) - assert_operator(energy['L100AD-HW-06'], :<, 23.09) - assert_operator(energy['L100AD-HW-07'], :>, 20.29) - assert_operator(energy['L100AD-HW-07'], :<, 20.94) - - # Miami FL cases - assert_operator(energy['L100AM-HW-01'], :>, 10.59) - assert_operator(energy['L100AM-HW-01'], :<, 11.03) - assert_operator(energy['L100AM-HW-02'], :>, 13.17) - assert_operator(energy['L100AM-HW-02'], :<, 13.68) - assert_operator(energy['L100AM-HW-03'], :>, 8.81) - assert_operator(energy['L100AM-HW-03'], :<, 9.13) - assert_operator(energy['L100AM-HW-04'], :>, 12.87) - assert_operator(energy['L100AM-HW-04'], :<, 13.36) - assert_operator(energy['L100AM-HW-05'], :>, 30.19) - assert_operator(energy['L100AM-HW-05'], :<, 31.31) - assert_operator(energy['L100AM-HW-06'], :>, 11.90) - assert_operator(energy['L100AM-HW-06'], :<, 12.38) - assert_operator(energy['L100AM-HW-07'], :>, 11.68) - assert_operator(energy['L100AM-HW-07'], :<, 12.14) - - # MN Delta cases - assert_operator((energy['L100AD-HW-01'] - energy['L100AD-HW-02']) / energy['L100AD-HW-01'] * 100, :>, -34.01) - assert_operator((energy['L100AD-HW-01'] - energy['L100AD-HW-02']) / energy['L100AD-HW-01'] * 100, :<, -32.49) - assert_operator((energy['L100AD-HW-01'] - energy['L100AD-HW-03']) / energy['L100AD-HW-01'] * 100, :>, 10.74) - assert_operator((energy['L100AD-HW-01'] - energy['L100AD-HW-03']) / energy['L100AD-HW-01'] * 100, :<, 11.57) - assert_operator((energy['L100AD-HW-02'] - energy['L100AD-HW-04']) / energy['L100AD-HW-02'] * 100, :>, 3.06) - assert_operator((energy['L100AD-HW-02'] - energy['L100AD-HW-04']) / energy['L100AD-HW-02'] * 100, :<, 3.22) - assert_operator((energy['L100AD-HW-02'] - energy['L100AD-HW-05']) / energy['L100AD-HW-02'] * 100, :>, -118.52) - assert_operator((energy['L100AD-HW-02'] - energy['L100AD-HW-05']) / energy['L100AD-HW-02'] * 100, :<, -115.63) - assert_operator((energy['L100AD-HW-02'] - energy['L100AD-HW-06']) / energy['L100AD-HW-02'] * 100, :>, 12.17) - assert_operator((energy['L100AD-HW-02'] - energy['L100AD-HW-06']) / energy['L100AD-HW-02'] * 100, :<, 12.51) - assert_operator((energy['L100AD-HW-02'] - energy['L100AD-HW-07']) / energy['L100AD-HW-02'] * 100, :>, 20.15) - assert_operator((energy['L100AD-HW-02'] - energy['L100AD-HW-07']) / energy['L100AD-HW-02'] * 100, :<, 20.78) - - # FL Delta cases - assert_operator((energy['L100AM-HW-01'] - energy['L100AM-HW-02']) / energy['L100AM-HW-01'] * 100, :>, -24.54) - assert_operator((energy['L100AM-HW-01'] - energy['L100AM-HW-02']) / energy['L100AM-HW-01'] * 100, :<, -23.42) - assert_operator((energy['L100AM-HW-01'] - energy['L100AM-HW-03']) / energy['L100AM-HW-01'] * 100, :>, 16.65) - assert_operator((energy['L100AM-HW-01'] - energy['L100AM-HW-03']) / energy['L100AM-HW-01'] * 100, :<, 18.12) - assert_operator((energy['L100AM-HW-02'] - energy['L100AM-HW-04']) / energy['L100AM-HW-02'] * 100, :>, 2.20) - assert_operator((energy['L100AM-HW-02'] - energy['L100AM-HW-04']) / energy['L100AM-HW-02'] * 100, :<, 2.38) - assert_operator((energy['L100AM-HW-02'] - energy['L100AM-HW-05']) / energy['L100AM-HW-02'] * 100, :>, -130.88) - assert_operator((energy['L100AM-HW-02'] - energy['L100AM-HW-05']) / energy['L100AM-HW-02'] * 100, :<, -127.52) - assert_operator((energy['L100AM-HW-02'] - energy['L100AM-HW-06']) / energy['L100AM-HW-02'] * 100, :>, 9.38) - assert_operator((energy['L100AM-HW-02'] - energy['L100AM-HW-06']) / energy['L100AM-HW-02'] * 100, :<, 9.74) - assert_operator((energy['L100AM-HW-02'] - energy['L100AM-HW-07']) / energy['L100AM-HW-02'] * 100, :>, 11.00) - assert_operator((energy['L100AM-HW-02'] - energy['L100AM-HW-07']) / energy['L100AM-HW-02'] * 100, :<, 11.40) - - # MN-FL Delta cases - assert_operator((energy['L100AD-HW-01'] - energy['L100AM-HW-01']) / energy['L100AD-HW-01'] * 100, :>, 43.35) - assert_operator((energy['L100AD-HW-01'] - energy['L100AM-HW-01']) / energy['L100AD-HW-01'] * 100, :<, 45.00) - assert_operator((energy['L100AD-HW-02'] - energy['L100AM-HW-02']) / energy['L100AD-HW-02'] * 100, :>, 47.26) - assert_operator((energy['L100AD-HW-02'] - energy['L100AM-HW-02']) / energy['L100AD-HW-02'] * 100, :<, 48.93) - assert_operator((energy['L100AD-HW-03'] - energy['L100AM-HW-03']) / energy['L100AD-HW-03'] * 100, :>, 47.38) - assert_operator((energy['L100AD-HW-03'] - energy['L100AM-HW-03']) / energy['L100AD-HW-03'] * 100, :<, 48.74) - assert_operator((energy['L100AD-HW-04'] - energy['L100AM-HW-04']) / energy['L100AD-HW-04'] * 100, :>, 46.81) - assert_operator((energy['L100AD-HW-04'] - energy['L100AM-HW-04']) / energy['L100AD-HW-04'] * 100, :<, 48.48) - assert_operator((energy['L100AD-HW-05'] - energy['L100AM-HW-05']) / energy['L100AD-HW-05'] * 100, :>, 44.41) - assert_operator((energy['L100AD-HW-05'] - energy['L100AM-HW-05']) / energy['L100AD-HW-05'] * 100, :<, 45.99) - assert_operator((energy['L100AD-HW-06'] - energy['L100AM-HW-06']) / energy['L100AD-HW-06'] * 100, :>, 45.60) - assert_operator((energy['L100AD-HW-06'] - energy['L100AM-HW-06']) / energy['L100AD-HW-06'] * 100, :<, 47.33) - assert_operator((energy['L100AD-HW-07'] - energy['L100AM-HW-07']) / energy['L100AD-HW-07'] * 100, :>, 41.32) - assert_operator((energy['L100AD-HW-07'] - energy['L100AM-HW-07']) / energy['L100AD-HW-07'] * 100, :<, 42.86) -end - -def _check_hot_water_301_2014_pre_addendum_a(energy) - # Acceptance Criteria for Hot Water Tests - - # Duluth MN cases - assert_operator(energy['L100AD-HW-01'], :>, 18.2) - assert_operator(energy['L100AD-HW-01'], :<, 22.0) - - # Miami FL cases - assert_operator(energy['L100AM-HW-01'], :>, 10.9) - assert_operator(energy['L100AM-HW-01'], :<, 14.4) - - # MN Delta cases - assert_operator((energy['L100AD-HW-02'] - energy['L100AD-HW-01']) / energy['L100AD-HW-01'] * 100, :>, 26.5) - assert_operator((energy['L100AD-HW-02'] - energy['L100AD-HW-01']) / energy['L100AD-HW-01'] * 100, :<, 32.2) - assert_operator((energy['L100AD-HW-03'] - energy['L100AD-HW-01']) / energy['L100AD-HW-01'] * 100, :>, -11.8) - assert_operator((energy['L100AD-HW-03'] - energy['L100AD-HW-01']) / energy['L100AD-HW-01'] * 100, :<, -6.8) - - # FL Delta cases - assert_operator((energy['L100AM-HW-02'] - energy['L100AM-HW-01']) / energy['L100AM-HW-01'] * 100, :>, 19.1) - assert_operator((energy['L100AM-HW-02'] - energy['L100AM-HW-01']) / energy['L100AM-HW-01'] * 100, :<, 29.1) - assert_operator((energy['L100AM-HW-03'] - energy['L100AM-HW-01']) / energy['L100AM-HW-01'] * 100, :>, -19.5) - assert_operator((energy['L100AM-HW-03'] - energy['L100AM-HW-01']) / energy['L100AM-HW-01'] * 100, :<, -7.7) - - # MN-FL Delta cases - assert_operator(energy['L100AD-HW-01'] - energy['L100AM-HW-01'], :>, 5.5) - assert_operator(energy['L100AD-HW-01'] - energy['L100AM-HW-01'], :<, 9.4) - assert_operator((energy['L100AD-HW-01'] - energy['L100AM-HW-01']) / energy['L100AD-HW-01'] * 100, :>, 28.9) - assert_operator((energy['L100AD-HW-01'] - energy['L100AM-HW-01']) / energy['L100AD-HW-01'] * 100, :<, 45.1) -end