From 34f3ff96787726cc23d95f66fd2fd3af8b455130 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Mon, 26 Sep 2022 16:01:37 -0600 Subject: [PATCH 01/27] Saving progress. --- HPXMLtoOpenStudio/resources/hpxml.rb | 30 ++++++++- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 12 +++- .../hpxml_schema/HPXMLBaseElements.xsd | 66 ++++++++++++++----- .../resources/hpxml_schema/HPXMLDataTypes.xsd | 29 ++++++++ .../hpxml_schematron/EPvalidator.xml | 9 +++ HPXMLtoOpenStudio/tests/test_defaults.rb | 14 +++- HPXMLtoOpenStudio/tests/test_validation.rb | 4 ++ 7 files changed, 142 insertions(+), 22 deletions(-) diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index af71386c56..d1885478d5 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -81,6 +81,10 @@ class HPXML < Object CertificationEnergyStar = 'Energy Star' ClothesDryerControlTypeMoisture = 'moisture' ClothesDryerControlTypeTimer = 'timer' + CFISModeAirHandler = 'air handler fan' + CFISModeNone = 'none' + CFISModeOther = 'other' + CFISModeSupplemental = 'supplemental fan' ColorDark = 'dark' ColorLight = 'light' ColorMedium = 'medium' @@ -4411,7 +4415,8 @@ class VentilationFan < BaseElement :is_shared_system, :in_unit_flow_rate, :fraction_recirculation, :used_for_garage_ventilation, :preheating_fuel, :preheating_efficiency_cop, :preheating_fraction_load_served, :precooling_fuel, :precooling_efficiency_cop, :precooling_fraction_load_served, :calculated_flow_rate, - :delivered_ventilation, :cfis_vent_mode_airflow_fraction] + :delivered_ventilation, :cfis_vent_mode_airflow_fraction, :cfis_addtl_runtime_operating_mode, + :cfis_supplemental_fan_idref] attr_accessor(*ATTRS) def distribution_system @@ -4527,6 +4532,18 @@ def is_balanced? return false end + def cfis_supplemental_fan + return if @cfis_supplemental_fan_idref.nil? + return unless @fan_type == MechVentTypeCFIS + + @hpxml_object.ventilation_fans.each do |ventilation_fan| + next unless ventilation_fan.id == @cfis_supplemental_fan_idref + + return ventilation_fan + end + fail "CFIS Supplemental Fan '#{@cfis_supplemental_fan_idref}' not found for ventilation fan '#{@id}'." + end + def delete @hpxml_object.ventilation_fans.delete(self) end @@ -4536,6 +4553,7 @@ def check_for_errors begin; distribution_system; rescue StandardError => e; errors << e.message; end begin; oa_unit_flow_rate; rescue StandardError => e; errors << e.message; end begin; unit_flow_rate_ratio; rescue StandardError => e; errors << e.message; end + begin; cfis_supplemental_fan; rescue StandardError => e; errors << e.message; end return errors end @@ -4548,6 +4566,14 @@ def to_oga(doc) XMLHelper.add_attribute(sys_id, 'id', @id) XMLHelper.add_element(ventilation_fan, 'Quantity', @quantity, :integer, @quantity_isdefaulted) unless @quantity.nil? XMLHelper.add_element(ventilation_fan, 'FanType', @fan_type, :string) unless @fan_type.nil? + if (not @cfis_addtl_runtime_operating_mode.nil?) || (not @cfis_supplemental_fan_idref.nil?) + cfis_controls = XMLHelper.add_element(ventilation_fan, 'CFISControls') + XMLHelper.add_element(cfis_controls, 'AdditionalRuntimeOperatingMode', @cfis_addtl_runtime_operating_mode, :string, @cfis_addtl_runtime_operating_mode_isdefaulted) unless @cfis_addtl_runtime_operating_mode.nil? + if not @cfis_supplemental_fan_idref.nil? + supplemental_fan = XMLHelper.add_element(cfis_controls, 'SupplementalFan') + XMLHelper.add_attribute(supplemental_fan, 'idref', @cfis_supplemental_fan_idref) + end + end XMLHelper.add_element(ventilation_fan, 'RatedFlowRate', @rated_flow_rate, :float, @rated_flow_rate_isdefaulted) unless @rated_flow_rate.nil? XMLHelper.add_element(ventilation_fan, 'CalculatedFlowRate', @calculated_flow_rate, :float, @calculated_flow_rate_isdefaulted) unless @calculated_flow_rate.nil? XMLHelper.add_element(ventilation_fan, 'TestedFlowRate', @tested_flow_rate, :float, @tested_flow_rate_isdefaulted) unless @tested_flow_rate.nil? @@ -4627,6 +4653,8 @@ def from_oga(ventilation_fan) @flow_rate_not_tested = XMLHelper.get_value(ventilation_fan, 'extension/FlowRateNotTested', :boolean) @fan_power_defaulted = XMLHelper.get_value(ventilation_fan, 'extension/FanPowerDefaulted', :boolean) @cfis_vent_mode_airflow_fraction = XMLHelper.get_value(ventilation_fan, 'extension/VentilationOnlyModeAirflowFraction', :float) + @cfis_addtl_runtime_operating_mode = XMLHelper.get_value(ventilation_fan, 'CFISControls/AdditionalRuntimeOperatingMode', :string) + @cfis_supplemental_fan_idref = HPXML::get_idref(XMLHelper.get_element(ventilation_fan, 'CFISControls/SupplementalFan')) end end diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 8eb185be99..c0e2dc78fd 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1569,9 +1569,15 @@ def self.apply_ventilation_fans(hpxml, infil_measurements, weather, cfa, nbeds) vent_fan.fan_power = (vent_fan.flow_rate * Airflow.get_default_mech_vent_fan_power(vent_fan)).round(1) vent_fan.fan_power_isdefaulted = true end - if vent_fan.cfis_vent_mode_airflow_fraction.nil? && (vent_fan.fan_type == HPXML::MechVentTypeCFIS) - vent_fan.cfis_vent_mode_airflow_fraction = 1.0 - vent_fan.cfis_vent_mode_airflow_fraction_isdefaulted = true + if vent_fan.fan_type == HPXML::MechVentTypeCFIS + if vent_fan.cfis_vent_mode_airflow_fraction.nil? + vent_fan.cfis_vent_mode_airflow_fraction = 1.0 + vent_fan.cfis_vent_mode_airflow_fraction_isdefaulted = true + end + if vent_fan.cfis_addtl_runtime_operating_mode.nil? + vent_fan.cfis_addtl_runtime_operating_mode = HPXML::CFISModeAirHandler + vent_fan.cfis_addtl_runtime_operating_mode_isdefaulted = true + end end end diff --git a/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLBaseElements.xsd b/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLBaseElements.xsd index 20a1456d3a..2ac015de9a 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLBaseElements.xsd +++ b/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLBaseElements.xsd @@ -1155,7 +1155,7 @@ - + @@ -1168,7 +1168,7 @@ - Use Ceilings for horizontal surfaces above living space (e.g., sufaces between living space and attic). + Use Ceilings for horizontal surfaces above living space (e.g., surfaces between living space and attic). @@ -1199,13 +1199,13 @@ - Use Floors for horizontal surfaces below living space (e.g., sufaces between living space and crawlspace/basement/ambient foundations). + Use Floors for horizontal surfaces below living space (e.g., surfaces between living space and crawlspace/basement/ambient foundations). - Interior partition surfaces should not be described using the Floor element. + Interior partition surfaces should not be described using the FrameFloor element. @@ -1517,6 +1517,31 @@ + + + Relevant when FanType="central fan integrated supply". + + + + + + Has controls to block the flow of outside air when the CFIS system is not ventilating. For example, an electronically-controlled mechanical damper, or an in-line fan that substantially blocks the flow when not running. + + + + + Describes if/how the CFIS system provides additional ventilation beyond when the HVAC system is running to meet a given ventilation target. + + + + + When AdditionalRuntimeOperatingMode="supplemental fan", specifies the VentilationFan that serves as that supplemental fan. + + + + + + [CFM] as rated by manufacturer @@ -1709,6 +1734,11 @@ 430, Subpart B, Appendix E. + + + The dimensionless coefficient of performance, used to measure the efficiency of a commercial heat pump water heater. + + [gal per hour] An estimate of the maximum volume of hot water in gallons that a storage water heater can supply within an hour that begins @@ -1774,9 +1804,9 @@ - + - [degF/hr] The standby heat loss rate for, e.g., indirect water heaters in degrees per hour. Published in the AHRI Consumer’s Directory of Certified Efficiency Ratings. + The standby heat loss rate for, e.g., indirect or commercial water heaters. Published in the AHRI Consumer’s Directory of Certified Efficiency Ratings. @@ -3775,14 +3805,6 @@ - - - - - - - - @@ -3948,6 +3970,17 @@ Ah is computed by multiplying the discharge current (Amps) by the discharge time (hours). kWh is computed by multiplying the power output (kW) by the discharge time (hours). + + + + + + + + For %/hr enter values as a fraction, i.e. 1.20%/hr = 0.0120 and 0.68%/hr = 0.0068. + + + @@ -5582,7 +5615,7 @@ - + @@ -5591,6 +5624,9 @@ + + Structurally Insulated Panel + diff --git a/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLDataTypes.xsd b/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLDataTypes.xsd index 79c948ce7e..d757659471 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLDataTypes.xsd +++ b/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLDataTypes.xsd @@ -1847,6 +1847,20 @@ + + + + + + + + + + + + + + @@ -4887,4 +4901,19 @@ + + + + + + + + + + + + + + + diff --git a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml index 43f14fe04e..3da497c549 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml +++ b/HPXMLtoOpenStudio/resources/hpxml_schematron/EPvalidator.xml @@ -1402,6 +1402,8 @@ [MechanicalVentilationType=CFIS] + Expected 0 or 1 element(s) for xpath: CFISControls/AdditionalRuntimeOperatingMode + Expected CFISControls/AdditionalRuntimeOperatingMode to be 'air handler fan' or 'supplemental fan' Expected 1 element(s) for xpath: AttachedToHVACDistributionSystem Expected 0 element(s) for xpath: IsSharedSystem[text()="true"] Expected 0 or 1 element(s) for xpath: extension/VentilationOnlyModeAirflowFraction @@ -1410,6 +1412,13 @@ + + [MechanicalVentilationType=CFISWithSupplementalFan] + + Expected 1 element(s) for xpath: SupplementalFan + + + [MechanicalVentilationType=Shared] diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 6a8d6b81bc..79a069254b 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1930,18 +1930,21 @@ def test_mech_ventilation_fans vent_fan.hours_in_operation = 12.0 vent_fan.fan_power = 12.5 vent_fan.cfis_vent_mode_airflow_fraction = 0.5 + vent_fan.cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplemental + vent_fan.cfis_supplemental_fan_idref = vent_fan.id XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 12.0, 12.5, 330, 0.5) + _test_default_mech_vent_values(hpxml_default, false, 12.0, 12.5, 330, 0.5, HPXML::CFISModeSupplemental) # Test defaults w/ CFIS vent_fan.is_shared_system = nil vent_fan.hours_in_operation = nil vent_fan.fan_power = nil vent_fan.cfis_vent_mode_airflow_fraction = nil + vent_fan.cfis_addtl_runtime_operating_mode = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 8.0, 165.0, 330, 1.0) + _test_default_mech_vent_values(hpxml_default, false, 8.0, 165.0, 330, 1.0, HPXML::CFISModeAirHandler) # Test inputs not overridden by defaults w/ ERV hpxml = _create_hpxml('base-mechvent-erv.xml') @@ -3954,7 +3957,7 @@ def _test_default_duct_values(hpxml, supply_locations, return_locations, supply_ end def _test_default_mech_vent_values(hpxml, is_shared_system, hours_in_operation, fan_power, flow_rate, - cfis_vent_mode_airflow_fraction = nil) + cfis_vent_mode_airflow_fraction = nil, cfis_addtl_runtime_operating_mode = nil) vent_fan = hpxml.ventilation_fans.select { |f| f.used_for_whole_building_ventilation }[0] assert_equal(is_shared_system, vent_fan.is_shared_system) @@ -3966,6 +3969,11 @@ def _test_default_mech_vent_values(hpxml, is_shared_system, hours_in_operation, else assert_equal(cfis_vent_mode_airflow_fraction, vent_fan.cfis_vent_mode_airflow_fraction) end + if cfis_addtl_runtime_operating_mode.nil? + assert_nil(vent_fan.cfis_addtl_runtime_operating_mode) + else + assert_equal(cfis_addtl_runtime_operating_mode, vent_fan.cfis_addtl_runtime_operating_mode) + end end def _test_default_kitchen_fan_values(hpxml, quantity, flow_rate, hours_in_operation, fan_power, start_hour) diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index c9b4ad012d..0749ed91d2 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -176,6 +176,7 @@ def test_schematron_error_messages 'invalid-ventilation-fan' => ['Expected 1 element(s) for xpath: UsedForWholeBuildingVentilation[text()="true"] | UsedForLocalVentilation[text()="true"] | UsedForSeasonalCoolingLoadReduction[text()="true"] | UsedForGarageVentilation[text()="true"]'], 'invalid-window-height' => ['Expected DistanceToBottomOfWindow to be greater than DistanceToTopOfWindow [context: /HPXML/Building/BuildingDetails/Enclosure/Windows/Window/Overhangs[number(Depth) > 0], id: "Window2"]'], 'lighting-fractions' => ['Expected sum(LightingGroup/FractionofUnitsInLocation) for Location="interior" to be less than or equal to 1 [context: /HPXML/Building/BuildingDetails/Lighting]'], + 'missing-cfis-supplemental-fan' => ['Expected 1 element(s) for xpath: SupplementalFan'], 'missing-distribution-cfa-served' => ['Expected 1 element(s) for xpath: ../../../ConditionedFloorAreaServed [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts[not(DuctSurfaceArea)], id: "HVACDistribution1"]'], 'missing-duct-area' => ['Expected 1 or more element(s) for xpath: FractionDuctArea | DuctSurfaceArea [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts[DuctLocation], id: "HVACDistribution1"]'], 'missing-duct-location' => ['Expected 0 element(s) for xpath: FractionDuctArea | DuctSurfaceArea [context: /HPXML/Building/BuildingDetails/Systems/HVAC/HVACDistribution/DistributionSystemType/AirDistribution/Ducts[not(DuctLocation)], id: "HVACDistribution1"]'], @@ -445,6 +446,9 @@ def test_schematron_error_messages hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) int_cfl = hpxml.lighting_groups.select { |lg| lg.location == HPXML::LocationInterior && lg.lighting_type == HPXML::LightingTypeCFL }[0] int_cfl.fraction_of_units_in_location = 0.8 + elsif ['missing-cfis-supplemental-fan'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-cfis.xml')) + hpxml.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplemental elsif ['missing-distribution-cfa-served'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) hpxml.hvac_distributions[0].ducts[1].duct_surface_area = nil From 7f8adbf5ab79947be5b9622d7d70f48953604af7 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Wed, 28 Sep 2022 17:37:18 -0600 Subject: [PATCH 02/27] Initial model updates and sample file. --- BuildResidentialHPXML/measure.rb | 2 + BuildResidentialHPXML/measure.xml | 6 +- HPXMLtoOpenStudio/measure.xml | 92 +-- HPXMLtoOpenStudio/resources/airflow.rb | 174 +++-- HPXMLtoOpenStudio/resources/constants.rb | 4 + HPXMLtoOpenStudio/resources/hpxml.rb | 10 + HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 19 +- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 4 +- HPXMLtoOpenStudio/tests/test_airflow.rb | 4 + ReportHPXMLOutput/measure.rb | 2 + ReportHPXMLOutput/measure.xml | 6 +- ReportSimulationOutput/measure.rb | 1 + ReportSimulationOutput/measure.xml | 6 +- tasks.rb | 9 + ...se-mechvent-cfis-airflow-fraction-zero.xml | 3 + .../sample_files/base-mechvent-cfis-dse.xml | 3 + ...-mechvent-cfis-evap-cooler-only-ducted.xml | 3 + .../base-mechvent-cfis-supplemental-fan.xml | 601 ++++++++++++++++++ workflow/sample_files/base-mechvent-cfis.xml | 3 + workflow/tests/hpxml_translator_test.rb | 1 + 20 files changed, 824 insertions(+), 129 deletions(-) create mode 100644 workflow/sample_files/base-mechvent-cfis-supplemental-fan.xml diff --git a/BuildResidentialHPXML/measure.rb b/BuildResidentialHPXML/measure.rb index e5bf0a2fce..733cf2d07a 100644 --- a/BuildResidentialHPXML/measure.rb +++ b/BuildResidentialHPXML/measure.rb @@ -4997,6 +4997,7 @@ def self.set_ventilation_fans(hpxml, args) distribution_system_idref = hvac_distribution.id end + cfis_addtl_runtime_operating_mode = HPXML::CFISModeAirHandler end if args[:mech_vent_num_units_served] > 1 @@ -5029,6 +5030,7 @@ def self.set_ventilation_fans(hpxml, args) hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", fan_type: args[:mech_vent_fan_type], + cfis_addtl_runtime_operating_mode: cfis_addtl_runtime_operating_mode, rated_flow_rate: rated_flow_rate, hours_in_operation: hours_in_operation, used_for_whole_building_ventilation: true, diff --git a/BuildResidentialHPXML/measure.xml b/BuildResidentialHPXML/measure.xml index 7b65c5675f..b8cce2ff67 100644 --- a/BuildResidentialHPXML/measure.xml +++ b/BuildResidentialHPXML/measure.xml @@ -3,8 +3,8 @@ 3.0 build_residential_hpxml a13a8983-2b01-4930-8af2-42030b6e4233 - 03a79ea8-0073-4958-a3bb-423259bbcdf9 - 20220915T153454Z + 88a40fc4-4a4c-4795-87e4-58c07911a9ef + 20220928T233611Z 2C38F48B BuildResidentialHPXML HPXML Builder @@ -6404,7 +6404,7 @@ measure.rb rb script - 522E2920 + A63F40BB diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 9ee8ec0357..d479b7c75e 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 10580b32-165f-42f6-9cac-c78f14da333c - 20220921T182550Z + f366e020-01cc-4f0a-b070-ade0491d2d6a + 20220928T233613Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -343,12 +343,6 @@ resource B39C3F8E - - constants.rb - rb - resource - 3593C0B1 - xmlhelper.rb rb @@ -367,18 +361,6 @@ resource 2FD98C89 - - hpxml_schema/HPXMLBaseElements.xsd - xsd - resource - 17563F8C - - - hpxml_schema/HPXMLDataTypes.xsd - xsd - resource - 2B0922EC - utility_bills.rb rb @@ -524,75 +506,93 @@ 0D0399FA - hvac_sizing.rb + weather.rb rb resource - 4D0D827D + 84489603 - test_airflow.rb + hotwater_appliances.rb rb - test - 15015829 + resource + 1BAC39B2 - weather.rb + + OpenStudio + 3.3.0 + 3.3.0 + + measure.rb rb + script + DCA18258 + + + hpxml_schema/HPXMLBaseElements.xsd + xsd resource - 84489603 + 618BA3CA - airflow.rb + hpxml_schema/HPXMLDataTypes.xsd + xsd + resource + 33ACE8A5 + + + hvac_sizing.rb rb resource - A2B7F8E1 + DDEA5415 - test_defaults.rb + test_airflow.rb rb test - 7950A1A2 + 49634C4D - hpxml_defaults.rb + airflow.rb rb resource - 6ED20DA1 + E9F3D8D9 - hotwater_appliances.rb + test_defaults.rb + rb + test + BDCEC748 + + + hpxml_defaults.rb rb resource - 1BAC39B2 + A98365E9 hpxml_schematron/EPvalidator.xml xml resource - D133B230 + 4930E951 test_validation.rb rb test - F01525B5 + A2D44955 hpxml.rb rb resource - FBEFBFF9 + 99A6AA48 - - OpenStudio - 3.3.0 - 3.3.0 - - measure.rb + constants.rb rb - script - DCA18258 + resource + 747ABEC3 diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 37c8564b31..6c9895f4f2 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -51,11 +51,16 @@ def self.apply(model, weather, spaces, hpxml, cfa, nbeds, vent_fans_kitchen = [] vent_fans_bath = [] vent_fans_whf = [] + vent_fans_cfis_suppl = [] hpxml.ventilation_fans.each do |vent_fan| next unless vent_fan.hours_in_operation.nil? || vent_fan.hours_in_operation > 0 if vent_fan.used_for_whole_building_ventilation - vent_fans_mech << vent_fan + if not vent_fan.is_cfis_supplemental_fan? + vent_fans_mech << vent_fan + else + vent_fans_cfis_suppl << vent_fan + end elsif vent_fan.used_for_seasonal_cooling_load_reduction vent_fans_whf << vent_fan elsif vent_fan.used_for_local_ventilation @@ -110,7 +115,7 @@ def self.apply(model, weather, spaces, hpxml, cfa, nbeds, hpxml.header.natvent_days_per_week) apply_infiltration_and_ventilation_fans(model, weather, hpxml.site, vent_fans_mech, vent_fans_kitchen, vent_fans_bath, vented_dryers, hpxml.building_construction.has_flue_or_chimney, hpxml.air_infiltration_measurements, - vented_attic, vented_crawl, clg_ssn_sensor, schedules_file) + vented_attic, vented_crawl, clg_ssn_sensor, schedules_file, vent_fans_cfis_suppl) end def self.get_default_fraction_of_windows_operable() @@ -516,7 +521,7 @@ def self.initialize_cfis(model, vent_fans_mech, airloop_map) index = 0 vent_fans_mech.each do |vent_mech| - next unless (vent_mech.fan_type == HPXML::MechVentTypeCFIS) + next if vent_mech.fan_type != HPXML::MechVentTypeCFIS vent_mech.distribution_system.hvac_systems.map { |system| system.id }.each do |cfis_id| next if airloop_map[cfis_id].nil? @@ -1058,37 +1063,41 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) if @cfis_airloop.values.include? object - # Calculate additional CFIS duct losses during fan-only mode cfis_id = @cfis_airloop.key(object) vent_mech = vent_fans_mech.select { |vfm| vfm.id == cfis_id }[0] - duct_program.addLine("If #{@cfis_f_damper_extra_open_var[cfis_id].name} > 0") - duct_program.addLine(" Set cfis_m3s = (#{@fan_mfr_max_var[object].name} * #{vent_mech.cfis_vent_mode_airflow_fraction} / 1.16097654)") # Density of 1.16097654 was back calculated using E+ results - duct_program.addLine(" Set #{@fan_rtf_var[object].name} = #{@cfis_f_damper_extra_open_var[cfis_id].name}") # Need to use global vars to sync duct_program and infiltration program of different calling points - duct_program.addLine(" Set #{ah_vfr_var.name} = #{@fan_rtf_var[object].name}*cfis_m3s") - duct_program.addLine(" Set rho_in = (@RhoAirFnPbTdbW #{@pbar_sensor.name} #{@tin_sensor.name} #{@win_sensor.name})") - duct_program.addLine(" Set #{ah_mfr_var.name} = #{ah_vfr_var.name} * rho_in") - duct_program.addLine(" Set #{ah_tout_var.name} = #{ra_t_sensor.name}") - duct_program.addLine(" Set #{ah_wout_var.name} = #{ra_w_sensor.name}") - duct_program.addLine(" Set #{ra_t_var.name} = #{ra_t_sensor.name}") - duct_program.addLine(" Set #{ra_w_var.name} = #{ra_w_sensor.name}") - duct_program.addLine(" Run #{duct_subroutine.name}") - duct_program.addLine(" Set #{duct_actuators['cfis_supply_sens_lk_to_liv'].name} = #{duct_vars['supply_sens_lk_to_liv'].name}") - duct_program.addLine(" Set #{duct_actuators['cfis_supply_lat_lk_to_liv'].name} = #{duct_vars['supply_lat_lk_to_liv'].name}") - duct_program.addLine(" Set #{duct_actuators['cfis_supply_cond_to_liv'].name} = #{duct_vars['supply_cond_to_liv'].name}") - duct_program.addLine(" Set #{duct_actuators['cfis_return_sens_lk_to_rp'].name} = #{duct_vars['return_sens_lk_to_rp'].name}") - duct_program.addLine(" Set #{duct_actuators['cfis_return_lat_lk_to_rp'].name} = #{duct_vars['return_lat_lk_to_rp'].name}") - duct_program.addLine(" Set #{duct_actuators['cfis_return_cond_to_rp'].name} = #{duct_vars['return_cond_to_rp'].name}") - duct_program.addLine(" Set #{duct_actuators['cfis_return_cond_to_dz'].name} = #{duct_vars['return_cond_to_dz'].name}") - duct_program.addLine(" Set #{duct_actuators['cfis_supply_cond_to_dz'].name} = #{duct_vars['supply_cond_to_dz'].name}") - duct_program.addLine(" Set #{duct_actuators['cfis_supply_sens_lk_to_dz'].name} = #{duct_vars['supply_sens_lk_to_dz'].name}") - duct_program.addLine(" Set #{duct_actuators['cfis_supply_lat_lk_to_dz'].name} = #{duct_vars['supply_lat_lk_to_dz'].name}") - if not duct_actuators['dz_to_liv_flow_rate'].nil? - duct_program.addLine(" Set #{duct_actuators['cfis_dz_to_liv_flow_rate'].name} = #{duct_vars['dz_to_liv_flow_rate'].name}") - end - if not duct_actuators['liv_to_dz_flow_rate'].nil? - duct_program.addLine(" Set #{duct_actuators['cfis_liv_to_dz_flow_rate'].name} = #{duct_vars['liv_to_dz_flow_rate'].name}") + + add_cfis_duct_losses = (vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeAirHandler) + if add_cfis_duct_losses + # Calculate additional CFIS duct losses during fan-only mode + duct_program.addLine("If #{@cfis_f_damper_extra_open_var[cfis_id].name} > 0") + duct_program.addLine(" Set cfis_m3s = (#{@fan_mfr_max_var[object].name} * #{vent_mech.cfis_vent_mode_airflow_fraction} / 1.16097654)") # Density of 1.16097654 was back calculated using E+ results + duct_program.addLine(" Set #{@fan_rtf_var[object].name} = #{@cfis_f_damper_extra_open_var[cfis_id].name}") # Need to use global vars to sync duct_program and infiltration program of different calling points + duct_program.addLine(" Set #{ah_vfr_var.name} = #{@fan_rtf_var[object].name}*cfis_m3s") + duct_program.addLine(" Set rho_in = (@RhoAirFnPbTdbW #{@pbar_sensor.name} #{@tin_sensor.name} #{@win_sensor.name})") + duct_program.addLine(" Set #{ah_mfr_var.name} = #{ah_vfr_var.name} * rho_in") + duct_program.addLine(" Set #{ah_tout_var.name} = #{ra_t_sensor.name}") + duct_program.addLine(" Set #{ah_wout_var.name} = #{ra_w_sensor.name}") + duct_program.addLine(" Set #{ra_t_var.name} = #{ra_t_sensor.name}") + duct_program.addLine(" Set #{ra_w_var.name} = #{ra_w_sensor.name}") + duct_program.addLine(" Run #{duct_subroutine.name}") + duct_program.addLine(" Set #{duct_actuators['cfis_supply_sens_lk_to_liv'].name} = #{duct_vars['supply_sens_lk_to_liv'].name}") + duct_program.addLine(" Set #{duct_actuators['cfis_supply_lat_lk_to_liv'].name} = #{duct_vars['supply_lat_lk_to_liv'].name}") + duct_program.addLine(" Set #{duct_actuators['cfis_supply_cond_to_liv'].name} = #{duct_vars['supply_cond_to_liv'].name}") + duct_program.addLine(" Set #{duct_actuators['cfis_return_sens_lk_to_rp'].name} = #{duct_vars['return_sens_lk_to_rp'].name}") + duct_program.addLine(" Set #{duct_actuators['cfis_return_lat_lk_to_rp'].name} = #{duct_vars['return_lat_lk_to_rp'].name}") + duct_program.addLine(" Set #{duct_actuators['cfis_return_cond_to_rp'].name} = #{duct_vars['return_cond_to_rp'].name}") + duct_program.addLine(" Set #{duct_actuators['cfis_return_cond_to_dz'].name} = #{duct_vars['return_cond_to_dz'].name}") + duct_program.addLine(" Set #{duct_actuators['cfis_supply_cond_to_dz'].name} = #{duct_vars['supply_cond_to_dz'].name}") + duct_program.addLine(" Set #{duct_actuators['cfis_supply_sens_lk_to_dz'].name} = #{duct_vars['supply_sens_lk_to_dz'].name}") + duct_program.addLine(" Set #{duct_actuators['cfis_supply_lat_lk_to_dz'].name} = #{duct_vars['supply_lat_lk_to_dz'].name}") + if not duct_actuators['dz_to_liv_flow_rate'].nil? + duct_program.addLine(" Set #{duct_actuators['cfis_dz_to_liv_flow_rate'].name} = #{duct_vars['dz_to_liv_flow_rate'].name}") + end + if not duct_actuators['liv_to_dz_flow_rate'].nil? + duct_program.addLine(" Set #{duct_actuators['cfis_liv_to_dz_flow_rate'].name} = #{duct_vars['liv_to_dz_flow_rate'].name}") + end + duct_program.addLine('Else') end - duct_program.addLine('Else') duct_program.addLine(" Set #{duct_actuators['cfis_supply_sens_lk_to_liv'].name} = 0") duct_program.addLine(" Set #{duct_actuators['cfis_supply_lat_lk_to_liv'].name} = 0") duct_program.addLine(" Set #{duct_actuators['cfis_supply_cond_to_liv'].name} = 0") @@ -1105,7 +1114,9 @@ def self.apply_ducts(model, ducts, object, vent_fans_mech) if not duct_actuators['liv_to_dz_flow_rate'].nil? duct_program.addLine(" Set #{duct_actuators['cfis_liv_to_dz_flow_rate'].name} = 0") end - duct_program.addLine('EndIf') + if add_cfis_duct_losses + duct_program.addLine('EndIf') + end end @@ -1349,7 +1360,7 @@ def self.calc_hrv_erv_effectiveness(vent_mech_fans) return hrv_erv_effectiveness_map end - def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator) + def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl_fan_actuator) infil_program.addLine('Set QWHV_cfis_oa = 0.0') vent_mech_fans.each do |vent_mech| @@ -1358,6 +1369,9 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator) infil_program.addLine("Set fan_rtf_hvac = fan_rtf_hvac + #{rtf_sensor.name}") end infil_program.addLine("Set CFIS_fan_w = #{vent_mech.unit_fan_power}") # W + if vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeSupplemental + infil_program.addLine("Set CFIS_suppl_fan_w = #{vent_mech.cfis_supplemental_fan.unit_fan_power}") # W + end infil_program.addLine('If @ABS(Minute - ZoneTimeStep*60) < 0.1') infil_program.addLine(" Set #{@cfis_t_sum_open_var[vent_mech.id].name} = 0") # New hour, time on summation re-initializes to 0 @@ -1380,7 +1394,15 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator) infil_program.addLine(' Set cfis_f_damper_open = cfis_fan_runtime/(60.0*ZoneTimeStep)') # calculates the portion of the current timestep the CFIS damper needs to be open infil_program.addLine(" Set #{@cfis_t_sum_open_var[vent_mech.id].name} = #{@cfis_t_sum_open_var[vent_mech.id].name}+cfis_fan_runtime") infil_program.addLine(" Set #{@cfis_f_damper_extra_open_var[vent_mech.id].name} = @Max (cfis_f_damper_open-fan_rtf_hvac) 0.0") - infil_program.addLine(" Set #{cfis_fan_actuator.name} = #{cfis_fan_actuator.name} + CFIS_fan_w*#{@cfis_f_damper_extra_open_var[vent_mech.id].name}") + + if vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeAirHandler + # Air handler meets additional runtime requirement + infil_program.addLine(" Set #{cfis_fan_actuator.name} = #{cfis_fan_actuator.name} + CFIS_fan_w*#{@cfis_f_damper_extra_open_var[vent_mech.id].name}") + elsif vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeSupplemental + infil_program.addLine(" Set cfis_suppl_f = #{@cfis_f_damper_extra_open_var[vent_mech.id].name} / (#{vent_mech.cfis_supplemental_fan.oa_unit_flow_rate} / #{vent_mech.oa_unit_flow_rate})") + infil_program.addLine(" Set #{cfis_suppl_fan_actuator.name} = #{cfis_suppl_fan_actuator.name} + CFIS_suppl_fan_w*cfis_suppl_f") + end + infil_program.addLine(' Else') # No need to turn on blower for extra ventilation infil_program.addLine(' Set cfis_fan_runtime = fan_rtf_hvac*ZoneTimeStep*60') @@ -1402,7 +1424,27 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator) end end - def self.add_ee_for_vent_fan_power(model, obj_name, frac_lost, is_cfis, pow = 0.0) + def self.add_ee_for_vent_fan_power(model, obj_name, sup_fans = nil, exh_fans = nil, bal_fans = nil, erv_hrv_fans = nil) + # Calculate fan heat fraction + # 1.0: Fan heat does not enter space (e.g., exhaust) + # 0.0: Fan heat does enter space (e.g., supply) + if obj_name == Constants.ObjectNameMechanicalVentilationHouseFanCFIS + fan_heat_lost_fraction = 0.0 + else + # Calculate total fan power + sup_fans_w = sup_fans.map { |f| f.average_unit_fan_power }.sum(0.0) + exh_fans_w = exh_fans.map { |f| f.average_unit_fan_power }.sum(0.0) + bal_fans_w = (bal_fans + erv_hrv_fans).map { |f| f.average_unit_fan_power }.sum(0.0) + tot_fans_w = sup_fans_w + exh_fans_w + bal_fans_w + + # Calculate weighted-average value + if tot_fans_w > 0.0 + fan_heat_lost_fraction = (1.0 * exh_fans_w + 0.0 * sup_fans_w + 0.5 * bal_fans_w) / tot_fans_w + else + fan_heat_lost_fraction = 1.0 + end + end + equip_def = OpenStudio::Model::ElectricEquipmentDefinition.new(model) equip_def.setName(obj_name) equip = OpenStudio::Model::ElectricEquipment.new(equip_def) @@ -1412,17 +1454,18 @@ def self.add_ee_for_vent_fan_power(model, obj_name, frac_lost, is_cfis, pow = 0. equip_def.setFractionLatent(0) equip.setSchedule(model.alwaysOnDiscreteSchedule) equip.setEndUseSubcategory(Constants.ObjectNameMechanicalVentilation) - equip_def.setFractionLost(frac_lost) - vent_mech_fan_actuator = nil - if is_cfis # actuate its power level in EMS - equip_def.setFractionLost(0.0) # Fan heat does enter space - vent_mech_fan_actuator = OpenStudio::Model::EnergyManagementSystemActuator.new(equip, *EPlus::EMSActuatorElectricEquipmentPower) - vent_mech_fan_actuator.setName("#{equip.name} act") - else - equip_def.setDesignLevel(pow) + equip_def.setFractionLost(fan_heat_lost_fraction) + equip_actuator = nil + if [Constants.ObjectNameMechanicalVentilationHouseFanCFIS, + Constants.ObjectNameMechanicalVentilationHouseFanCFISSupplFan].include? obj_name # actuate its power level in EMS + equip_actuator = OpenStudio::Model::EnergyManagementSystemActuator.new(equip, *EPlus::EMSActuatorElectricEquipmentPower) + equip_actuator.setName("#{equip.name} act") + end + if not tot_fans_w.nil? + equip_def.setDesignLevel(tot_fans_w) end - return vent_mech_fan_actuator + return equip_actuator end def self.setup_mech_vent_vars_actuators(model:, program:) @@ -1619,7 +1662,7 @@ def self.calculate_precond_loads(model, infil_program, vent_mech_preheat, vent_m end def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_mech, living_ach50, living_const_ach, weather, vent_fans_kitchen, vent_fans_bath, vented_dryers, - has_flue_chimney, clg_ssn_sensor, schedules_file) + has_flue_chimney, clg_ssn_sensor, schedules_file, vent_fans_cfis_suppl) # Categorize fans into different types vent_mech_preheat = vent_fans_mech.select { |vent_mech| (not vent_mech.preheating_efficiency_cop.nil?) } vent_mech_precool = vent_fans_mech.select { |vent_mech| (not vent_mech.precooling_efficiency_cop.nil?) } @@ -1630,31 +1673,32 @@ def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_me vent_mech_bal_tot = vent_fans_mech.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeBalanced } vent_mech_erv_hrv_tot = vent_fans_mech.select { |vent_mech| [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? vent_mech.fan_type } - # Non-CFIS fan power - sup_vent_mech_fan_w = vent_mech_sup_tot.map { |vent_mech| vent_mech.average_unit_fan_power }.sum(0.0) - exh_vent_mech_fan_w = vent_mech_exh_tot.map { |vent_mech| vent_mech.average_unit_fan_power }.sum(0.0) + add_ee_for_vent_fan_power(model, Constants.ObjectNameMechanicalVentilationHouseFan, + vent_mech_sup_tot, vent_mech_exh_tot, vent_mech_bal_tot, vent_mech_erv_hrv_tot) - # ERV/HRV and balanced system fan power combined altogether - bal_vent_mech_fan_w = (vent_mech_bal_tot + vent_mech_erv_hrv_tot).map { |vent_mech| vent_mech.average_unit_fan_power }.sum(0.0) - total_sup_exh_bal_w = sup_vent_mech_fan_w + exh_vent_mech_fan_w + bal_vent_mech_fan_w - # 1.0: Fan heat does not enter space, 0.0: Fan heat does enter space, 0.5: Supply fan heat enters space - if total_sup_exh_bal_w > 0.0 - fan_heat_lost_fraction = (1.0 * exh_vent_mech_fan_w + 0.0 * sup_vent_mech_fan_w + 0.5 * bal_vent_mech_fan_w) / total_sup_exh_bal_w + # CFIS fan power + cfis_fan_actuator = add_ee_for_vent_fan_power(model, Constants.ObjectNameMechanicalVentilationHouseFanCFIS) # Fan heat enters space + + # CFIS supplemental fan power + if not vent_fans_cfis_suppl.empty? + vent_mech_cfis_suppl_sup_tot = vent_fans_cfis_suppl.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeSupply } + vent_mech_cfis_suppl_exh_tot = vent_fans_cfis_suppl.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeExhaust } + vent_mech_cfis_suppl_bal_tot = vent_fans_cfis_suppl.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeBalanced } + vent_mech_cfis_suppl_erv_hrv_tot = vent_fans_cfis_suppl.select { |vent_mech| [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? vent_mech.fan_type } + cfis_suppl_fan_actuator = add_ee_for_vent_fan_power(model, Constants.ObjectNameMechanicalVentilationHouseFanCFISSupplFan, + vent_mech_cfis_suppl_sup_tot, vent_mech_cfis_suppl_exh_tot, + vent_mech_cfis_suppl_bal_tot, vent_mech_cfis_suppl_erv_hrv_tot) else - fan_heat_lost_fraction = 1.0 + cfis_suppl_fan_actuator = nil end - add_ee_for_vent_fan_power(model, Constants.ObjectNameMechanicalVentilationHouseFan, fan_heat_lost_fraction, false, total_sup_exh_bal_w) - - # CFIS fan power - cfis_fan_actuator = add_ee_for_vent_fan_power(model, Constants.ObjectNameMechanicalVentilationHouseFanCFIS, 0.0, true) - # Average in-unit cfms (include recirculation from in unit cfms for shared systems) + # Average in-unit CFMs (include recirculation from in unit CFMs for shared systems) sup_cfm_tot = vent_mech_sup_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) exh_cfm_tot = vent_mech_exh_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) bal_cfm_tot = vent_mech_bal_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) erv_hrv_cfm_tot = vent_mech_erv_hrv_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) - # Calculate effectivenesses for all ERV/HRV and store results in a hash + # Calculate effectiveness for all ERV/HRV and store results in a hash hrv_erv_effectiveness_map = calc_hrv_erv_effectiveness(vent_mech_erv_hrv_tot) infil_flow = OpenStudio::Model::SpaceInfiltrationDesignFlowRate.new(model) @@ -1676,7 +1720,8 @@ def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_me # Apply CFIS infil_program.addLine("Set #{cfis_fan_actuator.name} = 0.0") - apply_cfis(infil_program, vent_mech_cfis_tot, cfis_fan_actuator) + infil_program.addLine("Set #{cfis_suppl_fan_actuator.name} = 0.0") unless cfis_suppl_fan_actuator.nil? + apply_cfis(infil_program, vent_mech_cfis_tot, cfis_fan_actuator, cfis_suppl_fan_actuator) # Calculate Qfan, Qinf_adj # Calculate adjusted infiltration based on mechanical ventilation system @@ -1702,7 +1747,8 @@ def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_me end def self.apply_infiltration_and_ventilation_fans(model, weather, site, vent_fans_mech, vent_fans_kitchen, vent_fans_bath, vented_dryers, - has_flue_chimney, air_infils, vented_attic, vented_crawl, clg_ssn_sensor, schedules_file) + has_flue_chimney, air_infils, vented_attic, vented_crawl, clg_ssn_sensor, schedules_file, + vent_fans_cfis_suppl) # Get living space infiltration living_ach50 = nil living_const_ach = nil @@ -1733,7 +1779,7 @@ def self.apply_infiltration_and_ventilation_fans(model, weather, site, vent_fans # Infiltration/ventilation for conditioned space apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_mech, living_ach50, living_const_ach, weather, vent_fans_kitchen, vent_fans_bath, vented_dryers, - has_flue_chimney, clg_ssn_sensor, schedules_file) + has_flue_chimney, clg_ssn_sensor, schedules_file, vent_fans_cfis_suppl) end def self.apply_infiltration_to_conditioned(site, living_ach50, living_const_ach, infil_program, weather, has_flue_chimney) diff --git a/HPXMLtoOpenStudio/resources/constants.rb b/HPXMLtoOpenStudio/resources/constants.rb index c72960eba6..39ba961379 100644 --- a/HPXMLtoOpenStudio/resources/constants.rb +++ b/HPXMLtoOpenStudio/resources/constants.rb @@ -274,6 +274,10 @@ def self.ObjectNameMechanicalVentilationHouseFanCFIS return 'mech vent house fan cfis' end + def self.ObjectNameMechanicalVentilationHouseFanCFISSupplFan + return 'mech vent house fan cfis suppl' + end + def self.ObjectNameMechanicalVentilationBathFan return 'mech vent bath fan' end diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index d1885478d5..d6b8be3d7e 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -4544,6 +4544,16 @@ def cfis_supplemental_fan fail "CFIS Supplemental Fan '#{@cfis_supplemental_fan_idref}' not found for ventilation fan '#{@id}'." end + def is_cfis_supplemental_fan? + @hpxml_object.ventilation_fans.each do |ventilation_fan| + next unless ventilation_fan.fan_type == MechVentTypeCFIS + next unless ventilation_fan.cfis_supplemental_fan_idref == @id + + return true + end + return false + end + def delete @hpxml_object.ventilation_fans.delete(self) end diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index c0e2dc78fd..0a67df146b 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -1549,6 +1549,7 @@ def self.apply_ventilation_fans(hpxml, infil_measurements, weather, cfa, nbeds) hpxml.ventilation_fans.each do |vent_fan| next unless vent_fan.used_for_whole_building_ventilation + # FIXME: Check which of these apply for a CFIS supplemental fan if vent_fan.is_shared_system.nil? vent_fan.is_shared_system = false vent_fan.is_shared_system_isdefaulted = true @@ -1569,15 +1570,15 @@ def self.apply_ventilation_fans(hpxml, infil_measurements, weather, cfa, nbeds) vent_fan.fan_power = (vent_fan.flow_rate * Airflow.get_default_mech_vent_fan_power(vent_fan)).round(1) vent_fan.fan_power_isdefaulted = true end - if vent_fan.fan_type == HPXML::MechVentTypeCFIS - if vent_fan.cfis_vent_mode_airflow_fraction.nil? - vent_fan.cfis_vent_mode_airflow_fraction = 1.0 - vent_fan.cfis_vent_mode_airflow_fraction_isdefaulted = true - end - if vent_fan.cfis_addtl_runtime_operating_mode.nil? - vent_fan.cfis_addtl_runtime_operating_mode = HPXML::CFISModeAirHandler - vent_fan.cfis_addtl_runtime_operating_mode_isdefaulted = true - end + next unless vent_fan.fan_type == HPXML::MechVentTypeCFIS + + if vent_fan.cfis_vent_mode_airflow_fraction.nil? + vent_fan.cfis_vent_mode_airflow_fraction = 1.0 + vent_fan.cfis_vent_mode_airflow_fraction_isdefaulted = true + end + if vent_fan.cfis_addtl_runtime_operating_mode.nil? + vent_fan.cfis_addtl_runtime_operating_mode = HPXML::CFISModeAirHandler + vent_fan.cfis_addtl_runtime_operating_mode_isdefaulted = true end end diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 4ecbdbaa09..b288b36535 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -2005,7 +2005,9 @@ def self.process_heat_pump_adjustment(hvac_sizing_values, weather, hvac, totalCa end def self.get_ventilation_rates() - vent_fans_mech = @hpxml.ventilation_fans.select { |f| f.used_for_whole_building_ventilation && f.flow_rate > 0 && f.hours_in_operation > 0 } + # If CFIS w/ supplemental fan, assume air handler is running most of the hour and can provide + # all ventilation needs (i.e., supplemental fan does not need to run), so skip supplement fan + vent_fans_mech = @hpxml.ventilation_fans.select { |f| f.used_for_whole_building_ventilation && f.flow_rate > 0 && f.hours_in_operation > 0 && !f.is_cfis_supplemental_fan? } if vent_fans_mech.empty? return [0.0, 0.0, 0.0, 0.0, 0.0, 0.0] end diff --git a/HPXMLtoOpenStudio/tests/test_airflow.rb b/HPXMLtoOpenStudio/tests/test_airflow.rb index 15734d06ba..e79f7dc0b0 100644 --- a/HPXMLtoOpenStudio/tests/test_airflow.rb +++ b/HPXMLtoOpenStudio/tests/test_airflow.rb @@ -310,6 +310,10 @@ def test_mechanical_ventilation_cfis assert_equal(1, get_oed_for_ventilation(model, "#{Constants.ObjectNameMechanicalVentilationHouseFan} latent load").size) end + def test_mechanical_ventilation_cfis_with_supplemental_fan + # FIXME: TODO + end + def test_ventilation_bath_kitchen_fans args_hash = {} args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-mechvent-bath-kitchen-fans.xml')) diff --git a/ReportHPXMLOutput/measure.rb b/ReportHPXMLOutput/measure.rb index 0f8fba619c..e98740cc2e 100644 --- a/ReportHPXMLOutput/measure.rb +++ b/ReportHPXMLOutput/measure.rb @@ -308,7 +308,9 @@ def get_bldg_output(hpxml, bldg_type) end elsif bldg_type == BO::SystemsMechanicalVentilationFlowRate hpxml.ventilation_fans.each do |ventilation_fan| + # FIXME: Update for CFIS w/ supplemental fan next unless ventilation_fan.used_for_whole_building_ventilation + next if ventilation_fan.is_cfis_supplemental_fan? bldg_output += ventilation_fan.flow_rate.to_f end diff --git a/ReportHPXMLOutput/measure.xml b/ReportHPXMLOutput/measure.xml index 96d5b947a9..79b0dac263 100644 --- a/ReportHPXMLOutput/measure.xml +++ b/ReportHPXMLOutput/measure.xml @@ -3,8 +3,8 @@ 3.0 report_hpxml_output 9561a0d7-60ad-48c5-8337-2461df044d80 - 7bb635bd-994a-4f18-a40a-8cd4bdf44a2a - 20220912T215712Z + 199431fe-f8e1-4877-9fb9-55f63ca5e4b5 + 20220928T231004Z 9BF1E6AC ReportHPXMLOutput HPXML Output Report @@ -79,7 +79,7 @@ measure.rb rb script - 642666E6 + 93C137F9 diff --git a/ReportSimulationOutput/measure.rb b/ReportSimulationOutput/measure.rb index 25c84f1296..6df47e275b 100644 --- a/ReportSimulationOutput/measure.rb +++ b/ReportSimulationOutput/measure.rb @@ -1380,6 +1380,7 @@ def get_ids(ids, seed_id_map = {}) end @hpxml.ventilation_fans.each do |vent_fan| next unless vent_fan.used_for_whole_building_ventilation + next if vent_fan.is_cfis_supplemental_fan? if not vent_fan.preheating_fuel.nil? prehtg_ids << vent_fan.id diff --git a/ReportSimulationOutput/measure.xml b/ReportSimulationOutput/measure.xml index 221b991eba..63624a5e29 100644 --- a/ReportSimulationOutput/measure.xml +++ b/ReportSimulationOutput/measure.xml @@ -3,8 +3,8 @@ 3.0 report_simulation_output df9d170c-c21a-4130-866d-0d46b06073fd - 1370ace1-fa80-473f-8fab-9e50962134d1 - 20220912T215713Z + 57e41647-9750-44bc-8612-7395b5cdf00c + 20220928T231005Z 9BF1E6AC ReportSimulationOutput HPXML Simulation Output Report @@ -1514,7 +1514,7 @@ measure.rb rb script - B44D38C9 + 3B72F609 diff --git a/tasks.rb b/tasks.rb index 7c6466869e..806141d5d9 100644 --- a/tasks.rb +++ b/tasks.rb @@ -366,6 +366,7 @@ def create_hpxmls 'base-mechvent-cfis-airflow-fraction-zero.xml' => 'base-mechvent-cfis.xml', 'base-mechvent-cfis-dse.xml' => 'base-hvac-dse.xml', 'base-mechvent-cfis-evap-cooler-only-ducted.xml' => 'base-hvac-evap-cooler-only-ducted.xml', + 'base-mechvent-cfis-supplemental-fan.xml' => 'base-mechvent-cfis.xml', 'base-mechvent-erv.xml' => 'base.xml', 'base-mechvent-erv-atre-asre.xml' => 'base.xml', 'base-mechvent-exhaust.xml' => 'base.xml', @@ -4364,6 +4365,14 @@ def apply_hpxml_modification(hpxml_file, hpxml) used_for_whole_building_ventilation: true) elsif ['base-mechvent-cfis-airflow-fraction-zero.xml'].include? hpxml_file hpxml.ventilation_fans[0].cfis_vent_mode_airflow_fraction = 0.0 + elsif ['base-mechvent-cfis-supplemental-fan.xml'].include? hpxml_file + hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeExhaust, + tested_flow_rate: 50, + fan_power: 12, + used_for_whole_building_ventilation: true) + hpxml.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplemental + hpxml.ventilation_fans[0].cfis_supplemental_fan_idref = hpxml.ventilation_fans[1].id end # ---------------- # 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 e1630ddd1d..5f1f6ccf1d 100644 --- a/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml +++ b/workflow/sample_files/base-mechvent-cfis-airflow-fraction-zero.xml @@ -399,6 +399,9 @@ central fan integrated supply + + air handler fan + 330.0 8.0 true diff --git a/workflow/sample_files/base-mechvent-cfis-dse.xml b/workflow/sample_files/base-mechvent-cfis-dse.xml index 377ba1ece9..27e4a3f1ff 100644 --- a/workflow/sample_files/base-mechvent-cfis-dse.xml +++ b/workflow/sample_files/base-mechvent-cfis-dse.xml @@ -371,6 +371,9 @@ central fan integrated supply + + air handler fan + 330.0 8.0 true diff --git a/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml b/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml index a96f1c045f..4ea83cd0af 100644 --- a/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml +++ b/workflow/sample_files/base-mechvent-cfis-evap-cooler-only-ducted.xml @@ -372,6 +372,9 @@ central fan integrated supply + + air handler fan + 330.0 8.0 true diff --git a/workflow/sample_files/base-mechvent-cfis-supplemental-fan.xml b/workflow/sample_files/base-mechvent-cfis-supplemental-fan.xml new file mode 100644 index 0000000000..8507f0aabf --- /dev/null +++ b/workflow/sample_files/base-mechvent-cfis-supplemental-fan.xml @@ -0,0 +1,601 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + base-mechvent-cfis.xml + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + 3.0 + + + 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.4 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living 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 + living space + 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 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + 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 + + + + + + + + + + central fan integrated supply + + supplemental fan + + + 330.0 + 8.0 + true + 300.0 + + + + + exhaust only + 50.0 + true + 12.0 + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 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/workflow/sample_files/base-mechvent-cfis.xml b/workflow/sample_files/base-mechvent-cfis.xml index 98fbab56d2..1beabcb79e 100644 --- a/workflow/sample_files/base-mechvent-cfis.xml +++ b/workflow/sample_files/base-mechvent-cfis.xml @@ -399,6 +399,9 @@ central fan integrated supply + + air handler fan + 330.0 8.0 true diff --git a/workflow/tests/hpxml_translator_test.rb b/workflow/tests/hpxml_translator_test.rb index dbbe3cb2a2..31c981caeb 100644 --- a/workflow/tests/hpxml_translator_test.rb +++ b/workflow/tests/hpxml_translator_test.rb @@ -1208,6 +1208,7 @@ def skip_utility_bill_warning(err_line) assert_equal(hpxml.total_fraction_cool_load_served > 0, clg_energy > 0) # Mechanical Ventilation + # FIXME: Update for CFIS w/ supplemental fan fan_cfis = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_whole_building_ventilation && (vent_mech.fan_type == HPXML::MechVentTypeCFIS) } fan_sup = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_whole_building_ventilation && (vent_mech.fan_type == HPXML::MechVentTypeSupply) } fan_exh = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_whole_building_ventilation && (vent_mech.fan_type == HPXML::MechVentTypeExhaust) } From 731386c05e7d42f12001020418630e6290d8d088 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Thu, 29 Sep 2022 09:28:09 -0600 Subject: [PATCH 03/27] Revert PTACHeating change. --- .../resources/hpxml_schema/HPXMLBaseElements.xsd | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLBaseElements.xsd b/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLBaseElements.xsd index 2ac015de9a..f405708178 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLBaseElements.xsd +++ b/HPXMLtoOpenStudio/resources/hpxml_schema/HPXMLBaseElements.xsd @@ -3805,6 +3805,14 @@
+ + + + + + + + From 87ac9dbb285ee53aaf502e412d7c1d7ab73d618a Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Thu, 29 Sep 2022 09:29:14 -0600 Subject: [PATCH 04/27] Handle outdoor air impact of supplemental fan. (Still need to handle HRV/ERV effectiveness.) --- HPXMLtoOpenStudio/measure.xml | 60 +- HPXMLtoOpenStudio/resources/airflow.rb | 97 +-- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 4 +- HPXMLtoOpenStudio/tests/test_airflow.rb | 6 +- HPXMLtoOpenStudio/tests/test_validation.rb | 5 + tasks.rb | 18 +- ...e-multifamily-shared-mechvent-multiple.xml | 3 + ...echvent-cfis-supplemental-exhaust-fan.xml} | 0 ...ase-mechvent-cfis-supplemental-hrv-fan.xml | 602 ++++++++++++++++++ .../sample_files/base-mechvent-multiple.xml | 7 + 10 files changed, 724 insertions(+), 78 deletions(-) rename workflow/sample_files/{base-mechvent-cfis-supplemental-fan.xml => base-mechvent-cfis-supplemental-exhaust-fan.xml} (100%) create mode 100644 workflow/sample_files/base-mechvent-cfis-supplemental-hrv-fan.xml diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index ed5a8dbd36..049e33dc4b 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 8f712b66-80a2-48bf-8ebe-cf7af82d702e - 20220928T234417Z + f22e93e4-fdea-4327-a48b-6ccd13966105 + 20220929T152856Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -493,30 +493,12 @@ resource 1BAC39B2 - - hpxml_schema/HPXMLBaseElements.xsd - xsd - resource - 618BA3CA - hpxml_schema/HPXMLDataTypes.xsd xsd resource 33ACE8A5 - - test_airflow.rb - rb - test - 49634C4D - - - airflow.rb - rb - resource - E9F3D8D9 - constants.rb rb @@ -558,12 +540,6 @@ script 927B84D4 - - hvac_sizing.rb - rb - resource - 11791DAA - test_defaults.rb rb @@ -583,16 +559,40 @@ 2A2A07C2 - test_validation.rb + hpxml.rb + rb + resource + FD5E3DD2 + + + hpxml_schema/HPXMLBaseElements.xsd + xsd + resource + A732A831 + + + test_airflow.rb rb test - CCB70FB7 + 27E83822 - hpxml.rb + airflow.rb rb resource - FD5E3DD2 + 6F143128 + + + hvac_sizing.rb + rb + resource + EE978114 + + + test_validation.rb + rb + test + 23FC640F diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 6c9895f4f2..03c730d65f 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -1268,10 +1268,10 @@ def self.apply_dryer_exhaust(model, vented_dryer, schedules_file, index) return obj_sch_sensor, cfm_mult end - def self.calc_hrv_erv_effectiveness(vent_mech_fans) + def self.calc_hrv_erv_effectiveness(vent_mech_fans, vent_mech_cfis_suppl_fans = []) # Create the mapping between mech vent instance and the effectiveness results hrv_erv_effectiveness_map = {} - vent_mech_fans.each do |vent_mech| + (vent_mech_fans + vent_mech_cfis_suppl_fans).each do |vent_mech| hrv_erv_effectiveness_map[vent_mech] = {} vent_mech_cfm = vent_mech.average_oa_unit_flow_rate @@ -1361,56 +1361,64 @@ def self.calc_hrv_erv_effectiveness(vent_mech_fans) end def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl_fan_actuator) - infil_program.addLine('Set QWHV_cfis_oa = 0.0') + infil_program.addLine('Set QWHV_cfis = 0.0') + infil_program.addLine('Set QWHV_cfis_suppl_sup = 0.0') + infil_program.addLine('Set QWHV_cfis_suppl_exh = 0.0') vent_mech_fans.each do |vent_mech| infil_program.addLine('Set fan_rtf_hvac = 0') @fan_rtf_sensor[@cfis_airloop[vent_mech.id]].each do |rtf_sensor| infil_program.addLine("Set fan_rtf_hvac = fan_rtf_hvac + #{rtf_sensor.name}") end - infil_program.addLine("Set CFIS_fan_w = #{vent_mech.unit_fan_power}") # W - if vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeSupplemental - infil_program.addLine("Set CFIS_suppl_fan_w = #{vent_mech.cfis_supplemental_fan.unit_fan_power}") # W - end + infil_program.addLine("Set cfis_fan_w = #{vent_mech.unit_fan_power}") # W infil_program.addLine('If @ABS(Minute - ZoneTimeStep*60) < 0.1') infil_program.addLine(" Set #{@cfis_t_sum_open_var[vent_mech.id].name} = 0") # New hour, time on summation re-initializes to 0 infil_program.addLine('EndIf') cfis_open_time = [vent_mech.hours_in_operation / 24.0 * 60.0, 59.999].min # Minimum open time in minutes - infil_program.addLine("Set CFIS_t_min_hr_open = #{cfis_open_time}") # minutes per hour the CFIS damper is open - infil_program.addLine("Set CFIS_Q_duct_oa = #{UnitConversions.convert(vent_mech.oa_unit_flow_rate, 'cfm', 'm^3/s')}") + infil_program.addLine("Set cfis_t_min_hr_open = #{cfis_open_time}") # minutes per hour the CFIS damper is open + infil_program.addLine("Set cfis_Q_duct_oa = #{UnitConversions.convert(vent_mech.oa_unit_flow_rate, 'cfm', 'm^3/s')}") infil_program.addLine('Set cfis_f_damper_open = 0') # fraction of the timestep the CFIS damper is open infil_program.addLine("Set #{@cfis_f_damper_extra_open_var[vent_mech.id].name} = 0") # additional runtime fraction to meet min/hr - infil_program.addLine("If #{@cfis_t_sum_open_var[vent_mech.id].name} < CFIS_t_min_hr_open") - infil_program.addLine(" Set CFIS_t_fan_on = 60 - (CFIS_t_min_hr_open - #{@cfis_t_sum_open_var[vent_mech.id].name})") # minute at which the blower needs to turn on to meet the ventilation requirements + infil_program.addLine("If #{@cfis_t_sum_open_var[vent_mech.id].name} < cfis_t_min_hr_open") + infil_program.addLine(" Set cfis_t_fan_on = 60 - (cfis_t_min_hr_open - #{@cfis_t_sum_open_var[vent_mech.id].name})") # minute at which the blower needs to turn on to meet the ventilation requirements # Evaluate condition of whether supply fan has to run to achieve target minutes per hour of operation - infil_program.addLine(' If (Minute+0.00001) >= CFIS_t_fan_on') - # Consider fan rtf read in current calling point (results of previous time step) + CFIS_t_fan_on based on min/hr requirement and previous EMS results. - infil_program.addLine(' Set cfis_fan_runtime = @Max (@ABS(Minute - CFIS_t_fan_on)) (fan_rtf_hvac * ZoneTimeStep * 60)') + infil_program.addLine(' If (Minute+0.00001) >= cfis_t_fan_on') + # Consider fan rtf read in current calling point (results of previous time step) + cfis_t_fan_on based on min/hr requirement and previous EMS results. + infil_program.addLine(' Set cfis_fan_runtime = @Max (@ABS(Minute - cfis_t_fan_on)) (fan_rtf_hvac * ZoneTimeStep * 60)') # If fan_rtf_hvac, make sure it's not exceeding ventilation requirements - infil_program.addLine(" Set cfis_fan_runtime = @Min cfis_fan_runtime (CFIS_t_min_hr_open - #{@cfis_t_sum_open_var[vent_mech.id].name})") + infil_program.addLine(" Set cfis_fan_runtime = @Min cfis_fan_runtime (cfis_t_min_hr_open - #{@cfis_t_sum_open_var[vent_mech.id].name})") infil_program.addLine(' Set cfis_f_damper_open = cfis_fan_runtime/(60.0*ZoneTimeStep)') # calculates the portion of the current timestep the CFIS damper needs to be open infil_program.addLine(" Set #{@cfis_t_sum_open_var[vent_mech.id].name} = #{@cfis_t_sum_open_var[vent_mech.id].name}+cfis_fan_runtime") infil_program.addLine(" Set #{@cfis_f_damper_extra_open_var[vent_mech.id].name} = @Max (cfis_f_damper_open-fan_rtf_hvac) 0.0") if vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeAirHandler # Air handler meets additional runtime requirement - infil_program.addLine(" Set #{cfis_fan_actuator.name} = #{cfis_fan_actuator.name} + CFIS_fan_w*#{@cfis_f_damper_extra_open_var[vent_mech.id].name}") + infil_program.addLine(" Set #{cfis_fan_actuator.name} = #{cfis_fan_actuator.name} + cfis_fan_w*#{@cfis_f_damper_extra_open_var[vent_mech.id].name}") elsif vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeSupplemental - infil_program.addLine(" Set cfis_suppl_f = #{@cfis_f_damper_extra_open_var[vent_mech.id].name} / (#{vent_mech.cfis_supplemental_fan.oa_unit_flow_rate} / #{vent_mech.oa_unit_flow_rate})") - infil_program.addLine(" Set #{cfis_suppl_fan_actuator.name} = #{cfis_suppl_fan_actuator.name} + CFIS_suppl_fan_w*cfis_suppl_f") + infil_program.addLine(" Set cfis_suppl_Q_duct_oa = #{UnitConversions.convert(vent_mech.cfis_supplemental_fan.oa_unit_flow_rate, 'cfm', 'm^3/s')}") + infil_program.addLine(" Set cfis_suppl_f = #{@cfis_f_damper_extra_open_var[vent_mech.id].name} / (cfis_suppl_Q_duct_oa / cfis_Q_duct_oa)") + infil_program.addLine(" Set cfis_suppl_fan_w = #{vent_mech.cfis_supplemental_fan.unit_fan_power}") # W + infil_program.addLine(" Set #{cfis_suppl_fan_actuator.name} = #{cfis_suppl_fan_actuator.name} + cfis_suppl_fan_w*cfis_suppl_f") + + if vent_mech.cfis_supplemental_fan.includes_supply_air? + infil_program.addLine(' Set QWHV_cfis_suppl_sup = QWHV_cfis_suppl_sup + cfis_suppl_f * cfis_suppl_Q_duct_oa') + end + if vent_mech.cfis_supplemental_fan.includes_exhaust_air? + infil_program.addLine(' Set QWHV_cfis_suppl_exh = QWHV_cfis_suppl_exh + cfis_suppl_f * cfis_suppl_Q_duct_oa') + end end infil_program.addLine(' Else') # No need to turn on blower for extra ventilation infil_program.addLine(' Set cfis_fan_runtime = fan_rtf_hvac*ZoneTimeStep*60') - infil_program.addLine(" If (#{@cfis_t_sum_open_var[vent_mech.id].name}+cfis_fan_runtime) > CFIS_t_min_hr_open") + infil_program.addLine(" If (#{@cfis_t_sum_open_var[vent_mech.id].name}+cfis_fan_runtime) > cfis_t_min_hr_open") # Damper is only open for a portion of this time step to achieve target minutes per hour - infil_program.addLine(" Set cfis_fan_runtime = CFIS_t_min_hr_open-#{@cfis_t_sum_open_var[vent_mech.id].name}") + infil_program.addLine(" Set cfis_fan_runtime = cfis_t_min_hr_open-#{@cfis_t_sum_open_var[vent_mech.id].name}") infil_program.addLine(' Set cfis_f_damper_open = cfis_fan_runtime/(ZoneTimeStep*60)') - infil_program.addLine(" Set #{@cfis_t_sum_open_var[vent_mech.id].name} = CFIS_t_min_hr_open") + infil_program.addLine(" Set #{@cfis_t_sum_open_var[vent_mech.id].name} = cfis_t_min_hr_open") infil_program.addLine(' Else') # Damper is open and using call for heat/cool to supply fresh air infil_program.addLine(' Set cfis_fan_runtime = fan_rtf_hvac*ZoneTimeStep*60') @@ -1419,7 +1427,9 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl infil_program.addLine(' EndIf') # Fan power is metered under fan cooling and heating meters infil_program.addLine(' EndIf') - infil_program.addLine(' Set QWHV_cfis_oa = QWHV_cfis_oa + cfis_f_damper_open * CFIS_Q_duct_oa') + infil_program.addLine(' If QWHV_cfis_suppl_sup + QWHV_cfis_suppl_exh < 0.0001') # Only add CFIS air handler airflow if we have no CFIS supplemental fan airflow + infil_program.addLine(' Set QWHV_cfis = QWHV_cfis + cfis_f_damper_open * cfis_Q_duct_oa') + infil_program.addLine(' EndIf') infil_program.addLine('EndIf') end end @@ -1492,8 +1502,14 @@ def self.setup_mech_vent_vars_actuators(model:, program:) return fan_sens_load_actuator, fan_lat_load_actuator end - def self.apply_infiltration_adjustment_to_conditioned(model, infil_program, vent_fans_kitchen, vent_fans_bath, vented_dryers, - sup_cfm_tot, exh_cfm_tot, bal_cfm_tot, erv_hrv_cfm_tot, infil_flow_actuator, schedules_file) + def self.apply_infiltration_adjustment_to_conditioned(model, infil_program, vent_fans_kitchen, vent_fans_bath, vented_dryers, vent_mech_sup_tot, + vent_mech_exh_tot, vent_mech_bal_tot, vent_mech_erv_hrv_tot, infil_flow_actuator, schedules_file) + # Average in-unit CFMs (include recirculation from in unit CFMs for shared systems) + sup_cfm_tot = vent_mech_sup_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) + exh_cfm_tot = vent_mech_exh_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) + bal_cfm_tot = vent_mech_bal_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) + erv_hrv_cfm_tot = vent_mech_erv_hrv_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) + infil_program.addLine('Set Qrange = 0') vent_fans_kitchen.each_with_index do |vent_kitchen, index| # Electricity impact @@ -1521,12 +1537,11 @@ def self.apply_infiltration_adjustment_to_conditioned(model, infil_program, vent infil_program.addLine("Set Qdryer = Qdryer + #{UnitConversions.convert(vented_dryer.vented_flow_rate * cfm_mult, 'cfm', 'm^3/s').round(5)} * #{obj_sch_sensor.name}") end - infil_program.addLine("Set QWHV_sup = #{UnitConversions.convert(sup_cfm_tot, 'cfm', 'm^3/s').round(5)}") - infil_program.addLine("Set QWHV_exh = #{UnitConversions.convert(exh_cfm_tot, 'cfm', 'm^3/s').round(5)}") - infil_program.addLine("Set QWHV_bal_erv_hrv = #{UnitConversions.convert(bal_cfm_tot + erv_hrv_cfm_tot, 'cfm', 'm^3/s').round(5)}") + infil_program.addLine("Set QWHV_sup = #{UnitConversions.convert(sup_cfm_tot + bal_cfm_tot + erv_hrv_cfm_tot, 'cfm', 'm^3/s').round(5)}") + infil_program.addLine("Set QWHV_exh = #{UnitConversions.convert(exh_cfm_tot + bal_cfm_tot + erv_hrv_cfm_tot, 'cfm', 'm^3/s').round(5)}") - infil_program.addLine('Set Qexhaust = Qrange + Qbath + Qdryer + QWHV_exh + QWHV_bal_erv_hrv') - infil_program.addLine('Set Qsupply = QWHV_sup + QWHV_bal_erv_hrv + QWHV_cfis_oa') + infil_program.addLine('Set Qexhaust = Qrange + Qbath + Qdryer + QWHV_exh + QWHV_cfis_suppl_exh') + infil_program.addLine('Set Qsupply = QWHV_sup + QWHV_cfis + QWHV_cfis_suppl_sup') infil_program.addLine('Set Qfan = (@Max Qexhaust Qsupply)') if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') # Follow ASHRAE 62.2-2016, Normative Appendix C equations for time-varying total airflow @@ -1552,7 +1567,7 @@ def self.apply_infiltration_adjustment_to_conditioned(model, infil_program, vent end def self.calculate_fan_loads(infil_program, vent_mech_erv_hrv_tot, hrv_erv_effectiveness_map, fan_sens_load_actuator, fan_lat_load_actuator, q_var, preconditioned = false) - # Variables for combined effectivenesses + # Variables for combined effectiveness infil_program.addLine('Set Effectiveness_Sens = 0.0') infil_program.addLine('Set Effectiveness_Lat = 0.0') @@ -1673,6 +1688,7 @@ def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_me vent_mech_bal_tot = vent_fans_mech.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeBalanced } vent_mech_erv_hrv_tot = vent_fans_mech.select { |vent_mech| [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? vent_mech.fan_type } + # Non-CFIS fan power add_ee_for_vent_fan_power(model, Constants.ObjectNameMechanicalVentilationHouseFan, vent_mech_sup_tot, vent_mech_exh_tot, vent_mech_bal_tot, vent_mech_erv_hrv_tot) @@ -1680,11 +1696,11 @@ def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_me cfis_fan_actuator = add_ee_for_vent_fan_power(model, Constants.ObjectNameMechanicalVentilationHouseFanCFIS) # Fan heat enters space # CFIS supplemental fan power + vent_mech_cfis_suppl_sup_tot = vent_fans_cfis_suppl.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeSupply } + vent_mech_cfis_suppl_exh_tot = vent_fans_cfis_suppl.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeExhaust } + vent_mech_cfis_suppl_bal_tot = vent_fans_cfis_suppl.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeBalanced } + vent_mech_cfis_suppl_erv_hrv_tot = vent_fans_cfis_suppl.select { |vent_mech| [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? vent_mech.fan_type } if not vent_fans_cfis_suppl.empty? - vent_mech_cfis_suppl_sup_tot = vent_fans_cfis_suppl.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeSupply } - vent_mech_cfis_suppl_exh_tot = vent_fans_cfis_suppl.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeExhaust } - vent_mech_cfis_suppl_bal_tot = vent_fans_cfis_suppl.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeBalanced } - vent_mech_cfis_suppl_erv_hrv_tot = vent_fans_cfis_suppl.select { |vent_mech| [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? vent_mech.fan_type } cfis_suppl_fan_actuator = add_ee_for_vent_fan_power(model, Constants.ObjectNameMechanicalVentilationHouseFanCFISSupplFan, vent_mech_cfis_suppl_sup_tot, vent_mech_cfis_suppl_exh_tot, vent_mech_cfis_suppl_bal_tot, vent_mech_cfis_suppl_erv_hrv_tot) @@ -1692,14 +1708,8 @@ def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_me cfis_suppl_fan_actuator = nil end - # Average in-unit CFMs (include recirculation from in unit CFMs for shared systems) - sup_cfm_tot = vent_mech_sup_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) - exh_cfm_tot = vent_mech_exh_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) - bal_cfm_tot = vent_mech_bal_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) - erv_hrv_cfm_tot = vent_mech_erv_hrv_tot.map { |vent_mech| vent_mech.average_total_unit_flow_rate }.sum(0.0) - # Calculate effectiveness for all ERV/HRV and store results in a hash - hrv_erv_effectiveness_map = calc_hrv_erv_effectiveness(vent_mech_erv_hrv_tot) + hrv_erv_effectiveness_map = calc_hrv_erv_effectiveness(vent_mech_erv_hrv_tot, vent_mech_cfis_suppl_erv_hrv_tot) infil_flow = OpenStudio::Model::SpaceInfiltrationDesignFlowRate.new(model) infil_flow.setName(Constants.ObjectNameInfiltration + ' flow') @@ -1725,8 +1735,8 @@ def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_me # Calculate Qfan, Qinf_adj # Calculate adjusted infiltration based on mechanical ventilation system - apply_infiltration_adjustment_to_conditioned(model, infil_program, vent_fans_kitchen, vent_fans_bath, vented_dryers, - sup_cfm_tot, exh_cfm_tot, bal_cfm_tot, erv_hrv_cfm_tot, infil_flow_actuator, schedules_file) + apply_infiltration_adjustment_to_conditioned(model, infil_program, vent_fans_kitchen, vent_fans_bath, vented_dryers, vent_mech_sup_tot, + vent_mech_exh_tot, vent_mech_bal_tot, vent_mech_erv_hrv_tot, infil_flow_actuator, schedules_file) # Address load of Qfan (Qload) # Qload as variable for tracking outdoor air flow rate, excluding recirculation @@ -1735,6 +1745,7 @@ def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_me # Subtract recirculation air flow rate from Qfan, only come from supply side as exhaust is not allowed to have recirculation infil_program.addLine("Set Qload = Qload - #{UnitConversions.convert(f.average_total_unit_flow_rate - f.average_oa_unit_flow_rate, 'cfm', 'm^3/s').round(4)}") end + # FIXME: Need to include CFIS supplemental fan calculate_fan_loads(infil_program, vent_mech_erv_hrv_tot, hrv_erv_effectiveness_map, fan_sens_load_actuator, fan_lat_load_actuator, 'Qload') # Address preconditioning diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 364936c1ba..573cb89013 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -2041,10 +2041,10 @@ def self.get_ventilation_rates() tot_unbal_cfm = (tot_sup_cfm - tot_exh_cfm).abs tot_bal_cfm = [tot_exh_cfm, tot_sup_cfm].min - # Calculate effectivenesses for all ERV/HRV and store results in a hash + # Calculate effectiveness for all ERV/HRV and store results in a hash hrv_erv_effectiveness_map = Airflow.calc_hrv_erv_effectiveness(vent_mech_erv_hrv_tot) - # Calculate cfm weighted average effectivenesses for the combined balanced airflow + # Calculate cfm weighted average effectiveness for the combined balanced airflow weighted_vent_mech_lat_eff = 0.0 weighted_vent_mech_apparent_sens_eff = 0.0 vent_mech_erv_hrv_unprecond = vent_mech_erv_hrv_tot.select { |vent_mech| vent_mech.preheating_efficiency_cop.nil? && vent_mech.precooling_efficiency_cop.nil? } diff --git a/HPXMLtoOpenStudio/tests/test_airflow.rb b/HPXMLtoOpenStudio/tests/test_airflow.rb index e79f7dc0b0..685ecf4e02 100644 --- a/HPXMLtoOpenStudio/tests/test_airflow.rb +++ b/HPXMLtoOpenStudio/tests/test_airflow.rb @@ -310,7 +310,11 @@ def test_mechanical_ventilation_cfis assert_equal(1, get_oed_for_ventilation(model, "#{Constants.ObjectNameMechanicalVentilationHouseFan} latent load").size) end - def test_mechanical_ventilation_cfis_with_supplemental_fan + def test_mechanical_ventilation_cfis_with_supplemental_exhaust_fan + # FIXME: TODO + end + + def test_mechanical_ventilation_cfis_with_supplemental_erv_fan # FIXME: TODO end diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index b1c3514453..a75501f609 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -7,6 +7,11 @@ require_relative '../measure.rb' require 'csv' +# FIXME: Check that CFIS supplemental fan is: +# 1. Not of type CFIS +# 2. Has UsedForWholeBuildingVentilation=true +# ??? + class HPXMLtoOpenStudioValidationTest < MiniTest::Test def setup @root_path = File.absolute_path(File.join(File.dirname(__FILE__), '..', '..')) diff --git a/tasks.rb b/tasks.rb index 56654e0bbb..b667e95e6d 100644 --- a/tasks.rb +++ b/tasks.rb @@ -366,7 +366,8 @@ def create_hpxmls 'base-mechvent-cfis-airflow-fraction-zero.xml' => 'base-mechvent-cfis.xml', 'base-mechvent-cfis-dse.xml' => 'base-hvac-dse.xml', 'base-mechvent-cfis-evap-cooler-only-ducted.xml' => 'base-hvac-evap-cooler-only-ducted.xml', - 'base-mechvent-cfis-supplemental-fan.xml' => 'base-mechvent-cfis.xml', + 'base-mechvent-cfis-supplemental-exhaust-fan.xml' => 'base-mechvent-cfis.xml', + 'base-mechvent-cfis-supplemental-hrv-fan.xml' => 'base-mechvent-cfis.xml', 'base-mechvent-erv.xml' => 'base.xml', 'base-mechvent-erv-atre-asre.xml' => 'base.xml', 'base-mechvent-exhaust.xml' => 'base.xml', @@ -4289,6 +4290,7 @@ def apply_hpxml_modification(hpxml_file, hpxml) hours_in_operation: 8, fan_power: 150, used_for_whole_building_ventilation: true, + cfis_addtl_runtime_operating_mode: HPXML::CFISModeAirHandler, distribution_system_idref: 'HVACDistribution1') elsif ['base-mechvent-multiple.xml'].include? hpxml_file hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", @@ -4343,6 +4345,7 @@ def apply_hpxml_modification(hpxml_file, hpxml) hours_in_operation: 8, fan_power: 37.5, used_for_whole_building_ventilation: true, + cfis_addtl_runtime_operating_mode: HPXML::CFISModeAirHandler, distribution_system_idref: 'HVACDistribution1') hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", fan_type: HPXML::MechVentTypeCFIS, @@ -4350,6 +4353,8 @@ def apply_hpxml_modification(hpxml_file, hpxml) hours_in_operation: 8, fan_power: 37.5, used_for_whole_building_ventilation: true, + cfis_addtl_runtime_operating_mode: HPXML::CFISModeSupplemental, + cfis_supplemental_fan_idref: hpxml.ventilation_fans.select { |f| f.fan_type == HPXML::MechVentTypeExhaust }[0].id, distribution_system_idref: 'HVACDistribution2') # Test ventilation system w/ zero airflow and hours hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", @@ -4368,7 +4373,7 @@ def apply_hpxml_modification(hpxml_file, hpxml) used_for_whole_building_ventilation: true) elsif ['base-mechvent-cfis-airflow-fraction-zero.xml'].include? hpxml_file hpxml.ventilation_fans[0].cfis_vent_mode_airflow_fraction = 0.0 - elsif ['base-mechvent-cfis-supplemental-fan.xml'].include? hpxml_file + elsif ['base-mechvent-cfis-supplemental-exhaust-fan.xml'].include? hpxml_file hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", fan_type: HPXML::MechVentTypeExhaust, tested_flow_rate: 50, @@ -4376,6 +4381,15 @@ def apply_hpxml_modification(hpxml_file, hpxml) used_for_whole_building_ventilation: true) hpxml.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplemental hpxml.ventilation_fans[0].cfis_supplemental_fan_idref = hpxml.ventilation_fans[1].id + elsif ['base-mechvent-cfis-supplemental-hrv-fan.xml'].include? hpxml_file + hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeHRV, + tested_flow_rate: 50, + sensible_recovery_efficiency: 0.72, + fan_power: 12, + used_for_whole_building_ventilation: true) + hpxml.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplemental + hpxml.ventilation_fans[0].cfis_supplemental_fan_idref = hpxml.ventilation_fans[1].id end # ---------------- # diff --git a/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml b/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml index 12d93493bd..2d308c3334 100644 --- a/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml +++ b/workflow/sample_files/base-bldgtype-multifamily-shared-mechvent-multiple.xml @@ -510,6 +510,9 @@ central fan integrated supply + + air handler fan + 160.0 8.0 true diff --git a/workflow/sample_files/base-mechvent-cfis-supplemental-fan.xml b/workflow/sample_files/base-mechvent-cfis-supplemental-exhaust-fan.xml similarity index 100% rename from workflow/sample_files/base-mechvent-cfis-supplemental-fan.xml rename to workflow/sample_files/base-mechvent-cfis-supplemental-exhaust-fan.xml diff --git a/workflow/sample_files/base-mechvent-cfis-supplemental-hrv-fan.xml b/workflow/sample_files/base-mechvent-cfis-supplemental-hrv-fan.xml new file mode 100644 index 0000000000..e41907bf29 --- /dev/null +++ b/workflow/sample_files/base-mechvent-cfis-supplemental-hrv-fan.xml @@ -0,0 +1,602 @@ + + + + HPXML + tasks.rb + 2000-01-01T00:00:00-07:00 + create + + + + + 60 + + + base-mechvent-cfis.xml + + + + Bills + + + + + + + + +
+ CO +
+
+ + proposed workscope + + + + + suburban + stand-alone + no units above or below + 180 + + electricity + natural gas + + + + 3.0 + + + 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.4 + asphalt or fiberglass shingles + 0.7 + 0.92 + 6.0 + false + + + 2.3 + + + + + + + outside + basement - conditioned + 115.6 + wood siding + 0.7 + 0.92 + + + 23.0 + + + + + + + outside + living 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 + living space + 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 + + + + + + + + + + + + + + + + + natural gas + 36000.0 + + AFUE + 0.92 + + 1.0 + + + + + central air conditioner + electricity + 24000.0 + single stage + 1.0 + + SEER + 13.0 + + 0.73 + + + + + 68.0 + 78.0 + + + + + + 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 + + + + + + + + + + central fan integrated supply + + supplemental fan + + + 330.0 + 8.0 + true + 300.0 + + + + + heat recovery ventilator + 50.0 + true + 0.72 + 12.0 + + + + + + + electricity + storage water heater + living space + 40.0 + 1.0 + 18767.0 + 0.95 + 125.0 + + + + + + 50.0 + + + + 0.0 + + + + + shower head + true + + + + faucet + false + + + + + + + living space + 1.21 + 380.0 + 0.12 + 1.09 + 27.0 + 6.0 + 3.2 + + + + living space + electricity + 3.73 + true + 150.0 + + + + living space + 307.0 + 12 + 0.12 + 1.09 + 22.32 + 4.0 + + + + living space + 650.0 + true + + + + living space + electricity + false + + + + false + + + + + + interior + 0.4 + + + + + + + exterior + 0.4 + + + + + + + garage + 0.4 + + + + + + + interior + 0.1 + + + + + + + exterior + 0.1 + + + + + + + garage + 0.1 + + + + + + + interior + 0.25 + + + + + + + exterior + 0.25 + + + + + + + garage + 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/workflow/sample_files/base-mechvent-multiple.xml b/workflow/sample_files/base-mechvent-multiple.xml index 6aaa4194c8..84dd218ddd 100644 --- a/workflow/sample_files/base-mechvent-multiple.xml +++ b/workflow/sample_files/base-mechvent-multiple.xml @@ -609,6 +609,9 @@ central fan integrated supply + + air handler fan + 40.0 8.0 true @@ -618,6 +621,10 @@ central fan integrated supply + + supplemental fan + + 42.5 8.0 true From 74b7cf005f9f6172e2896198973056fa82fdddae Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Thu, 29 Sep 2022 18:07:53 +0000 Subject: [PATCH 05/27] Latest results. --- workflow/tests/base_results/results.csv | 6 ++++-- workflow/tests/base_results/results_bills.csv | 6 ++++-- workflow/tests/base_results/results_hvac_sizing.csv | 4 +++- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 4a97ea322d..aa9de0891a 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -44,7 +44,7 @@ base-bldgtype-multifamily-shared-generator.xml,41.043,38.199,26.2,23.357,0.676,0 base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.931,27.931,27.931,27.931,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.0,0.357,1.813,2.81,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,8.676,9.539,0.577,0.0,0.0,0.0,0.0,1731.9,1814.9,3.453,7.017,0.0,-0.014,2.532,0.0,0.0,0.423,1.443,0.0,-0.01,0.0,-0.347,1.29,0.0,0.695,0.0,0.0,-5.507,0.0,-0.009,-1.021,0.0,0.0,-0.04,3.898,0.0,-0.005,0.0,-0.337,-0.495,-1.325,-0.369,0.0,0.0,8.487,1354.8,997.6,11399.6,3156.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 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.811,31.811,16.583,16.583,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004,2.953,0.544,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.613,0.0,14.614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.566,8.962,9.539,2.265,0.0,0.0,0.0,0.0,880.5,1469.5,3.501,7.039,0.0,-0.014,2.492,0.0,0.0,0.42,1.472,0.0,-0.01,0.0,-0.361,2.037,0.0,0.0,0.0,0.0,-5.583,0.0,-0.009,-1.073,0.0,0.0,-0.045,3.908,0.0,-0.005,0.0,-0.351,-0.912,-1.343,0.0,0.0,0.0,8.899,1354.8,997.6,11399.9,3156.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 base-bldgtype-multifamily-shared-laundry-room.xml,29.707,29.707,16.395,16.395,13.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,2.803,0.504,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.798,0.0,12.515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.737,8.26,9.539,0.569,0.0,0.0,0.0,0.0,880.9,1458.2,3.659,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,1.369,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-5.386,0.0,-0.01,-0.98,0.0,0.0,-0.036,3.876,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,8.003,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,50.277,50.277,30.013,30.013,20.264,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.059,2.016,0.292,9.724,0.0,0.0,2.026,0.0,0.206,3.725,0.949,0.167,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.091,0.0,0.0,0.0,0.0,12.172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.497,4.803,9.539,0.617,0.0,0.0,0.0,0.0,1800.9,2248.2,7.584,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,0.226,0.0,-0.019,0.0,-0.243,0.076,0.0,12.278,0.0,0.0,-7.929,0.0,-0.012,-0.117,0.0,0.0,0.061,3.687,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.129,0.0,0.0,6.104,1354.8,997.6,11399.6,3156.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 +base-bldgtype-multifamily-shared-mechvent-multiple.xml,50.28,50.28,30.013,30.013,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.059,2.016,0.292,9.724,0.0,0.0,2.026,0.0,0.206,3.725,0.949,0.167,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.094,0.0,0.0,0.0,0.0,12.173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.499,4.803,9.539,0.617,0.0,0.0,0.0,0.0,1800.9,2248.4,7.585,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,0.226,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-7.929,0.0,-0.012,-0.117,0.0,0.0,0.061,3.687,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.129,0.0,0.0,6.105,1354.8,997.6,11399.6,3156.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 base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.687,32.687,27.32,27.32,5.367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,2.557,0.434,9.696,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.045,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.407,0.0,0.0,0.0,0.0,3.959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.302,7.061,9.539,0.588,0.0,0.0,0.0,0.0,1613.4,2093.3,4.166,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,1.125,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-6.367,0.0,-0.009,-0.693,0.0,0.0,-0.005,3.856,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,7.638,1354.8,997.6,11399.6,3156.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 base-bldgtype-multifamily-shared-mechvent.xml,31.013,31.013,27.201,27.201,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.028,2.478,0.412,9.706,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.53,6.838,9.539,0.598,0.0,0.0,0.0,0.0,1610.1,2093.8,5.994,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,0.549,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-6.912,0.0,-0.008,-0.511,0.0,0.0,-0.01,3.532,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,7.103,1354.8,997.6,11399.6,3156.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 base-bldgtype-multifamily-shared-pv.xml,26.876,2.428,26.2,1.752,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,2.899,0.529,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,8.678,9.539,0.577,0.0,0.0,0.0,0.0,1562.0,2038.4,3.453,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,1.418,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-5.458,0.0,-0.008,-1.031,0.0,0.0,-0.043,3.873,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,8.535,1354.8,997.6,11399.6,3156.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 @@ -325,6 +325,8 @@ base-mechvent-bath-kitchen-fans.xml,57.912,57.912,36.088,36.088,21.824,0.0,0.0,0 base-mechvent-cfis-airflow-fraction-zero.xml,70.837,70.837,37.763,37.763,33.074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.546,4.242,0.807,9.167,0.0,0.0,4.51,0.0,0.334,1.725,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.976,13.65,9.234,0.617,0.0,0.0,0.0,0.0,2171.4,3598.0,28.648,20.634,0.0,3.501,3.661,0.515,7.102,0.638,-2.031,0.0,0.0,6.651,-0.117,1.505,0.0,13.813,0.0,6.942,-11.507,0.0,0.026,-0.377,-0.04,2.996,-0.002,10.062,0.0,0.0,-5.499,-0.063,-0.26,-2.771,-3.314,0.0,3.214,9.784,1354.8,997.6,11399.6,2615.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 base-mechvent-cfis-dse.xml,70.955,70.955,38.727,38.727,32.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.532,4.966,0.902,9.167,0.0,0.0,4.51,0.0,0.334,1.884,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.127,10.516,9.234,0.617,0.0,0.0,0.0,0.0,2170.3,2714.2,20.674,12.743,0.0,3.757,3.657,0.515,7.093,0.637,-2.024,0.0,0.0,6.637,-0.12,1.505,0.0,13.684,0.0,0.0,-11.503,0.0,0.117,-0.38,-0.04,2.993,-0.002,10.074,0.0,0.0,-5.504,-0.066,-0.26,-2.761,-3.283,0.0,0.0,9.788,1354.8,997.6,11399.6,2615.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 base-mechvent-cfis-evap-cooler-only-ducted.xml,34.163,34.163,34.163,34.163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.912,9.228,0.0,0.0,4.51,0.0,0.334,2.748,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,9.234,0.683,0.0,0.0,0.0,0.0,0.0,2190.0,0.0,17.498,0.0,2.246,2.181,0.304,2.75,0.261,-6.396,0.0,0.0,-0.481,-0.229,0.723,0.0,7.87,0.0,1.94,-11.308,0.0,0.136,-0.37,-0.038,3.062,-0.007,10.216,0.0,0.0,-6.052,-0.056,-0.26,-2.6,-3.127,0.0,0.632,10.048,1354.8,997.6,11399.5,2615.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 +base-mechvent-cfis-supplemental-exhaust-fan.xml,64.03,64.03,36.341,36.341,27.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.457,4.165,0.789,9.168,0.0,0.0,4.51,0.0,0.334,0.486,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,25.927,13.363,9.234,0.619,0.0,0.0,0.0,0.0,2135.4,3598.0,28.656,20.627,0.0,3.563,3.681,0.518,7.075,0.644,-1.994,0.0,0.0,6.586,-0.128,2.349,0.0,9.077,0.0,5.853,-11.592,0.0,0.081,-0.326,-0.032,3.059,0.012,10.198,0.0,0.0,-5.435,-0.075,-0.255,-2.639,-3.973,0.0,3.13,9.701,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis-supplemental-hrv-fan.xml,66.167,66.167,36.281,36.281,29.886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.493,4.097,0.772,9.169,0.0,0.0,4.51,0.0,0.334,0.474,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.984,13.053,9.234,0.62,0.0,0.0,0.0,0.0,2135.4,3894.5,28.656,20.615,0.0,3.589,3.718,0.523,7.038,0.656,-1.889,0.0,0.0,6.457,-0.159,4.632,0.0,8.595,0.0,6.257,-11.727,0.0,0.142,-0.266,-0.024,3.084,0.03,10.372,0.0,0.0,-5.471,-0.11,-1.089,-2.562,-3.637,0.0,3.09,9.566,1354.8,997.6,11399.5,2615.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 base-mechvent-cfis.xml,72.164,72.164,37.694,37.694,34.471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.569,4.189,0.792,9.168,0.0,0.0,4.51,0.0,0.334,1.699,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.284,13.399,9.234,0.618,0.0,0.0,0.0,0.0,2175.3,3598.0,28.647,20.617,0.0,3.499,3.701,0.521,7.073,0.651,-1.902,0.0,0.0,6.546,-0.152,1.518,0.0,13.988,0.0,8.168,-11.613,0.0,0.128,-0.319,-0.031,3.016,0.016,10.247,0.0,0.0,-5.519,-0.101,-0.239,-2.682,-3.101,0.0,2.442,9.679,1354.8,997.6,11399.6,2615.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 base-mechvent-erv-atre-asre.xml,62.957,62.957,37.859,37.859,25.097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.368,0.843,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.503,14.295,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3548.5,24.598,19.394,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.905,0.0,5.384,-11.427,0.0,-0.036,-0.441,-0.049,2.87,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.858,0.0,3.226,9.862,1354.8,997.6,11399.6,2615.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 base-mechvent-erv.xml,62.961,62.961,37.859,37.859,25.101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.368,0.843,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.507,14.295,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3548.6,24.6,19.394,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.908,0.0,5.385,-11.427,0.0,-0.036,-0.441,-0.049,2.871,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.859,0.0,3.226,9.862,1354.8,997.6,11399.6,2615.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 @@ -332,7 +334,7 @@ base-mechvent-exhaust-rated-flow-rate.xml,71.738,71.738,36.824,36.824,34.915,0.0 base-mechvent-exhaust.xml,71.738,71.738,36.824,36.824,34.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.576,4.129,0.778,9.168,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.7,13.147,9.234,0.619,0.0,0.0,0.0,0.0,2168.2,3628.1,28.7,20.683,0.0,3.516,3.684,0.518,7.077,0.644,-2.004,0.0,0.0,6.584,-0.124,1.462,0.0,15.369,0.0,7.265,-11.592,0.0,0.084,-0.322,-0.032,3.061,0.012,10.189,0.0,0.0,-5.437,-0.071,-0.236,-2.626,-4.238,0.0,3.149,9.7,1354.8,997.6,11399.6,2615.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 base-mechvent-hrv-asre.xml,62.957,62.957,37.863,37.863,25.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.371,0.844,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.501,14.297,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3549.7,24.597,19.396,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.902,0.0,5.384,-11.427,0.0,-0.036,-0.441,-0.049,2.87,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.858,0.0,3.228,9.862,1354.8,997.6,11399.6,2615.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 base-mechvent-hrv.xml,62.961,62.961,37.863,37.863,25.099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.37,0.844,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,0.0,0.0,23.504,14.297,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3549.7,24.599,19.397,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.905,0.0,5.385,-11.427,0.0,-0.036,-0.441,-0.049,2.871,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.859,0.0,3.228,9.862,1354.8,997.6,11399.6,2615.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 -base-mechvent-multiple.xml,79.548,79.548,37.888,37.888,41.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.685,3.823,0.691,9.172,0.0,0.0,4.51,0.0,0.334,1.839,0.0,0.0,0.402,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.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,39.02,11.676,9.234,0.623,0.0,0.0,0.0,17.0,2251.8,3686.0,35.019,22.686,0.0,3.227,3.765,0.53,7.038,0.669,-1.789,0.0,0.0,6.44,-0.196,2.393,0.0,11.546,0.0,16.867,-11.77,0.0,0.119,-0.158,-0.008,3.26,0.057,10.656,0.0,0.0,-5.241,-0.146,-0.316,0.0,-2.225,-8.036,4.326,9.526,1354.8,997.6,11399.6,2615.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 +base-mechvent-multiple.xml,77.378,77.378,37.667,37.667,39.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.653,3.815,0.69,9.171,0.0,0.0,4.51,0.0,0.334,1.655,0.0,0.0,0.406,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.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,37.194,11.652,9.234,0.622,0.0,0.0,0.0,19.0,2249.8,3649.3,35.02,22.742,0.0,3.226,3.72,0.524,7.072,0.655,-1.889,0.0,0.0,6.554,-0.15,2.673,0.0,10.477,0.0,15.667,-11.658,0.0,0.054,-0.213,-0.016,3.265,0.041,10.523,0.0,0.0,-5.178,-0.099,-0.573,0.0,-2.11,-8.251,4.703,9.638,1354.8,997.6,11399.6,2615.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 base-mechvent-supply.xml,70.317,70.317,36.895,36.895,33.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.551,4.206,0.797,9.168,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.302,13.481,9.234,0.618,0.0,0.0,0.0,0.0,2190.6,3628.1,28.514,20.665,0.0,3.506,3.666,0.516,7.089,0.64,-2.012,0.0,0.0,6.628,-0.123,1.508,0.0,14.126,0.0,6.997,-11.539,0.0,0.051,-0.353,-0.036,3.033,0.005,10.139,0.0,0.0,-5.448,-0.069,-0.251,-2.685,-3.763,0.0,3.198,9.753,1354.8,997.6,11399.6,2615.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 base-mechvent-whole-house-fan.xml,54.648,54.648,34.33,34.33,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.335,2.491,0.39,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.667,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.027,6.45,9.234,0.622,0.0,0.0,0.0,0.0,2105.7,2993.5,22.274,15.245,0.0,3.57,3.647,0.514,7.145,0.632,-2.022,0.0,0.0,6.737,-0.113,4.807,0.0,0.729,0.0,4.438,-11.391,0.0,0.081,-0.274,-0.025,3.342,0.019,10.404,0.0,0.0,-4.938,-0.051,-1.001,0.0,-0.136,-11.801,1.765,9.904,1354.8,997.6,11399.6,2615.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 base-misc-additional-properties.xml,56.128,56.128,35.995,35.995,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index ca7bc1ff0a..7e8a25659c 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -44,7 +44,7 @@ base-bldgtype-multifamily-shared-generator.xml,1450.06,144.0,872.48,921.79,144.0 base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,1074.14,144.0,930.14,1074.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 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,949.42,144.0,552.24,696.24,144.0,109.18,253.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 base-bldgtype-multifamily-shared-laundry-room.xml,929.42,144.0,545.97,689.97,144.0,95.45,239.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 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,1432.74,144.0,999.45,1143.45,144.0,145.29,289.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 +base-bldgtype-multifamily-shared-mechvent-multiple.xml,1432.76,144.0,999.45,1143.45,144.0,145.31,289.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 base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,1236.27,144.0,909.79,1053.79,144.0,38.48,182.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 base-bldgtype-multifamily-shared-mechvent.xml,1221.13,144.0,905.8,1049.8,144.0,27.33,171.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,0,0,0,0,0 base-bldgtype-multifamily-shared-pv.xml,351.2,144.0,872.48,202.35,144.0,4.85,148.85,0,0,0,0,0,0,0,0,-814.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 @@ -325,6 +325,8 @@ base-mechvent-bath-kitchen-fans.xml,1646.22,144.0,1201.74,1345.74,144.0,156.48,3 base-mechvent-cfis-airflow-fraction-zero.xml,1782.68,144.0,1257.54,1401.54,144.0,237.14,381.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 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 base-mechvent-cfis-evap-cooler-only-ducted.xml,1281.67,144.0,1137.67,1281.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 +base-mechvent-cfis-supplemental-exhaust-fan.xml,1696.71,144.0,1210.18,1354.18,144.0,198.53,342.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 +base-mechvent-cfis-supplemental-hrv-fan.xml,1710.48,144.0,1208.2,1352.2,144.0,214.28,358.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 base-mechvent-cfis.xml,1790.38,144.0,1255.23,1399.23,144.0,247.15,391.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-mechvent-erv-atre-asre.xml,1728.69,144.0,1260.74,1404.74,144.0,179.95,323.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 base-mechvent-erv.xml,1728.72,144.0,1260.74,1404.74,144.0,179.98,323.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 @@ -332,7 +334,7 @@ base-mechvent-exhaust-rated-flow-rate.xml,1764.59,144.0,1226.25,1370.25,144.0,25 base-mechvent-exhaust.xml,1764.59,144.0,1226.25,1370.25,144.0,250.34,394.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 base-mechvent-hrv-asre.xml,1728.78,144.0,1260.85,1404.85,144.0,179.93,323.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 base-mechvent-hrv.xml,1728.81,144.0,1260.85,1404.85,144.0,179.96,323.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 -base-mechvent-multiple.xml,1848.41,144.0,1261.71,1405.71,144.0,298.7,442.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 +base-mechvent-multiple.xml,1827.08,144.0,1254.35,1398.35,144.0,284.73,428.73,0,0,0,0,0,0,0,0,0,0,0,0,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,1756.28,144.0,1228.64,1372.64,144.0,239.64,383.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 base-mechvent-whole-house-fan.xml,1576.89,144.0,1143.21,1287.21,144.0,145.68,289.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 base-misc-additional-properties.xml,1631.02,144.0,1198.67,1342.67,144.0,144.35,288.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 diff --git a/workflow/tests/base_results/results_hvac_sizing.csv b/workflow/tests/base_results/results_hvac_sizing.csv index 8a42192b97..26495058ea 100644 --- a/workflow/tests/base_results/results_hvac_sizing.csv +++ b/workflow/tests/base_results/results_hvac_sizing.csv @@ -325,6 +325,8 @@ base-mechvent-bath-kitchen-fans.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0 base-mechvent-cfis-airflow-fraction-zero.xml,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 base-mechvent-cfis-dse.xml,26905.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,13910.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 base-mechvent-cfis-evap-cooler-only-ducted.xml,26905.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,16170.0,2259.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,4380.0 +base-mechvent-cfis-supplemental-exhaust-fan.xml,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-mechvent-cfis-supplemental-hrv-fan.xml,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 base-mechvent-cfis.xml,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 base-mechvent-erv-atre-asre.xml,33661.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5920.0,18320.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 base-mechvent-erv.xml,33663.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5921.0,18321.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 @@ -332,7 +334,7 @@ base-mechvent-exhaust-rated-flow-rate.xml,35577.0,8672.0,7508.0,0.0,575.0,6409.0 base-mechvent-exhaust.xml,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 base-mechvent-hrv-asre.xml,33661.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5920.0,18320.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 base-mechvent-hrv.xml,33663.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5921.0,18321.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-mechvent-multiple.xml,42991.0,16268.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7615.0,23737.0,10055.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1553.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,794.0,24000.0,998.0 +base-mechvent-multiple.xml,42885.0,16261.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7515.0,23724.0,10054.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1540.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,794.0,24000.0,998.0 base-mechvent-supply.xml,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 base-mechvent-whole-house-fan.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 base-misc-additional-properties.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 From 7953bbe94d34edd6592a8261905c3c8d63e8888c Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Thu, 29 Sep 2022 14:53:27 -0600 Subject: [PATCH 06/27] Fix tests. --- HPXMLtoOpenStudio/measure.xml | 28 +++++++------- HPXMLtoOpenStudio/resources/airflow.rb | 8 ++-- HPXMLtoOpenStudio/tests/test_airflow.rb | 50 ++++++++++--------------- 3 files changed, 38 insertions(+), 48 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 440372d704..c7f21bcb5e 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - d3b867f2-e3b0-4bb7-ba39-0fa1f6490750 - 20220929T172552Z + 7f1df079-f055-4e45-a7f4-13a939b2c85c + 20220929T205309Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -534,18 +534,6 @@ resource A732A831 - - test_airflow.rb - rb - test - 27E83822 - - - airflow.rb - rb - resource - 6F143128 - hvac_sizing.rb rb @@ -594,5 +582,17 @@ resource 977C47D1 + + test_airflow.rb + rb + test + 87AEE088 + + + airflow.rb + rb + resource + C3EBFFD0 + diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 03c730d65f..8a16ff4b1e 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -1398,16 +1398,16 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl # Air handler meets additional runtime requirement infil_program.addLine(" Set #{cfis_fan_actuator.name} = #{cfis_fan_actuator.name} + cfis_fan_w*#{@cfis_f_damper_extra_open_var[vent_mech.id].name}") elsif vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeSupplemental - infil_program.addLine(" Set cfis_suppl_Q_duct_oa = #{UnitConversions.convert(vent_mech.cfis_supplemental_fan.oa_unit_flow_rate, 'cfm', 'm^3/s')}") - infil_program.addLine(" Set cfis_suppl_f = #{@cfis_f_damper_extra_open_var[vent_mech.id].name} / (cfis_suppl_Q_duct_oa / cfis_Q_duct_oa)") + infil_program.addLine(" Set cfis_suppl_Q_oa = #{UnitConversions.convert(vent_mech.cfis_supplemental_fan.oa_unit_flow_rate, 'cfm', 'm^3/s')}") + infil_program.addLine(" Set cfis_suppl_f = #{@cfis_f_damper_extra_open_var[vent_mech.id].name} / (cfis_suppl_Q_oa / cfis_Q_duct_oa)") infil_program.addLine(" Set cfis_suppl_fan_w = #{vent_mech.cfis_supplemental_fan.unit_fan_power}") # W infil_program.addLine(" Set #{cfis_suppl_fan_actuator.name} = #{cfis_suppl_fan_actuator.name} + cfis_suppl_fan_w*cfis_suppl_f") if vent_mech.cfis_supplemental_fan.includes_supply_air? - infil_program.addLine(' Set QWHV_cfis_suppl_sup = QWHV_cfis_suppl_sup + cfis_suppl_f * cfis_suppl_Q_duct_oa') + infil_program.addLine(' Set QWHV_cfis_suppl_sup = QWHV_cfis_suppl_sup + cfis_suppl_f * cfis_suppl_Q_oa') end if vent_mech.cfis_supplemental_fan.includes_exhaust_air? - infil_program.addLine(' Set QWHV_cfis_suppl_exh = QWHV_cfis_suppl_exh + cfis_suppl_f * cfis_suppl_Q_duct_oa') + infil_program.addLine(' Set QWHV_cfis_suppl_exh = QWHV_cfis_suppl_exh + cfis_suppl_f * cfis_suppl_Q_oa') end end diff --git a/HPXMLtoOpenStudio/tests/test_airflow.rb b/HPXMLtoOpenStudio/tests/test_airflow.rb index 685ecf4e02..a209f68837 100644 --- a/HPXMLtoOpenStudio/tests/test_airflow.rb +++ b/HPXMLtoOpenStudio/tests/test_airflow.rb @@ -149,7 +149,6 @@ def test_mechanical_ventilation_none program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_bal_erv_hrv'].sum, 'm^3/s', 'cfm'), 0.01) assert_equal(1, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan).size) assert_in_epsilon(0.0, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan)[0].designLevel.get, 0.01) assert_in_epsilon(0.0, UnitConversions.convert(program_values['Qrange'].sum, 'm^3/s', 'cfm'), 0.01) @@ -173,7 +172,6 @@ def test_mechanical_ventilation_supply program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") assert_in_epsilon(vent_fan_cfm, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_bal_erv_hrv'].sum, 'm^3/s', 'cfm'), 0.01) assert_equal(1, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan).size) assert_in_epsilon(vent_fan_power, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan)[0].designLevel.get, 0.01) assert_in_epsilon(0.0, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan)[0].fractionLost, 0.01) @@ -198,7 +196,6 @@ def test_mechanical_ventilation_exhaust program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") assert_in_epsilon(vent_fan_cfm, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_bal_erv_hrv'].sum, 'm^3/s', 'cfm'), 0.01) assert_equal(1, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan).size) assert_in_epsilon(vent_fan_power, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan)[0].designLevel.get, 0.01) assert_in_epsilon(1.0, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan)[0].fractionLost, 0.01) @@ -221,9 +218,8 @@ def test_mechanical_ventilation_balanced # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") - assert_in_epsilon(vent_fan_cfm, UnitConversions.convert(program_values['QWHV_bal_erv_hrv'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(vent_fan_cfm, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(vent_fan_cfm, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) assert_equal(1, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan).size) assert_in_epsilon(vent_fan_power, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan)[0].designLevel.get, 0.01) assert_in_epsilon(0.5, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan)[0].fractionLost, 0.01) @@ -246,9 +242,8 @@ def test_mechanical_ventilation_erv # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") - assert_in_epsilon(vent_fan_cfm, UnitConversions.convert(program_values['QWHV_bal_erv_hrv'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(vent_fan_cfm, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(vent_fan_cfm, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) assert_equal(1, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan).size) assert_in_epsilon(vent_fan_power, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan)[0].designLevel.get, 0.01) assert_in_epsilon(0.5, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan)[0].fractionLost, 0.01) @@ -271,9 +266,8 @@ def test_mechanical_ventilation_hrv # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") - assert_in_epsilon(vent_fan_cfm, UnitConversions.convert(program_values['QWHV_bal_erv_hrv'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(vent_fan_cfm, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(vent_fan_cfm, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) assert_equal(1, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan).size) assert_in_epsilon(vent_fan_power, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan)[0].designLevel.get, 0.01) assert_in_epsilon(0.5, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan)[0].fractionLost, 0.01) @@ -297,12 +291,11 @@ def test_mechanical_ventilation_cfis # Check infiltration/ventilation program program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") - assert_in_epsilon(vent_fan_cfm, UnitConversions.convert(program_values['CFIS_Q_duct_oa'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_bal_erv_hrv'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(vent_fan_cfm, UnitConversions.convert(program_values['cfis_Q_duct_oa'].sum, 'm^3/s', 'cfm'), 0.01) assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(vent_fan_power, program_values['CFIS_fan_w'].sum, 0.01) - assert_in_epsilon(vent_fan_mins, program_values['CFIS_t_min_hr_open'].sum, 0.01) + assert_in_epsilon(vent_fan_power, program_values['cfis_fan_w'].sum, 0.01) + assert_in_epsilon(vent_fan_mins, program_values['cfis_t_min_hr_open'].sum, 0.01) assert_in_epsilon(0.0, UnitConversions.convert(program_values['Qrange'].sum, 'm^3/s', 'cfm'), 0.01) assert_in_epsilon(0.0, UnitConversions.convert(program_values['Qbath'].sum, 'm^3/s', 'cfm'), 0.01) # Load actuators @@ -335,7 +328,6 @@ def test_ventilation_bath_kitchen_fans program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_bal_erv_hrv'].sum, 'm^3/s', 'cfm'), 0.01) assert_equal(1, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan).size) assert_in_epsilon(0.0, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan)[0].designLevel.get, 0.01) assert_in_epsilon(kitchen_fan_cfm, UnitConversions.convert(program_values['Qrange'].sum, 'm^3/s', 'cfm'), 0.01) @@ -367,7 +359,7 @@ def test_multiple_mechvent model, hpxml = _test_measure(args_hash) # Get HPXML values - vent_fans = hpxml.ventilation_fans.select { |f| f.hours_in_operation.to_f > 0 } + vent_fans = hpxml.ventilation_fans.select { |f| f.hours_in_operation.to_f > 0 && !f.is_cfis_supplemental_fan? } bath_fans = vent_fans.select { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationBath } bath_fan_cfm = bath_fans.map { |bath_fan| bath_fan.flow_rate * bath_fan.quantity }.sum(0.0) @@ -401,17 +393,16 @@ def test_multiple_mechvent # Check infiltration/ventilation program # CFMs program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") - assert_in_epsilon(vent_fan_cfm_bal + vent_fan_cfm_ervhrv, UnitConversions.convert(program_values['QWHV_bal_erv_hrv'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(vent_fan_cfm_sup, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(vent_fan_cfm_exh, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(vent_fan_cfm_sup + vent_fan_cfm_bal + vent_fan_cfm_ervhrv, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(vent_fan_cfm_exh + vent_fan_cfm_bal + vent_fan_cfm_ervhrv, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) assert_in_epsilon(kitchen_fan_cfm, UnitConversions.convert(program_values['Qrange'].sum, 'm^3/s', 'cfm'), 0.01) assert_in_epsilon(bath_fan_cfm, UnitConversions.convert(program_values['Qbath'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(vent_fan_cfm_cfis, UnitConversions.convert(program_values['CFIS_Q_duct_oa'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(vent_fan_cfm_cfis, UnitConversions.convert(program_values['cfis_Q_duct_oa'].sum, 'm^3/s', 'cfm'), 0.01) # Fan power/load implementation assert_equal(1, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan).size) assert_in_epsilon(total_mechvent_pow, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan)[0].designLevel.get, 0.01) assert_in_epsilon(fraction_heat_lost, get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationHouseFan)[0].fractionLost, 0.01) - assert_in_epsilon(vent_fan_power_cfis, program_values['CFIS_fan_w'].sum, 0.01) + assert_in_epsilon(vent_fan_power_cfis, program_values['cfis_fan_w'].sum, 0.01) range_fan_eeds = get_eed_for_ventilation(model, Constants.ObjectNameMechanicalVentilationRangeFan) assert_equal(2, range_fan_eeds.size) assert_in_epsilon(kitchen_fan_power, range_fan_eeds.map { |f| f.designLevel.get }.sum(0.0), 0.01) @@ -423,7 +414,7 @@ def test_multiple_mechvent assert_in_epsilon(1.0, bath_fan_eeds[0].fractionLost, 0.01) assert_in_epsilon(1.0, bath_fan_eeds[1].fractionLost, 0.01) # CFIS minutes - assert_in_epsilon(vent_fan_mins_cfis, program_values['CFIS_t_min_hr_open'].sum, 0.01) + assert_in_epsilon(vent_fan_mins_cfis, program_values['cfis_t_min_hr_open'].sum, 0.01) # Load actuators assert_equal(1, get_oed_for_ventilation(model, "#{Constants.ObjectNameMechanicalVentilationHouseFan} sensible load").size) assert_equal(1, get_oed_for_ventilation(model, "#{Constants.ObjectNameMechanicalVentilationHouseFan} latent load").size) @@ -468,12 +459,11 @@ def test_shared_mechvent_multiple program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") assert_in_epsilon((vent_fans_cfm_oa_preheat_sup + vent_fans_cfm_oa_preheat_bal + vent_fans_cfm_oa_preheat_ervhrv), UnitConversions.convert(program_values['Qpreheat'].sum, 'm^3/s', 'cfm'), 0.01) assert_in_epsilon((vent_fans_cfm_oa_precool_sup + vent_fans_cfm_oa_precool_bal + vent_fans_cfm_oa_precool_ervhrv), UnitConversions.convert(program_values['Qprecool'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(vent_fans_pow_cfis, program_values['CFIS_fan_w'].sum, 0.01) - assert_in_epsilon(vent_fans_mins_cfis, program_values['CFIS_t_min_hr_open'].sum, 0.01) - assert_in_epsilon(vent_fans_cfm_oa_cfis, UnitConversions.convert(program_values['CFIS_Q_duct_oa'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(vent_fans_cfm_tot_ervhrvbal, UnitConversions.convert(program_values['QWHV_bal_erv_hrv'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(vent_fans_cfm_tot_sup, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) - assert_in_epsilon(vent_fans_cfm_tot_exh, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(vent_fans_pow_cfis, program_values['cfis_fan_w'].sum, 0.01) + assert_in_epsilon(vent_fans_mins_cfis, program_values['cfis_t_min_hr_open'].sum, 0.01) + assert_in_epsilon(vent_fans_cfm_oa_cfis, UnitConversions.convert(program_values['cfis_Q_duct_oa'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(vent_fans_cfm_tot_sup + vent_fans_cfm_tot_ervhrvbal, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(vent_fans_cfm_tot_exh + vent_fans_cfm_tot_ervhrvbal, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) assert_in_epsilon(0, UnitConversions.convert(program_values['Qrange'].sum, 'm^3/s', 'cfm'), 0.01) assert_in_epsilon(0, UnitConversions.convert(program_values['Qbath'].sum, 'm^3/s', 'cfm'), 0.01) end From 7bef24e6edbbc063f9f1bc3ddf166c0d738dead2 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 30 Sep 2022 16:23:33 -0600 Subject: [PATCH 07/27] First pass on applying sensible/latent effectiveness when the CFIS supplemental fan is an ERV/HRV. --- HPXMLtoOpenStudio/measure.xml | 18 ++++----- HPXMLtoOpenStudio/resources/airflow.rb | 45 +++++++++++++++++----- HPXMLtoOpenStudio/tests/test_validation.rb | 1 + 3 files changed, 46 insertions(+), 18 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index c7f21bcb5e..ff80397073 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 7f1df079-f055-4e45-a7f4-13a939b2c85c - 20220929T205309Z + a7e4293e-de5f-4b74-a873-a81745af666b + 20220930T222236Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -540,12 +540,6 @@ resource EE978114 - - test_validation.rb - rb - test - 23FC640F - waterheater.rb rb @@ -588,11 +582,17 @@ test 87AEE088 + + test_validation.rb + rb + test + 5914BA8B + airflow.rb rb resource - C3EBFFD0 + 4494AF8C diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 8a16ff4b1e..7c691beaac 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -1361,10 +1361,20 @@ def self.calc_hrv_erv_effectiveness(vent_mech_fans, vent_mech_cfis_suppl_fans = end def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl_fan_actuator) - infil_program.addLine('Set QWHV_cfis = 0.0') - infil_program.addLine('Set QWHV_cfis_suppl_sup = 0.0') - infil_program.addLine('Set QWHV_cfis_suppl_exh = 0.0') + infil_program.addLine('Set QWHV_cfis_sup = 0.0') # CFIS supply outdoor airflow rate + infil_program.addLine('Set QWHV_cfis_suppl_sup = 0.0') # CFIS supplemental fan supply outdoor airflow rate + infil_program.addLine('Set QWHV_cfis_suppl_exh = 0.0') # CFIS supplemental fan exhaust outdoor airflow rate + idx = 0 + vent_mech_fans.each do |vent_mech| + next unless vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeSupplemental + next unless [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? vent_mech.cfis_supplemental_fan.fan_type + + idx += 1 + infil_program.addLine("Set QWHV_cfis_suppl_erv_hrv#{idx} = 0.0") # CFIS supplemental fan ERV/HRV outdoor airflow rate + end + + idx = 0 vent_mech_fans.each do |vent_mech| infil_program.addLine('Set fan_rtf_hvac = 0') @fan_rtf_sensor[@cfis_airloop[vent_mech.id]].each do |rtf_sensor| @@ -1409,6 +1419,11 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl if vent_mech.cfis_supplemental_fan.includes_exhaust_air? infil_program.addLine(' Set QWHV_cfis_suppl_exh = QWHV_cfis_suppl_exh + cfis_suppl_f * cfis_suppl_Q_oa') end + if [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? vent_mech.cfis_supplemental_fan.fan_type + # Store the flow rate to apply the ERV/HRV effectiveness to the fan load later + idx += 1 + infil_program.addLine(" Set QWHV_cfis_suppl_erv_hrv#{idx} = QWHV_cfis_suppl_erv_hrv#{idx} + cfis_suppl_f * cfis_suppl_Q_oa") + end end infil_program.addLine(' Else') @@ -1428,7 +1443,7 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl # Fan power is metered under fan cooling and heating meters infil_program.addLine(' EndIf') infil_program.addLine(' If QWHV_cfis_suppl_sup + QWHV_cfis_suppl_exh < 0.0001') # Only add CFIS air handler airflow if we have no CFIS supplemental fan airflow - infil_program.addLine(' Set QWHV_cfis = QWHV_cfis + cfis_f_damper_open * cfis_Q_duct_oa') + infil_program.addLine(' Set QWHV_cfis_sup = QWHV_cfis_sup + cfis_f_damper_open * cfis_Q_duct_oa') infil_program.addLine(' EndIf') infil_program.addLine('EndIf') end @@ -1541,7 +1556,7 @@ def self.apply_infiltration_adjustment_to_conditioned(model, infil_program, vent infil_program.addLine("Set QWHV_exh = #{UnitConversions.convert(exh_cfm_tot + bal_cfm_tot + erv_hrv_cfm_tot, 'cfm', 'm^3/s').round(5)}") infil_program.addLine('Set Qexhaust = Qrange + Qbath + Qdryer + QWHV_exh + QWHV_cfis_suppl_exh') - infil_program.addLine('Set Qsupply = QWHV_sup + QWHV_cfis + QWHV_cfis_suppl_sup') + infil_program.addLine('Set Qsupply = QWHV_sup + QWHV_cfis_sup + QWHV_cfis_suppl_sup') infil_program.addLine('Set Qfan = (@Max Qexhaust Qsupply)') if Constants.ERIVersions.index(@eri_version) >= Constants.ERIVersions.index('2019') # Follow ASHRAE 62.2-2016, Normative Appendix C equations for time-varying total airflow @@ -1581,9 +1596,19 @@ def self.calculate_fan_loads(infil_program, vent_mech_erv_hrv_tot, hrv_erv_effec # E+ ERV model is using standard density for MFR calculation, caused discrepancy with other system types. # Therefore ERV is modeled within EMS infiltration program infil_program.addLine("If #{q_var} > 0") + idx = 0 vent_mech_erv_hrv_tot.each do |vent_fan| - infil_program.addLine(" Set Effectiveness_Sens = Effectiveness_Sens + #{UnitConversions.convert(vent_fan.average_oa_unit_flow_rate, 'cfm', 'm^3/s').round(4)} / #{q_var} * #{hrv_erv_effectiveness_map[vent_fan][:vent_mech_sens_eff]}") - infil_program.addLine(" Set Effectiveness_Lat = Effectiveness_Lat + #{UnitConversions.convert(vent_fan.average_oa_unit_flow_rate, 'cfm', 'm^3/s').round(4)} / #{q_var} * #{hrv_erv_effectiveness_map[vent_fan][:vent_mech_lat_eff]}") + sens_eff = hrv_erv_effectiveness_map[vent_fan][:vent_mech_sens_eff] + lat_eff = hrv_erv_effectiveness_map[vent_fan][:vent_mech_lat_eff] + if vent_fan.is_cfis_supplemental_fan? + idx += 1 + infil_program.addLine(" Set Effectiveness_Sens = Effectiveness_Sens + QWHV_cfis_suppl_erv_hrv#{idx} / #{q_var} * #{sens_eff}") + infil_program.addLine(" Set Effectiveness_Lat = Effectiveness_Lat + QWHV_cfis_suppl_erv_hrv#{idx} / #{q_var} * #{lat_eff}") + else + avg_oa_m3s = UnitConversions.convert(vent_fan.average_oa_unit_flow_rate, 'cfm', 'm^3/s').round(4) + infil_program.addLine(" Set Effectiveness_Sens = Effectiveness_Sens + #{avg_oa_m3s} / #{q_var} * #{sens_eff}") + infil_program.addLine(" Set Effectiveness_Lat = Effectiveness_Lat + #{avg_oa_m3s} / #{q_var} * #{lat_eff}") + end end infil_program.addLine('EndIf') infil_program.addLine('Set ERVCpMin = (@Min OASupCp ZoneCp)') @@ -1742,10 +1767,12 @@ def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_me # Qload as variable for tracking outdoor air flow rate, excluding recirculation infil_program.addLine('Set Qload = Qfan') vent_fans_mech.each do |f| + recirc_flow_rate = f.average_total_unit_flow_rate - f.average_oa_unit_flow_rate + next unless recirc_flow_rate > 0 + # Subtract recirculation air flow rate from Qfan, only come from supply side as exhaust is not allowed to have recirculation - infil_program.addLine("Set Qload = Qload - #{UnitConversions.convert(f.average_total_unit_flow_rate - f.average_oa_unit_flow_rate, 'cfm', 'm^3/s').round(4)}") + infil_program.addLine("Set Qload = Qload - #{UnitConversions.convert(recirc_flow_rate, 'cfm', 'm^3/s').round(4)}") end - # FIXME: Need to include CFIS supplemental fan calculate_fan_loads(infil_program, vent_mech_erv_hrv_tot, hrv_erv_effectiveness_map, fan_sens_load_actuator, fan_lat_load_actuator, 'Qload') # Address preconditioning diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index a75501f609..8d851010a1 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -10,6 +10,7 @@ # FIXME: Check that CFIS supplemental fan is: # 1. Not of type CFIS # 2. Has UsedForWholeBuildingVentilation=true +# 3. Not a shared system # ??? class HPXMLtoOpenStudioValidationTest < MiniTest::Test From 77f7bce7482ff2bf34cbc6bd107c410bcf662282 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 30 Sep 2022 16:34:00 -0600 Subject: [PATCH 08/27] Bugfix. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/airflow.rb | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index ff80397073..9b1b7cfa29 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - a7e4293e-de5f-4b74-a873-a81745af666b - 20220930T222236Z + 5bb9cd95-e6c3-494d-8042-7aadcb0b6f7c + 20220930T223345Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -592,7 +592,7 @@ airflow.rb rb resource - 4494AF8C + 37E82454 diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 7c691beaac..1b06a2ba74 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -1773,7 +1773,7 @@ def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_me # Subtract recirculation air flow rate from Qfan, only come from supply side as exhaust is not allowed to have recirculation infil_program.addLine("Set Qload = Qload - #{UnitConversions.convert(recirc_flow_rate, 'cfm', 'm^3/s').round(4)}") end - calculate_fan_loads(infil_program, vent_mech_erv_hrv_tot, hrv_erv_effectiveness_map, fan_sens_load_actuator, fan_lat_load_actuator, 'Qload') + calculate_fan_loads(infil_program, vent_mech_erv_hrv_tot + vent_mech_cfis_suppl_erv_hrv_tot, hrv_erv_effectiveness_map, fan_sens_load_actuator, fan_lat_load_actuator, 'Qload') # Address preconditioning calculate_precond_loads(model, infil_program, vent_mech_preheat, vent_mech_precool, hrv_erv_effectiveness_map, fan_sens_load_actuator, fan_lat_load_actuator, clg_ssn_sensor) From 07309550b0006bb97117c3586e8728cb2ad9ddd8 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 30 Sep 2022 23:21:42 +0000 Subject: [PATCH 09/27] Latest results. --- workflow/tests/base_results/results.csv | 2 +- workflow/tests/base_results/results_bills.csv | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index aa9de0891a..4aa47c54fc 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -326,7 +326,7 @@ base-mechvent-cfis-airflow-fraction-zero.xml,70.837,70.837,37.763,37.763,33.074, base-mechvent-cfis-dse.xml,70.955,70.955,38.727,38.727,32.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.532,4.966,0.902,9.167,0.0,0.0,4.51,0.0,0.334,1.884,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.127,10.516,9.234,0.617,0.0,0.0,0.0,0.0,2170.3,2714.2,20.674,12.743,0.0,3.757,3.657,0.515,7.093,0.637,-2.024,0.0,0.0,6.637,-0.12,1.505,0.0,13.684,0.0,0.0,-11.503,0.0,0.117,-0.38,-0.04,2.993,-0.002,10.074,0.0,0.0,-5.504,-0.066,-0.26,-2.761,-3.283,0.0,0.0,9.788,1354.8,997.6,11399.6,2615.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 base-mechvent-cfis-evap-cooler-only-ducted.xml,34.163,34.163,34.163,34.163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.912,9.228,0.0,0.0,4.51,0.0,0.334,2.748,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,9.234,0.683,0.0,0.0,0.0,0.0,0.0,2190.0,0.0,17.498,0.0,2.246,2.181,0.304,2.75,0.261,-6.396,0.0,0.0,-0.481,-0.229,0.723,0.0,7.87,0.0,1.94,-11.308,0.0,0.136,-0.37,-0.038,3.062,-0.007,10.216,0.0,0.0,-6.052,-0.056,-0.26,-2.6,-3.127,0.0,0.632,10.048,1354.8,997.6,11399.5,2615.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 base-mechvent-cfis-supplemental-exhaust-fan.xml,64.03,64.03,36.341,36.341,27.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.457,4.165,0.789,9.168,0.0,0.0,4.51,0.0,0.334,0.486,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,25.927,13.363,9.234,0.619,0.0,0.0,0.0,0.0,2135.4,3598.0,28.656,20.627,0.0,3.563,3.681,0.518,7.075,0.644,-1.994,0.0,0.0,6.586,-0.128,2.349,0.0,9.077,0.0,5.853,-11.592,0.0,0.081,-0.326,-0.032,3.059,0.012,10.198,0.0,0.0,-5.435,-0.075,-0.255,-2.639,-3.973,0.0,3.13,9.701,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-supplemental-hrv-fan.xml,66.167,66.167,36.281,36.281,29.886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.493,4.097,0.772,9.169,0.0,0.0,4.51,0.0,0.334,0.474,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.886,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.984,13.053,9.234,0.62,0.0,0.0,0.0,0.0,2135.4,3894.5,28.656,20.615,0.0,3.589,3.718,0.523,7.038,0.656,-1.889,0.0,0.0,6.457,-0.159,4.632,0.0,8.595,0.0,6.257,-11.727,0.0,0.142,-0.266,-0.024,3.084,0.03,10.372,0.0,0.0,-5.471,-0.11,-1.089,-2.562,-3.637,0.0,3.09,9.566,1354.8,997.6,11399.5,2615.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 +base-mechvent-cfis-supplemental-hrv-fan.xml,61.085,61.085,36.579,36.579,24.506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.404,4.389,0.847,9.165,0.0,0.0,4.51,0.0,0.334,0.497,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.944,14.367,9.234,0.615,0.0,0.0,0.0,0.0,2135.4,3600.9,28.654,20.658,0.0,3.542,3.645,0.513,7.113,0.632,-2.059,0.0,0.0,6.652,-0.111,4.676,0.0,4.189,0.0,5.273,-11.431,0.0,-0.031,-0.435,-0.048,2.887,-0.018,9.904,0.0,0.0,-5.67,-0.054,-1.318,-2.944,-0.88,0.0,3.255,9.858,1354.8,997.6,11399.6,2615.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 base-mechvent-cfis.xml,72.164,72.164,37.694,37.694,34.471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.569,4.189,0.792,9.168,0.0,0.0,4.51,0.0,0.334,1.699,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.284,13.399,9.234,0.618,0.0,0.0,0.0,0.0,2175.3,3598.0,28.647,20.617,0.0,3.499,3.701,0.521,7.073,0.651,-1.902,0.0,0.0,6.546,-0.152,1.518,0.0,13.988,0.0,8.168,-11.613,0.0,0.128,-0.319,-0.031,3.016,0.016,10.247,0.0,0.0,-5.519,-0.101,-0.239,-2.682,-3.101,0.0,2.442,9.679,1354.8,997.6,11399.6,2615.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 base-mechvent-erv-atre-asre.xml,62.957,62.957,37.859,37.859,25.097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.368,0.843,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.503,14.295,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3548.5,24.598,19.394,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.905,0.0,5.384,-11.427,0.0,-0.036,-0.441,-0.049,2.87,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.858,0.0,3.226,9.862,1354.8,997.6,11399.6,2615.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 base-mechvent-erv.xml,62.961,62.961,37.859,37.859,25.101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.368,0.843,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.507,14.295,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3548.6,24.6,19.394,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.908,0.0,5.385,-11.427,0.0,-0.036,-0.441,-0.049,2.871,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.859,0.0,3.226,9.862,1354.8,997.6,11399.6,2615.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 diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index 7e8a25659c..0196888249 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -326,7 +326,7 @@ base-mechvent-cfis-airflow-fraction-zero.xml,1782.68,144.0,1257.54,1401.54,144.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 base-mechvent-cfis-evap-cooler-only-ducted.xml,1281.67,144.0,1137.67,1281.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 base-mechvent-cfis-supplemental-exhaust-fan.xml,1696.71,144.0,1210.18,1354.18,144.0,198.53,342.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 -base-mechvent-cfis-supplemental-hrv-fan.xml,1710.48,144.0,1208.2,1352.2,144.0,214.28,358.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 +base-mechvent-cfis-supplemental-hrv-fan.xml,1681.83,144.0,1218.12,1362.12,144.0,175.71,319.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 base-mechvent-cfis.xml,1790.38,144.0,1255.23,1399.23,144.0,247.15,391.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-mechvent-erv-atre-asre.xml,1728.69,144.0,1260.74,1404.74,144.0,179.95,323.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 base-mechvent-erv.xml,1728.72,144.0,1260.74,1404.74,144.0,179.98,323.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 From 3a8fab0853dbbe7e5458767b44852e4d044ea7a5 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Fri, 30 Sep 2022 19:00:00 -0600 Subject: [PATCH 10/27] Allow supply/exhaust systems only. --- HPXMLtoOpenStudio/measure.xml | 42 +++++++-------- HPXMLtoOpenStudio/resources/airflow.rb | 52 +++++-------------- HPXMLtoOpenStudio/resources/hpxml.rb | 10 ++++ HPXMLtoOpenStudio/tests/test_airflow.rb | 6 +-- HPXMLtoOpenStudio/tests/test_validation.rb | 28 +++++++--- tasks.rb | 22 ++++---- ...echvent-cfis-supplemental-fan-exhaust.xml} | 0 ...mechvent-cfis-supplemental-fan-supply.xml} | 3 +- 8 files changed, 75 insertions(+), 88 deletions(-) rename workflow/sample_files/{base-mechvent-cfis-supplemental-exhaust-fan.xml => base-mechvent-cfis-supplemental-fan-exhaust.xml} (100%) rename workflow/sample_files/{base-mechvent-cfis-supplemental-hrv-fan.xml => base-mechvent-cfis-supplemental-fan-supply.xml} (99%) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 5c89fbf92f..cdd415a24f 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 1fbedc7b-83ea-4ad6-94ac-ff54d52ec367 - 20220930T224208Z + 5cb8ed5e-43d2-44f2-a601-af03cf8689a3 + 20221001T004201Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -553,24 +553,6 @@ resource B4AA8052 - - test_airflow.rb - rb - test - 87AEE088 - - - test_validation.rb - rb - test - 5914BA8B - - - airflow.rb - rb - resource - 37E82454 - test_water_heater.rb rb @@ -588,11 +570,29 @@ script 9F66F81A + + test_airflow.rb + rb + test + 1EA92A60 + + + test_validation.rb + rb + test + BF43A725 + hpxml.rb rb resource - 73EEC802 + 2F56BE45 + + + airflow.rb + rb + resource + FF8CADB7 diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 1b06a2ba74..dd4dc212c2 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -1268,10 +1268,10 @@ def self.apply_dryer_exhaust(model, vented_dryer, schedules_file, index) return obj_sch_sensor, cfm_mult end - def self.calc_hrv_erv_effectiveness(vent_mech_fans, vent_mech_cfis_suppl_fans = []) + def self.calc_hrv_erv_effectiveness(vent_mech_fans) # Create the mapping between mech vent instance and the effectiveness results hrv_erv_effectiveness_map = {} - (vent_mech_fans + vent_mech_cfis_suppl_fans).each do |vent_mech| + vent_mech_fans.each do |vent_mech| hrv_erv_effectiveness_map[vent_mech] = {} vent_mech_cfm = vent_mech.average_oa_unit_flow_rate @@ -1365,16 +1365,6 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl infil_program.addLine('Set QWHV_cfis_suppl_sup = 0.0') # CFIS supplemental fan supply outdoor airflow rate infil_program.addLine('Set QWHV_cfis_suppl_exh = 0.0') # CFIS supplemental fan exhaust outdoor airflow rate - idx = 0 - vent_mech_fans.each do |vent_mech| - next unless vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeSupplemental - next unless [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? vent_mech.cfis_supplemental_fan.fan_type - - idx += 1 - infil_program.addLine("Set QWHV_cfis_suppl_erv_hrv#{idx} = 0.0") # CFIS supplemental fan ERV/HRV outdoor airflow rate - end - - idx = 0 vent_mech_fans.each do |vent_mech| infil_program.addLine('Set fan_rtf_hvac = 0') @fan_rtf_sensor[@cfis_airloop[vent_mech.id]].each do |rtf_sensor| @@ -1413,17 +1403,11 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl infil_program.addLine(" Set cfis_suppl_fan_w = #{vent_mech.cfis_supplemental_fan.unit_fan_power}") # W infil_program.addLine(" Set #{cfis_suppl_fan_actuator.name} = #{cfis_suppl_fan_actuator.name} + cfis_suppl_fan_w*cfis_suppl_f") - if vent_mech.cfis_supplemental_fan.includes_supply_air? + if vent_mech.cfis_supplemental_fan.fan_type == HPXML::MechVentTypeSupply infil_program.addLine(' Set QWHV_cfis_suppl_sup = QWHV_cfis_suppl_sup + cfis_suppl_f * cfis_suppl_Q_oa') - end - if vent_mech.cfis_supplemental_fan.includes_exhaust_air? + elsif vent_mech.cfis_supplemental_fan.fan_type == HPXML::MechVentTypeExhaust infil_program.addLine(' Set QWHV_cfis_suppl_exh = QWHV_cfis_suppl_exh + cfis_suppl_f * cfis_suppl_Q_oa') end - if [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? vent_mech.cfis_supplemental_fan.fan_type - # Store the flow rate to apply the ERV/HRV effectiveness to the fan load later - idx += 1 - infil_program.addLine(" Set QWHV_cfis_suppl_erv_hrv#{idx} = QWHV_cfis_suppl_erv_hrv#{idx} + cfis_suppl_f * cfis_suppl_Q_oa") - end end infil_program.addLine(' Else') @@ -1449,7 +1433,7 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl end end - def self.add_ee_for_vent_fan_power(model, obj_name, sup_fans = nil, exh_fans = nil, bal_fans = nil, erv_hrv_fans = nil) + def self.add_ee_for_vent_fan_power(model, obj_name, sup_fans = [], exh_fans = [], bal_fans = [], erv_hrv_fans = []) # Calculate fan heat fraction # 1.0: Fan heat does not enter space (e.g., exhaust) # 0.0: Fan heat does enter space (e.g., supply) @@ -1596,19 +1580,12 @@ def self.calculate_fan_loads(infil_program, vent_mech_erv_hrv_tot, hrv_erv_effec # E+ ERV model is using standard density for MFR calculation, caused discrepancy with other system types. # Therefore ERV is modeled within EMS infiltration program infil_program.addLine("If #{q_var} > 0") - idx = 0 vent_mech_erv_hrv_tot.each do |vent_fan| sens_eff = hrv_erv_effectiveness_map[vent_fan][:vent_mech_sens_eff] lat_eff = hrv_erv_effectiveness_map[vent_fan][:vent_mech_lat_eff] - if vent_fan.is_cfis_supplemental_fan? - idx += 1 - infil_program.addLine(" Set Effectiveness_Sens = Effectiveness_Sens + QWHV_cfis_suppl_erv_hrv#{idx} / #{q_var} * #{sens_eff}") - infil_program.addLine(" Set Effectiveness_Lat = Effectiveness_Lat + QWHV_cfis_suppl_erv_hrv#{idx} / #{q_var} * #{lat_eff}") - else - avg_oa_m3s = UnitConversions.convert(vent_fan.average_oa_unit_flow_rate, 'cfm', 'm^3/s').round(4) - infil_program.addLine(" Set Effectiveness_Sens = Effectiveness_Sens + #{avg_oa_m3s} / #{q_var} * #{sens_eff}") - infil_program.addLine(" Set Effectiveness_Lat = Effectiveness_Lat + #{avg_oa_m3s} / #{q_var} * #{lat_eff}") - end + avg_oa_m3s = UnitConversions.convert(vent_fan.average_oa_unit_flow_rate, 'cfm', 'm^3/s').round(4) + infil_program.addLine(" Set Effectiveness_Sens = Effectiveness_Sens + #{avg_oa_m3s} / #{q_var} * #{sens_eff}") + infil_program.addLine(" Set Effectiveness_Lat = Effectiveness_Lat + #{avg_oa_m3s} / #{q_var} * #{lat_eff}") end infil_program.addLine('EndIf') infil_program.addLine('Set ERVCpMin = (@Min OASupCp ZoneCp)') @@ -1721,20 +1698,17 @@ def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_me cfis_fan_actuator = add_ee_for_vent_fan_power(model, Constants.ObjectNameMechanicalVentilationHouseFanCFIS) # Fan heat enters space # CFIS supplemental fan power - vent_mech_cfis_suppl_sup_tot = vent_fans_cfis_suppl.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeSupply } - vent_mech_cfis_suppl_exh_tot = vent_fans_cfis_suppl.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeExhaust } - vent_mech_cfis_suppl_bal_tot = vent_fans_cfis_suppl.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeBalanced } - vent_mech_cfis_suppl_erv_hrv_tot = vent_fans_cfis_suppl.select { |vent_mech| [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include? vent_mech.fan_type } if not vent_fans_cfis_suppl.empty? + vent_mech_cfis_suppl_sup_tot = vent_fans_cfis_suppl.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeSupply } + vent_mech_cfis_suppl_exh_tot = vent_fans_cfis_suppl.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeExhaust } cfis_suppl_fan_actuator = add_ee_for_vent_fan_power(model, Constants.ObjectNameMechanicalVentilationHouseFanCFISSupplFan, - vent_mech_cfis_suppl_sup_tot, vent_mech_cfis_suppl_exh_tot, - vent_mech_cfis_suppl_bal_tot, vent_mech_cfis_suppl_erv_hrv_tot) + vent_mech_cfis_suppl_sup_tot, vent_mech_cfis_suppl_exh_tot) else cfis_suppl_fan_actuator = nil end # Calculate effectiveness for all ERV/HRV and store results in a hash - hrv_erv_effectiveness_map = calc_hrv_erv_effectiveness(vent_mech_erv_hrv_tot, vent_mech_cfis_suppl_erv_hrv_tot) + hrv_erv_effectiveness_map = calc_hrv_erv_effectiveness(vent_mech_erv_hrv_tot) infil_flow = OpenStudio::Model::SpaceInfiltrationDesignFlowRate.new(model) infil_flow.setName(Constants.ObjectNameInfiltration + ' flow') @@ -1773,7 +1747,7 @@ def self.apply_infiltration_ventilation_to_conditioned(model, site, vent_fans_me # Subtract recirculation air flow rate from Qfan, only come from supply side as exhaust is not allowed to have recirculation infil_program.addLine("Set Qload = Qload - #{UnitConversions.convert(recirc_flow_rate, 'cfm', 'm^3/s').round(4)}") end - calculate_fan_loads(infil_program, vent_mech_erv_hrv_tot + vent_mech_cfis_suppl_erv_hrv_tot, hrv_erv_effectiveness_map, fan_sens_load_actuator, fan_lat_load_actuator, 'Qload') + calculate_fan_loads(infil_program, vent_mech_erv_hrv_tot, hrv_erv_effectiveness_map, fan_sens_load_actuator, fan_lat_load_actuator, 'Qload') # Address preconditioning calculate_precond_loads(model, infil_program, vent_mech_preheat, vent_mech_precool, hrv_erv_effectiveness_map, fan_sens_load_actuator, fan_lat_load_actuator, clg_ssn_sensor) diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index f81a4e730b..4a90283b52 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -4535,6 +4535,16 @@ def cfis_supplemental_fan @hpxml_object.ventilation_fans.each do |ventilation_fan| next unless ventilation_fan.id == @cfis_supplemental_fan_idref + if not [MechVentTypeSupply, MechVentTypeExhaust].include? ventilation_fan.fan_type + fail "CFIS supplemental fan '#{ventilation_fan.id}' must be of type '#{MechVentTypeSupply}' or '#{MechVentTypeExhaust}'." + end + if not ventilation_fan.used_for_whole_building_ventilation + fail "CFIS supplemental fan '#{ventilation_fan.id}' must be set as used for whole building ventilation." + end + if ventilation_fan.is_shared_system + fail "CFIS supplemental fan '#{ventilation_fan.id}' cannot be a shared system." + end + return ventilation_fan end fail "CFIS Supplemental Fan '#{@cfis_supplemental_fan_idref}' not found for ventilation fan '#{@id}'." diff --git a/HPXMLtoOpenStudio/tests/test_airflow.rb b/HPXMLtoOpenStudio/tests/test_airflow.rb index a209f68837..da05947968 100644 --- a/HPXMLtoOpenStudio/tests/test_airflow.rb +++ b/HPXMLtoOpenStudio/tests/test_airflow.rb @@ -303,11 +303,7 @@ def test_mechanical_ventilation_cfis assert_equal(1, get_oed_for_ventilation(model, "#{Constants.ObjectNameMechanicalVentilationHouseFan} latent load").size) end - def test_mechanical_ventilation_cfis_with_supplemental_exhaust_fan - # FIXME: TODO - end - - def test_mechanical_ventilation_cfis_with_supplemental_erv_fan + def test_mechanical_ventilation_cfis_with_supplemental_fan # FIXME: TODO end diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 8d851010a1..3a1f23aa1d 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -7,12 +7,6 @@ require_relative '../measure.rb' require 'csv' -# FIXME: Check that CFIS supplemental fan is: -# 1. Not of type CFIS -# 2. Has UsedForWholeBuildingVentilation=true -# 3. Not a shared system -# ??? - class HPXMLtoOpenStudioValidationTest < MiniTest::Test def setup @root_path = File.absolute_path(File.join(File.dirname(__FILE__), '..', '..')) @@ -693,9 +687,12 @@ def test_schematron_warning_messages end end - def test_measure_error_messages + def test_ruby_error_messages # Test case => Error message all_expected_errors = { 'cfis-with-hydronic-distribution' => ["Attached HVAC distribution system 'HVACDistribution1' cannot be hydronic for ventilation fan 'VentilationFan1'."], + 'cfis-invalid-supplemental-fan' => ["CFIS supplemental fan 'VentilationFan2' must be of type 'supply only' or 'exhaust only'."], + 'cfis-invalid-supplemental-fan2' => ["CFIS supplemental fan 'VentilationFan2' must be set as used for whole building ventilation."], + 'cfis-invalid-supplemental-fan3' => ["CFIS supplemental fan 'VentilationFan2' cannot be a shared system."], 'dehumidifier-setpoints' => ['All dehumidifiers must have the same setpoint but multiple setpoints were specified.'], 'duplicate-id' => ["Duplicate SystemIdentifier IDs detected for 'Window1'."], 'emissions-duplicate-names' => ['Found multiple Emissions Scenarios with the Scenario Name='], @@ -770,6 +767,21 @@ def test_measure_error_messages fan_type: HPXML::MechVentTypeCFIS, used_for_whole_building_ventilation: true, distribution_system_idref: hpxml.hvac_distributions[0].id) + elsif ['cfis-invalid-supplemental-fan'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-cfis-supplemental-fan-exhaust.xml')) + suppl_fan = hpxml.ventilation_fans.select { |f| f.is_cfis_supplemental_fan? }[0] + suppl_fan.fan_type = HPXML::MechVentTypeBalanced + elsif ['cfis-invalid-supplemental-fan2'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-cfis-supplemental-fan-exhaust.xml')) + suppl_fan = hpxml.ventilation_fans.select { |f| f.is_cfis_supplemental_fan? }[0] + suppl_fan.used_for_whole_building_ventilation = false + suppl_fan.used_for_garage_ventilation = true + elsif ['cfis-invalid-supplemental-fan3'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-cfis-supplemental-fan-exhaust.xml')) + suppl_fan = hpxml.ventilation_fans.select { |f| f.is_cfis_supplemental_fan? }[0] + suppl_fan.is_shared_system = true + suppl_fan.fraction_recirculation = 0.0 + suppl_fan.in_unit_flow_rate = suppl_fan.tested_flow_rate / 2.0 elsif ['dehumidifier-setpoints'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-appliances-dehumidifier-multiple.xml')) hpxml.dehumidifiers[-1].rh_setpoint = 0.55 @@ -1080,7 +1092,7 @@ def test_measure_error_messages end end - def test_measure_warning_messages + def test_ruby_warning_messages # Test case => Error message all_expected_warnings = { 'hvac-setpoint-adjustments' => ['HVAC setpoints have been automatically adjusted to prevent periods where the heating setpoint is greater than the cooling setpoint.'], 'hvac-setpoint-adjustments-daily-setbacks' => ['HVAC setpoints have been automatically adjusted to prevent periods where the heating setpoint is greater than the cooling setpoint.'], diff --git a/tasks.rb b/tasks.rb index 5a0abcef77..5d45577bdf 100644 --- a/tasks.rb +++ b/tasks.rb @@ -368,8 +368,8 @@ def create_hpxmls 'base-mechvent-cfis-airflow-fraction-zero.xml' => 'base-mechvent-cfis.xml', 'base-mechvent-cfis-dse.xml' => 'base-hvac-dse.xml', 'base-mechvent-cfis-evap-cooler-only-ducted.xml' => 'base-hvac-evap-cooler-only-ducted.xml', - 'base-mechvent-cfis-supplemental-exhaust-fan.xml' => 'base-mechvent-cfis.xml', - 'base-mechvent-cfis-supplemental-hrv-fan.xml' => 'base-mechvent-cfis.xml', + 'base-mechvent-cfis-supplemental-fan-exhaust.xml' => 'base-mechvent-cfis.xml', + 'base-mechvent-cfis-supplemental-fan-supply.xml' => 'base-mechvent-cfis.xml', 'base-mechvent-erv.xml' => 'base.xml', 'base-mechvent-erv-atre-asre.xml' => 'base.xml', 'base-mechvent-exhaust.xml' => 'base.xml', @@ -4373,21 +4373,17 @@ def apply_hpxml_modification(hpxml_file, hpxml) used_for_whole_building_ventilation: true) elsif ['base-mechvent-cfis-airflow-fraction-zero.xml'].include? hpxml_file hpxml.ventilation_fans[0].cfis_vent_mode_airflow_fraction = 0.0 - elsif ['base-mechvent-cfis-supplemental-exhaust-fan.xml'].include? hpxml_file + elsif ['base-mechvent-cfis-supplemental-fan-exhaust.xml', + 'base-mechvent-cfis-supplemental-fan-supply.xml'].include? hpxml_file hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeExhaust, tested_flow_rate: 50, fan_power: 12, used_for_whole_building_ventilation: true) - hpxml.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplemental - hpxml.ventilation_fans[0].cfis_supplemental_fan_idref = hpxml.ventilation_fans[1].id - elsif ['base-mechvent-cfis-supplemental-hrv-fan.xml'].include? hpxml_file - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeHRV, - tested_flow_rate: 50, - sensible_recovery_efficiency: 0.72, - fan_power: 12, - used_for_whole_building_ventilation: true) + if hpxml_file == 'base-mechvent-cfis-supplemental-fan-exhaust.xml' + hpxml.ventilation_fans[-1].fan_type = HPXML::MechVentTypeExhaust + else + hpxml.ventilation_fans[-1].fan_type = HPXML::MechVentTypeSupply + end hpxml.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplemental hpxml.ventilation_fans[0].cfis_supplemental_fan_idref = hpxml.ventilation_fans[1].id end diff --git a/workflow/sample_files/base-mechvent-cfis-supplemental-exhaust-fan.xml b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml similarity index 100% rename from workflow/sample_files/base-mechvent-cfis-supplemental-exhaust-fan.xml rename to workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml diff --git a/workflow/sample_files/base-mechvent-cfis-supplemental-hrv-fan.xml b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml similarity index 99% rename from workflow/sample_files/base-mechvent-cfis-supplemental-hrv-fan.xml rename to workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml index e41907bf29..270e66077f 100644 --- a/workflow/sample_files/base-mechvent-cfis-supplemental-hrv-fan.xml +++ b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml @@ -411,10 +411,9 @@ - heat recovery ventilator + supply only 50.0 true - 0.72 12.0 From 423ec798c22e3c37b9f956b4a7c97e5070efc8de Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Mon, 3 Oct 2022 12:44:04 -0600 Subject: [PATCH 11/27] Bugfixes. If CFIS supplemental fan is undersized, provide warning and ensure supplemental fan RTF does not exceed 1. --- HPXMLtoOpenStudio/measure.rb | 6 ++-- HPXMLtoOpenStudio/measure.xml | 36 +++++++++---------- HPXMLtoOpenStudio/resources/airflow.rb | 17 ++++----- HPXMLtoOpenStudio/tests/test_validation.rb | 9 +++-- tasks.rb | 4 +-- ...mechvent-cfis-supplemental-fan-exhaust.xml | 4 +-- ...-mechvent-cfis-supplemental-fan-supply.xml | 4 +-- 7 files changed, 43 insertions(+), 37 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.rb b/HPXMLtoOpenStudio/measure.rb index a348dbfdba..55882eab90 100644 --- a/HPXMLtoOpenStudio/measure.rb +++ b/HPXMLtoOpenStudio/measure.rb @@ -246,7 +246,7 @@ def self.create(hpxml, runner, model, hpxml_path, epw_path, cache_path, output_d # Other - add_airflow(model, weather, spaces, airloop_map) + add_airflow(runner, model, weather, spaces, airloop_map) add_photovoltaics(model) add_generators(model) add_batteries(model, spaces) @@ -1704,7 +1704,7 @@ def self.add_pools_and_hot_tubs(runner, model, spaces) end end - def self.add_airflow(model, weather, spaces, airloop_map) + def self.add_airflow(runner, model, weather, spaces, airloop_map) # Ducts duct_systems = {} @hpxml.hvac_distributions.each do |hvac_distribution| @@ -1735,7 +1735,7 @@ def self.add_airflow(model, weather, spaces, airloop_map) end end - Airflow.apply(model, weather, spaces, @hpxml, @cfa, @nbeds, + Airflow.apply(model, runner, weather, spaces, @hpxml, @cfa, @nbeds, @ncfl_ag, duct_systems, airloop_map, @clg_ssn_sensor, @eri_version, @frac_windows_operable, @apply_ashrae140_assumptions, @schedules_file) end diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index cdd415a24f..e091971af0 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 5cb8ed5e-43d2-44f2-a601-af03cf8689a3 - 20221001T004201Z + bb855a71-dc8d-4524-b885-3ba1555f6b9e + 20221003T184217Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -559,40 +559,40 @@ test E26F31D2 - - - OpenStudio - 3.3.0 - 3.3.0 - - measure.rb - rb - script - 9F66F81A - test_airflow.rb rb test 1EA92A60 + + hpxml.rb + rb + resource + 2F56BE45 + test_validation.rb rb test - BF43A725 + 6A5BEC40 - hpxml.rb + + OpenStudio + 3.3.0 + 3.3.0 + + measure.rb rb - resource - 2F56BE45 + script + F6F18198 airflow.rb rb resource - FF8CADB7 + 126B98CB diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index dd4dc212c2..7bdcf5e7f3 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -1,12 +1,13 @@ # frozen_string_literal: true class Airflow - def self.apply(model, weather, spaces, hpxml, cfa, nbeds, + def self.apply(model, runner, weather, spaces, hpxml, cfa, nbeds, ncfl_ag, duct_systems, airloop_map, clg_ssn_sensor, eri_version, frac_windows_operable, apply_ashrae140_assumptions, schedules_file) # Global variables + @runner = runner @spaces = spaces @year = hpxml.header.sim_calendar_year @infil_volume = hpxml.air_infiltration_measurements.select { |i| !i.infiltration_volume.nil? }[0].infiltration_volume @@ -1393,23 +1394,26 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl infil_program.addLine(' Set cfis_f_damper_open = cfis_fan_runtime/(60.0*ZoneTimeStep)') # calculates the portion of the current timestep the CFIS damper needs to be open infil_program.addLine(" Set #{@cfis_t_sum_open_var[vent_mech.id].name} = #{@cfis_t_sum_open_var[vent_mech.id].name}+cfis_fan_runtime") infil_program.addLine(" Set #{@cfis_f_damper_extra_open_var[vent_mech.id].name} = @Max (cfis_f_damper_open-fan_rtf_hvac) 0.0") - if vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeAirHandler # Air handler meets additional runtime requirement infil_program.addLine(" Set #{cfis_fan_actuator.name} = #{cfis_fan_actuator.name} + cfis_fan_w*#{@cfis_f_damper_extra_open_var[vent_mech.id].name}") elsif vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeSupplemental + if vent_mech.cfis_supplemental_fan.oa_unit_flow_rate < vent_mech.average_total_unit_flow_rate + @runner.registerWarning("CFIS supplemental fan '#{vent_mech.cfis_supplemental_fan.id}' is undersized (#{vent_mech.cfis_supplemental_fan.oa_unit_flow_rate} cfm) compared to the target hourly ventilation rate (#{vent_mech.average_total_unit_flow_rate} cfm).") + end infil_program.addLine(" Set cfis_suppl_Q_oa = #{UnitConversions.convert(vent_mech.cfis_supplemental_fan.oa_unit_flow_rate, 'cfm', 'm^3/s')}") - infil_program.addLine(" Set cfis_suppl_f = #{@cfis_f_damper_extra_open_var[vent_mech.id].name} / (cfis_suppl_Q_oa / cfis_Q_duct_oa)") + infil_program.addLine(" Set cfis_suppl_f = #{@cfis_f_damper_extra_open_var[vent_mech.id].name} / (cfis_suppl_Q_oa / cfis_Q_duct_oa)") # Calculate desired runtime for supplemental fan to provide remaining ventilation requirement + infil_program.addLine(' Set cfis_suppl_f = @Min cfis_suppl_f 1.0') # Ensure desired runtime does not exceed 100% (if the supplemental fan is undersized) infil_program.addLine(" Set cfis_suppl_fan_w = #{vent_mech.cfis_supplemental_fan.unit_fan_power}") # W infil_program.addLine(" Set #{cfis_suppl_fan_actuator.name} = #{cfis_suppl_fan_actuator.name} + cfis_suppl_fan_w*cfis_suppl_f") - if vent_mech.cfis_supplemental_fan.fan_type == HPXML::MechVentTypeSupply infil_program.addLine(' Set QWHV_cfis_suppl_sup = QWHV_cfis_suppl_sup + cfis_suppl_f * cfis_suppl_Q_oa') elsif vent_mech.cfis_supplemental_fan.fan_type == HPXML::MechVentTypeExhaust infil_program.addLine(' Set QWHV_cfis_suppl_exh = QWHV_cfis_suppl_exh + cfis_suppl_f * cfis_suppl_Q_oa') end end - + infil_program.addLine(" Set cfis_f_damper_open = @Max (cfis_f_damper_open-#{@cfis_f_damper_extra_open_var[vent_mech.id].name}) 0.0") + infil_program.addLine(' Set QWHV_cfis_sup = QWHV_cfis_sup + cfis_f_damper_open * cfis_Q_duct_oa') infil_program.addLine(' Else') # No need to turn on blower for extra ventilation infil_program.addLine(' Set cfis_fan_runtime = fan_rtf_hvac*ZoneTimeStep*60') @@ -1424,9 +1428,6 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl infil_program.addLine(' Set cfis_f_damper_open = fan_rtf_hvac') infil_program.addLine(" Set #{@cfis_t_sum_open_var[vent_mech.id].name} = #{@cfis_t_sum_open_var[vent_mech.id].name}+cfis_fan_runtime") infil_program.addLine(' EndIf') - # Fan power is metered under fan cooling and heating meters - infil_program.addLine(' EndIf') - infil_program.addLine(' If QWHV_cfis_suppl_sup + QWHV_cfis_suppl_exh < 0.0001') # Only add CFIS air handler airflow if we have no CFIS supplemental fan airflow infil_program.addLine(' Set QWHV_cfis_sup = QWHV_cfis_sup + cfis_f_damper_open * cfis_Q_duct_oa') infil_program.addLine(' EndIf') infil_program.addLine('EndIf') diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 3a1f23aa1d..ba1018bc38 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -1094,7 +1094,8 @@ def test_ruby_error_messages def test_ruby_warning_messages # Test case => Error message - all_expected_warnings = { 'hvac-setpoint-adjustments' => ['HVAC setpoints have been automatically adjusted to prevent periods where the heating setpoint is greater than the cooling setpoint.'], + all_expected_warnings = { 'cfis-undersized-supplemental-fan' => ["CFIS supplemental fan 'VentilationFan2' is undersized (90.0 cfm) compared to the target hourly ventilation rate (110.0 cfm)."], + 'hvac-setpoint-adjustments' => ['HVAC setpoints have been automatically adjusted to prevent periods where the heating setpoint is greater than the cooling setpoint.'], 'hvac-setpoint-adjustments-daily-setbacks' => ['HVAC setpoints have been automatically adjusted to prevent periods where the heating setpoint is greater than the cooling setpoint.'], 'hvac-setpoint-adjustments-daily-schedules' => ['HVAC setpoints have been automatically adjusted to prevent periods where the heating setpoint is greater than the cooling setpoint.'], 'schedule-file-and-weekday-weekend-multipliers' => ["Both 'occupants' schedule file and weekday fractions provided; the latter will be ignored.", @@ -1171,7 +1172,11 @@ def test_ruby_warning_messages all_expected_warnings.each_with_index do |(warning_case, expected_warnings), i| puts "[#{i + 1}/#{all_expected_warnings.size}] Testing #{warning_case}..." # Create HPXML object - if ['hvac-setpoint-adjustments'].include? warning_case + if ['cfis-undersized-supplemental-fan'].include? warning_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-cfis-supplemental-fan-exhaust.xml')) + suppl_fan = hpxml.ventilation_fans.select { |f| f.is_cfis_supplemental_fan? }[0] + suppl_fan.tested_flow_rate = 90.0 + elsif ['hvac-setpoint-adjustments'].include? warning_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) hpxml.hvac_controls[0].heating_setpoint_temp = 76.0 hpxml.hvac_controls[0].cooling_setpoint_temp = 75.0 diff --git a/tasks.rb b/tasks.rb index 5d45577bdf..ed3abe51f2 100644 --- a/tasks.rb +++ b/tasks.rb @@ -4376,8 +4376,8 @@ def apply_hpxml_modification(hpxml_file, hpxml) elsif ['base-mechvent-cfis-supplemental-fan-exhaust.xml', 'base-mechvent-cfis-supplemental-fan-supply.xml'].include? hpxml_file hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - tested_flow_rate: 50, - fan_power: 12, + tested_flow_rate: 120, + fan_power: 30, used_for_whole_building_ventilation: true) if hpxml_file == 'base-mechvent-cfis-supplemental-fan-exhaust.xml' hpxml.ventilation_fans[-1].fan_type = HPXML::MechVentTypeExhaust 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 8507f0aabf..f3d2359458 100644 --- a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml +++ b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-exhaust.xml @@ -412,9 +412,9 @@ exhaust only - 50.0 + 120.0 true - 12.0 + 30.0 diff --git a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml index 270e66077f..12aaa4e78a 100644 --- a/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml +++ b/workflow/sample_files/base-mechvent-cfis-supplemental-fan-supply.xml @@ -412,9 +412,9 @@ supply only - 50.0 + 120.0 true - 12.0 + 30.0 From 00181ede4b175d58f48f72febbb16b062b39c284 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Mon, 3 Oct 2022 12:56:35 -0600 Subject: [PATCH 12/27] Update tests. --- HPXMLtoOpenStudio/measure.xml | 16 +++++++-------- HPXMLtoOpenStudio/tests/test_airflow.rb | 27 ++++++++++++++++++++++++- ReportHPXMLOutput/measure.rb | 2 -- ReportHPXMLOutput/measure.xml | 6 +++--- workflow/tests/hpxml_translator_test.rb | 15 +++++++------- 5 files changed, 45 insertions(+), 21 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index e091971af0..5563f4c855 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - bb855a71-dc8d-4524-b885-3ba1555f6b9e - 20221003T184217Z + 60b845ca-b92d-4a4d-acce-8845b2413358 + 20221003T185617Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -559,12 +559,6 @@ test E26F31D2 - - test_airflow.rb - rb - test - 1EA92A60 - hpxml.rb rb @@ -594,5 +588,11 @@ resource 126B98CB + + test_airflow.rb + rb + test + CCD3D45B + diff --git a/HPXMLtoOpenStudio/tests/test_airflow.rb b/HPXMLtoOpenStudio/tests/test_airflow.rb index da05947968..708785fe60 100644 --- a/HPXMLtoOpenStudio/tests/test_airflow.rb +++ b/HPXMLtoOpenStudio/tests/test_airflow.rb @@ -304,7 +304,32 @@ def test_mechanical_ventilation_cfis end def test_mechanical_ventilation_cfis_with_supplemental_fan - # FIXME: TODO + args_hash = {} + args_hash['hpxml_path'] = File.absolute_path(File.join(sample_files_dir, 'base-mechvent-cfis-supplemental-fan-exhaust.xml')) + model, hpxml = _test_measure(args_hash) + + # Get HPXML values + vent_fan = hpxml.ventilation_fans.select { |f| f.used_for_whole_building_ventilation }[0] + vent_fan_cfm = vent_fan.oa_unit_flow_rate + vent_fan_power = vent_fan.fan_power + vent_fan_mins = vent_fan.hours_in_operation / 24.0 * 60.0 + suppl_vent_fan_cfm = vent_fan.cfis_supplemental_fan.oa_unit_flow_rate + suppl_vent_fan_power = vent_fan.cfis_supplemental_fan.fan_power + + # Check infiltration/ventilation program + program_values = get_ems_values(model.getEnergyManagementSystemPrograms, "#{Constants.ObjectNameInfiltration} program") + assert_in_epsilon(vent_fan_cfm, UnitConversions.convert(program_values['cfis_Q_duct_oa'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(suppl_vent_fan_cfm, UnitConversions.convert(program_values['cfis_suppl_Q_oa'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_sup'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(0.0, UnitConversions.convert(program_values['QWHV_exh'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(vent_fan_power, program_values['cfis_fan_w'].sum, 0.01) + assert_in_epsilon(suppl_vent_fan_power, program_values['cfis_suppl_fan_w'].sum, 0.01) + assert_in_epsilon(vent_fan_mins, program_values['cfis_t_min_hr_open'].sum, 0.01) + assert_in_epsilon(0.0, UnitConversions.convert(program_values['Qrange'].sum, 'm^3/s', 'cfm'), 0.01) + assert_in_epsilon(0.0, UnitConversions.convert(program_values['Qbath'].sum, 'm^3/s', 'cfm'), 0.01) + # Load actuators + assert_equal(1, get_oed_for_ventilation(model, "#{Constants.ObjectNameMechanicalVentilationHouseFan} sensible load").size) + assert_equal(1, get_oed_for_ventilation(model, "#{Constants.ObjectNameMechanicalVentilationHouseFan} latent load").size) end def test_ventilation_bath_kitchen_fans diff --git a/ReportHPXMLOutput/measure.rb b/ReportHPXMLOutput/measure.rb index e98740cc2e..0f8fba619c 100644 --- a/ReportHPXMLOutput/measure.rb +++ b/ReportHPXMLOutput/measure.rb @@ -308,9 +308,7 @@ def get_bldg_output(hpxml, bldg_type) end elsif bldg_type == BO::SystemsMechanicalVentilationFlowRate hpxml.ventilation_fans.each do |ventilation_fan| - # FIXME: Update for CFIS w/ supplemental fan next unless ventilation_fan.used_for_whole_building_ventilation - next if ventilation_fan.is_cfis_supplemental_fan? bldg_output += ventilation_fan.flow_rate.to_f end diff --git a/ReportHPXMLOutput/measure.xml b/ReportHPXMLOutput/measure.xml index 79b0dac263..66c2967ce3 100644 --- a/ReportHPXMLOutput/measure.xml +++ b/ReportHPXMLOutput/measure.xml @@ -3,8 +3,8 @@ 3.0 report_hpxml_output 9561a0d7-60ad-48c5-8337-2461df044d80 - 199431fe-f8e1-4877-9fb9-55f63ca5e4b5 - 20220928T231004Z + 7101e3c1-e778-46dc-a9c5-9f54ee5e82c2 + 20221003T185618Z 9BF1E6AC ReportHPXMLOutput HPXML Output Report @@ -79,7 +79,7 @@ measure.rb rb script - 93C137F9 + 642666E6 diff --git a/workflow/tests/hpxml_translator_test.rb b/workflow/tests/hpxml_translator_test.rb index fba0bee65b..e18f8baf07 100644 --- a/workflow/tests/hpxml_translator_test.rb +++ b/workflow/tests/hpxml_translator_test.rb @@ -1204,13 +1204,14 @@ def skip_utility_bill_warning(err_line) assert_equal(hpxml.total_fraction_cool_load_served > 0, clg_energy > 0) # Mechanical Ventilation - # FIXME: Update for CFIS w/ supplemental fan - fan_cfis = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_whole_building_ventilation && (vent_mech.fan_type == HPXML::MechVentTypeCFIS) } - fan_sup = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_whole_building_ventilation && (vent_mech.fan_type == HPXML::MechVentTypeSupply) } - fan_exh = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_whole_building_ventilation && (vent_mech.fan_type == HPXML::MechVentTypeExhaust) } - fan_bal = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_whole_building_ventilation && [HPXML::MechVentTypeBalanced, HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include?(vent_mech.fan_type) } - vent_fan_kitchen = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_local_ventilation && (vent_mech.fan_location == HPXML::LocationKitchen) } - vent_fan_bath = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_local_ventilation && (vent_mech.fan_location == HPXML::LocationBath) } + whole_vent_fans = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_whole_building_ventilation && !vent_mech.is_cfis_supplemental_fan? } + local_vent_fans = hpxml.ventilation_fans.select { |vent_mech| vent_mech.used_for_local_ventilation } + fan_cfis = whole_vent_fans.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeCFIS } + fan_sup = whole_vent_fans.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeSupply } + fan_exh = whole_vent_fans.select { |vent_mech| vent_mech.fan_type == HPXML::MechVentTypeExhaust } + fan_bal = whole_vent_fans.select { |vent_mech| [HPXML::MechVentTypeBalanced, HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include?(vent_mech.fan_type) } + vent_fan_kitchen = local_vent_fans.select { |vent_mech| vent_mech.fan_location == HPXML::LocationKitchen } + vent_fan_bath = local_vent_fans.select { |vent_mech| vent_mech.fan_location == HPXML::LocationBath } if not (fan_cfis + fan_sup + fan_exh + fan_bal + vent_fan_kitchen + vent_fan_bath).empty? mv_energy = UnitConversions.convert(results['End Use: Electricity: Mech Vent (MBtu)'], 'MBtu', 'GJ') From b1b5ec3d80b8fba6e935be00778e1d6003b58e98 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Mon, 3 Oct 2022 13:59:44 -0600 Subject: [PATCH 13/27] Update docs. [ci skip] --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/hpxml.rb | 1 - docs/source/workflow_inputs.rst | 21 ++++++++++++++------- 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index c9d2667e35..ef8509f662 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - d79a5c2f-3a57-4028-9c64-d2ae454ec5c0 - 20221003T185733Z + b838e0b7-c243-4a8e-a820-3235b7228e86 + 20221003T195549Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -592,7 +592,7 @@ hpxml.rb rb resource - 28574905 + 2EA91A0F diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 3be7a68ec2..7cb1e4a90e 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -82,7 +82,6 @@ class HPXML < Object ClothesDryerControlTypeTimer = 'timer' CFISModeAirHandler = 'air handler fan' CFISModeNone = 'none' - CFISModeOther = 'other' CFISModeSupplemental = 'supplemental fan' ColorDark = 'dark' ColorLight = 'light' diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 5f53bd3a1a..9992c9d921 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -1969,6 +1969,8 @@ If not entered, the simulation will not include mechanical ventilation. .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_, including adjustments for A) infiltration credit, B) balanced vs imbalanced systems, and C) adiabatic surfaces for SFA/MF buildings. .. [#] For a central fan integrated supply system, the flow rate should equal the amount of outdoor air provided to the distribution system. .. [#] If HoursInOperation not provided, defaults to 24 (i.e., running continuously) for all system types other than central fan integrated supply (CFIS), and 8.0 (i.e., running intermittently) for CFIS systems. + For a CFIS system, the HoursInOperation and the flow rate are combined to form the expected/required hourly ventilation rate (e.g., 90 cfm and 8 hrs/day produce an hourly ventilation rate of 30 cfm). + For a CFIS system with a supplemental fan, HoursInOperation is not used for the supplemental fan as its runtime is automatically calculated (based on the air handler runtime) to maintain the hourly ventilation rate. .. [#] If FanPower not provided, defaults based on `ANSI/RESNET/ICC 301-2019 `_: - "energy recovery ventilator", "heat recovery ventilator", or shared system: 1.0 W/cfm @@ -2009,13 +2011,18 @@ If an energy recovery ventilator system is specified, additional information is If a central fan integrated supply system is specified, additional information is entered in ``VentilationFan``. - ================================================ ====== ===== =========== ======== ======= ================================== - Element Type Units Constraints Required Default Notes - ================================================ ====== ===== =========== ======== ======= ================================== - ``AttachedToHVACDistributionSystem`` idref See [#]_ Yes ID of attached distribution system - ``extension/VentilationOnlyModeAirflowFraction`` double 0 - 1 No 1.0 Blower airflow rate fraction during ventilation only mode [#]_ - ================================================ ====== ===== =========== ======== ======= ================================== - + ================================================ ====== ===== =========== ======== =============== ================================== + Element Type Units Constraints Required Default Notes + ================================================ ====== ===== =========== ======== =============== ================================== + ``CFISControls/AdditionalRuntimeOperatingMode`` string See [#]_ No air handler fan How additional ventilation is provided (beyond when the HVAC system is running) + ``CFISControls/SupplementalFan`` idref See [#]_ See [#]_ The supplemental fan providing additional ventilation + ``AttachedToHVACDistributionSystem`` idref See [#]_ Yes ID of attached distribution system + ``extension/VentilationOnlyModeAirflowFraction`` double 0 - 1 No 1.0 Blower airflow rate fraction during ventilation only mode [#]_ + ================================================ ====== ===== =========== ======== =============== ================================== + + .. [#] AdditionalRuntimeOperatingMode choices are "air handler fan" or "supplemental fan". + .. [#] SupplementalFan must reference another ``VentilationFan`` w/ UsedForWholeBuildingVentilation=true, IsSharedSystem=false, and FanType="exhaust only" or "supply only". + .. [#] SupplementalFan only required if AdditionalRuntimeOperatingMode is "supplemental fan". .. [#] HVACDistribution type cannot be HydronicDistribution. .. [#] Blower airflow rate when operating in ventilation only mode (i.e., not heating or cooling mode), as a fraction of the maximum blower airflow rate. This value will depend on whether the blower fan can operate at reduced airflow rates during ventilation only operation. From 481bd2f769bc825db84ac99cb81c31039a1454be Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Mon, 3 Oct 2022 14:17:53 -0600 Subject: [PATCH 14/27] Fix tests. --- HPXMLtoOpenStudio/measure.xml | 16 +++++++------- HPXMLtoOpenStudio/tests/test_defaults.rb | 9 ++++++-- tasks.rb | 11 +++++----- .../sample_files/base-mechvent-multiple.xml | 22 +++++++++---------- 4 files changed, 30 insertions(+), 28 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index ef8509f662..ce4eecb69a 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - b838e0b7-c243-4a8e-a820-3235b7228e86 - 20221003T195549Z + f9c815bc-3aff-496f-acc5-bfe537f63b04 + 20221003T201742Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -535,12 +535,6 @@ resource 6FFC25E9 - - test_defaults.rb - rb - test - C0E1C193 - hpxml_schematron/EPvalidator.xml xml @@ -594,5 +588,11 @@ resource 2EA91A0F + + test_defaults.rb + rb + test + 9C4C7BF5 + diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 5ed053faf8..1de954101c 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1933,7 +1933,12 @@ def test_mech_ventilation_fans vent_fan.fan_power = 12.5 vent_fan.cfis_vent_mode_airflow_fraction = 0.5 vent_fan.cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplemental - vent_fan.cfis_supplemental_fan_idref = vent_fan.id + hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", + tested_flow_rate: 120, + fan_power: 30, + fan_type: HPXML::MechVentTypeExhaust, + used_for_whole_building_ventilation: true) + vent_fan.cfis_supplemental_fan_idref = hpxml.ventilation_fans[-1].id XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() _test_default_mech_vent_values(hpxml_default, false, 12.0, 12.5, 330, 0.5, HPXML::CFISModeSupplemental) @@ -3978,7 +3983,7 @@ def _test_default_duct_values(hpxml, supply_locations, return_locations, supply_ def _test_default_mech_vent_values(hpxml, is_shared_system, hours_in_operation, fan_power, flow_rate, cfis_vent_mode_airflow_fraction = nil, cfis_addtl_runtime_operating_mode = nil) - vent_fan = hpxml.ventilation_fans.select { |f| f.used_for_whole_building_ventilation }[0] + vent_fan = hpxml.ventilation_fans.select { |f| f.used_for_whole_building_ventilation && !f.is_cfis_supplemental_fan? }[0] assert_equal(is_shared_system, vent_fan.is_shared_system) assert_equal(hours_in_operation, vent_fan.hours_in_operation) diff --git a/tasks.rb b/tasks.rb index ed3abe51f2..54b81bf6c7 100644 --- a/tasks.rb +++ b/tasks.rb @@ -4299,16 +4299,15 @@ def apply_hpxml_modification(hpxml_file, hpxml) used_for_seasonal_cooling_load_reduction: true) hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", fan_type: HPXML::MechVentTypeSupply, - tested_flow_rate: 27.5, - hours_in_operation: 24, - fan_power: 7.5, - used_for_whole_building_ventilation: true) - hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - fan_type: HPXML::MechVentTypeExhaust, tested_flow_rate: 12.5, hours_in_operation: 14, fan_power: 2.5, used_for_whole_building_ventilation: true) + hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", + fan_type: HPXML::MechVentTypeExhaust, + tested_flow_rate: 30.0, + fan_power: 7.5, + used_for_whole_building_ventilation: true) hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", fan_type: HPXML::MechVentTypeBalanced, tested_flow_rate: 27.5, diff --git a/workflow/sample_files/base-mechvent-multiple.xml b/workflow/sample_files/base-mechvent-multiple.xml index 84dd218ddd..eca16f2f48 100644 --- a/workflow/sample_files/base-mechvent-multiple.xml +++ b/workflow/sample_files/base-mechvent-multiple.xml @@ -493,18 +493,17 @@ supply only - 13.75 - 24.0 + 6.25 + 14.0 true - 3.75 + 1.25 exhaust only - 6.25 - 14.0 + 15.0 true - 1.25 + 3.75 @@ -563,18 +562,17 @@ exhaust only - 6.25 - 13.0 + 15.0 true - 1.25 + 3.75 supply only - 13.75 - 23.0 + 6.25 + 13.0 true - 3.75 + 1.25 From 5a8aabdead2cc4afd454802d56d9a46be96f74b5 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 3 Oct 2022 21:18:23 +0000 Subject: [PATCH 15/27] Latest results. --- workflow/tests/base_results/results.csv | 18 +- workflow/tests/base_results/results_bills.csv | 14 +- .../base_results/results_hvac_sizing.csv | 852 +++++++++--------- 3 files changed, 442 insertions(+), 442 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 4aa47c54fc..7959e1c1f5 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -44,7 +44,7 @@ base-bldgtype-multifamily-shared-generator.xml,41.043,38.199,26.2,23.357,0.676,0 base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.931,27.931,27.931,27.931,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.0,0.357,1.813,2.81,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,8.676,9.539,0.577,0.0,0.0,0.0,0.0,1731.9,1814.9,3.453,7.017,0.0,-0.014,2.532,0.0,0.0,0.423,1.443,0.0,-0.01,0.0,-0.347,1.29,0.0,0.695,0.0,0.0,-5.507,0.0,-0.009,-1.021,0.0,0.0,-0.04,3.898,0.0,-0.005,0.0,-0.337,-0.495,-1.325,-0.369,0.0,0.0,8.487,1354.8,997.6,11399.6,3156.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 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.811,31.811,16.583,16.583,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004,2.953,0.544,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.613,0.0,14.614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.566,8.962,9.539,2.265,0.0,0.0,0.0,0.0,880.5,1469.5,3.501,7.039,0.0,-0.014,2.492,0.0,0.0,0.42,1.472,0.0,-0.01,0.0,-0.361,2.037,0.0,0.0,0.0,0.0,-5.583,0.0,-0.009,-1.073,0.0,0.0,-0.045,3.908,0.0,-0.005,0.0,-0.351,-0.912,-1.343,0.0,0.0,0.0,8.899,1354.8,997.6,11399.9,3156.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 base-bldgtype-multifamily-shared-laundry-room.xml,29.707,29.707,16.395,16.395,13.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,2.803,0.504,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.798,0.0,12.515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.737,8.26,9.539,0.569,0.0,0.0,0.0,0.0,880.9,1458.2,3.659,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,1.369,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-5.386,0.0,-0.01,-0.98,0.0,0.0,-0.036,3.876,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,8.003,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,50.28,50.28,30.013,30.013,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.059,2.016,0.292,9.724,0.0,0.0,2.026,0.0,0.206,3.725,0.949,0.167,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.094,0.0,0.0,0.0,0.0,12.173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.499,4.803,9.539,0.617,0.0,0.0,0.0,0.0,1800.9,2248.4,7.585,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,0.226,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-7.929,0.0,-0.012,-0.117,0.0,0.0,0.061,3.687,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.129,0.0,0.0,6.105,1354.8,997.6,11399.6,3156.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 +base-bldgtype-multifamily-shared-mechvent-multiple.xml,46.468,46.468,30.245,30.245,16.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,2.162,0.328,9.71,0.0,0.0,2.026,0.0,0.206,3.851,0.915,0.167,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.132,0.0,0.0,0.0,0.0,12.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,3.825,5.411,9.539,0.603,0.0,0.0,0.0,0.0,1825.0,2361.8,7.564,8.329,0.0,-0.016,2.866,0.0,0.0,0.43,0.722,0.0,-0.018,0.0,-0.268,0.768,0.0,6.772,0.0,0.0,-7.444,0.0,-0.011,-0.272,0.0,0.0,0.045,3.824,0.0,-0.014,0.0,-0.261,-0.1,-0.822,-3.646,0.0,0.0,6.576,1354.8,997.6,11399.6,3156.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 base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.687,32.687,27.32,27.32,5.367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,2.557,0.434,9.696,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.045,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.407,0.0,0.0,0.0,0.0,3.959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.302,7.061,9.539,0.588,0.0,0.0,0.0,0.0,1613.4,2093.3,4.166,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,1.125,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-6.367,0.0,-0.009,-0.693,0.0,0.0,-0.005,3.856,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,7.638,1354.8,997.6,11399.6,3156.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 base-bldgtype-multifamily-shared-mechvent.xml,31.013,31.013,27.201,27.201,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.028,2.478,0.412,9.706,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.53,6.838,9.539,0.598,0.0,0.0,0.0,0.0,1610.1,2093.8,5.994,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,0.549,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-6.912,0.0,-0.008,-0.511,0.0,0.0,-0.01,3.532,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,7.103,1354.8,997.6,11399.6,3156.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 base-bldgtype-multifamily-shared-pv.xml,26.876,2.428,26.2,1.752,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,2.899,0.529,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,8.678,9.539,0.577,0.0,0.0,0.0,0.0,1562.0,2038.4,3.453,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,1.418,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-5.458,0.0,-0.008,-1.031,0.0,0.0,-0.043,3.873,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,8.535,1354.8,997.6,11399.6,3156.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 @@ -322,19 +322,19 @@ base-location-phoenix-az.xml,38.401,38.401,38.4,38.4,0.001,0.0,0.0,0.0,0.0,0.0,0 base-location-portland-or.xml,36.624,36.624,27.621,27.621,9.003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.037,2.843,0.538,9.072,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.317,8.709,8.879,0.77,0.0,0.0,0.0,0.0,1688.0,2614.1,8.242,13.479,0.0,3.453,3.295,0.0,0.0,0.75,0.763,0.0,5.671,0.0,-0.427,1.472,0.0,0.813,0.0,1.501,-9.169,0.0,-0.314,-0.782,0.0,0.0,-0.01,9.076,0.0,-2.801,0.0,-0.419,-0.364,-1.839,-0.255,0.0,0.563,6.062,1354.8,997.6,11239.5,2769.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 base-mechvent-balanced.xml,77.52,77.52,37.828,37.828,39.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.655,4.153,0.782,9.169,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.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,37.173,13.209,9.234,0.62,0.0,0.0,0.0,0.0,2238.1,3983.5,31.651,20.841,0.0,3.519,3.718,0.523,7.045,0.655,-1.91,0.0,0.0,6.474,-0.151,5.493,0.0,15.046,0.0,8.172,-11.715,0.0,0.134,-0.27,-0.024,3.08,0.028,10.339,0.0,0.0,-5.472,-0.101,-1.033,-2.569,-3.594,0.0,3.189,9.578,1354.8,997.6,11399.5,2615.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 base-mechvent-bath-kitchen-fans.xml,57.912,57.912,36.088,36.088,21.824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36,4.337,0.838,9.164,0.0,0.0,4.51,0.0,0.334,0.112,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,14.227,9.234,0.614,0.0,0.0,0.0,0.0,2159.4,3530.9,24.165,19.722,0.0,3.567,3.65,0.514,7.124,0.633,-2.041,0.0,0.0,6.633,-0.113,4.324,0.0,2.474,0.0,4.737,-11.406,0.0,-0.049,-0.458,-0.051,2.805,-0.025,9.832,0.0,0.0,-5.803,-0.053,-1.053,-3.062,-0.689,0.0,3.151,9.881,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-airflow-fraction-zero.xml,70.837,70.837,37.763,37.763,33.074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.546,4.242,0.807,9.167,0.0,0.0,4.51,0.0,0.334,1.725,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.976,13.65,9.234,0.617,0.0,0.0,0.0,0.0,2171.4,3598.0,28.648,20.634,0.0,3.501,3.661,0.515,7.102,0.638,-2.031,0.0,0.0,6.651,-0.117,1.505,0.0,13.813,0.0,6.942,-11.507,0.0,0.026,-0.377,-0.04,2.996,-0.002,10.062,0.0,0.0,-5.499,-0.063,-0.26,-2.771,-3.314,0.0,3.214,9.784,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-dse.xml,70.955,70.955,38.727,38.727,32.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.532,4.966,0.902,9.167,0.0,0.0,4.51,0.0,0.334,1.884,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.127,10.516,9.234,0.617,0.0,0.0,0.0,0.0,2170.3,2714.2,20.674,12.743,0.0,3.757,3.657,0.515,7.093,0.637,-2.024,0.0,0.0,6.637,-0.12,1.505,0.0,13.684,0.0,0.0,-11.503,0.0,0.117,-0.38,-0.04,2.993,-0.002,10.074,0.0,0.0,-5.504,-0.066,-0.26,-2.761,-3.283,0.0,0.0,9.788,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-evap-cooler-only-ducted.xml,34.163,34.163,34.163,34.163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.912,9.228,0.0,0.0,4.51,0.0,0.334,2.748,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,9.234,0.683,0.0,0.0,0.0,0.0,0.0,2190.0,0.0,17.498,0.0,2.246,2.181,0.304,2.75,0.261,-6.396,0.0,0.0,-0.481,-0.229,0.723,0.0,7.87,0.0,1.94,-11.308,0.0,0.136,-0.37,-0.038,3.062,-0.007,10.216,0.0,0.0,-6.052,-0.056,-0.26,-2.6,-3.127,0.0,0.632,10.048,1354.8,997.6,11399.5,2615.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 -base-mechvent-cfis-supplemental-exhaust-fan.xml,64.03,64.03,36.341,36.341,27.69,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.457,4.165,0.789,9.168,0.0,0.0,4.51,0.0,0.334,0.486,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,25.927,13.363,9.234,0.619,0.0,0.0,0.0,0.0,2135.4,3598.0,28.656,20.627,0.0,3.563,3.681,0.518,7.075,0.644,-1.994,0.0,0.0,6.586,-0.128,2.349,0.0,9.077,0.0,5.853,-11.592,0.0,0.081,-0.326,-0.032,3.059,0.012,10.198,0.0,0.0,-5.435,-0.075,-0.255,-2.639,-3.973,0.0,3.13,9.701,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-supplemental-hrv-fan.xml,61.085,61.085,36.579,36.579,24.506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.404,4.389,0.847,9.165,0.0,0.0,4.51,0.0,0.334,0.497,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.506,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.944,14.367,9.234,0.615,0.0,0.0,0.0,0.0,2135.4,3600.9,28.654,20.658,0.0,3.542,3.645,0.513,7.113,0.632,-2.059,0.0,0.0,6.652,-0.111,4.676,0.0,4.189,0.0,5.273,-11.431,0.0,-0.031,-0.435,-0.048,2.887,-0.018,9.904,0.0,0.0,-5.67,-0.054,-1.318,-2.944,-0.88,0.0,3.255,9.858,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis.xml,72.164,72.164,37.694,37.694,34.471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.569,4.189,0.792,9.168,0.0,0.0,4.51,0.0,0.334,1.699,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.284,13.399,9.234,0.618,0.0,0.0,0.0,0.0,2175.3,3598.0,28.647,20.617,0.0,3.499,3.701,0.521,7.073,0.651,-1.902,0.0,0.0,6.546,-0.152,1.518,0.0,13.988,0.0,8.168,-11.613,0.0,0.128,-0.319,-0.031,3.016,0.016,10.247,0.0,0.0,-5.519,-0.101,-0.239,-2.682,-3.101,0.0,2.442,9.679,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis-airflow-fraction-zero.xml,63.621,63.621,38.163,38.163,25.457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.42,4.557,0.889,9.162,0.0,0.0,4.51,0.0,0.334,1.859,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.837,15.125,9.234,0.612,0.0,0.0,0.0,0.0,2166.8,3606.4,28.645,20.667,0.0,3.541,3.658,0.515,7.151,0.634,-1.986,0.0,0.0,6.63,-0.121,2.762,0.0,6.552,0.0,5.511,-11.379,0.0,-0.091,-0.493,-0.056,2.692,-0.035,9.751,0.0,0.0,-5.976,-0.059,-1.107,-3.268,0.676,0.0,3.371,9.906,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis-dse.xml,62.285,62.285,39.231,39.231,23.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38,5.385,1.012,9.162,0.0,0.0,4.51,0.0,0.334,2.016,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.254,11.882,9.234,0.612,0.0,0.0,0.0,0.0,2166.5,2904.3,20.672,12.828,0.0,3.753,3.656,0.515,7.145,0.634,-1.986,0.0,0.0,6.616,-0.122,2.985,0.0,5.084,0.0,0.0,-11.377,0.0,0.006,-0.494,-0.056,2.69,-0.035,9.754,0.0,0.0,-5.982,-0.06,-1.114,-3.259,0.762,0.0,0.0,9.909,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis-evap-cooler-only-ducted.xml,34.201,34.201,34.201,34.201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.994,9.205,0.0,0.0,4.51,0.0,0.334,2.725,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.997,9.234,0.658,0.0,0.0,0.0,0.0,0.0,2037.2,0.0,17.797,0.0,2.641,2.613,0.366,4.094,0.37,-5.073,0.0,0.0,1.575,-0.206,3.172,0.0,-0.945,0.0,2.335,-11.288,0.0,0.03,-0.485,-0.054,2.758,-0.036,9.859,0.0,0.0,-6.372,-0.058,-1.203,-3.085,1.29,0.0,0.571,10.043,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis-supplemental-fan-exhaust.xml,67.919,67.919,36.396,36.396,31.522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,4.157,0.787,9.168,0.0,0.0,4.51,0.0,0.334,0.489,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.522,13.308,9.234,0.619,0.0,0.0,0.0,0.0,2135.4,3598.1,28.65,20.62,0.0,3.534,3.681,0.518,7.076,0.644,-1.993,0.0,0.0,6.588,-0.128,1.94,0.0,12.315,0.0,6.64,-11.592,0.0,0.081,-0.326,-0.032,3.059,0.012,10.199,0.0,0.0,-5.434,-0.075,-0.26,-2.635,-4.037,0.0,3.139,9.701,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis-supplemental-fan-supply.xml,70.187,70.187,36.422,36.422,33.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.557,4.161,0.787,9.168,0.0,0.0,4.51,0.0,0.334,0.473,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.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,31.623,13.297,9.234,0.618,0.0,0.0,0.0,0.0,2161.3,3598.1,28.649,20.623,0.0,3.504,3.667,0.516,7.087,0.641,-2.009,0.0,0.0,6.624,-0.123,1.508,0.0,14.387,0.0,7.062,-11.541,0.0,0.054,-0.352,-0.036,3.033,0.006,10.144,0.0,0.0,-5.449,-0.07,-0.25,-2.68,-3.924,0.0,3.162,9.751,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis.xml,66.093,66.093,38.079,38.079,28.014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.462,4.498,0.872,9.163,0.0,0.0,4.51,0.0,0.334,1.808,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.234,14.828,9.234,0.613,0.0,0.0,0.0,0.0,2176.3,3909.4,28.644,20.662,0.0,3.472,3.658,0.515,7.152,0.635,-1.999,0.0,0.0,6.684,-0.115,2.58,0.0,7.28,0.0,7.437,-11.391,0.0,-0.02,-0.467,-0.052,2.798,-0.028,9.821,0.0,0.0,-5.812,-0.056,-1.089,-3.121,0.758,0.0,2.416,9.896,1354.8,997.6,11399.6,2615.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 base-mechvent-erv-atre-asre.xml,62.957,62.957,37.859,37.859,25.097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.368,0.843,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.503,14.295,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3548.5,24.598,19.394,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.905,0.0,5.384,-11.427,0.0,-0.036,-0.441,-0.049,2.87,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.858,0.0,3.226,9.862,1354.8,997.6,11399.6,2615.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 base-mechvent-erv.xml,62.961,62.961,37.859,37.859,25.101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.368,0.843,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.507,14.295,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3548.6,24.6,19.394,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.908,0.0,5.385,-11.427,0.0,-0.036,-0.441,-0.049,2.871,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.859,0.0,3.226,9.862,1354.8,997.6,11399.6,2615.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 base-mechvent-exhaust-rated-flow-rate.xml,71.738,71.738,36.824,36.824,34.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.576,4.129,0.778,9.168,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.7,13.147,9.234,0.619,0.0,0.0,0.0,0.0,2168.2,3628.1,28.7,20.683,0.0,3.516,3.684,0.518,7.077,0.644,-2.004,0.0,0.0,6.584,-0.124,1.462,0.0,15.369,0.0,7.265,-11.592,0.0,0.084,-0.322,-0.032,3.061,0.012,10.189,0.0,0.0,-5.437,-0.071,-0.236,-2.626,-4.238,0.0,3.149,9.7,1354.8,997.6,11399.6,2615.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 base-mechvent-exhaust.xml,71.738,71.738,36.824,36.824,34.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.576,4.129,0.778,9.168,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.7,13.147,9.234,0.619,0.0,0.0,0.0,0.0,2168.2,3628.1,28.7,20.683,0.0,3.516,3.684,0.518,7.077,0.644,-2.004,0.0,0.0,6.584,-0.124,1.462,0.0,15.369,0.0,7.265,-11.592,0.0,0.084,-0.322,-0.032,3.061,0.012,10.189,0.0,0.0,-5.437,-0.071,-0.236,-2.626,-4.238,0.0,3.149,9.7,1354.8,997.6,11399.6,2615.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 base-mechvent-hrv-asre.xml,62.957,62.957,37.863,37.863,25.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.371,0.844,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.501,14.297,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3549.7,24.597,19.396,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.902,0.0,5.384,-11.427,0.0,-0.036,-0.441,-0.049,2.87,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.858,0.0,3.228,9.862,1354.8,997.6,11399.6,2615.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 base-mechvent-hrv.xml,62.961,62.961,37.863,37.863,25.099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.37,0.844,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,0.0,0.0,23.504,14.297,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3549.7,24.599,19.397,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.905,0.0,5.385,-11.427,0.0,-0.036,-0.441,-0.049,2.871,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.859,0.0,3.228,9.862,1354.8,997.6,11399.6,2615.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 -base-mechvent-multiple.xml,77.378,77.378,37.667,37.667,39.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.653,3.815,0.69,9.171,0.0,0.0,4.51,0.0,0.334,1.655,0.0,0.0,0.406,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.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,37.194,11.652,9.234,0.622,0.0,0.0,0.0,19.0,2249.8,3649.3,35.02,22.742,0.0,3.226,3.72,0.524,7.072,0.655,-1.889,0.0,0.0,6.554,-0.15,2.673,0.0,10.477,0.0,15.667,-11.658,0.0,0.054,-0.213,-0.016,3.265,0.041,10.523,0.0,0.0,-5.178,-0.099,-0.573,0.0,-2.11,-8.251,4.703,9.638,1354.8,997.6,11399.6,2615.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 +base-mechvent-multiple.xml,77.08,77.08,37.598,37.598,39.482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.649,3.82,0.691,9.171,0.0,0.0,4.51,0.0,0.334,1.581,0.0,0.0,0.409,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.977,11.671,9.234,0.622,0.0,0.0,0.0,19.0,2238.0,3736.4,35.062,22.721,0.0,3.204,3.696,0.52,7.1,0.648,-1.942,0.0,0.0,6.642,-0.136,3.521,0.0,9.429,0.0,15.543,-11.572,0.0,0.018,-0.249,-0.021,3.259,0.031,10.431,0.0,0.0,-5.141,-0.083,-0.199,0.0,-2.238,-8.377,4.668,9.723,1354.8,997.6,11399.6,2615.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 base-mechvent-supply.xml,70.317,70.317,36.895,36.895,33.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.551,4.206,0.797,9.168,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.302,13.481,9.234,0.618,0.0,0.0,0.0,0.0,2190.6,3628.1,28.514,20.665,0.0,3.506,3.666,0.516,7.089,0.64,-2.012,0.0,0.0,6.628,-0.123,1.508,0.0,14.126,0.0,6.997,-11.539,0.0,0.051,-0.353,-0.036,3.033,0.005,10.139,0.0,0.0,-5.448,-0.069,-0.251,-2.685,-3.763,0.0,3.198,9.753,1354.8,997.6,11399.6,2615.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 base-mechvent-whole-house-fan.xml,54.648,54.648,34.33,34.33,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.335,2.491,0.39,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.667,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.027,6.45,9.234,0.622,0.0,0.0,0.0,0.0,2105.7,2993.5,22.274,15.245,0.0,3.57,3.647,0.514,7.145,0.632,-2.022,0.0,0.0,6.737,-0.113,4.807,0.0,0.729,0.0,4.438,-11.391,0.0,0.081,-0.274,-0.025,3.342,0.019,10.404,0.0,0.0,-4.938,-0.051,-1.001,0.0,-0.136,-11.801,1.765,9.904,1354.8,997.6,11399.6,2615.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 base-misc-additional-properties.xml,56.128,56.128,35.995,35.995,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 @@ -421,6 +421,6 @@ house044.xml,227.028,227.028,43.62,43.62,183.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7 house045.xml,150.599,150.599,35.234,35.234,115.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.721,2.444,0.31,0.0,0.0,0.0,9.065,0.315,0.749,1.793,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.917,0.0,22.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.327,4.231,13.085,4.359,0.0,0.0,0.0,0.0,2305.7,3008.2,46.015,13.006,3.57,3.077,15.083,2.263,32.188,1.132,6.28,0.639,0.086,11.516,-0.221,20.634,0.0,10.929,0.0,0.0,-21.636,-0.016,0.004,-1.112,-0.119,0.92,-0.09,5.103,0.329,-0.013,-3.984,-0.191,-1.204,-0.934,-1.276,0.0,0.0,6.914,1610.9,1574.7,12168.2,4288.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 house046.xml,24.966,24.966,24.966,24.966,0.0,0.0,0.0,0.0,0.0,0.0,5.409,0.272,0.38,3.589,1.142,4.924,0.0,0.0,1.03,0.0,0.082,0.0,0.0,0.0,0.0,1.793,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.644,2.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.979,12.719,4.305,0.617,0.0,0.0,0.0,0.0,3780.1,2265.4,16.064,12.964,0.0,2.52,3.83,0.0,0.0,0.327,0.647,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.827,-4.067,0.0,1.287,2.524,0.0,0.0,0.024,3.101,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.684,5.134,596.8,442.2,5543.5,2208.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 house047.xml,19.923,19.923,14.488,14.488,5.436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.627,0.006,4.487,0.0,0.0,0.921,0.0,0.463,0.182,0.0,0.0,0.0,1.444,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.644,2.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.284,1.66,4.203,0.0,0.0,0.0,0.0,0.0,871.9,972.2,4.551,2.604,0.0,-0.001,0.779,0.129,0.0,0.0,1.196,0.0,0.0,0.546,-0.018,1.573,0.0,4.965,0.0,0.179,-4.083,0.0,-0.0,0.091,0.031,0.0,0.0,0.685,0.0,0.0,-0.912,-0.008,-0.24,-0.259,-1.429,0.0,-0.0,3.704,251.7,442.2,5772.6,1524.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 -house048.xml,94.421,94.421,41.498,41.498,52.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.339,14.24,4.297,0.0,0.0,0.0,3.691,0.085,0.498,2.899,0.0,0.0,0.0,2.421,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.35,8.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.977,0.0,12.606,0.0,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.912,52.344,7.253,2.665,0.0,0.0,0.0,0.0,1522.2,5082.6,46.091,33.572,1.017,2.621,11.971,0.0,0.0,0.804,2.395,0.0,0.056,1.685,-0.543,8.098,0.0,4.22,0.0,6.466,-8.984,1.352,1.062,9.364,0.0,0.0,0.565,7.066,0.0,0.074,10.221,-0.52,0.764,-0.442,1.845,0.0,7.493,13.698,130.3,817.7,11617.7,3495.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house048.xml,92.711,92.711,41.515,41.515,51.196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.323,14.241,4.301,0.0,0.0,0.0,3.691,0.085,0.498,2.927,0.0,0.0,0.0,2.421,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.35,8.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.25,0.0,12.606,0.0,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.514,52.603,7.253,2.665,0.0,0.0,0.0,0.0,1526.8,5082.7,46.091,33.573,1.017,2.613,11.931,0.0,0.0,0.798,2.371,0.0,0.056,1.718,-0.53,9.734,0.0,1.171,0.0,6.336,-8.817,1.349,1.043,9.281,0.0,0.0,0.556,7.023,0.0,0.074,10.211,-0.507,0.161,-0.462,2.767,0.0,7.446,13.865,130.3,817.7,11617.7,3495.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 house049.xml,31.754,31.754,28.257,28.257,3.497,0.0,0.0,0.0,0.0,0.0,5.541,0.0,0.033,5.873,0.159,2.621,0.249,0.0,1.474,0.057,0.099,2.092,0.0,0.0,0.0,3.073,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.879,4.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.698,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.934,34.1,4.262,1.304,0.0,0.0,0.0,108.0,4403.9,2165.2,12.255,17.691,0.0,1.366,4.388,0.0,0.0,0.0,-3.637,0.0,0.0,1.191,-0.094,2.585,0.0,1.811,0.0,0.0,-2.866,0.0,1.565,6.663,0.0,0.0,0.0,18.268,0.0,0.0,3.076,-0.074,-0.325,-3.576,0.504,0.0,0.0,8.574,728.6,567.4,7484.8,928.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 house050.xml,51.321,51.321,21.842,21.842,29.478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.266,1.901,0.334,0.0,0.0,0.0,1.782,0.057,0.111,2.23,0.0,0.0,0.0,2.36,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.114,5.961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.562,0.0,10.847,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.201,5.2,8.573,0.0,0.0,0.0,0.0,0.0,1156.0,2580.1,11.094,15.39,0.0,4.142,6.442,0.0,0.0,2.004,1.46,0.0,4.513,0.0,-0.131,2.668,0.0,3.672,0.0,1.861,-11.506,0.0,-0.288,-0.306,0.0,0.0,-0.388,3.485,0.0,-0.901,0.0,-0.127,-0.559,-1.227,-0.763,0.0,0.571,5.813,1689.0,437.0,10675.0,2994.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 diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index 0196888249..6652ecc3a6 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -44,7 +44,7 @@ base-bldgtype-multifamily-shared-generator.xml,1450.06,144.0,872.48,921.79,144.0 base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,1074.14,144.0,930.14,1074.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 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,949.42,144.0,552.24,696.24,144.0,109.18,253.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 base-bldgtype-multifamily-shared-laundry-room.xml,929.42,144.0,545.97,689.97,144.0,95.45,239.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 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,1432.76,144.0,999.45,1143.45,144.0,145.31,289.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 +base-bldgtype-multifamily-shared-mechvent-multiple.xml,1411.5,144.0,1007.18,1151.18,144.0,116.32,260.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 base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,1236.27,144.0,909.79,1053.79,144.0,38.48,182.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 base-bldgtype-multifamily-shared-mechvent.xml,1221.13,144.0,905.8,1049.8,144.0,27.33,171.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,0,0,0,0,0 base-bldgtype-multifamily-shared-pv.xml,351.2,144.0,872.48,202.35,144.0,4.85,148.85,0,0,0,0,0,0,0,0,-814.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 @@ -322,19 +322,19 @@ base-location-phoenix-az.xml,1577.06,144.0,1289.05,1433.05,144.0,0.01,144.01,0,0 base-location-portland-or.xml,1185.67,144.0,822.48,966.48,144.0,75.19,219.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 base-mechvent-balanced.xml,1832.3,144.0,1259.71,1403.71,144.0,284.59,428.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 base-mechvent-bath-kitchen-fans.xml,1646.22,144.0,1201.74,1345.74,144.0,156.48,300.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 -base-mechvent-cfis-airflow-fraction-zero.xml,1782.68,144.0,1257.54,1401.54,144.0,237.14,381.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 +base-mechvent-cfis-airflow-fraction-zero.xml,1741.4,144.0,1270.87,1414.87,144.0,182.53,326.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 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 -base-mechvent-cfis-evap-cooler-only-ducted.xml,1281.67,144.0,1137.67,1281.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 -base-mechvent-cfis-supplemental-exhaust-fan.xml,1696.71,144.0,1210.18,1354.18,144.0,198.53,342.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 -base-mechvent-cfis-supplemental-hrv-fan.xml,1681.83,144.0,1218.12,1362.12,144.0,175.71,319.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 -base-mechvent-cfis.xml,1790.38,144.0,1255.23,1399.23,144.0,247.15,391.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-mechvent-cfis-evap-cooler-only-ducted.xml,1282.91,144.0,1138.91,1282.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 +base-mechvent-cfis-supplemental-fan-exhaust.xml,1726.03,144.0,1212.02,1356.02,144.0,226.01,370.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 +base-mechvent-cfis-supplemental-fan-supply.xml,1742.97,144.0,1212.88,1356.88,144.0,242.09,386.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 +base-mechvent-cfis.xml,1756.93,144.0,1268.07,1412.07,144.0,200.86,344.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 base-mechvent-erv-atre-asre.xml,1728.69,144.0,1260.74,1404.74,144.0,179.95,323.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 base-mechvent-erv.xml,1728.72,144.0,1260.74,1404.74,144.0,179.98,323.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 base-mechvent-exhaust-rated-flow-rate.xml,1764.59,144.0,1226.25,1370.25,144.0,250.34,394.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 base-mechvent-exhaust.xml,1764.59,144.0,1226.25,1370.25,144.0,250.34,394.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 base-mechvent-hrv-asre.xml,1728.78,144.0,1260.85,1404.85,144.0,179.93,323.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 base-mechvent-hrv.xml,1728.81,144.0,1260.85,1404.85,144.0,179.96,323.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 -base-mechvent-multiple.xml,1827.08,144.0,1254.35,1398.35,144.0,284.73,428.73,0,0,0,0,0,0,0,0,0,0,0,0,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,1823.12,144.0,1252.04,1396.04,144.0,283.08,427.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,0,0,0,0,0 base-mechvent-supply.xml,1756.28,144.0,1228.64,1372.64,144.0,239.64,383.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 base-mechvent-whole-house-fan.xml,1576.89,144.0,1143.21,1287.21,144.0,145.68,289.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 base-misc-additional-properties.xml,1631.02,144.0,1198.67,1342.67,144.0,144.35,288.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 diff --git a/workflow/tests/base_results/results_hvac_sizing.csv b/workflow/tests/base_results/results_hvac_sizing.csv index 26495058ea..d8e89bbef1 100644 --- a/workflow/tests/base_results/results_hvac_sizing.csv +++ b/workflow/tests/base_results/results_hvac_sizing.csv @@ -1,426 +1,426 @@ -HPXML,heating_load_total [Btuh],heating_load_ducts [Btuh],heating_load_windows [Btuh],heating_load_skylights [Btuh],heating_load_doors [Btuh],heating_load_walls [Btuh],heating_load_roofs [Btuh],heating_load_floors [Btuh],heating_load_slabs [Btuh],heating_load_ceilings [Btuh],heating_load_infilvent [Btuh],cooling_load_sens_total [Btuh],cooling_load_sens_ducts [Btuh],cooling_load_sens_windows [Btuh],cooling_load_sens_skylights [Btuh],cooling_load_sens_doors [Btuh],cooling_load_sens_walls [Btuh],cooling_load_sens_roofs [Btuh],cooling_load_sens_floors [Btuh],cooling_load_sens_slabs [Btuh],cooling_load_sens_ceilings [Btuh],cooling_load_sens_infilvent [Btuh],cooling_load_sens_intgains [Btuh],cooling_load_lat_total [Btuh],cooling_load_lat_ducts [Btuh],cooling_load_lat_infilvent [Btuh],cooling_load_lat_intgains [Btuh],heating_capacity [Btuh],heating_backup_capacity [Btuh],heating_airflow [cfm],cooling_capacity [Btuh],cooling_airflow [cfm] -base-appliances-coal.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-appliances-dehumidifier-ief-portable.xml,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,14675.0,163.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,2520.0,1416.0,325.0,291.0,800.0,24000.0,0.0,444.0,24000.0,998.0 -base-appliances-dehumidifier-ief-whole-home.xml,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,14675.0,163.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,2520.0,1416.0,325.0,291.0,800.0,24000.0,0.0,444.0,24000.0,998.0 -base-appliances-dehumidifier-multiple.xml,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,14675.0,163.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,2520.0,1416.0,325.0,291.0,800.0,24000.0,0.0,444.0,24000.0,998.0 -base-appliances-dehumidifier.xml,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,14675.0,163.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,2520.0,1416.0,325.0,291.0,800.0,24000.0,0.0,444.0,24000.0,998.0 -base-appliances-gas.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-appliances-modified.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-appliances-none.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-appliances-oil-location-miami-fl.xml,12397.0,5549.0,2184.0,0.0,167.0,1864.0,0.0,0.0,711.0,631.0,1291.0,20738.0,7582.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,2520.0,2991.0,842.0,1349.0,800.0,12000.0,0.0,218.0,24000.0,998.0 -base-appliances-oil.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-appliances-propane-location-portland-or.xml,23400.0,7561.0,4921.0,0.0,377.0,4200.0,0.0,0.0,1603.0,1423.0,3315.0,18327.0,6166.0,6621.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,2520.0,599.0,0.0,-201.0,800.0,24000.0,0.0,437.0,24000.0,998.0 -base-appliances-propane.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-appliances-wood.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-atticroof-cathedral.xml,29887.0,0.0,9510.0,0.0,575.0,6763.0,3697.0,0.0,2446.0,0.0,6896.0,15154.0,0.0,10222.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-atticroof-conditioned.xml,38250.0,7495.0,10436.0,0.0,575.0,7551.0,2464.0,0.0,2446.0,724.0,6561.0,18739.0,0.0,12709.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-atticroof-flat.xml,24841.0,0.0,7508.0,0.0,575.0,6409.0,3307.0,0.0,2446.0,0.0,4597.0,11610.0,0.0,7127.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-atticroof-radiant-barrier.xml,25739.0,1416.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,21453.0,156.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,2520.0,1416.0,325.0,291.0,800.0,24000.0,0.0,444.0,24000.0,998.0 -base-atticroof-unvented-insulated-roof.xml,30549.0,4825.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,4190.0,4597.0,18589.0,1653.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-atticroof-vented.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,15605.0,3604.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-battery.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,12347.0,5659.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,7440.0,2262.0,1223.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 -base-bldgtype-multifamily-adjacent-to-multiple.xml,12328.0,5014.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9379.0,1558.0,3495.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,14594.0,6779.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,9351.0,3229.0,1223.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,8333.0,3674.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,7440.0,2262.0,1223.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,7888.0,3455.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,5543.0,1310.0,1223.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 -base-bldgtype-multifamily-calctype-operational.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,5886.0,0.0,0.0,8340.0,347.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,8647.0,2761.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,8647.0,0.0,0.0,9375.0,390.0 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,5886.0,0.0,0.0,8340.0,347.0 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,28548.0,0.0,757.0,9375.0,390.0 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,28548.0,0.0,757.0,9375.0,390.0 -base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,5886.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,8647.0,2761.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,8647.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,5886.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,5886.0,0.0,0.0,0.0,0.0 -base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,28548.0,0.0,757.0,0.0,0.0 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0.0,0.0,0.0,8340.0,347.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0.0,0.0,0.0,9375.0,390.0 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0.0,0.0,0.0,8340.0,347.0 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0.0,0.0,0.0,9375.0,390.0 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0.0,0.0,0.0,9375.0,390.0 -base-bldgtype-multifamily-shared-generator.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,12000.0,379.0,12000.0,265.0 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 -base-bldgtype-multifamily-shared-laundry-room.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,8872.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,4518.0,7402.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,2520.0,0.0,0.0,0.0,0.0,12000.0,0.0,264.0,12000.0,498.0 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,6182.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1828.0,6515.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,2520.0,0.0,0.0,0.0,0.0,12000.0,0.0,265.0,12000.0,499.0 -base-bldgtype-multifamily-shared-mechvent.xml,7785.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,3431.0,7001.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,2520.0,0.0,0.0,0.0,0.0,12000.0,0.0,265.0,12000.0,499.0 -base-bldgtype-multifamily-shared-pv.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 -base-bldgtype-multifamily-shared-water-heater.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 -base-bldgtype-multifamily.xml,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 -base-bldgtype-single-family-attached-2stories.xml,27861.0,7450.0,5147.0,0.0,575.0,5388.0,0.0,0.0,1913.0,1447.0,5942.0,16506.0,4315.0,6988.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,2520.0,0.0,0.0,0.0,0.0,48000.0,0.0,1060.0,36000.0,1497.0 -base-bldgtype-single-family-attached-atticroof-cathedral.xml,43510.0,0.0,3210.0,0.0,575.0,4222.0,27649.0,0.0,1913.0,0.0,5942.0,23553.0,0.0,5262.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,2520.0,0.0,0.0,0.0,0.0,48000.0,0.0,1060.0,36000.0,1497.0 -base-bldgtype-single-family-attached.xml,21565.0,8148.0,2576.0,0.0,575.0,3842.0,0.0,0.0,1913.0,1447.0,3065.0,13226.0,5081.0,3495.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,2520.0,117.0,0.0,-683.0,800.0,24000.0,0.0,530.0,24000.0,998.0 -base-calctype-operational-misc-defaults.xml,31061.0,4629.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7324.0,14665.0,902.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-calctype-operational-misc-loads-large-uncommon.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-calctype-operational-misc-loads-large-uncommon2.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-calctype-operational.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-combi-tankless-outside.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-dhw-combi-tankless.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-dhw-desuperheater-2-speed.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 -base-dhw-desuperheater-gshp.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1776.0 -base-dhw-desuperheater-hpwh.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-desuperheater-tankless.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 -base-dhw-desuperheater-var-speed.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 -base-dhw-desuperheater.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 -base-dhw-dwhr.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-indirect-dse.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-outside.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-standbyloss.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-dhw-indirect-with-solar-fraction.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-dhw-indirect.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-dhw-jacket-electric.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-jacket-gas.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-jacket-hpwh.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-jacket-indirect.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-dhw-low-flow-fixtures.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-multiple.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-dhw-none.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-recirc-demand.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-recirc-manual.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-recirc-nocontrol.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-recirc-temperature.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-recirc-timer.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-solar-direct-evacuated-tube.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-solar-direct-flat-plate.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-solar-direct-ics.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-solar-fraction.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-solar-indirect-flat-plate.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-solar-thermosyphon-flat-plate.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-coal.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-detailed-setpoints.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-elec-uef.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-gas-outside.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-gas-uef-fhr.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-gas-uef.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-gas.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-heat-pump-detailed-operating-modes.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-heat-pump-detailed-schedules.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-heat-pump-detailed-setpoints.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-heat-pump-outside.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-heat-pump-uef.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-heat-pump-with-solar.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-heat-pump.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-model-type-stratified.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-oil.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tank-wood.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tankless-detailed-setpoints.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tankless-electric-outside.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tankless-electric-uef.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tankless-electric.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tankless-gas-uef.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tankless-gas-with-solar-fraction.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tankless-gas-with-solar.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tankless-gas.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-dhw-tankless-propane.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-2stories-garage.xml,43722.0,7646.0,15016.0,0.0,575.0,8855.0,0.0,511.0,1797.0,2171.0,7152.0,25185.0,4350.0,14254.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,2520.0,0.0,0.0,0.0,0.0,48000.0,0.0,1060.0,36000.0,1497.0 -base-enclosure-2stories.xml,45827.0,7671.0,15016.0,0.0,575.0,9035.0,0.0,0.0,2446.0,2171.0,8913.0,25086.0,4349.0,14254.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,2520.0,0.0,0.0,0.0,0.0,48000.0,0.0,1060.0,36000.0,1497.0 -base-enclosure-beds-1.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17496.0,5208.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2060.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-beds-2.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17730.0,5212.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2290.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-beds-4.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,18198.0,5219.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2750.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-beds-5.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,18442.0,5234.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2980.0,175.0,0.0,-1025.0,1200.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-garage.xml,29872.0,8041.0,5506.0,0.0,575.0,6537.0,0.0,0.0,2446.0,2171.0,4597.0,15062.0,3154.0,6028.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-infil-ach-house-pressure.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-infil-cfm-house-pressure.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-infil-cfm50.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-infil-flue.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-infil-natural-ach.xml,37365.0,8715.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,9542.0,18641.0,5227.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-orientations.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-overhangs.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,18020.0,5216.0,7182.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-rooftypes.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-skylights-physical-properties.xml,34658.0,8659.0,7508.0,2294.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,22841.0,5299.0,7127.0,4794.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-skylights-shading.xml,32946.0,8615.0,7508.0,626.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,18743.0,5228.0,7127.0,766.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-skylights-storms.xml,33018.0,8617.0,7508.0,696.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,20957.0,5253.0,7127.0,2955.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-skylights.xml,32946.0,8615.0,7508.0,626.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,21201.0,5257.0,7127.0,3195.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-split-level.xml,29033.0,1685.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,12455.0,0.0,7127.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,2520.0,205.0,0.0,-595.0,800.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-split-surfaces.xml,32951.0,8615.0,7508.0,638.0,569.0,6407.0,0.0,0.0,2446.0,2171.0,4597.0,21264.0,5259.0,7127.0,3259.0,205.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-split-surfaces2.xml,36564.0,8696.0,8620.0,733.0,563.0,6389.0,0.0,0.0,4797.0,2168.0,4597.0,20423.0,5244.0,6806.0,2760.0,203.0,264.0,0.0,0.0,0.0,2008.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-thermal-mass.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-walltypes.xml,35314.0,8666.0,918.0,0.0,575.0,15942.0,0.0,0.0,2446.0,2171.0,4597.0,12750.0,5054.0,875.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-windows-natural-ventilation-availability.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-windows-none.xml,25541.0,8355.0,0.0,0.0,575.0,7398.0,0.0,0.0,2446.0,2171.0,4597.0,10692.0,4967.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-windows-physical-properties.xml,38729.0,8744.0,13788.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,21102.0,5256.0,10225.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-windows-shading.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,13759.0,5104.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-enclosure-windows-storms.xml,31450.0,8573.0,6680.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,16707.0,5174.0,5912.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-foundation-ambient.xml,27750.0,8437.0,7508.0,0.0,575.0,2198.0,0.0,4563.0,0.0,2171.0,2299.0,18129.0,5236.0,7127.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 -base-foundation-basement-garage.xml,31515.0,8575.0,7508.0,0.0,620.0,7098.0,0.0,511.0,1797.0,2171.0,3235.0,18231.0,5225.0,7127.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,2520.0,79.0,0.0,-721.0,800.0,36000.0,0.0,795.0,24000.0,998.0 -base-foundation-complex.xml,34257.0,8649.0,7508.0,0.0,575.0,7168.0,0.0,0.0,3589.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-foundation-conditioned-basement-slab-insulation.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-foundation-conditioned-basement-wall-insulation.xml,33075.0,8618.0,7508.0,0.0,575.0,7160.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-foundation-conditioned-crawlspace.xml,21924.0,0.0,7508.0,0.0,575.0,4819.0,0.0,0.0,3403.0,2171.0,3448.0,12594.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,2520.0,31.0,0.0,-769.0,800.0,36000.0,0.0,795.0,24000.0,998.0 -base-foundation-multiple.xml,23122.0,4833.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,13488.0,145.0,7127.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 -base-foundation-slab.xml,28666.0,1683.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,12405.0,0.0,7127.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 -base-foundation-unconditioned-basement-above-grade.xml,23083.0,4828.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,13483.0,149.0,7127.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 -base-foundation-unconditioned-basement-assembly-r.xml,20580.0,4443.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,13230.0,457.0,7127.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 -base-foundation-unconditioned-basement-wall-insulation.xml,23845.0,1648.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,14480.0,100.0,7127.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 -base-foundation-unconditioned-basement.xml,23128.0,4833.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,13490.0,145.0,7127.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 -base-foundation-unvented-crawlspace.xml,20341.0,4163.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,13315.0,531.0,7127.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 -base-foundation-vented-crawlspace.xml,23883.0,6886.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,14616.0,1615.0,7127.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 -base-foundation-walkout-basement.xml,33114.0,8619.0,7925.0,0.0,575.0,4704.0,0.0,0.0,3178.0,2171.0,5942.0,18338.0,5222.0,7312.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-hvac-air-to-air-heat-pump-1-speed-backup-lockout-temperature.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,1497.0 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,0.0,0.0 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 -base-hvac-air-to-air-heat-pump-1-speed.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 -base-hvac-air-to-air-heat-pump-2-speed.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,78000.0,60000.0,568.0,18000.0,749.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,78000.0,60000.0,568.0,18000.0,749.0 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,39811.0,16105.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,23179.0,10431.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,78000.0,60000.0,1893.0,18000.0,749.0 -base-hvac-air-to-air-heat-pump-var-speed.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18773.0,781.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,31214.0,31214.0,985.0,0.0,0.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,21589.0,31214.0,681.0,21589.0,898.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32619.0,31214.0,1029.0,32619.0,1356.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml,11215.0,4367.0,2184.0,0.0,167.0,1864.0,0.0,0.0,711.0,631.0,1291.0,20738.0,7582.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,2520.0,2991.0,842.0,1349.0,800.0,24446.0,11215.0,636.0,24446.0,1017.0 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,59238.0,31214.0,1869.0,59238.0,2463.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,22720.0,31214.0,717.0,22720.0,945.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32897.0,31214.0,1038.0,32897.0,1368.0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,66229.0,31214.0,2089.0,66229.0,2754.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,56532.0,23705.0,1035.0,32827.0,1365.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,39811.0,16105.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,23179.0,10431.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,65129.0,32302.0,1748.0,32827.0,1365.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,24560.0,31214.0,775.0,24560.0,1021.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32827.0,31214.0,1035.0,32827.0,1365.0 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,50891.0,31214.0,1605.0,50891.0,2116.0 -base-hvac-autosize-boiler-elec-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,0.0,18773.0,781.0 -base-hvac-autosize-boiler-gas-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-central-ac-only-1-speed.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18773.0,781.0 -base-hvac-autosize-central-ac-only-2-speed.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18933.0,787.0 -base-hvac-autosize-central-ac-only-var-speed.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18892.0,786.0 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,31214.0,31214.0,985.0,18773.0,781.0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,21589.0,31214.0,681.0,21589.0,898.0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32619.0,31214.0,1029.0,32619.0,1356.0 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32619.0,31214.0,1029.0,32619.0,1356.0 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,26064.0,26247.0,869.0,26064.0,923.0 -base-hvac-autosize-elec-resistance-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,0.0,0.0,0.0 -base-hvac-autosize-evap-cooler-furnace-gas.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32302.0,0.0,713.0,12748.0,2326.0 -base-hvac-autosize-floor-furnace-propane-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,691.0,0.0,0.0 -base-hvac-autosize-furnace-elec-only.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32302.0,0.0,713.0,0.0,0.0 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32302.0,0.0,713.0,18933.0,787.0 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32302.0,0.0,713.0,18892.0,786.0 -base-hvac-autosize-furnace-gas-only.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32302.0,0.0,713.0,0.0,0.0 -base-hvac-autosize-furnace-gas-room-ac.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32302.0,0.0,713.0,13323.0,346.0 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22883.0,795.0 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,31214.0,31214.0,985.0,0.0,0.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,31214.0,31214.0,985.0,31214.0,1084.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,33024.0,31214.0,1042.0,33024.0,1629.0 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,33024.0,31214.0,1042.0,33024.0,1629.0 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14473.0,513.0 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14473.0,513.0 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,26247.0,26247.0,875.0,0.0,0.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,18814.0,26247.0,627.0,18814.0,666.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,26064.0,26247.0,869.0,26064.0,923.0 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,52054.0,26247.0,1735.0,52054.0,1844.0 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,47245.0,23705.0,1476.0,23540.0,834.0 -base-hvac-autosize-ptac-with-heating.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,523.0,13323.0,346.0 -base-hvac-autosize-ptac.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13323.0,346.0 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,15321.0,23705.0,447.0,15321.0,398.0 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,24773.0,23705.0,723.0,24773.0,644.0 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,44989.0,23705.0,1312.0,44989.0,1170.0 -base-hvac-autosize-room-ac-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13323.0,346.0 -base-hvac-autosize-stove-oil-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,691.0,0.0,0.0 -base-hvac-autosize-wall-furnace-elec-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,691.0,0.0,0.0 -base-hvac-autosize.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32302.0,0.0,713.0,18773.0,781.0 -base-hvac-boiler-coal-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-elec-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-gas-central-ac-1-speed.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,24000.0,998.0 -base-hvac-boiler-gas-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-oil-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-propane-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-hvac-boiler-wood-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-hvac-central-ac-only-1-speed-seer2.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 -base-hvac-central-ac-only-1-speed.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 -base-hvac-central-ac-only-2-speed.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 -base-hvac-central-ac-only-var-speed.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,24000.0,998.0 -base-hvac-dse.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1200.0,36000.0,1275.0 -base-hvac-ducts-area-fractions.xml,71332.0,33176.0,15016.0,0.0,575.0,9035.0,0.0,0.0,2446.0,2171.0,8913.0,82948.0,62211.0,14254.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,2520.0,0.0,0.0,0.0,0.0,48000.0,0.0,1060.0,36000.0,1497.0 -base-hvac-ducts-area-multipliers.xml,30853.0,7148.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17515.0,4767.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-hvac-ducts-leakage-cfm50.xml,34564.0,10858.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,19299.0,6551.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-hvac-ducts-leakage-percent.xml,32737.0,9032.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,19502.0,6754.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-hvac-elec-resistance-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 -base-hvac-evap-cooler-furnace-gas.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,4380.0 -base-hvac-evap-cooler-only-ducted.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14991.0,2242.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,4380.0 -base-hvac-evap-cooler-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,4380.0 -base-hvac-fireplace-wood-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1050.0,0.0,0.0 -base-hvac-fixed-heater-gas-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1050.0,0.0,0.0 -base-hvac-floor-furnace-propane-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1050.0,0.0,0.0 -base-hvac-furnace-coal-only.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,0.0,0.0 -base-hvac-furnace-elec-central-ac-1-speed.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-hvac-furnace-elec-only.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,0.0,0.0 -base-hvac-furnace-gas-central-ac-2-speed.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-hvac-furnace-gas-central-ac-var-speed.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-hvac-furnace-gas-only-detailed-setpoints.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,0.0,0.0 -base-hvac-furnace-gas-only.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,0.0,0.0 -base-hvac-furnace-gas-room-ac.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,624.0 -base-hvac-furnace-oil-only.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,0.0,0.0 -base-hvac-furnace-propane-only.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,0.0,0.0 -base-hvac-furnace-wood-only.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,0.0,0.0 -base-hvac-furnace-x3-dse.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,1250.0 -base-hvac-ground-to-air-heat-pump-heating-only.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,0.0,0.0 -base-hvac-ground-to-air-heat-pump.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1776.0 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,852.0,36000.0,1123.0 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,852.0,36000.0,1123.0 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,852.0,36000.0,1123.0 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,596.0,24000.0,749.0 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,596.0,24000.0,748.0 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,596.0,24000.0,748.0 -base-hvac-install-quality-furnace-gas-only.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,596.0,0.0,0.0 -base-hvac-install-quality-ground-to-air-heat-pump.xml,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,852.0,36000.0,1332.0 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,637.0 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,900.0,36000.0,956.0 -base-hvac-mini-split-air-conditioner-only-ducted.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,850.0 -base-hvac-mini-split-air-conditioner-only-ductless.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,850.0 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,1275.0 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1200.0,0.0,0.0 -base-hvac-mini-split-heat-pump-ducted.xml,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1200.0,36000.0,1275.0 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,78000.0,60000.0,2350.0,18000.0,638.0 -base-hvac-mini-split-heat-pump-ductless.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1200.0,36000.0,1275.0 -base-hvac-multiple.xml,36780.0,13075.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,22621.0,9872.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,59200.0,10236.0,1118.0,36799.2,1102.0 -base-hvac-none.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -base-hvac-portable-heater-gas-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1050.0,0.0,0.0 -base-hvac-ptac-with-heating.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,624.0 -base-hvac-ptac.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,624.0 -base-hvac-pthp.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1050.0,36000.0,936.0 -base-hvac-room-ac-only-33percent.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8000.0,208.0 -base-hvac-room-ac-only-ceer.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,624.0 -base-hvac-room-ac-only-detailed-setpoints.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,624.0 -base-hvac-room-ac-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,624.0 -base-hvac-seasons.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-hvac-setpoints-daily-schedules.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-hvac-setpoints-daily-setbacks.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-hvac-setpoints.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-hvac-stove-oil-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1050.0,0.0,0.0 -base-hvac-stove-wood-pellets-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1050.0,0.0,0.0 -base-hvac-undersized-allow-increased-fixed-capacities.xml,28964.0,5259.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,16662.0,3914.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,28964.0,0.0,640.0,17412.0,724.0 -base-hvac-undersized.xml,28964.0,5259.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,16662.0,3914.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,3600.0,0.0,79.0,2400.0,100.0 -base-hvac-wall-furnace-elec-only.xml,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1050.0,0.0,0.0 -base-lighting-ceiling-fans.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-lighting-holiday.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-lighting-none.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-location-AMY-2012.xml,30730.0,8345.0,7102.0,0.0,543.0,6062.0,0.0,0.0,2314.0,2054.0,4311.0,17718.0,5043.0,7109.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,791.0,24000.0,998.0 -base-location-baltimore-md.xml,18314.0,4508.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,14335.0,1180.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,2520.0,1671.0,482.0,389.0,800.0,24000.0,0.0,438.0,24000.0,998.0 -base-location-capetown-zaf.xml,13255.0,5428.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13033.0,1990.0,5825.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,2520.0,739.0,0.0,-61.0,800.0,24000.0,0.0,438.0,24000.0,998.0 -base-location-dallas-tx.xml,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,14675.0,163.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,2520.0,1416.0,325.0,291.0,800.0,24000.0,0.0,444.0,24000.0,998.0 -base-location-duluth-mn.xml,31260.0,6260.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11163.0,185.0,6163.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,2520.0,1022.0,133.0,89.0,800.0,36000.0,0.0,687.0,24000.0,998.0 -base-location-helena-mt.xml,40049.0,10037.0,9283.0,0.0,710.0,7923.0,0.0,0.0,3024.0,2684.0,6386.0,17384.0,4998.0,7145.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,2520.0,0.0,0.0,0.0,0.0,48000.0,0.0,999.0,24000.0,998.0 -base-location-honolulu-hi.xml,3417.0,592.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,12324.0,122.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,2520.0,1631.0,467.0,364.0,800.0,12000.0,0.0,218.0,24000.0,998.0 -base-location-miami-fl.xml,8608.0,784.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,646.0,12608.0,-129.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,2520.0,2317.0,842.0,675.0,800.0,12000.0,0.0,218.0,24000.0,998.0 -base-location-phoenix-az.xml,13271.0,1050.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1035.0,17760.0,667.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,2520.0,400.0,0.0,-400.0,800.0,24000.0,0.0,452.0,24000.0,998.0 -base-location-portland-or.xml,17550.0,6260.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,14354.0,2050.0,6621.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,2520.0,700.0,0.0,-100.0,800.0,24000.0,0.0,437.0,24000.0,998.0 -base-mechvent-balanced.xml,38747.0,8745.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,10894.0,19647.0,5228.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-mechvent-bath-kitchen-fans.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-mechvent-cfis-airflow-fraction-zero.xml,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-mechvent-cfis-dse.xml,26905.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,13910.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-mechvent-cfis-evap-cooler-only-ducted.xml,26905.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,16170.0,2259.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,4380.0 -base-mechvent-cfis-supplemental-exhaust-fan.xml,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-mechvent-cfis-supplemental-hrv-fan.xml,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-mechvent-cfis.xml,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-mechvent-erv-atre-asre.xml,33661.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5920.0,18320.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-mechvent-erv.xml,33663.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5921.0,18321.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-mechvent-exhaust-rated-flow-rate.xml,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-mechvent-exhaust.xml,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-mechvent-hrv-asre.xml,33661.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5920.0,18320.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-mechvent-hrv.xml,33663.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5921.0,18321.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-mechvent-multiple.xml,42885.0,16261.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7515.0,23724.0,10054.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1540.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,794.0,24000.0,998.0 -base-mechvent-supply.xml,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-mechvent-whole-house-fan.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-misc-additional-properties.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-misc-bills-none.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-misc-bills-pv.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-misc-bills.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-misc-defaults.xml,31061.0,4629.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7324.0,14665.0,902.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-misc-emissions.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-misc-generators.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-misc-ground-conductivity.xml,31497.0,8574.0,7508.0,0.0,575.0,6098.0,0.0,0.0,1975.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-misc-loads-large-uncommon.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-misc-loads-large-uncommon2.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-misc-loads-none.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-misc-neighbor-shading.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-misc-shielding-of-home.xml,31456.0,8573.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,3775.0,17855.0,5214.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-misc-usage-multiplier.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-pv-battery-ah.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-pv-battery-garage.xml,29872.0,8041.0,5506.0,0.0,575.0,6537.0,0.0,0.0,2446.0,2171.0,4597.0,15062.0,3154.0,6028.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-pv-battery-lifetime-model.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-pv-battery.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-pv.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-schedules-detailed-all-10-mins.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-schedules-detailed-occupancy-smooth.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-schedules-detailed-occupancy-stochastic.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-schedules-detailed-setpoints-daily-schedules.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-schedules-detailed-setpoints-daily-setbacks.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-schedules-detailed-setpoints.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-schedules-simple.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-simcontrol-calendar-year-custom.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-simcontrol-daylight-saving-custom.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-simcontrol-daylight-saving-disabled.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-simcontrol-runperiod-1-month.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-simcontrol-temperature-capacitance-multiplier.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base-simcontrol-timestep-10-mins.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -base.xml,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 -house001.xml,62092.0,24399.0,7740.0,0.0,942.0,7599.0,453.0,609.0,9636.0,2236.0,8478.0,99887.0,72262.0,9995.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,2980.0,5399.0,2597.0,1602.0,1200.0,90000.0,0.0,1664.0,60000.0,2495.0 -house002.xml,47924.0,15311.0,6070.0,0.0,752.0,4731.0,0.0,0.0,12952.0,3120.0,4987.0,34810.0,14856.0,7099.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,2520.0,3061.0,1299.0,962.0,800.0,90000.0,0.0,1664.0,60000.0,2495.0 -house003.xml,48411.0,15944.0,6644.0,0.0,892.0,4431.0,610.0,0.0,11450.0,2908.0,5532.0,42968.0,18995.0,9541.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,2520.0,3149.0,1299.0,1051.0,800.0,90000.0,0.0,1664.0,60000.0,2495.0 -house004.xml,76554.0,20975.0,11324.0,0.0,882.0,8959.0,101.0,0.0,19021.0,5929.0,9362.0,54634.0,19418.0,12979.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,2750.0,3680.0,952.0,1727.0,1000.0,80000.0,0.0,1479.0,60000.0,2495.0 -house005.xml,71539.0,26959.0,10216.0,0.0,1260.0,8257.0,0.0,480.0,11638.0,3312.0,9418.0,67465.0,32792.0,14422.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,2750.0,5343.0,2597.0,1746.0,1000.0,90000.0,0.0,1664.0,60000.0,2495.0 -house006.xml,39295.0,0.0,8907.0,0.0,750.0,19692.0,0.0,0.0,2813.0,1874.0,5257.0,9402.0,0.0,4578.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,2520.0,1215.0,0.0,415.0,800.0,80000.0,0.0,1526.0,30000.0,1248.0 -house007.xml,43883.0,5469.0,9095.0,0.0,587.0,14942.0,0.0,27.0,2642.0,2001.0,9120.0,11972.0,1069.0,5464.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,2750.0,1620.0,219.0,401.0,1000.0,90000.0,0.0,1717.0,42000.0,1747.0 -house008.xml,60317.0,10599.0,10314.0,0.0,587.0,20172.0,0.0,891.0,4910.0,3226.0,9618.0,18248.0,2426.0,9152.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,2980.0,1893.0,85.0,608.0,1200.0,90000.0,0.0,1717.0,36000.0,1497.0 -house009.xml,45251.0,0.0,8913.0,0.0,885.0,18118.0,0.0,95.0,4218.0,2204.0,10820.0,12202.0,0.0,6524.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,2750.0,1429.0,0.0,429.0,1000.0,90000.0,0.0,1717.0,36000.0,1497.0 -house010.xml,52115.0,8291.0,10714.0,0.0,587.0,16310.0,359.0,532.0,2642.0,2165.0,10515.0,13819.0,1817.0,5798.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,2980.0,1969.0,141.0,628.0,1200.0,90000.0,0.0,1717.0,30000.0,1248.0 -house011.xml,20649.0,6686.0,2440.0,0.0,1007.0,3251.0,0.0,546.0,0.0,1795.0,4923.0,20439.0,7796.0,3938.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,2750.0,2661.0,372.0,1289.0,1000.0,24000.0,34120.0,637.0,18000.0,748.0 -house012.xml,13914.0,1327.0,1906.0,0.0,333.0,2909.0,0.0,1767.0,0.0,1513.0,4159.0,11073.0,622.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,2520.0,2166.0,298.0,1068.0,800.0,23400.0,0.0,621.0,23200.0,965.0 -house013.xml,12482.0,3021.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9124.0,1054.0,2271.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,2290.0,1419.0,251.0,568.0,600.0,18000.0,17060.0,478.0,18000.0,748.0 -house014.xml,13648.0,3089.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,10173.0,1044.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,2290.0,1471.0,251.0,620.0,600.0,18000.0,17060.0,478.0,18000.0,748.0 -house015.xml,12482.0,3021.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9124.0,1054.0,2271.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,2290.0,1419.0,251.0,568.0,600.0,18000.0,17060.0,478.0,18000.0,748.0 -house016.xml,27038.0,0.0,5399.0,0.0,171.0,10377.0,0.0,0.0,3117.0,2689.0,5286.0,18485.0,0.0,9792.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,2520.0,1784.0,0.0,984.0,800.0,136000.0,36000.0,2755.0,36000.0,1497.0 -house017.xml,35600.0,0.0,4833.0,0.0,181.0,13937.0,0.0,354.0,1635.0,3048.0,11612.0,17539.0,0.0,7766.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,2750.0,3084.0,0.0,2084.0,1000.0,60000.0,0.0,1093.0,24000.0,998.0 -house018.xml,18300.0,4909.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,9257.0,725.0,2260.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,2520.0,2144.0,756.0,588.0,800.0,36000.0,36000.0,936.0,36000.0,1497.0 -house019.xml,50337.0,0.0,9523.0,0.0,1028.0,26480.0,0.0,0.0,2084.0,5769.0,5453.0,31793.0,0.0,13774.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,2520.0,1779.0,0.0,979.0,800.0,100000.0,0.0,1822.0,60000.0,2495.0 -house020.xml,45228.0,0.0,10325.0,0.0,395.0,12858.0,598.0,0.0,3897.0,6812.0,10343.0,24478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,2520.0,2725.0,0.0,1925.0,800.0,120000.0,0.0,2183.0,60000.0,2495.0 -house021.xml,52812.0,8050.0,10175.0,0.0,318.0,15504.0,0.0,396.0,2243.0,3431.0,12694.0,26586.0,5715.0,9853.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,2750.0,4182.0,904.0,2279.0,1000.0,130000.0,0.0,2368.0,60000.0,2496.0 -house022.xml,53604.0,0.0,10741.0,0.0,737.0,11570.0,2029.0,5140.0,0.0,2115.0,21272.0,23289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,2520.0,4618.0,0.0,3818.0,800.0,100000.0,0.0,1822.0,36000.0,1497.0 -house023.xml,44344.0,0.0,5067.0,0.0,362.0,17083.0,0.0,0.0,1842.0,4899.0,15091.0,21470.0,0.0,9506.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,2750.0,3692.0,0.0,2692.0,1000.0,125000.0,0.0,2278.0,42000.0,1747.0 -house024.xml,60409.0,12599.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,20929.0,1250.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,2520.0,6044.0,2254.0,2990.0,800.0,85000.0,0.0,1549.0,30000.0,1247.0 -house025.xml,54382.0,20089.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,30864.0,8850.0,8255.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,2520.0,7891.0,4800.0,2291.0,800.0,158000.0,33000.0,3199.0,81000.0,3368.0 -house026.xml,22421.0,0.0,3869.0,0.0,128.0,5749.0,0.0,5824.0,0.0,1459.0,5391.0,16444.0,0.0,5841.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,2520.0,2042.0,0.0,1242.0,800.0,84000.0,0.0,0.0,0.0,0.0 -house027.xml,33085.0,7576.0,4494.0,0.0,375.0,6506.0,550.0,250.0,4088.0,1516.0,7731.0,18431.0,3513.0,4326.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,2520.0,4578.0,1414.0,2364.0,800.0,75000.0,0.0,1394.0,36000.0,1397.0 -house028.xml,31420.0,8676.0,4365.0,0.0,315.0,5287.0,616.0,180.0,3569.0,1488.0,6925.0,19287.0,3836.0,6007.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,2750.0,4257.0,1628.0,1629.0,1000.0,75000.0,0.0,1394.0,36000.0,1497.0 -house029.xml,29358.0,2294.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,15965.0,-59.0,5307.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,2520.0,3313.0,732.0,1781.0,800.0,77000.0,0.0,1406.0,36000.0,1497.0 -house030.xml,18525.0,0.0,3366.0,0.0,474.0,6809.0,0.0,0.0,3152.0,1036.0,3688.0,9617.0,0.0,2691.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,2290.0,1503.0,0.0,903.0,600.0,87000.0,0.0,0.0,0.0,0.0 -house031.xml,83057.0,13664.0,10261.0,0.0,650.0,23266.0,0.0,869.0,1754.0,7333.0,25259.0,44083.0,9876.0,13739.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,3210.0,7447.0,1513.0,4534.0,1400.0,200000.0,0.0,3644.0,96000.0,3992.0 -house032.xml,30739.0,0.0,5132.0,0.0,690.0,10940.0,0.0,0.0,1537.0,5647.0,6794.0,16466.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,2750.0,2217.0,0.0,1217.0,1000.0,75000.0,0.0,1367.0,0.0,0.0 -house033.xml,32325.0,0.0,5273.0,0.0,362.0,6028.0,0.0,4559.0,0.0,8461.0,7643.0,18211.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,2750.0,2369.0,0.0,1369.0,1000.0,109000.0,0.0,0.0,0.0,0.0 -house034.xml,61172.0,0.0,15758.0,0.0,1028.0,15579.0,0.0,4773.0,1343.0,4622.0,18068.0,37136.0,0.0,21864.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,2750.0,4246.0,0.0,3246.0,1000.0,210000.0,0.0,0.0,0.0,0.0 -house035.xml,27631.0,0.0,4397.0,0.0,318.0,7248.0,249.0,1468.0,0.0,4065.0,9886.0,15754.0,0.0,6100.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,2520.0,2575.0,0.0,1775.0,800.0,80000.0,0.0,1458.0,24000.0,998.0 -house036.xml,25212.0,0.0,4435.0,0.0,1019.0,2375.0,3328.0,7811.0,0.0,1320.0,4925.0,12355.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,2290.0,1482.0,0.0,882.0,600.0,60000.0,0.0,1093.0,24000.0,998.0 -house037.xml,40440.0,0.0,6057.0,0.0,969.0,7752.0,0.0,1095.0,0.0,13572.0,10994.0,25198.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,2520.0,2840.0,0.0,2040.0,800.0,110000.0,0.0,0.0,0.0,0.0 -house038.xml,30786.0,0.0,6993.0,0.0,362.0,9341.0,0.0,865.0,750.0,1706.0,10769.0,18374.0,0.0,9560.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,3210.0,3333.0,0.0,1933.0,1400.0,71000.0,0.0,1294.0,36000.0,1497.0 -house039.xml,42559.0,0.0,11110.0,0.0,1456.0,3312.0,0.0,6991.0,0.0,8806.0,10883.0,24051.0,0.0,9921.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,2520.0,2750.0,0.0,1950.0,800.0,87000.0,0.0,0.0,0.0,0.0 -house040.xml,44215.0,0.0,7249.0,0.0,1028.0,13423.0,5873.0,795.0,1188.0,3065.0,11594.0,23164.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,2520.0,2881.0,0.0,2081.0,800.0,75000.0,0.0,1367.0,0.0,0.0 -house041.xml,98322.0,0.0,18666.0,0.0,1544.0,30313.0,0.0,2471.0,9011.0,5077.0,31239.0,28288.0,0.0,18014.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,2750.0,1684.0,0.0,684.0,1000.0,75000.0,0.0,1431.0,30000.0,1248.0 -house042.xml,86413.0,0.0,17465.0,0.0,1066.0,30498.0,0.0,927.0,4709.0,4248.0,27501.0,15616.0,0.0,6423.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,2750.0,1601.0,0.0,601.0,1000.0,90000.0,0.0,1717.0,24000.0,998.0 -house043.xml,55143.0,0.0,11581.0,0.0,2417.0,20151.0,0.0,202.0,3040.0,1519.0,16233.0,14843.0,0.0,8011.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,2520.0,1155.0,0.0,355.0,800.0,90000.0,0.0,1717.0,30000.0,1248.0 -house044.xml,80986.0,0.0,8527.0,0.0,1403.0,26527.0,1911.0,5425.0,4343.0,3592.0,29257.0,20452.0,0.0,11261.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,2520.0,1440.0,0.0,640.0,800.0,110000.0,0.0,2098.0,36000.0,1497.0 -house045.xml,45770.0,0.0,8927.0,496.0,442.0,17005.0,1494.0,31.0,2796.0,1367.0,13211.0,15016.0,0.0,9495.0,885.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,2520.0,1137.0,0.0,337.0,800.0,70000.0,0.0,1335.0,30000.0,1248.0 -house046.xml,19009.0,4026.0,1800.0,0.0,182.0,2847.0,0.0,0.0,0.0,1604.0,8550.0,14319.0,3821.0,3366.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2060.0,2573.0,388.0,1784.0,400.0,18000.0,17065.0,478.0,18000.0,721.0 -house047.xml,7389.0,1053.0,1216.0,0.0,0.0,630.0,0.0,0.0,705.0,0.0,3785.0,3312.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2060.0,1391.0,0.0,991.0,400.0,20000.0,0.0,364.0,18000.0,638.0 -house048.xml,51008.0,12331.0,4499.0,0.0,585.0,9704.0,828.0,45.0,11275.0,2249.0,9492.0,29992.0,8413.0,4654.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,2750.0,3589.0,835.0,1754.0,1000.0,63000.0,0.0,1165.0,46500.0,1934.0 -house049.xml,18656.0,0.0,5635.0,0.0,0.0,5120.0,0.0,0.0,2100.0,1357.0,4445.0,20462.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,2290.0,0.0,0.0,0.0,0.0,39000.0,0.0,0.0,16000.0,567.0 -house050.xml,21920.0,7753.0,3277.0,0.0,856.0,3061.0,0.0,2043.0,0.0,1771.0,3159.0,18368.0,5020.0,6268.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,2520.0,307.0,0.0,-493.0,800.0,58000.0,0.0,1055.0,29000.0,1206.0 +HPXML,temperature_heating [F],temperature_cooling [F],heating_load_total [Btuh],heating_load_ducts [Btuh],heating_load_windows [Btuh],heating_load_skylights [Btuh],heating_load_doors [Btuh],heating_load_walls [Btuh],heating_load_roofs [Btuh],heating_load_floors [Btuh],heating_load_slabs [Btuh],heating_load_ceilings [Btuh],heating_load_infilvent [Btuh],cooling_load_sens_total [Btuh],cooling_load_sens_ducts [Btuh],cooling_load_sens_windows [Btuh],cooling_load_sens_skylights [Btuh],cooling_load_sens_doors [Btuh],cooling_load_sens_walls [Btuh],cooling_load_sens_roofs [Btuh],cooling_load_sens_floors [Btuh],cooling_load_sens_slabs [Btuh],cooling_load_sens_ceilings [Btuh],cooling_load_sens_infilvent [Btuh],cooling_load_sens_intgains [Btuh],cooling_load_lat_total [Btuh],cooling_load_lat_ducts [Btuh],cooling_load_lat_infilvent [Btuh],cooling_load_lat_intgains [Btuh],heating_capacity [Btuh],heating_backup_capacity [Btuh],heating_airflow [cfm],cooling_capacity [Btuh],cooling_airflow [cfm] +base-appliances-coal.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-appliances-dehumidifier-ief-portable.xml,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,14675.0,163.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,2520.0,1416.0,325.0,291.0,800.0,24000.0,0.0,444.0,24000.0,998.0 +base-appliances-dehumidifier-ief-whole-home.xml,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,14675.0,163.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,2520.0,1416.0,325.0,291.0,800.0,24000.0,0.0,444.0,24000.0,998.0 +base-appliances-dehumidifier-multiple.xml,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,14675.0,163.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,2520.0,1416.0,325.0,291.0,800.0,24000.0,0.0,444.0,24000.0,998.0 +base-appliances-dehumidifier.xml,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,14675.0,163.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,2520.0,1416.0,325.0,291.0,800.0,24000.0,0.0,444.0,24000.0,998.0 +base-appliances-gas.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-appliances-modified.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-appliances-none.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-appliances-oil-location-miami-fl.xml,51.62,90.68,12397.0,5549.0,2184.0,0.0,167.0,1864.0,0.0,0.0,711.0,631.0,1291.0,20738.0,7582.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,2520.0,2991.0,842.0,1349.0,800.0,12000.0,0.0,218.0,24000.0,998.0 +base-appliances-oil.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-appliances-propane-location-portland-or.xml,28.58,87.08,23400.0,7561.0,4921.0,0.0,377.0,4200.0,0.0,0.0,1603.0,1423.0,3315.0,18327.0,6166.0,6621.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,2520.0,599.0,0.0,-201.0,800.0,24000.0,0.0,437.0,24000.0,998.0 +base-appliances-propane.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-appliances-wood.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-atticroof-cathedral.xml,6.8,91.76,29887.0,0.0,9510.0,0.0,575.0,6763.0,3697.0,0.0,2446.0,0.0,6896.0,15154.0,0.0,10222.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-atticroof-conditioned.xml,6.8,91.76,38250.0,7495.0,10436.0,0.0,575.0,7551.0,2464.0,0.0,2446.0,724.0,6561.0,18739.0,0.0,12709.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-atticroof-flat.xml,6.8,91.76,24841.0,0.0,7508.0,0.0,575.0,6409.0,3307.0,0.0,2446.0,0.0,4597.0,11610.0,0.0,7127.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-atticroof-radiant-barrier.xml,25.88,98.42,25739.0,1416.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,21453.0,156.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,2520.0,1416.0,325.0,291.0,800.0,24000.0,0.0,444.0,24000.0,998.0 +base-atticroof-unvented-insulated-roof.xml,6.8,91.76,30549.0,4825.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,4190.0,4597.0,18589.0,1653.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-atticroof-vented.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,15605.0,3604.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-battery.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,6.8,91.76,12347.0,5659.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,7440.0,2262.0,1223.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 +base-bldgtype-multifamily-adjacent-to-multiple.xml,6.8,91.76,12328.0,5014.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9379.0,1558.0,3495.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 +base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,6.8,91.76,14594.0,6779.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,9351.0,3229.0,1223.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 +base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,6.8,91.76,8333.0,3674.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,7440.0,2262.0,1223.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 +base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,6.8,91.76,7888.0,3455.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,5543.0,1310.0,1223.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 +base-bldgtype-multifamily-calctype-operational.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 +base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,5886.0,0.0,0.0,8340.0,347.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,6.8,91.76,8647.0,2761.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,8647.0,0.0,0.0,9375.0,390.0 +base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,5886.0,0.0,0.0,8340.0,347.0 +base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,28548.0,0.0,757.0,9375.0,390.0 +base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,28548.0,0.0,757.0,9375.0,390.0 +base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,5886.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,6.8,91.76,8647.0,2761.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,8647.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,5886.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,5886.0,0.0,0.0,0.0,0.0 +base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,28548.0,0.0,757.0,0.0,0.0 +base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0.0,0.0,0.0,8340.0,347.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0.0,0.0,0.0,9375.0,390.0 +base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0.0,0.0,0.0,8340.0,347.0 +base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0.0,0.0,0.0,9375.0,390.0 +base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0.0,0.0,0.0,9375.0,390.0 +base-bldgtype-multifamily-shared-generator.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 +base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,12000.0,379.0,12000.0,265.0 +base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 +base-bldgtype-multifamily-shared-laundry-room.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 +base-bldgtype-multifamily-shared-mechvent-multiple.xml,6.8,91.76,8872.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,4518.0,7402.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,2520.0,0.0,0.0,0.0,0.0,12000.0,0.0,264.0,12000.0,498.0 +base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,6.8,91.76,6182.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1828.0,6515.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,2520.0,0.0,0.0,0.0,0.0,12000.0,0.0,265.0,12000.0,499.0 +base-bldgtype-multifamily-shared-mechvent.xml,6.8,91.76,7785.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,3431.0,7001.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,2520.0,0.0,0.0,0.0,0.0,12000.0,0.0,265.0,12000.0,499.0 +base-bldgtype-multifamily-shared-pv.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 +base-bldgtype-multifamily-shared-water-heater-recirc.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 +base-bldgtype-multifamily-shared-water-heater.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 +base-bldgtype-multifamily.xml,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,12000.0,0.0,265.0,12000.0,499.0 +base-bldgtype-single-family-attached-2stories.xml,6.8,91.76,27861.0,7450.0,5147.0,0.0,575.0,5388.0,0.0,0.0,1913.0,1447.0,5942.0,16506.0,4315.0,6988.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,2520.0,0.0,0.0,0.0,0.0,48000.0,0.0,1060.0,36000.0,1497.0 +base-bldgtype-single-family-attached-atticroof-cathedral.xml,6.8,91.76,43510.0,0.0,3210.0,0.0,575.0,4222.0,27649.0,0.0,1913.0,0.0,5942.0,23553.0,0.0,5262.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,2520.0,0.0,0.0,0.0,0.0,48000.0,0.0,1060.0,36000.0,1497.0 +base-bldgtype-single-family-attached.xml,6.8,91.76,21565.0,8148.0,2576.0,0.0,575.0,3842.0,0.0,0.0,1913.0,1447.0,3065.0,13226.0,5081.0,3495.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,2520.0,117.0,0.0,-683.0,800.0,24000.0,0.0,530.0,24000.0,998.0 +base-calctype-operational-misc-defaults.xml,6.8,91.76,31061.0,4629.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7324.0,14665.0,902.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-calctype-operational-misc-loads-large-uncommon.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-calctype-operational-misc-loads-large-uncommon2.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-calctype-operational.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-combi-tankless-outside.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-dhw-combi-tankless.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-dhw-desuperheater-2-speed.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 +base-dhw-desuperheater-gshp.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1776.0 +base-dhw-desuperheater-hpwh.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-desuperheater-tankless.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 +base-dhw-desuperheater-var-speed.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 +base-dhw-desuperheater.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 +base-dhw-dwhr.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-indirect-dse.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-outside.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-standbyloss.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-dhw-indirect-with-solar-fraction.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-dhw-indirect.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-dhw-jacket-electric.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-jacket-gas.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-jacket-hpwh.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-jacket-indirect.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-dhw-low-flow-fixtures.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-multiple.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-dhw-none.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-recirc-demand.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-recirc-manual.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-recirc-nocontrol.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-recirc-temperature.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-recirc-timer.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-solar-direct-evacuated-tube.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-solar-direct-flat-plate.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-solar-direct-ics.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-solar-fraction.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-solar-indirect-flat-plate.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-solar-thermosyphon-flat-plate.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-coal.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-detailed-setpoints.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-elec-uef.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-gas-outside.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-gas-uef-fhr.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-gas-uef.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-gas.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-heat-pump-detailed-operating-modes.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-heat-pump-detailed-schedules.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-heat-pump-detailed-setpoints.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-heat-pump-outside.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-heat-pump-uef.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-heat-pump-with-solar-fraction.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-heat-pump-with-solar.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-heat-pump.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-model-type-stratified.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-oil.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tank-wood.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tankless-detailed-setpoints.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tankless-electric-outside.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tankless-electric-uef.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tankless-electric.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tankless-gas-uef.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tankless-gas-with-solar-fraction.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tankless-gas-with-solar.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tankless-gas.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-dhw-tankless-propane.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-2stories-garage.xml,6.8,91.76,43722.0,7646.0,15016.0,0.0,575.0,8855.0,0.0,511.0,1797.0,2171.0,7152.0,25185.0,4350.0,14254.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,2520.0,0.0,0.0,0.0,0.0,48000.0,0.0,1060.0,36000.0,1497.0 +base-enclosure-2stories.xml,6.8,91.76,45827.0,7671.0,15016.0,0.0,575.0,9035.0,0.0,0.0,2446.0,2171.0,8913.0,25086.0,4349.0,14254.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,2520.0,0.0,0.0,0.0,0.0,48000.0,0.0,1060.0,36000.0,1497.0 +base-enclosure-beds-1.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17496.0,5208.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2060.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-beds-2.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17730.0,5212.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2290.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-beds-4.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,18198.0,5219.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2750.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-beds-5.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,18442.0,5234.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2980.0,175.0,0.0,-1025.0,1200.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-garage.xml,6.8,91.76,29872.0,8041.0,5506.0,0.0,575.0,6537.0,0.0,0.0,2446.0,2171.0,4597.0,15062.0,3154.0,6028.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-infil-ach-house-pressure.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-infil-cfm-house-pressure.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-infil-cfm50.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-infil-flue.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-infil-natural-ach.xml,6.8,91.76,37365.0,8715.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,9542.0,18641.0,5227.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-orientations.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-overhangs.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,18020.0,5216.0,7182.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-rooftypes.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-skylights-physical-properties.xml,6.8,91.76,34658.0,8659.0,7508.0,2294.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,22841.0,5299.0,7127.0,4794.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-skylights-shading.xml,6.8,91.76,32946.0,8615.0,7508.0,626.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,18743.0,5228.0,7127.0,766.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-skylights-storms.xml,6.8,91.76,33018.0,8617.0,7508.0,696.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,20957.0,5253.0,7127.0,2955.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-skylights.xml,6.8,91.76,32946.0,8615.0,7508.0,626.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,21201.0,5257.0,7127.0,3195.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-split-level.xml,6.8,91.76,29033.0,1685.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,12455.0,0.0,7127.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,2520.0,205.0,0.0,-595.0,800.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-split-surfaces.xml,6.8,91.76,32951.0,8615.0,7508.0,638.0,569.0,6407.0,0.0,0.0,2446.0,2171.0,4597.0,21264.0,5259.0,7127.0,3259.0,205.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-split-surfaces2.xml,6.8,91.76,36564.0,8696.0,8620.0,733.0,563.0,6389.0,0.0,0.0,4797.0,2168.0,4597.0,20423.0,5244.0,6806.0,2760.0,203.0,264.0,0.0,0.0,0.0,2008.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-thermal-mass.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-walltypes.xml,6.8,91.76,35314.0,8666.0,918.0,0.0,575.0,15942.0,0.0,0.0,2446.0,2171.0,4597.0,12750.0,5054.0,875.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-windows-natural-ventilation-availability.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-windows-none.xml,6.8,91.76,25541.0,8355.0,0.0,0.0,575.0,7398.0,0.0,0.0,2446.0,2171.0,4597.0,10692.0,4967.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-windows-physical-properties.xml,6.8,91.76,38729.0,8744.0,13788.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,21102.0,5256.0,10225.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-windows-shading.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,13759.0,5104.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-enclosure-windows-storms.xml,6.8,91.76,31450.0,8573.0,6680.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,16707.0,5174.0,5912.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-foundation-ambient.xml,6.8,91.76,27750.0,8437.0,7508.0,0.0,575.0,2198.0,0.0,4563.0,0.0,2171.0,2299.0,18129.0,5236.0,7127.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 +base-foundation-basement-garage.xml,6.8,91.76,31515.0,8575.0,7508.0,0.0,620.0,7098.0,0.0,511.0,1797.0,2171.0,3235.0,18231.0,5225.0,7127.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,2520.0,79.0,0.0,-721.0,800.0,36000.0,0.0,795.0,24000.0,998.0 +base-foundation-complex.xml,6.8,91.76,34257.0,8649.0,7508.0,0.0,575.0,7168.0,0.0,0.0,3589.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-foundation-conditioned-basement-slab-insulation.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-foundation-conditioned-basement-wall-insulation.xml,6.8,91.76,33075.0,8618.0,7508.0,0.0,575.0,7160.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-foundation-conditioned-crawlspace.xml,6.8,91.76,21924.0,0.0,7508.0,0.0,575.0,4819.0,0.0,0.0,3403.0,2171.0,3448.0,12594.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,2520.0,31.0,0.0,-769.0,800.0,36000.0,0.0,795.0,24000.0,998.0 +base-foundation-multiple.xml,6.8,91.76,23122.0,4833.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,13488.0,145.0,7127.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 +base-foundation-slab.xml,6.8,91.76,28666.0,1683.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,12405.0,0.0,7127.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 +base-foundation-unconditioned-basement-above-grade.xml,6.8,91.76,23083.0,4828.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,13483.0,149.0,7127.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 +base-foundation-unconditioned-basement-assembly-r.xml,6.8,91.76,20580.0,4443.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,13230.0,457.0,7127.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 +base-foundation-unconditioned-basement-wall-insulation.xml,6.8,91.76,23845.0,1648.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,14480.0,100.0,7127.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 +base-foundation-unconditioned-basement.xml,6.8,91.76,23128.0,4833.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,13490.0,145.0,7127.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 +base-foundation-unvented-crawlspace.xml,6.8,91.76,20341.0,4163.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,13315.0,531.0,7127.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 +base-foundation-vented-crawlspace.xml,6.8,91.76,23883.0,6886.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,14616.0,1615.0,7127.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,36000.0,0.0,795.0,24000.0,998.0 +base-foundation-walkout-basement.xml,6.8,91.76,33114.0,8619.0,7925.0,0.0,575.0,4704.0,0.0,0.0,3178.0,2171.0,5942.0,18338.0,5222.0,7312.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-hvac-air-to-air-heat-pump-1-speed-backup-lockout-temperature.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,1497.0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,0.0,0.0 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 +base-hvac-air-to-air-heat-pump-1-speed.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 +base-hvac-air-to-air-heat-pump-2-speed.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,78000.0,60000.0,568.0,18000.0,749.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,78000.0,60000.0,568.0,18000.0,749.0 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,6.8,91.76,39811.0,16105.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,23179.0,10431.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,78000.0,60000.0,1893.0,18000.0,749.0 +base-hvac-air-to-air-heat-pump-var-speed.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18773.0,781.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,31214.0,31214.0,985.0,0.0,0.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,21589.0,31214.0,681.0,21589.0,898.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32619.0,31214.0,1029.0,32619.0,1356.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml,51.62,90.68,11215.0,4367.0,2184.0,0.0,167.0,1864.0,0.0,0.0,711.0,631.0,1291.0,20738.0,7582.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,2520.0,2991.0,842.0,1349.0,800.0,24446.0,11215.0,636.0,24446.0,1017.0 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,59238.0,31214.0,1869.0,59238.0,2463.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,22720.0,31214.0,717.0,22720.0,945.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32897.0,31214.0,1038.0,32897.0,1368.0 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,66229.0,31214.0,2089.0,66229.0,2754.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,56532.0,23705.0,1035.0,32827.0,1365.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,6.8,91.76,39811.0,16105.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,23179.0,10431.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,65129.0,32302.0,1748.0,32827.0,1365.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,24560.0,31214.0,775.0,24560.0,1021.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32827.0,31214.0,1035.0,32827.0,1365.0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,50891.0,31214.0,1605.0,50891.0,2116.0 +base-hvac-autosize-boiler-elec-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,0.0,18773.0,781.0 +base-hvac-autosize-boiler-gas-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-central-ac-only-1-speed.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18773.0,781.0 +base-hvac-autosize-central-ac-only-2-speed.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18933.0,787.0 +base-hvac-autosize-central-ac-only-var-speed.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18892.0,786.0 +base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,31214.0,31214.0,985.0,18773.0,781.0 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,21589.0,31214.0,681.0,21589.0,898.0 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32619.0,31214.0,1029.0,32619.0,1356.0 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32619.0,31214.0,1029.0,32619.0,1356.0 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,26064.0,26247.0,869.0,26064.0,923.0 +base-hvac-autosize-elec-resistance-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,0.0,0.0,0.0 +base-hvac-autosize-evap-cooler-furnace-gas.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32302.0,0.0,713.0,12748.0,2326.0 +base-hvac-autosize-floor-furnace-propane-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,691.0,0.0,0.0 +base-hvac-autosize-furnace-elec-only.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32302.0,0.0,713.0,0.0,0.0 +base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32302.0,0.0,713.0,18933.0,787.0 +base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32302.0,0.0,713.0,18892.0,786.0 +base-hvac-autosize-furnace-gas-only.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32302.0,0.0,713.0,0.0,0.0 +base-hvac-autosize-furnace-gas-room-ac.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32302.0,0.0,713.0,13323.0,346.0 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22883.0,795.0 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,31214.0,31214.0,985.0,0.0,0.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,31214.0,31214.0,985.0,31214.0,1084.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,33024.0,31214.0,1042.0,33024.0,1629.0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,33024.0,31214.0,1042.0,33024.0,1629.0 +base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14473.0,513.0 +base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14473.0,513.0 +base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,26247.0,26247.0,875.0,0.0,0.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,18814.0,26247.0,627.0,18814.0,666.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,26064.0,26247.0,869.0,26064.0,923.0 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,52054.0,26247.0,1735.0,52054.0,1844.0 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,47245.0,23705.0,1476.0,23540.0,834.0 +base-hvac-autosize-ptac-with-heating.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,523.0,13323.0,346.0 +base-hvac-autosize-ptac.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13323.0,346.0 +base-hvac-autosize-pthp-sizing-methodology-acca.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,15321.0,23705.0,447.0,15321.0,398.0 +base-hvac-autosize-pthp-sizing-methodology-hers.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,24773.0,23705.0,723.0,24773.0,644.0 +base-hvac-autosize-pthp-sizing-methodology-maxload.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,44989.0,23705.0,1312.0,44989.0,1170.0 +base-hvac-autosize-room-ac-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13323.0,346.0 +base-hvac-autosize-stove-oil-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,691.0,0.0,0.0 +base-hvac-autosize-wall-furnace-elec-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,23705.0,0.0,691.0,0.0,0.0 +base-hvac-autosize.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,32302.0,0.0,713.0,18773.0,781.0 +base-hvac-boiler-coal-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-elec-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-gas-central-ac-1-speed.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,24000.0,998.0 +base-hvac-boiler-gas-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-oil-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-propane-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-hvac-boiler-wood-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-hvac-central-ac-only-1-speed-seer2.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 +base-hvac-central-ac-only-1-speed.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 +base-hvac-central-ac-only-2-speed.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 +base-hvac-central-ac-only-var-speed.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,998.0 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,24000.0,998.0 +base-hvac-dse.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1497.0 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1200.0,36000.0,1275.0 +base-hvac-ducts-area-fractions.xml,6.8,91.76,71332.0,33176.0,15016.0,0.0,575.0,9035.0,0.0,0.0,2446.0,2171.0,8913.0,82948.0,62211.0,14254.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,2520.0,0.0,0.0,0.0,0.0,48000.0,0.0,1060.0,36000.0,1497.0 +base-hvac-ducts-area-multipliers.xml,6.8,91.76,30853.0,7148.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17515.0,4767.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-hvac-ducts-leakage-cfm50.xml,6.8,91.76,34564.0,10858.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,19299.0,6551.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-hvac-ducts-leakage-percent.xml,6.8,91.76,32737.0,9032.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,19502.0,6754.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-hvac-elec-resistance-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,0.0,0.0,0.0 +base-hvac-evap-cooler-furnace-gas.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,4380.0 +base-hvac-evap-cooler-only-ducted.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14991.0,2242.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,4380.0 +base-hvac-evap-cooler-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,4380.0 +base-hvac-fireplace-wood-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1050.0,0.0,0.0 +base-hvac-fixed-heater-gas-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1050.0,0.0,0.0 +base-hvac-floor-furnace-propane-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1050.0,0.0,0.0 +base-hvac-furnace-coal-only.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,0.0,0.0 +base-hvac-furnace-elec-central-ac-1-speed.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-hvac-furnace-elec-only.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,0.0,0.0 +base-hvac-furnace-gas-central-ac-2-speed.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-hvac-furnace-gas-central-ac-var-speed.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-hvac-furnace-gas-only-detailed-setpoints.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,0.0,0.0 +base-hvac-furnace-gas-only.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,0.0,0.0 +base-hvac-furnace-gas-room-ac.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,624.0 +base-hvac-furnace-oil-only.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,0.0,0.0 +base-hvac-furnace-propane-only.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,0.0,0.0 +base-hvac-furnace-wood-only.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,0.0,0.0 +base-hvac-furnace-x3-dse.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,1250.0 +base-hvac-ground-to-air-heat-pump-heating-only.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,0.0,0.0 +base-hvac-ground-to-air-heat-pump.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1136.0,36000.0,1776.0 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,852.0,36000.0,1123.0 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,852.0,36000.0,1123.0 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,852.0,36000.0,1123.0 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,596.0,24000.0,749.0 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,596.0,24000.0,748.0 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,596.0,24000.0,748.0 +base-hvac-install-quality-furnace-gas-only.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,596.0,0.0,0.0 +base-hvac-install-quality-ground-to-air-heat-pump.xml,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,852.0,36000.0,1332.0 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,637.0 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,900.0,36000.0,956.0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,850.0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,850.0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36000.0,1275.0 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1200.0,0.0,0.0 +base-hvac-mini-split-heat-pump-ducted.xml,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1200.0,36000.0,1275.0 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,78000.0,60000.0,2350.0,18000.0,638.0 +base-hvac-mini-split-heat-pump-ductless.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1200.0,36000.0,1275.0 +base-hvac-multiple.xml,6.8,91.76,36780.0,13075.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,22621.0,9872.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,59200.0,10236.0,1118.0,36799.2,1102.0 +base-hvac-none.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +base-hvac-portable-heater-gas-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1050.0,0.0,0.0 +base-hvac-ptac-with-heating.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,624.0 +base-hvac-ptac.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,624.0 +base-hvac-pthp.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,36000.0,1050.0,36000.0,936.0 +base-hvac-room-ac-only-33percent.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8000.0,208.0 +base-hvac-room-ac-only-ceer.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,624.0 +base-hvac-room-ac-only-detailed-setpoints.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,624.0 +base-hvac-room-ac-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,624.0 +base-hvac-seasons.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-hvac-setpoints-daily-schedules.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-hvac-setpoints-daily-setbacks.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-hvac-setpoints.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-hvac-stove-oil-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1050.0,0.0,0.0 +base-hvac-stove-wood-pellets-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1050.0,0.0,0.0 +base-hvac-undersized-allow-increased-fixed-capacities.xml,6.8,91.76,28964.0,5259.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,16662.0,3914.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,28964.0,0.0,640.0,17412.0,724.0 +base-hvac-undersized.xml,6.8,91.76,28964.0,5259.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,16662.0,3914.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,3600.0,0.0,79.0,2400.0,100.0 +base-hvac-wall-furnace-elec-only.xml,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,1050.0,0.0,0.0 +base-lighting-ceiling-fans.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-lighting-holiday.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-lighting-none.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-location-AMY-2012.xml,10.22,91.4,30730.0,8345.0,7102.0,0.0,543.0,6062.0,0.0,0.0,2314.0,2054.0,4311.0,17718.0,5043.0,7109.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,791.0,24000.0,998.0 +base-location-baltimore-md.xml,17.24,91.22,18314.0,4508.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,14335.0,1180.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,2520.0,1671.0,482.0,389.0,800.0,24000.0,0.0,438.0,24000.0,998.0 +base-location-capetown-zaf.xml,41.0,84.38,13255.0,5428.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13033.0,1990.0,5825.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,2520.0,739.0,0.0,-61.0,800.0,24000.0,0.0,438.0,24000.0,998.0 +base-location-dallas-tx.xml,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,14675.0,163.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,2520.0,1416.0,325.0,291.0,800.0,24000.0,0.0,444.0,24000.0,998.0 +base-location-duluth-mn.xml,-13.72,81.14,31260.0,6260.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11163.0,185.0,6163.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,2520.0,1022.0,133.0,89.0,800.0,36000.0,0.0,687.0,24000.0,998.0 +base-location-helena-mt.xml,-8.14,89.24,40049.0,10037.0,9283.0,0.0,710.0,7923.0,0.0,0.0,3024.0,2684.0,6386.0,17384.0,4998.0,7145.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,2520.0,0.0,0.0,0.0,0.0,48000.0,0.0,999.0,24000.0,998.0 +base-location-honolulu-hi.xml,63.32,89.06,3417.0,592.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,12324.0,122.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,2520.0,1631.0,467.0,364.0,800.0,12000.0,0.0,218.0,24000.0,998.0 +base-location-miami-fl.xml,51.62,90.68,8608.0,784.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,646.0,12608.0,-129.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,2520.0,2317.0,842.0,675.0,800.0,12000.0,0.0,218.0,24000.0,998.0 +base-location-phoenix-az.xml,41.36,108.14,13271.0,1050.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1035.0,17760.0,667.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,2520.0,400.0,0.0,-400.0,800.0,24000.0,0.0,452.0,24000.0,998.0 +base-location-portland-or.xml,28.58,87.08,17550.0,6260.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,14354.0,2050.0,6621.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,2520.0,700.0,0.0,-100.0,800.0,24000.0,0.0,437.0,24000.0,998.0 +base-mechvent-balanced.xml,6.8,91.76,38747.0,8745.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,10894.0,19647.0,5228.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-mechvent-bath-kitchen-fans.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-mechvent-cfis-airflow-fraction-zero.xml,6.8,91.76,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-mechvent-cfis-dse.xml,6.8,91.76,26905.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,13910.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-mechvent-cfis-evap-cooler-only-ducted.xml,6.8,91.76,26905.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,16170.0,2259.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24000.0,4380.0 +base-mechvent-cfis-supplemental-fan-exhaust.xml,6.8,91.76,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-mechvent-cfis-supplemental-fan-supply.xml,6.8,91.76,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-mechvent-cfis.xml,6.8,91.76,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-mechvent-erv-atre-asre.xml,6.8,91.76,33661.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5920.0,18320.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-mechvent-erv.xml,6.8,91.76,33663.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5921.0,18321.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-mechvent-exhaust-rated-flow-rate.xml,6.8,91.76,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-mechvent-exhaust.xml,6.8,91.76,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-mechvent-hrv-asre.xml,6.8,91.76,33661.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5920.0,18320.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-mechvent-hrv.xml,6.8,91.76,33663.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5921.0,18321.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-mechvent-multiple.xml,6.8,91.76,42830.0,16258.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7464.0,23590.0,10050.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,794.0,24000.0,998.0 +base-mechvent-supply.xml,6.8,91.76,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-mechvent-whole-house-fan.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-misc-additional-properties.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-misc-bills-none.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-misc-bills-pv.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-misc-bills.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-misc-defaults.xml,6.8,91.76,31061.0,4629.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7324.0,14665.0,902.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-misc-emissions.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-misc-generators.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-misc-ground-conductivity.xml,6.8,91.76,31497.0,8574.0,7508.0,0.0,575.0,6098.0,0.0,0.0,1975.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-misc-loads-large-uncommon.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-misc-loads-large-uncommon2.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-misc-loads-none.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-misc-neighbor-shading.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-misc-shielding-of-home.xml,6.8,91.76,31456.0,8573.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,3775.0,17855.0,5214.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-misc-usage-multiplier.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-pv-battery-ah.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-pv-battery-garage.xml,6.8,91.76,29872.0,8041.0,5506.0,0.0,575.0,6537.0,0.0,0.0,2446.0,2171.0,4597.0,15062.0,3154.0,6028.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-pv-battery-lifetime-model.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-pv-battery.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-pv.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-schedules-detailed-all-10-mins.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-schedules-detailed-occupancy-smooth.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-schedules-detailed-occupancy-stochastic.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-schedules-detailed-setpoints-daily-schedules.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-schedules-detailed-setpoints-daily-setbacks.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-schedules-detailed-setpoints.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-schedules-simple.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-simcontrol-calendar-year-custom.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-simcontrol-daylight-saving-custom.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-simcontrol-daylight-saving-disabled.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-simcontrol-runperiod-1-month.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-simcontrol-temperature-capacitance-multiplier.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base-simcontrol-timestep-10-mins.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +base.xml,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,36000.0,0.0,795.0,24000.0,998.0 +house001.xml,25.88,98.42,62092.0,24399.0,7740.0,0.0,942.0,7599.0,453.0,609.0,9636.0,2236.0,8478.0,99887.0,72262.0,9995.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,2980.0,5399.0,2597.0,1602.0,1200.0,90000.0,0.0,1664.0,60000.0,2495.0 +house002.xml,25.88,98.42,47924.0,15311.0,6070.0,0.0,752.0,4731.0,0.0,0.0,12952.0,3120.0,4987.0,34810.0,14856.0,7099.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,2520.0,3061.0,1299.0,962.0,800.0,90000.0,0.0,1664.0,60000.0,2495.0 +house003.xml,25.88,98.42,48411.0,15944.0,6644.0,0.0,892.0,4431.0,610.0,0.0,11450.0,2908.0,5532.0,42968.0,18995.0,9541.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,2520.0,3149.0,1299.0,1051.0,800.0,90000.0,0.0,1664.0,60000.0,2495.0 +house004.xml,25.88,98.42,76554.0,20975.0,11324.0,0.0,882.0,8959.0,101.0,0.0,19021.0,5929.0,9362.0,54634.0,19418.0,12979.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,2750.0,3680.0,952.0,1727.0,1000.0,80000.0,0.0,1479.0,60000.0,2495.0 +house005.xml,25.88,98.42,71539.0,26959.0,10216.0,0.0,1260.0,8257.0,0.0,480.0,11638.0,3312.0,9418.0,67465.0,32792.0,14422.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,2750.0,5343.0,2597.0,1746.0,1000.0,90000.0,0.0,1664.0,60000.0,2495.0 +house006.xml,-13.72,81.14,39295.0,0.0,8907.0,0.0,750.0,19692.0,0.0,0.0,2813.0,1874.0,5257.0,9402.0,0.0,4578.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,2520.0,1215.0,0.0,415.0,800.0,80000.0,0.0,1526.0,30000.0,1248.0 +house007.xml,-13.72,81.14,43883.0,5469.0,9095.0,0.0,587.0,14942.0,0.0,27.0,2642.0,2001.0,9120.0,11972.0,1069.0,5464.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,2750.0,1620.0,219.0,401.0,1000.0,90000.0,0.0,1717.0,42000.0,1747.0 +house008.xml,-13.72,81.14,60317.0,10599.0,10314.0,0.0,587.0,20172.0,0.0,891.0,4910.0,3226.0,9618.0,18248.0,2426.0,9152.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,2980.0,1893.0,85.0,608.0,1200.0,90000.0,0.0,1717.0,36000.0,1497.0 +house009.xml,-13.72,81.14,45251.0,0.0,8913.0,0.0,885.0,18118.0,0.0,95.0,4218.0,2204.0,10820.0,12202.0,0.0,6524.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,2750.0,1429.0,0.0,429.0,1000.0,90000.0,0.0,1717.0,36000.0,1497.0 +house010.xml,-13.72,81.14,52115.0,8291.0,10714.0,0.0,587.0,16310.0,359.0,532.0,2642.0,2165.0,10515.0,13819.0,1817.0,5798.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,2980.0,1969.0,141.0,628.0,1200.0,90000.0,0.0,1717.0,30000.0,1248.0 +house011.xml,24.62,91.58,20649.0,6686.0,2440.0,0.0,1007.0,3251.0,0.0,546.0,0.0,1795.0,4923.0,20439.0,7796.0,3938.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,2750.0,2661.0,372.0,1289.0,1000.0,24000.0,34120.0,637.0,18000.0,748.0 +house012.xml,24.62,91.58,13914.0,1327.0,1906.0,0.0,333.0,2909.0,0.0,1767.0,0.0,1513.0,4159.0,11073.0,622.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,2520.0,2166.0,298.0,1068.0,800.0,23400.0,0.0,621.0,23200.0,965.0 +house013.xml,24.62,91.58,12482.0,3021.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9124.0,1054.0,2271.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,2290.0,1419.0,251.0,568.0,600.0,18000.0,17060.0,478.0,18000.0,748.0 +house014.xml,24.62,91.58,13648.0,3089.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,10173.0,1044.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,2290.0,1471.0,251.0,620.0,600.0,18000.0,17060.0,478.0,18000.0,748.0 +house015.xml,24.62,91.58,12482.0,3021.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9124.0,1054.0,2271.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,2290.0,1419.0,251.0,568.0,600.0,18000.0,17060.0,478.0,18000.0,748.0 +house016.xml,19.22,86.72,27038.0,0.0,5399.0,0.0,171.0,10377.0,0.0,0.0,3117.0,2689.0,5286.0,18485.0,0.0,9792.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,2520.0,1784.0,0.0,984.0,800.0,136000.0,36000.0,2755.0,36000.0,1497.0 +house017.xml,16.16,89.24,35600.0,0.0,4833.0,0.0,181.0,13937.0,0.0,354.0,1635.0,3048.0,11612.0,17539.0,0.0,7766.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,2750.0,3084.0,0.0,2084.0,1000.0,60000.0,0.0,1093.0,24000.0,998.0 +house018.xml,19.22,86.72,18300.0,4909.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,9257.0,725.0,2260.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,2520.0,2144.0,756.0,588.0,800.0,36000.0,36000.0,936.0,36000.0,1497.0 +house019.xml,16.16,89.24,50337.0,0.0,9523.0,0.0,1028.0,26480.0,0.0,0.0,2084.0,5769.0,5453.0,31793.0,0.0,13774.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,2520.0,1779.0,0.0,979.0,800.0,100000.0,0.0,1822.0,60000.0,2495.0 +house020.xml,19.22,86.72,45228.0,0.0,10325.0,0.0,395.0,12858.0,598.0,0.0,3897.0,6812.0,10343.0,24478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,2520.0,2725.0,0.0,1925.0,800.0,120000.0,0.0,2183.0,60000.0,2495.0 +house021.xml,16.16,89.24,52812.0,8050.0,10175.0,0.0,318.0,15504.0,0.0,396.0,2243.0,3431.0,12694.0,26586.0,5715.0,9853.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,2750.0,4182.0,904.0,2279.0,1000.0,130000.0,0.0,2368.0,60000.0,2496.0 +house022.xml,16.16,89.24,53604.0,0.0,10741.0,0.0,737.0,11570.0,2029.0,5140.0,0.0,2115.0,21272.0,23289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,2520.0,4618.0,0.0,3818.0,800.0,100000.0,0.0,1822.0,36000.0,1497.0 +house023.xml,16.16,89.24,44344.0,0.0,5067.0,0.0,362.0,17083.0,0.0,0.0,1842.0,4899.0,15091.0,21470.0,0.0,9506.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,2750.0,3692.0,0.0,2692.0,1000.0,125000.0,0.0,2278.0,42000.0,1747.0 +house024.xml,16.16,89.24,60409.0,12599.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,20929.0,1250.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,2520.0,6044.0,2254.0,2990.0,800.0,85000.0,0.0,1549.0,30000.0,1247.0 +house025.xml,24.62,91.58,54382.0,20089.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,30864.0,8850.0,8255.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,2520.0,7891.0,4800.0,2291.0,800.0,158000.0,33000.0,3199.0,81000.0,3368.0 +house026.xml,24.62,91.58,22421.0,0.0,3869.0,0.0,128.0,5749.0,0.0,5824.0,0.0,1459.0,5391.0,16444.0,0.0,5841.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,2520.0,2042.0,0.0,1242.0,800.0,84000.0,0.0,0.0,0.0,0.0 +house027.xml,24.62,91.58,33085.0,7576.0,4494.0,0.0,375.0,6506.0,550.0,250.0,4088.0,1516.0,7731.0,18431.0,3513.0,4326.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,2520.0,4578.0,1414.0,2364.0,800.0,75000.0,0.0,1394.0,36000.0,1397.0 +house028.xml,24.62,91.58,31420.0,8676.0,4365.0,0.0,315.0,5287.0,616.0,180.0,3569.0,1488.0,6925.0,19287.0,3836.0,6007.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,2750.0,4257.0,1628.0,1629.0,1000.0,75000.0,0.0,1394.0,36000.0,1497.0 +house029.xml,17.24,91.22,29358.0,2294.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,15965.0,-59.0,5307.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,2520.0,3313.0,732.0,1781.0,800.0,77000.0,0.0,1406.0,36000.0,1497.0 +house030.xml,17.24,91.22,18525.0,0.0,3366.0,0.0,474.0,6809.0,0.0,0.0,3152.0,1036.0,3688.0,9617.0,0.0,2691.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,2290.0,1503.0,0.0,903.0,600.0,87000.0,0.0,0.0,0.0,0.0 +house031.xml,16.16,89.24,83057.0,13664.0,10261.0,0.0,650.0,23266.0,0.0,869.0,1754.0,7333.0,25259.0,44083.0,9876.0,13739.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,3210.0,7447.0,1513.0,4534.0,1400.0,200000.0,0.0,3644.0,96000.0,3992.0 +house032.xml,16.16,89.24,30739.0,0.0,5132.0,0.0,690.0,10940.0,0.0,0.0,1537.0,5647.0,6794.0,16466.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,2750.0,2217.0,0.0,1217.0,1000.0,75000.0,0.0,1367.0,0.0,0.0 +house033.xml,16.16,89.24,32325.0,0.0,5273.0,0.0,362.0,6028.0,0.0,4559.0,0.0,8461.0,7643.0,18211.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,2750.0,2369.0,0.0,1369.0,1000.0,109000.0,0.0,0.0,0.0,0.0 +house034.xml,16.16,89.24,61172.0,0.0,15758.0,0.0,1028.0,15579.0,0.0,4773.0,1343.0,4622.0,18068.0,37136.0,0.0,21864.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,2750.0,4246.0,0.0,3246.0,1000.0,210000.0,0.0,0.0,0.0,0.0 +house035.xml,16.16,89.24,27631.0,0.0,4397.0,0.0,318.0,7248.0,249.0,1468.0,0.0,4065.0,9886.0,15754.0,0.0,6100.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,2520.0,2575.0,0.0,1775.0,800.0,80000.0,0.0,1458.0,24000.0,998.0 +house036.xml,16.16,89.24,25212.0,0.0,4435.0,0.0,1019.0,2375.0,3328.0,7811.0,0.0,1320.0,4925.0,12355.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,2290.0,1482.0,0.0,882.0,600.0,60000.0,0.0,1093.0,24000.0,998.0 +house037.xml,19.22,86.72,40440.0,0.0,6057.0,0.0,969.0,7752.0,0.0,1095.0,0.0,13572.0,10994.0,25198.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,2520.0,2840.0,0.0,2040.0,800.0,110000.0,0.0,0.0,0.0,0.0 +house038.xml,16.16,89.24,30786.0,0.0,6993.0,0.0,362.0,9341.0,0.0,865.0,750.0,1706.0,10769.0,18374.0,0.0,9560.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,3210.0,3333.0,0.0,1933.0,1400.0,71000.0,0.0,1294.0,36000.0,1497.0 +house039.xml,16.16,89.24,42559.0,0.0,11110.0,0.0,1456.0,3312.0,0.0,6991.0,0.0,8806.0,10883.0,24051.0,0.0,9921.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,2520.0,2750.0,0.0,1950.0,800.0,87000.0,0.0,0.0,0.0,0.0 +house040.xml,16.16,89.24,44215.0,0.0,7249.0,0.0,1028.0,13423.0,5873.0,795.0,1188.0,3065.0,11594.0,23164.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,2520.0,2881.0,0.0,2081.0,800.0,75000.0,0.0,1367.0,0.0,0.0 +house041.xml,-13.72,81.14,98322.0,0.0,18666.0,0.0,1544.0,30313.0,0.0,2471.0,9011.0,5077.0,31239.0,28288.0,0.0,18014.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,2750.0,1684.0,0.0,684.0,1000.0,75000.0,0.0,1431.0,30000.0,1248.0 +house042.xml,-13.72,81.14,86413.0,0.0,17465.0,0.0,1066.0,30498.0,0.0,927.0,4709.0,4248.0,27501.0,15616.0,0.0,6423.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,2750.0,1601.0,0.0,601.0,1000.0,90000.0,0.0,1717.0,24000.0,998.0 +house043.xml,-13.72,81.14,55143.0,0.0,11581.0,0.0,2417.0,20151.0,0.0,202.0,3040.0,1519.0,16233.0,14843.0,0.0,8011.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,2520.0,1155.0,0.0,355.0,800.0,90000.0,0.0,1717.0,30000.0,1248.0 +house044.xml,-13.72,81.14,80986.0,0.0,8527.0,0.0,1403.0,26527.0,1911.0,5425.0,4343.0,3592.0,29257.0,20452.0,0.0,11261.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,2520.0,1440.0,0.0,640.0,800.0,110000.0,0.0,2098.0,36000.0,1497.0 +house045.xml,-13.72,81.14,45770.0,0.0,8927.0,496.0,442.0,17005.0,1494.0,31.0,2796.0,1367.0,13211.0,15016.0,0.0,9495.0,885.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,2520.0,1137.0,0.0,337.0,800.0,70000.0,0.0,1335.0,30000.0,1248.0 +house046.xml,24.62,91.58,19009.0,4026.0,1800.0,0.0,182.0,2847.0,0.0,0.0,0.0,1604.0,8550.0,14319.0,3821.0,3366.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2060.0,2573.0,388.0,1784.0,400.0,18000.0,17065.0,478.0,18000.0,721.0 +house047.xml,19.22,86.72,7389.0,1053.0,1216.0,0.0,0.0,630.0,0.0,0.0,705.0,0.0,3785.0,3312.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2060.0,1391.0,0.0,991.0,400.0,20000.0,0.0,364.0,18000.0,638.0 +house048.xml,25.88,98.42,51008.0,12331.0,4499.0,0.0,585.0,9704.0,828.0,45.0,11275.0,2249.0,9492.0,29992.0,8413.0,4654.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,2750.0,3589.0,835.0,1754.0,1000.0,63000.0,0.0,1165.0,46500.0,1934.0 +house049.xml,33.26,106.16,18656.0,0.0,5635.0,0.0,0.0,5120.0,0.0,0.0,2100.0,1357.0,4445.0,20462.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,2290.0,0.0,0.0,0.0,0.0,39000.0,0.0,0.0,16000.0,567.0 +house050.xml,28.58,87.08,21920.0,7753.0,3277.0,0.0,856.0,3061.0,0.0,2043.0,0.0,1771.0,3159.0,18368.0,5020.0,6268.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,2520.0,307.0,0.0,-493.0,800.0,58000.0,0.0,1055.0,29000.0,1206.0 From bee170643ddc48565ffb20313c0de1ee531c90ab Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Mon, 3 Oct 2022 15:42:48 -0600 Subject: [PATCH 16/27] Bugfix. --- HPXMLtoOpenStudio/measure.xml | 32 +++++++++++----------- HPXMLtoOpenStudio/resources/airflow.rb | 13 ++++++--- HPXMLtoOpenStudio/resources/hpxml.rb | 2 +- HPXMLtoOpenStudio/tests/test_defaults.rb | 4 +-- HPXMLtoOpenStudio/tests/test_validation.rb | 2 +- tasks.rb | 4 +-- 6 files changed, 31 insertions(+), 26 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index ce4eecb69a..5967d9b2ec 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - f9c815bc-3aff-496f-acc5-bfe537f63b04 - 20221003T201742Z + 827874ef-e5ec-471b-9004-f6231d059cbf + 20221003T214237Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -547,12 +547,6 @@ test E26F31D2 - - test_validation.rb - rb - test - 6A5BEC40 - OpenStudio @@ -564,12 +558,6 @@ script F6F18198 - - airflow.rb - rb - resource - 126B98CB - test_airflow.rb rb @@ -582,17 +570,29 @@ resource 0125FCEB + + test_validation.rb + rb + test + B5247CD8 + hpxml.rb rb resource - 2EA91A0F + 50D48CF8 test_defaults.rb rb test - 9C4C7BF5 + 4626D7C2 + + + airflow.rb + rb + resource + EAB200AD diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 7bdcf5e7f3..4bdb68ca4f 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -1397,7 +1397,7 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl if vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeAirHandler # Air handler meets additional runtime requirement infil_program.addLine(" Set #{cfis_fan_actuator.name} = #{cfis_fan_actuator.name} + cfis_fan_w*#{@cfis_f_damper_extra_open_var[vent_mech.id].name}") - elsif vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeSupplemental + elsif vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeSupplementalFan if vent_mech.cfis_supplemental_fan.oa_unit_flow_rate < vent_mech.average_total_unit_flow_rate @runner.registerWarning("CFIS supplemental fan '#{vent_mech.cfis_supplemental_fan.id}' is undersized (#{vent_mech.cfis_supplemental_fan.oa_unit_flow_rate} cfm) compared to the target hourly ventilation rate (#{vent_mech.average_total_unit_flow_rate} cfm).") end @@ -1412,8 +1412,6 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl infil_program.addLine(' Set QWHV_cfis_suppl_exh = QWHV_cfis_suppl_exh + cfis_suppl_f * cfis_suppl_Q_oa') end end - infil_program.addLine(" Set cfis_f_damper_open = @Max (cfis_f_damper_open-#{@cfis_f_damper_extra_open_var[vent_mech.id].name}) 0.0") - infil_program.addLine(' Set QWHV_cfis_sup = QWHV_cfis_sup + cfis_f_damper_open * cfis_Q_duct_oa') infil_program.addLine(' Else') # No need to turn on blower for extra ventilation infil_program.addLine(' Set cfis_fan_runtime = fan_rtf_hvac*ZoneTimeStep*60') @@ -1428,8 +1426,15 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl infil_program.addLine(' Set cfis_f_damper_open = fan_rtf_hvac') infil_program.addLine(" Set #{@cfis_t_sum_open_var[vent_mech.id].name} = #{@cfis_t_sum_open_var[vent_mech.id].name}+cfis_fan_runtime") infil_program.addLine(' EndIf') - infil_program.addLine(' Set QWHV_cfis_sup = QWHV_cfis_sup + cfis_f_damper_open * cfis_Q_duct_oa') infil_program.addLine(' EndIf') + + if vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeSupplementalFan + infil_program.addLine(" Set cfis_f_damper_open = @Max (cfis_f_damper_open-#{@cfis_f_damper_extra_open_var[vent_mech.id].name}) 0.0") + infil_program.addLine(' Set QWHV_cfis_sup = QWHV_cfis_sup + cfis_f_damper_open * cfis_Q_duct_oa') + else + infil_program.addLine(' Set QWHV_cfis_sup = QWHV_cfis_sup + cfis_f_damper_open * cfis_Q_duct_oa') + end + infil_program.addLine('EndIf') end end diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 7cb1e4a90e..c45039a9ee 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -82,7 +82,7 @@ class HPXML < Object ClothesDryerControlTypeTimer = 'timer' CFISModeAirHandler = 'air handler fan' CFISModeNone = 'none' - CFISModeSupplemental = 'supplemental fan' + CFISModeSupplementalFan = 'supplemental fan' ColorDark = 'dark' ColorLight = 'light' ColorMedium = 'medium' diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 1de954101c..9a3016ae80 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1932,7 +1932,7 @@ def test_mech_ventilation_fans vent_fan.hours_in_operation = 12.0 vent_fan.fan_power = 12.5 vent_fan.cfis_vent_mode_airflow_fraction = 0.5 - vent_fan.cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplemental + vent_fan.cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplementalFan hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", tested_flow_rate: 120, fan_power: 30, @@ -1941,7 +1941,7 @@ def test_mech_ventilation_fans vent_fan.cfis_supplemental_fan_idref = hpxml.ventilation_fans[-1].id XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 12.0, 12.5, 330, 0.5, HPXML::CFISModeSupplemental) + _test_default_mech_vent_values(hpxml_default, false, 12.0, 12.5, 330, 0.5, HPXML::CFISModeSupplementalFan) # Test defaults w/ CFIS vent_fan.is_shared_system = nil diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index ba1018bc38..5bf96c2b6c 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -452,7 +452,7 @@ def test_schematron_error_messages int_cfl.fraction_of_units_in_location = 0.8 elsif ['missing-cfis-supplemental-fan'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-cfis.xml')) - hpxml.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplemental + hpxml.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplementalFan elsif ['missing-distribution-cfa-served'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base.xml')) hpxml.hvac_distributions[0].ducts[1].duct_surface_area = nil diff --git a/tasks.rb b/tasks.rb index 54b81bf6c7..c85682905e 100644 --- a/tasks.rb +++ b/tasks.rb @@ -4352,7 +4352,7 @@ def apply_hpxml_modification(hpxml_file, hpxml) hours_in_operation: 8, fan_power: 37.5, used_for_whole_building_ventilation: true, - cfis_addtl_runtime_operating_mode: HPXML::CFISModeSupplemental, + cfis_addtl_runtime_operating_mode: HPXML::CFISModeSupplementalFan, cfis_supplemental_fan_idref: hpxml.ventilation_fans.select { |f| f.fan_type == HPXML::MechVentTypeExhaust }[0].id, distribution_system_idref: 'HVACDistribution2') # Test ventilation system w/ zero airflow and hours @@ -4383,7 +4383,7 @@ def apply_hpxml_modification(hpxml_file, hpxml) else hpxml.ventilation_fans[-1].fan_type = HPXML::MechVentTypeSupply end - hpxml.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplemental + hpxml.ventilation_fans[0].cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplementalFan hpxml.ventilation_fans[0].cfis_supplemental_fan_idref = hpxml.ventilation_fans[1].id end From 96f08d39dfbb39a89dfd94c3e7f6ce746354452e Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Mon, 3 Oct 2022 15:48:30 -0600 Subject: [PATCH 17/27] Update docs [ci skip] --- docs/source/workflow_inputs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 9992c9d921..399c28bd21 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -1970,7 +1970,7 @@ If not entered, the simulation will not include mechanical ventilation. .. [#] For a central fan integrated supply system, the flow rate should equal the amount of outdoor air provided to the distribution system. .. [#] If HoursInOperation not provided, defaults to 24 (i.e., running continuously) for all system types other than central fan integrated supply (CFIS), and 8.0 (i.e., running intermittently) for CFIS systems. For a CFIS system, the HoursInOperation and the flow rate are combined to form the expected/required hourly ventilation rate (e.g., 90 cfm and 8 hrs/day produce an hourly ventilation rate of 30 cfm). - For a CFIS system with a supplemental fan, HoursInOperation is not used for the supplemental fan as its runtime is automatically calculated (based on the air handler runtime) to maintain the hourly ventilation rate. + For a CFIS system with a supplemental fan, HoursInOperation is not used for the supplemental fan as its runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly ventilation rate. .. [#] If FanPower not provided, defaults based on `ANSI/RESNET/ICC 301-2019 `_: - "energy recovery ventilator", "heat recovery ventilator", or shared system: 1.0 W/cfm From 45afda16ed7413f2939fe705cce6e2e489d92a3d Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 3 Oct 2022 22:24:01 +0000 Subject: [PATCH 18/27] Latest results. --- workflow/tests/base_results/results.csv | 14 +++++++------- workflow/tests/base_results/results_bills.csv | 10 +++++----- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 7959e1c1f5..8d837612b4 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -44,7 +44,7 @@ base-bldgtype-multifamily-shared-generator.xml,41.043,38.199,26.2,23.357,0.676,0 base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.931,27.931,27.931,27.931,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.0,0.357,1.813,2.81,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,8.676,9.539,0.577,0.0,0.0,0.0,0.0,1731.9,1814.9,3.453,7.017,0.0,-0.014,2.532,0.0,0.0,0.423,1.443,0.0,-0.01,0.0,-0.347,1.29,0.0,0.695,0.0,0.0,-5.507,0.0,-0.009,-1.021,0.0,0.0,-0.04,3.898,0.0,-0.005,0.0,-0.337,-0.495,-1.325,-0.369,0.0,0.0,8.487,1354.8,997.6,11399.6,3156.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 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.811,31.811,16.583,16.583,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004,2.953,0.544,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.613,0.0,14.614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.566,8.962,9.539,2.265,0.0,0.0,0.0,0.0,880.5,1469.5,3.501,7.039,0.0,-0.014,2.492,0.0,0.0,0.42,1.472,0.0,-0.01,0.0,-0.361,2.037,0.0,0.0,0.0,0.0,-5.583,0.0,-0.009,-1.073,0.0,0.0,-0.045,3.908,0.0,-0.005,0.0,-0.351,-0.912,-1.343,0.0,0.0,0.0,8.899,1354.8,997.6,11399.9,3156.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 base-bldgtype-multifamily-shared-laundry-room.xml,29.707,29.707,16.395,16.395,13.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,2.803,0.504,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.798,0.0,12.515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.737,8.26,9.539,0.569,0.0,0.0,0.0,0.0,880.9,1458.2,3.659,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,1.369,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-5.386,0.0,-0.01,-0.98,0.0,0.0,-0.036,3.876,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,8.003,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,46.468,46.468,30.245,30.245,16.223,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.03,2.162,0.328,9.71,0.0,0.0,2.026,0.0,0.206,3.851,0.915,0.167,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.132,0.0,0.0,0.0,0.0,12.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,3.825,5.411,9.539,0.603,0.0,0.0,0.0,0.0,1825.0,2361.8,7.564,8.329,0.0,-0.016,2.866,0.0,0.0,0.43,0.722,0.0,-0.018,0.0,-0.268,0.768,0.0,6.772,0.0,0.0,-7.444,0.0,-0.011,-0.272,0.0,0.0,0.045,3.824,0.0,-0.014,0.0,-0.261,-0.1,-0.822,-3.646,0.0,0.0,6.576,1354.8,997.6,11399.6,3156.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 +base-bldgtype-multifamily-shared-mechvent-multiple.xml,50.28,50.28,30.013,30.013,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.059,2.016,0.292,9.724,0.0,0.0,2.026,0.0,0.206,3.725,0.949,0.167,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.094,0.0,0.0,0.0,0.0,12.173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.499,4.803,9.539,0.617,0.0,0.0,0.0,0.0,1800.9,2248.4,7.585,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,0.226,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-7.929,0.0,-0.012,-0.117,0.0,0.0,0.061,3.687,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.129,0.0,0.0,6.105,1354.8,997.6,11399.6,3156.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 base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.687,32.687,27.32,27.32,5.367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,2.557,0.434,9.696,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.045,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.407,0.0,0.0,0.0,0.0,3.959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.302,7.061,9.539,0.588,0.0,0.0,0.0,0.0,1613.4,2093.3,4.166,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,1.125,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-6.367,0.0,-0.009,-0.693,0.0,0.0,-0.005,3.856,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,7.638,1354.8,997.6,11399.6,3156.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 base-bldgtype-multifamily-shared-mechvent.xml,31.013,31.013,27.201,27.201,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.028,2.478,0.412,9.706,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.53,6.838,9.539,0.598,0.0,0.0,0.0,0.0,1610.1,2093.8,5.994,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,0.549,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-6.912,0.0,-0.008,-0.511,0.0,0.0,-0.01,3.532,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,7.103,1354.8,997.6,11399.6,3156.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 base-bldgtype-multifamily-shared-pv.xml,26.876,2.428,26.2,1.752,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,2.899,0.529,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,8.678,9.539,0.577,0.0,0.0,0.0,0.0,1562.0,2038.4,3.453,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,1.418,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-5.458,0.0,-0.008,-1.031,0.0,0.0,-0.043,3.873,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,8.535,1354.8,997.6,11399.6,3156.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 @@ -322,19 +322,19 @@ base-location-phoenix-az.xml,38.401,38.401,38.4,38.4,0.001,0.0,0.0,0.0,0.0,0.0,0 base-location-portland-or.xml,36.624,36.624,27.621,27.621,9.003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.037,2.843,0.538,9.072,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.317,8.709,8.879,0.77,0.0,0.0,0.0,0.0,1688.0,2614.1,8.242,13.479,0.0,3.453,3.295,0.0,0.0,0.75,0.763,0.0,5.671,0.0,-0.427,1.472,0.0,0.813,0.0,1.501,-9.169,0.0,-0.314,-0.782,0.0,0.0,-0.01,9.076,0.0,-2.801,0.0,-0.419,-0.364,-1.839,-0.255,0.0,0.563,6.062,1354.8,997.6,11239.5,2769.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 base-mechvent-balanced.xml,77.52,77.52,37.828,37.828,39.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.655,4.153,0.782,9.169,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.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,37.173,13.209,9.234,0.62,0.0,0.0,0.0,0.0,2238.1,3983.5,31.651,20.841,0.0,3.519,3.718,0.523,7.045,0.655,-1.91,0.0,0.0,6.474,-0.151,5.493,0.0,15.046,0.0,8.172,-11.715,0.0,0.134,-0.27,-0.024,3.08,0.028,10.339,0.0,0.0,-5.472,-0.101,-1.033,-2.569,-3.594,0.0,3.189,9.578,1354.8,997.6,11399.5,2615.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 base-mechvent-bath-kitchen-fans.xml,57.912,57.912,36.088,36.088,21.824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36,4.337,0.838,9.164,0.0,0.0,4.51,0.0,0.334,0.112,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,14.227,9.234,0.614,0.0,0.0,0.0,0.0,2159.4,3530.9,24.165,19.722,0.0,3.567,3.65,0.514,7.124,0.633,-2.041,0.0,0.0,6.633,-0.113,4.324,0.0,2.474,0.0,4.737,-11.406,0.0,-0.049,-0.458,-0.051,2.805,-0.025,9.832,0.0,0.0,-5.803,-0.053,-1.053,-3.062,-0.689,0.0,3.151,9.881,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-airflow-fraction-zero.xml,63.621,63.621,38.163,38.163,25.457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.42,4.557,0.889,9.162,0.0,0.0,4.51,0.0,0.334,1.859,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.457,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.837,15.125,9.234,0.612,0.0,0.0,0.0,0.0,2166.8,3606.4,28.645,20.667,0.0,3.541,3.658,0.515,7.151,0.634,-1.986,0.0,0.0,6.63,-0.121,2.762,0.0,6.552,0.0,5.511,-11.379,0.0,-0.091,-0.493,-0.056,2.692,-0.035,9.751,0.0,0.0,-5.976,-0.059,-1.107,-3.268,0.676,0.0,3.371,9.906,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-dse.xml,62.285,62.285,39.231,39.231,23.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38,5.385,1.012,9.162,0.0,0.0,4.51,0.0,0.334,2.016,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.054,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.254,11.882,9.234,0.612,0.0,0.0,0.0,0.0,2166.5,2904.3,20.672,12.828,0.0,3.753,3.656,0.515,7.145,0.634,-1.986,0.0,0.0,6.616,-0.122,2.985,0.0,5.084,0.0,0.0,-11.377,0.0,0.006,-0.494,-0.056,2.69,-0.035,9.754,0.0,0.0,-5.982,-0.06,-1.114,-3.259,0.762,0.0,0.0,9.909,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-evap-cooler-only-ducted.xml,34.201,34.201,34.201,34.201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.994,9.205,0.0,0.0,4.51,0.0,0.334,2.725,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.997,9.234,0.658,0.0,0.0,0.0,0.0,0.0,2037.2,0.0,17.797,0.0,2.641,2.613,0.366,4.094,0.37,-5.073,0.0,0.0,1.575,-0.206,3.172,0.0,-0.945,0.0,2.335,-11.288,0.0,0.03,-0.485,-0.054,2.758,-0.036,9.859,0.0,0.0,-6.372,-0.058,-1.203,-3.085,1.29,0.0,0.571,10.043,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis-airflow-fraction-zero.xml,70.837,70.837,37.763,37.763,33.074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.546,4.242,0.807,9.167,0.0,0.0,4.51,0.0,0.334,1.725,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.976,13.65,9.234,0.617,0.0,0.0,0.0,0.0,2171.4,3598.0,28.648,20.634,0.0,3.501,3.661,0.515,7.102,0.638,-2.031,0.0,0.0,6.651,-0.117,1.505,0.0,13.813,0.0,6.942,-11.507,0.0,0.026,-0.377,-0.04,2.996,-0.002,10.062,0.0,0.0,-5.499,-0.063,-0.26,-2.771,-3.314,0.0,3.214,9.784,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis-dse.xml,70.955,70.955,38.727,38.727,32.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.532,4.966,0.902,9.167,0.0,0.0,4.51,0.0,0.334,1.884,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.127,10.516,9.234,0.617,0.0,0.0,0.0,0.0,2170.3,2714.2,20.674,12.743,0.0,3.757,3.657,0.515,7.093,0.637,-2.024,0.0,0.0,6.637,-0.12,1.505,0.0,13.684,0.0,0.0,-11.503,0.0,0.117,-0.38,-0.04,2.993,-0.002,10.074,0.0,0.0,-5.504,-0.066,-0.26,-2.761,-3.283,0.0,0.0,9.788,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis-evap-cooler-only-ducted.xml,34.163,34.163,34.163,34.163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.912,9.228,0.0,0.0,4.51,0.0,0.334,2.748,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,9.234,0.683,0.0,0.0,0.0,0.0,0.0,2190.0,0.0,17.498,0.0,2.246,2.181,0.304,2.75,0.261,-6.396,0.0,0.0,-0.481,-0.229,0.723,0.0,7.87,0.0,1.94,-11.308,0.0,0.136,-0.37,-0.038,3.062,-0.007,10.216,0.0,0.0,-6.052,-0.056,-0.26,-2.6,-3.127,0.0,0.632,10.048,1354.8,997.6,11399.5,2615.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 base-mechvent-cfis-supplemental-fan-exhaust.xml,67.919,67.919,36.396,36.396,31.522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,4.157,0.787,9.168,0.0,0.0,4.51,0.0,0.334,0.489,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.522,13.308,9.234,0.619,0.0,0.0,0.0,0.0,2135.4,3598.1,28.65,20.62,0.0,3.534,3.681,0.518,7.076,0.644,-1.993,0.0,0.0,6.588,-0.128,1.94,0.0,12.315,0.0,6.64,-11.592,0.0,0.081,-0.326,-0.032,3.059,0.012,10.199,0.0,0.0,-5.434,-0.075,-0.26,-2.635,-4.037,0.0,3.139,9.701,1354.8,997.6,11399.6,2615.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 base-mechvent-cfis-supplemental-fan-supply.xml,70.187,70.187,36.422,36.422,33.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.557,4.161,0.787,9.168,0.0,0.0,4.51,0.0,0.334,0.473,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.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,31.623,13.297,9.234,0.618,0.0,0.0,0.0,0.0,2161.3,3598.1,28.649,20.623,0.0,3.504,3.667,0.516,7.087,0.641,-2.009,0.0,0.0,6.624,-0.123,1.508,0.0,14.387,0.0,7.062,-11.541,0.0,0.054,-0.352,-0.036,3.033,0.006,10.144,0.0,0.0,-5.449,-0.07,-0.25,-2.68,-3.924,0.0,3.162,9.751,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis.xml,66.093,66.093,38.079,38.079,28.014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.462,4.498,0.872,9.163,0.0,0.0,4.51,0.0,0.334,1.808,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.014,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.234,14.828,9.234,0.613,0.0,0.0,0.0,0.0,2176.3,3909.4,28.644,20.662,0.0,3.472,3.658,0.515,7.152,0.635,-1.999,0.0,0.0,6.684,-0.115,2.58,0.0,7.28,0.0,7.437,-11.391,0.0,-0.02,-0.467,-0.052,2.798,-0.028,9.821,0.0,0.0,-5.812,-0.056,-1.089,-3.121,0.758,0.0,2.416,9.896,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis.xml,72.164,72.164,37.694,37.694,34.471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.569,4.189,0.792,9.168,0.0,0.0,4.51,0.0,0.334,1.699,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.284,13.399,9.234,0.618,0.0,0.0,0.0,0.0,2175.3,3598.0,28.647,20.617,0.0,3.499,3.701,0.521,7.073,0.651,-1.902,0.0,0.0,6.546,-0.152,1.518,0.0,13.988,0.0,8.168,-11.613,0.0,0.128,-0.319,-0.031,3.016,0.016,10.247,0.0,0.0,-5.519,-0.101,-0.239,-2.682,-3.101,0.0,2.442,9.679,1354.8,997.6,11399.6,2615.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 base-mechvent-erv-atre-asre.xml,62.957,62.957,37.859,37.859,25.097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.368,0.843,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.503,14.295,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3548.5,24.598,19.394,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.905,0.0,5.384,-11.427,0.0,-0.036,-0.441,-0.049,2.87,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.858,0.0,3.226,9.862,1354.8,997.6,11399.6,2615.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 base-mechvent-erv.xml,62.961,62.961,37.859,37.859,25.101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.368,0.843,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.507,14.295,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3548.6,24.6,19.394,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.908,0.0,5.385,-11.427,0.0,-0.036,-0.441,-0.049,2.871,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.859,0.0,3.226,9.862,1354.8,997.6,11399.6,2615.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 base-mechvent-exhaust-rated-flow-rate.xml,71.738,71.738,36.824,36.824,34.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.576,4.129,0.778,9.168,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.7,13.147,9.234,0.619,0.0,0.0,0.0,0.0,2168.2,3628.1,28.7,20.683,0.0,3.516,3.684,0.518,7.077,0.644,-2.004,0.0,0.0,6.584,-0.124,1.462,0.0,15.369,0.0,7.265,-11.592,0.0,0.084,-0.322,-0.032,3.061,0.012,10.189,0.0,0.0,-5.437,-0.071,-0.236,-2.626,-4.238,0.0,3.149,9.7,1354.8,997.6,11399.6,2615.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 base-mechvent-exhaust.xml,71.738,71.738,36.824,36.824,34.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.576,4.129,0.778,9.168,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.7,13.147,9.234,0.619,0.0,0.0,0.0,0.0,2168.2,3628.1,28.7,20.683,0.0,3.516,3.684,0.518,7.077,0.644,-2.004,0.0,0.0,6.584,-0.124,1.462,0.0,15.369,0.0,7.265,-11.592,0.0,0.084,-0.322,-0.032,3.061,0.012,10.189,0.0,0.0,-5.437,-0.071,-0.236,-2.626,-4.238,0.0,3.149,9.7,1354.8,997.6,11399.6,2615.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 base-mechvent-hrv-asre.xml,62.957,62.957,37.863,37.863,25.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.371,0.844,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.501,14.297,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3549.7,24.597,19.396,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.902,0.0,5.384,-11.427,0.0,-0.036,-0.441,-0.049,2.87,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.858,0.0,3.228,9.862,1354.8,997.6,11399.6,2615.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 base-mechvent-hrv.xml,62.961,62.961,37.863,37.863,25.099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.37,0.844,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,0.0,0.0,23.504,14.297,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3549.7,24.599,19.397,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.905,0.0,5.385,-11.427,0.0,-0.036,-0.441,-0.049,2.871,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.859,0.0,3.228,9.862,1354.8,997.6,11399.6,2615.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 -base-mechvent-multiple.xml,77.08,77.08,37.598,37.598,39.482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.649,3.82,0.691,9.171,0.0,0.0,4.51,0.0,0.334,1.581,0.0,0.0,0.409,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.977,11.671,9.234,0.622,0.0,0.0,0.0,19.0,2238.0,3736.4,35.062,22.721,0.0,3.204,3.696,0.52,7.1,0.648,-1.942,0.0,0.0,6.642,-0.136,3.521,0.0,9.429,0.0,15.543,-11.572,0.0,0.018,-0.249,-0.021,3.259,0.031,10.431,0.0,0.0,-5.141,-0.083,-0.199,0.0,-2.238,-8.377,4.668,9.723,1354.8,997.6,11399.6,2615.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 +base-mechvent-multiple.xml,77.667,77.667,37.573,37.573,40.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.659,3.795,0.685,9.172,0.0,0.0,4.51,0.0,0.334,1.579,0.0,0.0,0.406,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.55,11.57,9.234,0.622,0.0,0.0,0.0,19.0,2218.1,3646.4,35.062,22.708,0.0,3.21,3.708,0.522,7.085,0.653,-1.889,0.0,0.0,6.598,-0.154,3.867,0.0,9.527,0.0,15.709,-11.617,0.0,0.04,-0.227,-0.018,3.269,0.038,10.517,0.0,0.0,-5.143,-0.101,-0.62,0.0,-2.175,-8.228,4.665,9.678,1354.8,997.6,11399.6,2615.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 base-mechvent-supply.xml,70.317,70.317,36.895,36.895,33.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.551,4.206,0.797,9.168,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.302,13.481,9.234,0.618,0.0,0.0,0.0,0.0,2190.6,3628.1,28.514,20.665,0.0,3.506,3.666,0.516,7.089,0.64,-2.012,0.0,0.0,6.628,-0.123,1.508,0.0,14.126,0.0,6.997,-11.539,0.0,0.051,-0.353,-0.036,3.033,0.005,10.139,0.0,0.0,-5.448,-0.069,-0.251,-2.685,-3.763,0.0,3.198,9.753,1354.8,997.6,11399.6,2615.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 base-mechvent-whole-house-fan.xml,54.648,54.648,34.33,34.33,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.335,2.491,0.39,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.667,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.027,6.45,9.234,0.622,0.0,0.0,0.0,0.0,2105.7,2993.5,22.274,15.245,0.0,3.57,3.647,0.514,7.145,0.632,-2.022,0.0,0.0,6.737,-0.113,4.807,0.0,0.729,0.0,4.438,-11.391,0.0,0.081,-0.274,-0.025,3.342,0.019,10.404,0.0,0.0,-4.938,-0.051,-1.001,0.0,-0.136,-11.801,1.765,9.904,1354.8,997.6,11399.6,2615.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 base-misc-additional-properties.xml,56.128,56.128,35.995,35.995,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 @@ -421,6 +421,6 @@ house044.xml,227.028,227.028,43.62,43.62,183.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.7 house045.xml,150.599,150.599,35.234,35.234,115.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.721,2.444,0.31,0.0,0.0,0.0,9.065,0.315,0.749,1.793,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.917,0.0,22.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.327,4.231,13.085,4.359,0.0,0.0,0.0,0.0,2305.7,3008.2,46.015,13.006,3.57,3.077,15.083,2.263,32.188,1.132,6.28,0.639,0.086,11.516,-0.221,20.634,0.0,10.929,0.0,0.0,-21.636,-0.016,0.004,-1.112,-0.119,0.92,-0.09,5.103,0.329,-0.013,-3.984,-0.191,-1.204,-0.934,-1.276,0.0,0.0,6.914,1610.9,1574.7,12168.2,4288.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 house046.xml,24.966,24.966,24.966,24.966,0.0,0.0,0.0,0.0,0.0,0.0,5.409,0.272,0.38,3.589,1.142,4.924,0.0,0.0,1.03,0.0,0.082,0.0,0.0,0.0,0.0,1.793,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.644,2.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.979,12.719,4.305,0.617,0.0,0.0,0.0,0.0,3780.1,2265.4,16.064,12.964,0.0,2.52,3.83,0.0,0.0,0.327,0.647,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.827,-4.067,0.0,1.287,2.524,0.0,0.0,0.024,3.101,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.684,5.134,596.8,442.2,5543.5,2208.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 house047.xml,19.923,19.923,14.488,14.488,5.436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.627,0.006,4.487,0.0,0.0,0.921,0.0,0.463,0.182,0.0,0.0,0.0,1.444,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.644,2.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.284,1.66,4.203,0.0,0.0,0.0,0.0,0.0,871.9,972.2,4.551,2.604,0.0,-0.001,0.779,0.129,0.0,0.0,1.196,0.0,0.0,0.546,-0.018,1.573,0.0,4.965,0.0,0.179,-4.083,0.0,-0.0,0.091,0.031,0.0,0.0,0.685,0.0,0.0,-0.912,-0.008,-0.24,-0.259,-1.429,0.0,-0.0,3.704,251.7,442.2,5772.6,1524.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 -house048.xml,92.711,92.711,41.515,41.515,51.196,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.323,14.241,4.301,0.0,0.0,0.0,3.691,0.085,0.498,2.927,0.0,0.0,0.0,2.421,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.35,8.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.25,0.0,12.606,0.0,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.514,52.603,7.253,2.665,0.0,0.0,0.0,0.0,1526.8,5082.7,46.091,33.573,1.017,2.613,11.931,0.0,0.0,0.798,2.371,0.0,0.056,1.718,-0.53,9.734,0.0,1.171,0.0,6.336,-8.817,1.349,1.043,9.281,0.0,0.0,0.556,7.023,0.0,0.074,10.211,-0.507,0.161,-0.462,2.767,0.0,7.446,13.865,130.3,817.7,11617.7,3495.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house048.xml,94.421,94.421,41.498,41.498,52.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.339,14.24,4.297,0.0,0.0,0.0,3.691,0.085,0.498,2.899,0.0,0.0,0.0,2.421,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.35,8.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.977,0.0,12.606,0.0,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.912,52.344,7.253,2.665,0.0,0.0,0.0,0.0,1522.2,5082.6,46.091,33.572,1.017,2.621,11.971,0.0,0.0,0.804,2.395,0.0,0.056,1.685,-0.543,8.098,0.0,4.22,0.0,6.466,-8.984,1.352,1.062,9.364,0.0,0.0,0.565,7.066,0.0,0.074,10.221,-0.52,0.764,-0.442,1.845,0.0,7.493,13.698,130.3,817.7,11617.7,3495.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 house049.xml,31.754,31.754,28.257,28.257,3.497,0.0,0.0,0.0,0.0,0.0,5.541,0.0,0.033,5.873,0.159,2.621,0.249,0.0,1.474,0.057,0.099,2.092,0.0,0.0,0.0,3.073,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.879,4.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.698,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.934,34.1,4.262,1.304,0.0,0.0,0.0,108.0,4403.9,2165.2,12.255,17.691,0.0,1.366,4.388,0.0,0.0,0.0,-3.637,0.0,0.0,1.191,-0.094,2.585,0.0,1.811,0.0,0.0,-2.866,0.0,1.565,6.663,0.0,0.0,0.0,18.268,0.0,0.0,3.076,-0.074,-0.325,-3.576,0.504,0.0,0.0,8.574,728.6,567.4,7484.8,928.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 house050.xml,51.321,51.321,21.842,21.842,29.478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.266,1.901,0.334,0.0,0.0,0.0,1.782,0.057,0.111,2.23,0.0,0.0,0.0,2.36,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.114,5.961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.562,0.0,10.847,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.201,5.2,8.573,0.0,0.0,0.0,0.0,0.0,1156.0,2580.1,11.094,15.39,0.0,4.142,6.442,0.0,0.0,2.004,1.46,0.0,4.513,0.0,-0.131,2.668,0.0,3.672,0.0,1.861,-11.506,0.0,-0.288,-0.306,0.0,0.0,-0.388,3.485,0.0,-0.901,0.0,-0.127,-0.559,-1.227,-0.763,0.0,0.571,5.813,1689.0,437.0,10675.0,2994.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 diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index 6652ecc3a6..743021cfdc 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -44,7 +44,7 @@ base-bldgtype-multifamily-shared-generator.xml,1450.06,144.0,872.48,921.79,144.0 base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,1074.14,144.0,930.14,1074.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 base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,949.42,144.0,552.24,696.24,144.0,109.18,253.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 base-bldgtype-multifamily-shared-laundry-room.xml,929.42,144.0,545.97,689.97,144.0,95.45,239.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 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,1411.5,144.0,1007.18,1151.18,144.0,116.32,260.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 +base-bldgtype-multifamily-shared-mechvent-multiple.xml,1432.76,144.0,999.45,1143.45,144.0,145.31,289.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 base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,1236.27,144.0,909.79,1053.79,144.0,38.48,182.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 base-bldgtype-multifamily-shared-mechvent.xml,1221.13,144.0,905.8,1049.8,144.0,27.33,171.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,0,0,0,0,0 base-bldgtype-multifamily-shared-pv.xml,351.2,144.0,872.48,202.35,144.0,4.85,148.85,0,0,0,0,0,0,0,0,-814.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 @@ -322,19 +322,19 @@ base-location-phoenix-az.xml,1577.06,144.0,1289.05,1433.05,144.0,0.01,144.01,0,0 base-location-portland-or.xml,1185.67,144.0,822.48,966.48,144.0,75.19,219.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 base-mechvent-balanced.xml,1832.3,144.0,1259.71,1403.71,144.0,284.59,428.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 base-mechvent-bath-kitchen-fans.xml,1646.22,144.0,1201.74,1345.74,144.0,156.48,300.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 -base-mechvent-cfis-airflow-fraction-zero.xml,1741.4,144.0,1270.87,1414.87,144.0,182.53,326.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 +base-mechvent-cfis-airflow-fraction-zero.xml,1782.68,144.0,1257.54,1401.54,144.0,237.14,381.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 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 -base-mechvent-cfis-evap-cooler-only-ducted.xml,1282.91,144.0,1138.91,1282.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 +base-mechvent-cfis-evap-cooler-only-ducted.xml,1281.67,144.0,1137.67,1281.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 base-mechvent-cfis-supplemental-fan-exhaust.xml,1726.03,144.0,1212.02,1356.02,144.0,226.01,370.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 base-mechvent-cfis-supplemental-fan-supply.xml,1742.97,144.0,1212.88,1356.88,144.0,242.09,386.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 -base-mechvent-cfis.xml,1756.93,144.0,1268.07,1412.07,144.0,200.86,344.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 +base-mechvent-cfis.xml,1790.38,144.0,1255.23,1399.23,144.0,247.15,391.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 base-mechvent-erv-atre-asre.xml,1728.69,144.0,1260.74,1404.74,144.0,179.95,323.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 base-mechvent-erv.xml,1728.72,144.0,1260.74,1404.74,144.0,179.98,323.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 base-mechvent-exhaust-rated-flow-rate.xml,1764.59,144.0,1226.25,1370.25,144.0,250.34,394.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 base-mechvent-exhaust.xml,1764.59,144.0,1226.25,1370.25,144.0,250.34,394.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 base-mechvent-hrv-asre.xml,1728.78,144.0,1260.85,1404.85,144.0,179.93,323.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 base-mechvent-hrv.xml,1728.81,144.0,1260.85,1404.85,144.0,179.96,323.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 -base-mechvent-multiple.xml,1823.12,144.0,1252.04,1396.04,144.0,283.08,427.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,0,0,0,0,0 +base-mechvent-multiple.xml,1826.68,144.0,1251.2,1395.2,144.0,287.48,431.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 base-mechvent-supply.xml,1756.28,144.0,1228.64,1372.64,144.0,239.64,383.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 base-mechvent-whole-house-fan.xml,1576.89,144.0,1143.21,1287.21,144.0,145.68,289.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 base-misc-additional-properties.xml,1631.02,144.0,1198.67,1342.67,144.0,144.35,288.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 From e71eb1a219099fa911a987a051bb8b67996728b4 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Tue, 4 Oct 2022 13:06:25 -0600 Subject: [PATCH 19/27] Update test. --- HPXMLtoOpenStudio/measure.xml | 16 ++++++++-------- HPXMLtoOpenStudio/tests/test_airflow.rb | 21 +++++++++++++-------- 2 files changed, 21 insertions(+), 16 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 5967d9b2ec..8c4df2cee7 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 827874ef-e5ec-471b-9004-f6231d059cbf - 20221003T214237Z + 2351d865-1ace-4614-b650-03ddce46a0cb + 20221004T190557Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -558,12 +558,6 @@ script F6F18198 - - test_airflow.rb - rb - test - CCD3D45B - hpxml_defaults.rb rb @@ -594,5 +588,11 @@ resource EAB200AD + + test_airflow.rb + rb + test + 5F417A29 + diff --git a/HPXMLtoOpenStudio/tests/test_airflow.rb b/HPXMLtoOpenStudio/tests/test_airflow.rb index 708785fe60..c46d999b25 100644 --- a/HPXMLtoOpenStudio/tests/test_airflow.rb +++ b/HPXMLtoOpenStudio/tests/test_airflow.rb @@ -380,28 +380,33 @@ def test_multiple_mechvent model, hpxml = _test_measure(args_hash) # Get HPXML values - vent_fans = hpxml.ventilation_fans.select { |f| f.hours_in_operation.to_f > 0 && !f.is_cfis_supplemental_fan? } + vent_fans = hpxml.ventilation_fans.select { |f| !f.is_cfis_supplemental_fan? } + vent_fans.each do |vent_fan| + vent_fan.hours_in_operation = 24.0 if vent_fan.hours_in_operation.nil? + end - bath_fans = vent_fans.select { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationBath } + local_fans = vent_fans.select { |f| f.used_for_local_ventilation } + bath_fans = local_fans.select { |f| f.fan_location == HPXML::LocationBath } bath_fan_cfm = bath_fans.map { |bath_fan| bath_fan.flow_rate * bath_fan.quantity }.sum(0.0) bath_fan_power = bath_fans.map { |bath_fan| bath_fan.fan_power * bath_fan.quantity }.sum(0.0) - kitchen_fans = vent_fans.select { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationKitchen } + kitchen_fans = local_fans.select { |f| f.fan_location == HPXML::LocationKitchen } kitchen_fan_cfm = kitchen_fans.map { |kitchen_fan| kitchen_fan.flow_rate }.sum(0.0) kitchen_fan_power = kitchen_fans.map { |kitchen_fan| kitchen_fan.fan_power }.sum(0.0) - vent_fan_sup = vent_fans.select { |f| f.used_for_whole_building_ventilation && (f.fan_type == HPXML::MechVentTypeSupply) } + whole_fans = vent_fans.select { |f| f.used_for_whole_building_ventilation } + vent_fan_sup = whole_fans.select { |f| f.fan_type == HPXML::MechVentTypeSupply } vent_fan_cfm_sup = vent_fan_sup.map { |f| f.average_total_unit_flow_rate }.sum(0.0) vent_fan_power_sup = vent_fan_sup.map { |f| f.average_unit_fan_power }.sum(0.0) - vent_fan_exh = vent_fans.select { |f| f.used_for_whole_building_ventilation && (f.fan_type == HPXML::MechVentTypeExhaust) } + vent_fan_exh = whole_fans.select { |f| f.fan_type == HPXML::MechVentTypeExhaust } vent_fan_cfm_exh = vent_fan_exh.map { |f| f.average_total_unit_flow_rate }.sum(0.0) vent_fan_power_exh = vent_fan_exh.map { |f| f.average_unit_fan_power }.sum(0.0) - vent_fan_bal = vent_fans.select { |f| f.used_for_whole_building_ventilation && (f.fan_type == HPXML::MechVentTypeBalanced) } + vent_fan_bal = whole_fans.select { |f| f.fan_type == HPXML::MechVentTypeBalanced } vent_fan_cfm_bal = vent_fan_bal.map { |f| f.average_total_unit_flow_rate }.sum(0.0) vent_fan_power_bal = vent_fan_bal.map { |f| f.average_unit_fan_power }.sum(0.0) - vent_fan_ervhrv = vent_fans.select { |f| f.used_for_whole_building_ventilation && [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include?(f.fan_type) } + vent_fan_ervhrv = whole_fans.select { |f| [HPXML::MechVentTypeERV, HPXML::MechVentTypeHRV].include?(f.fan_type) } vent_fan_cfm_ervhrv = vent_fan_ervhrv.map { |f| f.average_total_unit_flow_rate }.sum(0.0) vent_fan_power_ervhrv = vent_fan_ervhrv.map { |f| f.average_unit_fan_power }.sum(0.0) - vent_fan_cfis = vent_fans.select { |f| f.used_for_whole_building_ventilation && (f.fan_type == HPXML::MechVentTypeCFIS) } + vent_fan_cfis = whole_fans.select { |f| f.fan_type == HPXML::MechVentTypeCFIS } vent_fan_cfm_cfis = vent_fan_cfis.map { |f| f.oa_unit_flow_rate }.sum(0.0) vent_fan_power_cfis = vent_fan_cfis.map { |f| f.fan_power }.sum(0.0) vent_fan_mins_cfis = vent_fan_cfis.map { |f| f.hours_in_operation / 24.0 * 60.0 }.sum(0.0) From 9005fe10a76d9c56c7d1a28e1750fb73271087a8 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Wed, 5 Oct 2022 08:31:22 -0600 Subject: [PATCH 20/27] Update Changelog.md and docs. [ci skip] --- Changelog.md | 3 ++- docs/source/workflow_inputs.rst | 9 +++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Changelog.md b/Changelog.md index 05575fdb42..0c45d8471c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -11,6 +11,8 @@ __New Features__ - Allows setting the ground soil conductivity used for foundation heat transfer and ground source heat pumps. - Allows setting the natural ventilation availability (days/week that operable windows can be opened); default changed from 7 to 3 (M/W/F). - Allows specifying duct surface area multipliers. +- Allows modeling CFIS ventilation systems with supplemental fans. +- Allows shared dishwasher/clothes washer to be attached to a hot water distribution system instead of a single water heater. - Design temperatures, used to calculate design loads for HVAC equipment autosizing, are now output in `in.xml` and `results_hpxml.csv`. - EnergyPlus modeling changes: - Switches Kiva foundation model timestep from 'Hourly' to 'Timestep'; small increase in runtime for sub-hourly simulations. @@ -24,7 +26,6 @@ __New Features__ - Adds optional arguments for utility bill scenarios. - ReportUtilityBills measure: - Removes utility rate and PV related arguments in lieu of new utility bill scenarios described inside the HPXML file. -- Allows shared dishwasher/clothes washer to be attached to a hot water distribution system instead of a single water heater. __Bugfixes__ - Fixes possible incorrect autosizing of heat pump *separate* backup systems with respect to duct loads. diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 399c28bd21..08712909f7 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -1960,7 +1960,7 @@ If not entered, the simulation will not include mechanical ventilation. ``IsSharedSystem`` boolean See [#]_ No false Whether it serves multiple dwelling units ``FanType`` string See [#]_ Yes Type of ventilation system ``RatedFlowRate`` or ``TestedFlowRate`` or ``CalculatedFlowRate`` or ``DeliveredVentilation`` double cfm >= 0 No See [#]_ Flow rate [#]_ - ``HoursInOperation`` double hrs/day 0 - 24 No See [#]_ Hours per day of operation + ``HoursInOperation`` double hrs/day 0 - 24 See [#]_ See [#]_ Hours per day of operation ``FanPower`` double W >= 0 No See [#]_ Fan power ============================================================================================= ======== ======= =========== ======== ========= ========================================= @@ -1968,9 +1968,10 @@ If not entered, the simulation will not include mechanical ventilation. .. [#] FanType choices are "energy recovery ventilator", "heat recovery ventilator", "exhaust only", "supply only", "balanced", or "central fan integrated supply". .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_, including adjustments for A) infiltration credit, B) balanced vs imbalanced systems, and C) adiabatic surfaces for SFA/MF buildings. .. [#] For a central fan integrated supply system, the flow rate should equal the amount of outdoor air provided to the distribution system. + .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a CFIS system, in which case it is not used as an input. .. [#] If HoursInOperation not provided, defaults to 24 (i.e., running continuously) for all system types other than central fan integrated supply (CFIS), and 8.0 (i.e., running intermittently) for CFIS systems. - For a CFIS system, the HoursInOperation and the flow rate are combined to form the expected/required hourly ventilation rate (e.g., 90 cfm and 8 hrs/day produce an hourly ventilation rate of 30 cfm). - For a CFIS system with a supplemental fan, HoursInOperation is not used for the supplemental fan as its runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly ventilation rate. + For a CFIS system, the HoursInOperation and the flow rate are combined to form the hourly target ventilation rate (e.g., inputs of 90 cfm and 8 hrs/day produce an hourly target ventilation rate of 30 cfm). + For a CFIS system with a supplemental fan, the supplemental fan's runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate. .. [#] If FanPower not provided, defaults based on `ANSI/RESNET/ICC 301-2019 `_: - "energy recovery ventilator", "heat recovery ventilator", or shared system: 1.0 W/cfm @@ -2021,7 +2022,7 @@ If a central fan integrated supply system is specified, additional information i ================================================ ====== ===== =========== ======== =============== ================================== .. [#] AdditionalRuntimeOperatingMode choices are "air handler fan" or "supplemental fan". - .. [#] SupplementalFan must reference another ``VentilationFan`` w/ UsedForWholeBuildingVentilation=true, IsSharedSystem=false, and FanType="exhaust only" or "supply only". + .. [#] SupplementalFan must reference another ``VentilationFan`` where UsedForWholeBuildingVentilation=true, IsSharedSystem=false, and FanType="exhaust only" or "supply only". .. [#] SupplementalFan only required if AdditionalRuntimeOperatingMode is "supplemental fan". .. [#] HVACDistribution type cannot be HydronicDistribution. .. [#] Blower airflow rate when operating in ventilation only mode (i.e., not heating or cooling mode), as a fraction of the maximum blower airflow rate. From d55139bc22cb066a662a0e21b9edbffbb6c35729 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Wed, 5 Oct 2022 12:49:26 -0600 Subject: [PATCH 21/27] Update defaulting and tests. --- HPXMLtoOpenStudio/measure.xml | 40 +++++++++---------- HPXMLtoOpenStudio/resources/airflow.rb | 20 ++++++++-- HPXMLtoOpenStudio/resources/hpxml_defaults.rb | 9 ++--- HPXMLtoOpenStudio/resources/hvac_sizing.rb | 2 +- HPXMLtoOpenStudio/tests/test_defaults.rb | 36 ++++++++++++++--- 5 files changed, 72 insertions(+), 35 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 8c4df2cee7..7536eaf1db 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - 2351d865-1ace-4614-b650-03ddce46a0cb - 20221004T190557Z + c9eaf817-f7e7-4669-bc70-717d4ef15a6d + 20221005T184735Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -517,12 +517,6 @@ resource A732A831 - - hvac_sizing.rb - rb - resource - EE978114 - waterheater.rb rb @@ -558,12 +552,6 @@ script F6F18198 - - hpxml_defaults.rb - rb - resource - 0125FCEB - test_validation.rb rb @@ -577,22 +565,34 @@ 50D48CF8 - test_defaults.rb + test_airflow.rb rb test - 4626D7C2 + 5F417A29 - airflow.rb + hvac_sizing.rb rb resource - EAB200AD + 09DA3620 - test_airflow.rb + hpxml_defaults.rb + rb + resource + D7B1CC89 + + + test_defaults.rb rb test - 5F417A29 + 9905D1E0 + + + airflow.rb + rb + resource + 043D0B7E diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index 4bdb68ca4f..a0a9a3777a 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -194,8 +194,14 @@ def self.get_default_mech_vent_flow_rate(hpxml, vent_fan, infil_measurements, we phi = q_inf / q_tot end q_fan = q_tot - phi * (q_inf * infil_a_ext) + q_fan = [q_fan, 0].max - return [q_fan, 0].max + if not vent_fan.hours_in_operation.nil? + # Convert from hourly average requirement to actual fan flow rate + q_fan *= 24.0 / vent_fan.hours_in_operation + end + + return q_fan end private @@ -1447,9 +1453,15 @@ def self.add_ee_for_vent_fan_power(model, obj_name, sup_fans = [], exh_fans = [] fan_heat_lost_fraction = 0.0 else # Calculate total fan power - sup_fans_w = sup_fans.map { |f| f.average_unit_fan_power }.sum(0.0) - exh_fans_w = exh_fans.map { |f| f.average_unit_fan_power }.sum(0.0) - bal_fans_w = (bal_fans + erv_hrv_fans).map { |f| f.average_unit_fan_power }.sum(0.0) + if obj_name == Constants.ObjectNameMechanicalVentilationHouseFanCFISSupplFan + sup_fans_w = sup_fans.map { |f| f.unit_fan_power }.sum(0.0) + exh_fans_w = exh_fans.map { |f| f.unit_fan_power }.sum(0.0) + bal_fans_w = (bal_fans + erv_hrv_fans).map { |f| f.unit_fan_power }.sum(0.0) + else + sup_fans_w = sup_fans.map { |f| f.average_unit_fan_power }.sum(0.0) + exh_fans_w = exh_fans.map { |f| f.average_unit_fan_power }.sum(0.0) + bal_fans_w = (bal_fans + erv_hrv_fans).map { |f| f.average_unit_fan_power }.sum(0.0) + end tot_fans_w = sup_fans_w + exh_fans_w + bal_fans_w # Calculate weighted-average value diff --git a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb index 1251fe3d15..31c6e705b0 100644 --- a/HPXMLtoOpenStudio/resources/hpxml_defaults.rb +++ b/HPXMLtoOpenStudio/resources/hpxml_defaults.rb @@ -3,8 +3,8 @@ class HPXMLDefaults # Note: Each HPXML object (e.g., HPXML::Wall) has an additional_properties # child object where custom information can be attached to the object without - # being written to the HPXML file. This is useful to associate additional values - # with the HPXML objects that will ultimately get passed around. + # being written to the HPXML file. This will allow the custom information to + # be used by subsequent calculations/logic. def self.apply(runner, hpxml, eri_version, weather, epw_file: nil, schedules_file: nil, convert_shared_systems: true) cfa = hpxml.building_construction.conditioned_floor_area @@ -1555,17 +1555,16 @@ def self.apply_ventilation_fans(hpxml, infil_measurements, weather, cfa, nbeds) hpxml.ventilation_fans.each do |vent_fan| next unless vent_fan.used_for_whole_building_ventilation - # FIXME: Check which of these apply for a CFIS supplemental fan if vent_fan.is_shared_system.nil? vent_fan.is_shared_system = false vent_fan.is_shared_system_isdefaulted = true end - if vent_fan.hours_in_operation.nil? + if vent_fan.hours_in_operation.nil? && !vent_fan.is_cfis_supplemental_fan? vent_fan.hours_in_operation = (vent_fan.fan_type == HPXML::MechVentTypeCFIS) ? 8.0 : 24.0 vent_fan.hours_in_operation_isdefaulted = true end if vent_fan.rated_flow_rate.nil? && vent_fan.tested_flow_rate.nil? && vent_fan.calculated_flow_rate.nil? && vent_fan.delivered_ventilation.nil? - if hpxml.ventilation_fans.select { |vf| vf.used_for_whole_building_ventilation }.size > 1 + if hpxml.ventilation_fans.select { |vf| vf.used_for_whole_building_ventilation && !vf.is_cfis_supplemental_fan? }.size > 1 fail 'Defaulting flow rates for multiple mechanical ventilation systems is currently not supported.' end diff --git a/HPXMLtoOpenStudio/resources/hvac_sizing.rb b/HPXMLtoOpenStudio/resources/hvac_sizing.rb index 573cb89013..cced72fb56 100644 --- a/HPXMLtoOpenStudio/resources/hvac_sizing.rb +++ b/HPXMLtoOpenStudio/resources/hvac_sizing.rb @@ -2007,7 +2007,7 @@ def self.process_heat_pump_adjustment(hvac_sizing_values, weather, hvac, totalCa def self.get_ventilation_rates() # If CFIS w/ supplemental fan, assume air handler is running most of the hour and can provide # all ventilation needs (i.e., supplemental fan does not need to run), so skip supplement fan - vent_fans_mech = @hpxml.ventilation_fans.select { |f| f.used_for_whole_building_ventilation && f.flow_rate > 0 && f.hours_in_operation > 0 && !f.is_cfis_supplemental_fan? } + vent_fans_mech = @hpxml.ventilation_fans.select { |f| f.used_for_whole_building_ventilation && !f.is_cfis_supplemental_fan? && f.flow_rate > 0 && f.hours_in_operation > 0 } if vent_fans_mech.empty? return [0.0, 0.0, 0.0, 0.0, 0.0, 0.0] end diff --git a/HPXMLtoOpenStudio/tests/test_defaults.rb b/HPXMLtoOpenStudio/tests/test_defaults.rb index 9a3016ae80..958668bb00 100644 --- a/HPXMLtoOpenStudio/tests/test_defaults.rb +++ b/HPXMLtoOpenStudio/tests/test_defaults.rb @@ -1931,27 +1931,40 @@ def test_mech_ventilation_fans vent_fan.is_shared_system = false vent_fan.hours_in_operation = 12.0 vent_fan.fan_power = 12.5 + vent_fan.rated_flow_rate = 222.0 vent_fan.cfis_vent_mode_airflow_fraction = 0.5 vent_fan.cfis_addtl_runtime_operating_mode = HPXML::CFISModeSupplementalFan hpxml.ventilation_fans.add(id: "VentilationFan#{hpxml.ventilation_fans.size + 1}", - tested_flow_rate: 120, - fan_power: 30, + tested_flow_rate: 79.0, + fan_power: 9.0, fan_type: HPXML::MechVentTypeExhaust, + is_shared_system: false, used_for_whole_building_ventilation: true) - vent_fan.cfis_supplemental_fan_idref = hpxml.ventilation_fans[-1].id + suppl_vent_fan = hpxml.ventilation_fans[-1] + vent_fan.cfis_supplemental_fan_idref = suppl_vent_fan.id XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 12.0, 12.5, 330, 0.5, HPXML::CFISModeSupplementalFan) + _test_default_mech_vent_values(hpxml_default, false, 12.0, 12.5, 222.0, 0.5, HPXML::CFISModeSupplementalFan) + _test_default_mech_vent_suppl_values(hpxml_default, false, nil, 9.0, 79.0) + + # Test defaults w/ CFIS supplemental fan + suppl_vent_fan.tested_flow_rate = nil + suppl_vent_fan.is_shared_system = nil + suppl_vent_fan.fan_power = nil + XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) + hpxml_default = _test_measure() + _test_default_mech_vent_suppl_values(hpxml_default, false, nil, 35.0, 100.0) # Test defaults w/ CFIS vent_fan.is_shared_system = nil vent_fan.hours_in_operation = nil vent_fan.fan_power = nil + vent_fan.rated_flow_rate = nil vent_fan.cfis_vent_mode_airflow_fraction = nil vent_fan.cfis_addtl_runtime_operating_mode = nil XMLHelper.write_file(hpxml.to_oga, @tmp_hpxml_path) hpxml_default = _test_measure() - _test_default_mech_vent_values(hpxml_default, false, 8.0, 165.0, 330, 1.0, HPXML::CFISModeAirHandler) + _test_default_mech_vent_values(hpxml_default, false, 8.0, 150.0, 300.0, 1.0, HPXML::CFISModeAirHandler) # Test inputs not overridden by defaults w/ ERV hpxml = _create_hpxml('base-mechvent-erv.xml') @@ -4001,6 +4014,19 @@ def _test_default_mech_vent_values(hpxml, is_shared_system, hours_in_operation, end end + def _test_default_mech_vent_suppl_values(hpxml, is_shared_system, hours_in_operation, fan_power, flow_rate) + vent_fan = hpxml.ventilation_fans.select { |f| f.used_for_whole_building_ventilation && f.is_cfis_supplemental_fan? }[0] + + assert_equal(is_shared_system, vent_fan.is_shared_system) + if hours_in_operation.nil? + assert_nil(hours_in_operation, vent_fan.hours_in_operation) + else + assert_equal(hours_in_operation, vent_fan.hours_in_operation) + end + assert_in_epsilon(fan_power, vent_fan.fan_power, 0.01) + assert_in_epsilon(flow_rate, vent_fan.rated_flow_rate.to_f + vent_fan.calculated_flow_rate.to_f + vent_fan.tested_flow_rate.to_f + vent_fan.delivered_ventilation.to_f, 0.01) + end + def _test_default_kitchen_fan_values(hpxml, quantity, flow_rate, hours_in_operation, fan_power, start_hour) kitchen_fan = hpxml.ventilation_fans.select { |f| f.used_for_local_ventilation && f.fan_location == HPXML::LocationKitchen }[0] From 9a37f9eee22b6b999b4e39450edc42617d5576eb Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Thu, 6 Oct 2022 10:40:00 -0600 Subject: [PATCH 22/27] Minor code simplification. --- HPXMLtoOpenStudio/measure.xml | 6 +++--- HPXMLtoOpenStudio/resources/airflow.rb | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index 7536eaf1db..c255894e3f 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - c9eaf817-f7e7-4669-bc70-717d4ef15a6d - 20221005T184735Z + 9bb5fa09-8125-4490-97c8-d86d354096b8 + 20221006T163929Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -592,7 +592,7 @@ airflow.rb rb resource - 043D0B7E + 5B40593B diff --git a/HPXMLtoOpenStudio/resources/airflow.rb b/HPXMLtoOpenStudio/resources/airflow.rb index a0a9a3777a..dbb6ec1d69 100644 --- a/HPXMLtoOpenStudio/resources/airflow.rb +++ b/HPXMLtoOpenStudio/resources/airflow.rb @@ -1436,10 +1436,9 @@ def self.apply_cfis(infil_program, vent_mech_fans, cfis_fan_actuator, cfis_suppl if vent_mech.cfis_addtl_runtime_operating_mode == HPXML::CFISModeSupplementalFan infil_program.addLine(" Set cfis_f_damper_open = @Max (cfis_f_damper_open-#{@cfis_f_damper_extra_open_var[vent_mech.id].name}) 0.0") - infil_program.addLine(' Set QWHV_cfis_sup = QWHV_cfis_sup + cfis_f_damper_open * cfis_Q_duct_oa') else - infil_program.addLine(' Set QWHV_cfis_sup = QWHV_cfis_sup + cfis_f_damper_open * cfis_Q_duct_oa') end + infil_program.addLine(' Set QWHV_cfis_sup = QWHV_cfis_sup + cfis_f_damper_open * cfis_Q_duct_oa') infil_program.addLine('EndIf') end From d1bea4e67cb47d8dc13c4d26a2b58891ed25fd3c Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Mon, 10 Oct 2022 16:05:23 -0600 Subject: [PATCH 23/27] Add CFIS definition/description. [ci skip] --- docs/source/workflow_inputs.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index 08712909f7..8eaf26b9e0 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -2010,7 +2010,7 @@ If an energy recovery ventilator system is specified, additional information is **Central Fan Integrated Supply** -If a central fan integrated supply system is specified, additional information is entered in ``VentilationFan``. +If a central fan integrated supply (CFIS) system is specified, additional information is entered in ``VentilationFan``. ================================================ ====== ===== =========== ======== =============== ================================== Element Type Units Constraints Required Default Notes @@ -2030,6 +2030,11 @@ If a central fan integrated supply system is specified, additional information i It is used to determine how much conditioned air is recirculated through ducts during ventilation only operation, resulting in additional duct losses. A value of zero will result in no conditioned air recirculation, and thus no additional duct losses. +.. note:: + + CFIS systems are automated controllers that use the HVAC system's air handler fan to draw in outdoor air to meet an hourly ventilation target. + CFIS systems are modeled as assuming they A) maximize the use of normal heating/cooling runtime operation to meet the hourly ventilation target, B) block the flow of outdoor air when the hourly ventilation target has been met, and C) provide additional runtime operation (via air handler fan or supplemental fan) to meet the remainder of the hourly ventilation target when space heating/cooling runtime alone is not sufficient. + **Shared System** If the specified system is a shared system (i.e., serving multiple dwelling units), additional information is entered in ``VentilationFan``. From bb4e326e7443b88630334b882a110dcff6cfbe90 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 10 Oct 2022 22:56:41 +0000 Subject: [PATCH 24/27] Latest results. --- workflow/tests/base_results/results.csv | 768 +++++++++--------- workflow/tests/base_results/results_bills.csv | 658 +++++++-------- 2 files changed, 713 insertions(+), 713 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 8d837612b4..8308d10e58 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -1,24 +1,24 @@ 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 Heat Pump Backup (MBtu),End Use: Electricity: Heating 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: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (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: Hot Tub 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),Load: Heating: Delivered (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),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),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 (MBtu),Component Load: Heating: Skylights (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: 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 (MBtu),Component Load: Cooling: Skylights (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),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Total (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Total (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Heating Fans/Pumps (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Cooling (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Cooling Fans/Pumps (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Hot Water (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Lighting Interior (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Lighting Exterior (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Refrigerator (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Dishwasher (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Clothes Washer (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Clothes Dryer (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Range/Oven (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Television (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Plug Loads (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: PV (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Natural Gas: Total (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Natural Gas: Heating (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Total (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Total (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Heating Fans/Pumps (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Cooling (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Cooling Fans/Pumps (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Hot Water (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Lighting Interior (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Lighting Exterior (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Refrigerator (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Dishwasher (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Clothes Washer (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Clothes Dryer (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Range/Oven (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Television (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Plug Loads (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: PV (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Natural Gas: Total (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Natural Gas: Heating (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Total (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Total (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Heating Fans/Pumps (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Cooling (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Cooling Fans/Pumps (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Hot Water (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Lighting Interior (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Lighting Exterior (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Refrigerator (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Dishwasher (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Clothes Washer (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Clothes Dryer (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Range/Oven (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Television (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Plug Loads (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: PV (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Natural Gas: Total (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Natural Gas: Heating (lb),Emissions: SO2: eGRID RMPA: Total (lb),Emissions: SO2: eGRID RMPA: Electricity: Total (lb),Emissions: SO2: eGRID RMPA: Electricity: Heating Fans/Pumps (lb),Emissions: SO2: eGRID RMPA: Electricity: Cooling (lb),Emissions: SO2: eGRID RMPA: Electricity: Cooling Fans/Pumps (lb),Emissions: SO2: eGRID RMPA: Electricity: Hot Water (lb),Emissions: SO2: eGRID RMPA: Electricity: Lighting Interior (lb),Emissions: SO2: eGRID RMPA: Electricity: Lighting Exterior (lb),Emissions: SO2: eGRID RMPA: Electricity: Refrigerator (lb),Emissions: SO2: eGRID RMPA: Electricity: Dishwasher (lb),Emissions: SO2: eGRID RMPA: Electricity: Clothes Washer (lb),Emissions: SO2: eGRID RMPA: Electricity: Clothes Dryer (lb),Emissions: SO2: eGRID RMPA: Electricity: Range/Oven (lb),Emissions: SO2: eGRID RMPA: Electricity: Television (lb),Emissions: SO2: eGRID RMPA: Electricity: Plug Loads (lb),Emissions: SO2: eGRID RMPA: Electricity: PV (lb),Emissions: SO2: eGRID RMPA: Natural Gas: Total (lb),Emissions: SO2: eGRID RMPA: Natural Gas: Heating (lb),Emissions: NOx: eGRID RMPA: Total (lb),Emissions: NOx: eGRID RMPA: Electricity: Total (lb),Emissions: NOx: eGRID RMPA: Electricity: Heating Fans/Pumps (lb),Emissions: NOx: eGRID RMPA: Electricity: Cooling (lb),Emissions: NOx: eGRID RMPA: Electricity: Cooling Fans/Pumps (lb),Emissions: NOx: eGRID RMPA: Electricity: Hot Water (lb),Emissions: NOx: eGRID RMPA: Electricity: Lighting Interior (lb),Emissions: NOx: eGRID RMPA: Electricity: Lighting Exterior (lb),Emissions: NOx: eGRID RMPA: Electricity: Refrigerator (lb),Emissions: NOx: eGRID RMPA: Electricity: Dishwasher (lb),Emissions: NOx: eGRID RMPA: Electricity: Clothes Washer (lb),Emissions: NOx: eGRID RMPA: Electricity: Clothes Dryer (lb),Emissions: NOx: eGRID RMPA: Electricity: Range/Oven (lb),Emissions: NOx: eGRID RMPA: Electricity: Television (lb),Emissions: NOx: eGRID RMPA: Electricity: Plug Loads (lb),Emissions: NOx: eGRID RMPA: Electricity: PV (lb),Emissions: NOx: eGRID RMPA: Natural Gas: Total (lb),Emissions: NOx: eGRID RMPA: Natural Gas: Heating (lb) -base-appliances-coal.xml,57.646,57.646,33.298,33.298,19.482,0.0,0.0,0.0,0.0,4.866,0.0,0.0,0.321,4.467,0.871,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,18.243,14.781,9.234,0.613,0.0,0.0,0.0,0.0,1965.5,3168.1,22.211,18.431,0.0,3.583,3.655,0.515,7.145,0.634,-1.987,0.0,0.0,6.637,-0.123,4.988,0.0,0.487,0.0,4.273,-11.904,0.0,-0.078,-0.483,-0.055,2.731,-0.032,9.79,0.0,0.0,-5.929,-0.061,-1.23,-3.176,-0.113,0.0,3.236,10.361,1354.8,997.6,11399.6,2615.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 -base-appliances-dehumidifier-ief-portable.xml,34.429,34.429,33.23,33.23,1.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,8.804,1.878,6.812,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.6,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.199,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.046,30.605,6.675,0.571,0.0,0.0,0.0,0.0,2147.7,2764.5,9.431,14.246,0.0,1.753,1.638,0.0,0.0,0.396,0.256,0.0,0.0,1.058,-0.411,1.056,0.091,0.396,0.0,0.03,-5.455,0.0,0.524,-0.033,0.0,0.0,0.207,19.117,0.0,0.0,1.855,-0.384,-0.341,-1.898,-0.096,0.0,0.346,11.479,1354.8,997.6,9989.1,2461.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 -base-appliances-dehumidifier-ief-whole-home.xml,34.453,34.453,33.276,33.276,1.177,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,8.803,1.878,6.812,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.647,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,1.038,30.599,6.675,0.571,0.0,0.0,0.0,0.0,2132.3,2764.6,9.426,14.247,0.0,1.756,1.643,0.0,0.0,0.398,0.293,0.0,0.0,1.054,-0.419,1.063,0.09,0.398,0.0,0.029,-5.502,0.0,0.526,-0.028,0.0,0.0,0.208,19.153,0.0,0.0,1.849,-0.391,-0.335,-1.895,-0.094,0.0,0.346,11.446,1354.8,997.6,9989.1,2461.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 -base-appliances-dehumidifier-multiple.xml,34.414,34.414,33.154,33.154,1.26,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,8.791,1.875,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.539,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,1.129,30.575,6.675,0.571,0.0,0.0,0.0,0.0,2109.8,2763.0,9.487,14.246,0.0,1.747,1.633,0.0,0.0,0.394,0.212,0.0,0.0,1.049,-0.411,1.053,0.098,0.396,0.0,0.031,-5.313,0.0,0.524,-0.031,0.0,0.0,0.206,19.093,0.0,0.0,1.864,-0.383,-0.34,-1.881,-0.094,0.0,0.346,11.452,1354.8,997.6,9989.1,2461.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 -base-appliances-dehumidifier.xml,34.396,34.396,33.21,33.21,1.185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,8.796,1.876,6.812,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.59,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.185,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,30.577,6.675,0.571,0.0,0.0,0.0,0.0,2009.0,2764.5,9.458,14.246,0.0,1.77,1.654,0.0,0.0,0.4,0.247,0.0,0.0,1.064,-0.416,1.066,0.087,0.401,0.0,0.029,-5.476,0.0,0.545,-0.013,0.0,0.0,0.211,19.119,0.0,0.0,1.869,-0.388,-0.329,-1.896,-0.091,0.0,0.346,11.407,1354.8,997.6,9989.1,2461.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 -base-appliances-gas.xml,57.646,57.646,33.298,33.298,24.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.321,4.467,0.871,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.482,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.243,14.781,9.234,0.613,0.0,0.0,0.0,0.0,1965.5,3168.1,22.211,18.431,0.0,3.583,3.655,0.515,7.145,0.634,-1.987,0.0,0.0,6.637,-0.123,4.988,0.0,0.487,0.0,4.273,-11.904,0.0,-0.078,-0.483,-0.055,2.731,-0.032,9.79,0.0,0.0,-5.929,-0.061,-1.23,-3.176,-0.113,0.0,3.236,10.361,1354.8,997.6,11399.6,2615.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 -base-appliances-modified.xml,56.267,56.267,36.982,36.982,19.285,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.318,4.497,0.878,9.688,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.636,0.365,1.519,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,0.0,18.059,14.921,9.799,0.613,0.0,0.0,0.0,0.0,2160.7,3435.4,22.21,18.355,0.0,3.587,3.657,0.515,7.15,0.635,-1.98,0.0,0.0,6.646,-0.124,5.414,0.0,0.0,0.0,4.236,-12.02,0.0,-0.082,-0.487,-0.055,2.721,-0.032,9.781,0.0,0.0,-5.943,-0.062,-1.331,-3.192,0.0,0.0,3.26,10.525,1354.8,1997.6,11399.6,2615.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 -base-appliances-none.xml,50.482,50.482,28.433,28.433,22.049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.364,4.039,0.766,7.932,0.0,0.0,4.51,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.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.049,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.648,13.009,7.908,0.615,0.0,0.0,0.0,0.0,1858.2,2879.8,22.615,17.117,0.0,3.545,3.632,0.511,7.071,0.629,-2.087,0.0,0.0,6.552,-0.115,5.4,0.0,0.0,0.0,4.77,-9.583,0.0,-0.013,-0.432,-0.047,2.871,-0.018,9.91,0.0,0.0,-5.7,-0.054,-1.279,-2.958,0.0,0.0,2.921,7.988,0.0,0.0,11399.6,2615.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 +base-appliances-coal.xml,59.99,59.99,33.21,33.21,21.914,0.0,0.0,0.0,0.0,4.866,0.0,0.0,0.362,4.364,0.845,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,20.522,14.338,9.234,0.614,0.0,0.0,0.0,0.0,1968.7,3140.0,22.864,18.17,0.0,3.555,3.641,0.512,7.446,0.63,-2.062,0.0,0.0,8.214,-0.065,4.984,0.0,0.487,0.0,4.764,-11.921,0.0,-0.059,-0.467,-0.052,2.692,-0.027,9.821,0.0,0.0,-6.385,-0.062,-1.215,-3.119,-0.111,0.0,3.162,10.345,1354.8,997.6,11399.6,2615.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 +base-appliances-dehumidifier-ief-portable.xml,34.548,34.548,33.229,33.229,1.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,8.784,1.873,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.622,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,1.158,30.522,6.675,0.572,0.0,0.0,0.0,0.0,2251.3,2761.9,9.474,14.235,0.0,1.762,1.644,0.0,0.0,0.39,0.124,0.0,0.0,1.306,-0.371,1.052,0.091,0.397,0.0,0.033,-5.52,0.0,0.54,-0.017,0.0,0.0,0.204,19.033,0.0,0.0,1.813,-0.366,-0.338,-1.892,-0.093,0.0,0.345,11.453,1354.8,997.6,9989.1,2461.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 +base-appliances-dehumidifier-ief-whole-home.xml,34.575,34.575,33.279,33.279,1.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,8.783,1.873,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.674,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.147,30.512,6.675,0.571,0.0,0.0,0.0,0.0,2118.7,2761.9,9.489,14.235,0.0,1.774,1.655,0.0,0.0,0.393,0.139,0.0,0.0,1.314,-0.374,1.06,0.09,0.4,0.0,0.032,-5.585,0.0,0.55,-0.007,0.0,0.0,0.207,19.045,0.0,0.0,1.819,-0.369,-0.331,-1.888,-0.09,0.0,0.345,11.41,1354.8,997.6,9989.1,2461.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 +base-appliances-dehumidifier-multiple.xml,34.536,34.536,33.148,33.148,1.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,8.771,1.87,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.558,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,0.0,1.239,30.485,6.675,0.572,0.0,0.0,0.0,0.0,2167.5,2757.4,9.55,14.236,0.0,1.77,1.649,0.0,0.0,0.388,0.018,0.0,0.0,1.319,-0.361,1.049,0.097,0.397,0.0,0.035,-5.383,0.0,0.554,-0.006,0.0,0.0,0.204,18.948,0.0,0.0,1.846,-0.356,-0.336,-1.876,-0.091,0.0,0.345,11.414,1354.8,997.6,9989.2,2461.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 +base-appliances-dehumidifier.xml,34.509,34.509,33.204,33.204,1.304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,8.775,1.871,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.608,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.166,30.477,6.675,0.572,0.0,0.0,0.0,0.0,2083.7,2761.9,9.546,14.235,0.0,1.777,1.657,0.0,0.0,0.395,0.134,0.0,0.0,1.307,-0.382,1.062,0.087,0.4,0.0,0.032,-5.552,0.0,0.558,-0.0,0.0,0.0,0.21,19.054,0.0,0.0,1.824,-0.377,-0.326,-1.889,-0.088,0.0,0.345,11.365,1354.8,997.6,9989.2,2461.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 +base-appliances-gas.xml,59.99,59.99,33.21,33.21,26.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.364,0.845,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,14.338,9.234,0.614,0.0,0.0,0.0,0.0,1968.7,3140.0,22.864,18.17,0.0,3.555,3.641,0.512,7.446,0.63,-2.062,0.0,0.0,8.214,-0.065,4.984,0.0,0.487,0.0,4.764,-11.921,0.0,-0.059,-0.467,-0.052,2.692,-0.027,9.821,0.0,0.0,-6.385,-0.062,-1.215,-3.119,-0.111,0.0,3.162,10.345,1354.8,997.6,11399.6,2615.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 +base-appliances-modified.xml,58.606,58.606,36.894,36.894,21.712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.358,4.393,0.853,9.69,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.636,0.365,1.519,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.333,14.475,9.799,0.614,0.0,0.0,0.0,0.0,2161.3,3668.6,22.863,18.085,0.0,3.555,3.639,0.512,7.448,0.63,-2.044,0.0,0.0,8.208,-0.066,5.404,0.0,0.0,0.0,4.727,-12.024,0.0,-0.066,-0.473,-0.053,2.679,-0.029,9.824,0.0,0.0,-6.412,-0.062,-1.319,-3.136,0.0,0.0,3.185,10.522,1354.8,1997.6,11399.6,2615.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 +base-appliances-none.xml,52.868,52.868,28.353,28.353,24.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.404,3.941,0.743,7.932,0.0,0.0,4.51,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.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.96,12.593,7.908,0.616,0.0,0.0,0.0,0.0,1861.5,2847.7,23.264,16.854,0.0,3.518,3.617,0.509,7.377,0.625,-2.146,0.0,0.0,8.133,-0.06,5.396,0.0,0.0,0.0,5.261,-9.594,0.0,0.005,-0.417,-0.045,2.833,-0.014,9.954,0.0,0.0,-6.15,-0.056,-1.264,-2.898,0.0,0.0,2.848,7.977,0.0,0.0,11399.6,2615.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 base-appliances-oil-location-miami-fl.xml,50.162,50.162,45.296,45.296,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.866,4.106,4.848,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.779,4.659,0.55,0.0,0.0,0.0,0.0,0.0,3199.4,0.0,21.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,0.802,0.729,0.135,9.705,0.336,23.98,0.0,0.0,3.112,-0.01,-0.532,-2.924,-0.004,0.0,10.343,22.203,1354.8,997.6,8625.1,1979.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 -base-appliances-oil.xml,57.646,57.646,33.298,33.298,19.482,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.321,4.467,0.871,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.482,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.243,14.781,9.234,0.613,0.0,0.0,0.0,0.0,1965.5,3168.1,22.211,18.431,0.0,3.583,3.655,0.515,7.145,0.634,-1.987,0.0,0.0,6.637,-0.123,4.988,0.0,0.487,0.0,4.273,-11.904,0.0,-0.078,-0.483,-0.055,2.731,-0.032,9.79,0.0,0.0,-5.929,-0.061,-1.23,-3.176,-0.113,0.0,3.236,10.361,1354.8,997.6,11399.6,2615.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 -base-appliances-propane-location-portland-or.xml,52.567,52.567,29.855,29.855,17.846,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.073,2.191,0.377,8.738,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.492,6.301,8.776,0.614,0.0,0.0,0.0,0.0,1914.7,2887.1,12.625,15.134,0.0,3.199,3.328,0.468,6.63,0.656,-1.491,0.0,0.0,10.355,-0.141,4.359,0.0,0.556,0.0,3.571,-15.221,0.0,-0.141,-0.437,-0.052,1.325,-0.028,6.522,0.0,0.0,-5.847,-0.08,-0.944,-1.992,-0.125,0.0,1.183,7.045,1354.8,997.6,11239.6,2579.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-propane.xml,57.646,57.646,33.298,33.298,19.482,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.321,4.467,0.871,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.243,14.781,9.234,0.613,0.0,0.0,0.0,0.0,1965.5,3168.1,22.211,18.431,0.0,3.583,3.655,0.515,7.145,0.634,-1.987,0.0,0.0,6.637,-0.123,4.988,0.0,0.487,0.0,4.273,-11.904,0.0,-0.078,-0.483,-0.055,2.731,-0.032,9.79,0.0,0.0,-5.929,-0.061,-1.23,-3.176,-0.113,0.0,3.236,10.361,1354.8,997.6,11399.6,2615.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 -base-appliances-wood.xml,57.646,57.646,33.298,33.298,19.482,0.0,0.0,4.866,0.0,0.0,0.0,0.0,0.321,4.467,0.871,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.243,14.781,9.234,0.613,0.0,0.0,0.0,0.0,1965.5,3168.1,22.211,18.431,0.0,3.583,3.655,0.515,7.145,0.634,-1.987,0.0,0.0,6.637,-0.123,4.988,0.0,0.487,0.0,4.273,-11.904,0.0,-0.078,-0.483,-0.055,2.731,-0.032,9.79,0.0,0.0,-5.929,-0.061,-1.23,-3.176,-0.113,0.0,3.236,10.361,1354.8,997.6,11399.6,2615.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 -base-atticroof-cathedral.xml,59.965,59.965,35.819,35.819,24.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.398,4.177,0.803,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.593,13.467,9.234,0.615,0.0,0.0,0.0,0.0,2143.9,3009.1,22.142,15.403,6.766,0.0,4.231,0.513,7.082,0.634,-2.112,0.0,0.0,6.645,-0.136,9.307,0.0,0.728,0.0,0.0,-11.432,0.118,0.0,-0.521,-0.05,2.824,-0.021,13.651,0.0,0.0,-5.868,-0.061,-2.108,-3.938,-0.16,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-atticroof-conditioned.xml,64.889,64.889,40.824,40.824,24.065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.397,4.987,0.999,9.068,0.0,0.0,5.751,0.0,0.398,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.539,16.823,9.18,0.613,0.0,0.0,0.0,0.0,2407.6,4064.2,25.846,20.852,4.561,1.166,5.561,0.52,7.272,0.638,-1.544,0.0,0.0,6.869,-0.158,7.091,0.0,0.732,0.0,2.83,-13.406,-0.012,0.016,-0.588,-0.055,2.748,-0.033,14.651,0.0,0.0,-5.886,-0.08,-1.707,-4.219,-0.168,0.0,0.951,11.509,1354.8,997.6,11399.6,2521.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 -base-atticroof-flat.xml,52.894,52.894,35.151,35.151,17.743,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.293,3.72,0.698,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.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,16.602,11.695,9.234,0.614,0.0,0.0,0.0,0.0,2101.8,2709.6,17.072,12.122,6.049,0.0,3.624,0.51,7.051,0.627,-2.096,0.0,0.0,6.507,-0.129,4.801,0.0,0.728,0.0,0.0,-11.398,0.279,0.0,-0.464,-0.052,2.787,-0.027,9.819,0.0,0.0,-5.834,-0.047,-1.167,-3.091,-0.165,0.0,0.0,9.89,1354.8,997.6,11399.6,2615.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 -base-atticroof-radiant-barrier.xml,37.207,37.207,33.158,33.158,4.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.017,9.23,1.959,6.821,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.738,31.875,6.675,0.579,0.0,0.0,0.0,0.0,1665.7,3196.9,13.524,18.105,0.0,6.164,1.582,0.0,0.0,0.334,-1.404,0.0,0.0,0.608,-0.368,0.994,0.0,0.4,0.0,0.1,-4.887,0.0,2.501,0.161,0.0,0.0,0.205,18.187,0.0,0.0,2.184,-0.339,-0.275,-1.708,-0.048,0.0,0.368,10.923,1354.8,997.6,9989.1,2461.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 -base-atticroof-unvented-insulated-roof.xml,55.386,55.386,35.307,35.307,20.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.331,3.819,0.716,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.791,11.97,9.234,0.615,0.0,0.0,0.0,0.0,2105.7,2786.8,18.671,13.345,0.0,5.671,3.631,0.511,7.07,0.629,-2.075,0.0,0.0,6.574,-0.116,4.806,0.0,0.729,0.0,2.447,-11.406,0.0,-1.499,-0.431,-0.047,2.893,-0.018,9.926,0.0,0.0,-5.654,-0.054,-1.143,-2.944,-0.162,0.0,1.443,9.883,1354.8,997.6,11399.6,2615.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 -base-atticroof-vented.xml,55.66,55.66,35.656,35.656,20.004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33,3.958,0.751,9.34,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.73,12.654,9.234,0.804,0.0,0.0,0.0,0.0,2133.2,3257.3,20.808,14.544,0.0,3.913,3.645,0.513,7.11,0.632,-2.037,0.0,0.0,6.599,-0.118,4.807,0.0,0.729,0.0,3.695,-11.071,0.0,-0.536,-0.456,-0.051,2.807,-0.024,9.853,0.0,0.0,-5.808,-0.057,-1.165,-3.054,-0.165,0.0,1.941,9.602,1354.8,997.6,11399.6,2615.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 -base-battery.xml,56.128,56.128,35.995,35.995,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 +base-appliances-oil.xml,59.99,59.99,33.21,33.21,21.914,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.364,0.845,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,14.338,9.234,0.614,0.0,0.0,0.0,0.0,1968.7,3140.0,22.864,18.17,0.0,3.555,3.641,0.512,7.446,0.63,-2.062,0.0,0.0,8.214,-0.065,4.984,0.0,0.487,0.0,4.764,-11.921,0.0,-0.059,-0.467,-0.052,2.692,-0.027,9.821,0.0,0.0,-6.385,-0.062,-1.215,-3.119,-0.111,0.0,3.162,10.345,1354.8,997.6,11399.6,2615.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 +base-appliances-propane-location-portland-or.xml,54.895,54.895,29.764,29.764,20.266,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.083,2.109,0.357,8.739,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.728,5.956,8.776,0.615,0.0,0.0,0.0,0.0,1916.5,2888.1,14.03,14.932,0.0,3.151,3.299,0.464,6.932,0.646,-1.663,0.0,0.0,12.082,-0.073,4.335,0.0,0.554,0.0,4.033,-15.263,0.0,-0.131,-0.424,-0.05,1.309,-0.027,6.487,0.0,0.0,-6.132,-0.073,-0.932,-1.952,-0.123,0.0,1.133,7.005,1354.8,997.6,11239.6,2579.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-appliances-propane.xml,59.99,59.99,33.21,33.21,21.914,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.362,4.364,0.845,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,14.338,9.234,0.614,0.0,0.0,0.0,0.0,1968.7,3140.0,22.864,18.17,0.0,3.555,3.641,0.512,7.446,0.63,-2.062,0.0,0.0,8.214,-0.065,4.984,0.0,0.487,0.0,4.764,-11.921,0.0,-0.059,-0.467,-0.052,2.692,-0.027,9.821,0.0,0.0,-6.385,-0.062,-1.215,-3.119,-0.111,0.0,3.162,10.345,1354.8,997.6,11399.6,2615.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 +base-appliances-wood.xml,59.99,59.99,33.21,33.21,21.914,0.0,0.0,4.866,0.0,0.0,0.0,0.0,0.362,4.364,0.845,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,14.338,9.234,0.614,0.0,0.0,0.0,0.0,1968.7,3140.0,22.864,18.17,0.0,3.555,3.641,0.512,7.446,0.63,-2.062,0.0,0.0,8.214,-0.065,4.984,0.0,0.487,0.0,4.764,-11.921,0.0,-0.059,-0.467,-0.052,2.692,-0.027,9.821,0.0,0.0,-6.385,-0.062,-1.215,-3.119,-0.111,0.0,3.162,10.345,1354.8,997.6,11399.6,2615.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 +base-atticroof-cathedral.xml,61.83,61.83,35.747,35.747,26.083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.43,4.093,0.782,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.407,13.108,9.234,0.616,0.0,0.0,0.0,0.0,2144.3,2990.5,22.625,15.234,6.75,0.0,4.216,0.511,7.391,0.63,-2.182,0.0,0.0,8.229,-0.087,9.303,0.0,0.728,0.0,0.0,-11.441,0.142,0.0,-0.505,-0.048,2.776,-0.018,13.695,0.0,0.0,-6.341,-0.061,-2.088,-3.876,-0.158,0.0,0.0,9.848,1354.8,997.6,11399.6,2615.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 +base-atticroof-conditioned.xml,67.04,67.04,40.744,40.744,26.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.434,4.892,0.976,9.068,0.0,0.0,5.751,0.0,0.398,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.629,16.415,9.18,0.614,0.0,0.0,0.0,0.0,2408.2,3713.7,26.435,20.713,4.552,1.164,5.544,0.518,7.587,0.635,-1.631,0.0,0.0,8.449,-0.08,7.083,0.0,0.73,0.0,3.086,-13.413,0.003,0.02,-0.569,-0.054,2.695,-0.03,14.682,0.0,0.0,-6.37,-0.074,-1.693,-4.162,-0.166,0.0,0.936,11.502,1354.8,997.6,11399.6,2521.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 +base-atticroof-flat.xml,54.773,54.773,35.078,35.078,19.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.325,3.635,0.678,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43,11.336,9.234,0.615,0.0,0.0,0.0,0.0,2122.2,2674.8,17.557,11.949,6.032,0.0,3.61,0.508,7.358,0.623,-2.155,0.0,0.0,8.088,-0.075,4.798,0.0,0.727,0.0,0.0,-11.408,0.302,0.0,-0.449,-0.05,2.746,-0.023,9.859,0.0,0.0,-6.294,-0.049,-1.155,-3.035,-0.163,0.0,0.0,9.88,1354.8,997.6,11399.6,2615.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 +base-atticroof-radiant-barrier.xml,37.382,37.382,33.138,33.138,4.244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018,9.213,1.955,6.821,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.919,31.804,6.675,0.58,0.0,0.0,0.0,0.0,1664.4,3196.0,13.585,18.095,0.0,6.142,1.58,0.0,0.0,0.332,-1.427,0.0,0.0,0.826,-0.349,0.992,0.0,0.4,0.0,0.105,-4.898,0.0,2.51,0.164,0.0,0.0,0.205,18.196,0.0,0.0,2.097,-0.341,-0.274,-1.702,-0.047,0.0,0.367,10.913,1354.8,997.6,9989.1,2461.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 +base-atticroof-unvented-insulated-roof.xml,57.301,57.301,35.235,35.235,22.065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.364,3.734,0.696,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.65,11.613,9.234,0.615,0.0,0.0,0.0,0.0,2128.5,2936.3,19.16,13.167,0.0,5.433,3.618,0.509,7.381,0.625,-2.136,0.0,0.0,8.161,-0.06,4.801,0.0,0.728,0.0,2.685,-11.414,0.0,-1.43,-0.416,-0.045,2.853,-0.015,9.959,0.0,0.0,-6.112,-0.051,-1.132,-2.89,-0.161,0.0,1.402,9.875,1354.8,997.6,11399.6,2615.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 +base-atticroof-vented.xml,57.961,57.961,35.575,35.575,22.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.369,3.862,0.728,9.34,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.962,12.247,9.234,0.803,0.0,0.0,0.0,0.0,2133.8,3226.3,21.434,14.315,0.0,3.889,3.63,0.511,7.414,0.628,-2.104,0.0,0.0,8.18,-0.061,4.803,0.0,0.728,0.0,4.117,-11.086,0.0,-0.518,-0.44,-0.048,2.77,-0.02,9.891,0.0,0.0,-6.26,-0.057,-1.152,-2.995,-0.163,0.0,1.888,9.587,1354.8,997.6,11399.5,2615.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 +base-battery.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.616,36.616,24.806,24.806,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.087,1.6,0.205,9.832,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.949,3.054,9.539,0.73,0.0,0.0,0.0,0.0,1572.3,1915.2,7.667,5.81,0.0,2.94,3.649,0.0,0.0,0.582,-0.166,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-5.435,0.0,-0.922,-0.231,0.0,0.0,-0.054,1.071,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.558,4.263,1354.8,997.6,11399.5,3156.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 base-bldgtype-multifamily-adjacent-to-multiple.xml,31.829,31.829,25.239,25.239,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.048,2.08,0.311,9.717,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.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,6.113,4.964,9.539,0.61,0.0,0.0,0.0,0.0,1569.8,2359.3,9.397,10.56,0.0,-0.004,3.294,0.0,0.0,1.383,-0.201,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-7.438,0.0,0.0,-0.445,0.0,0.0,-0.418,3.387,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.48,6.588,1354.8,997.6,11399.6,3156.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 base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.791,49.791,24.812,24.812,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.183,1.46,0.171,9.916,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.163,2.502,9.539,0.818,0.0,0.0,0.0,0.0,1579.7,2245.3,11.078,8.42,0.0,5.364,4.204,0.0,0.0,0.788,-0.296,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-5.734,0.0,-1.186,-0.054,0.0,0.0,-0.054,1.066,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.527,3.965,1354.8,997.6,11399.6,3156.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 @@ -51,376 +51,376 @@ base-bldgtype-multifamily-shared-pv.xml,26.876,2.428,26.2,1.752,0.676,0.0,0.0,0. base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.878,30.878,17.508,17.508,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,2.817,0.507,0.0,1.096,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.85,0.0,12.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.786,8.35,9.539,0.57,0.0,0.0,0.0,0.0,933.9,1519.0,3.654,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,1.364,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-5.596,0.0,-0.01,-0.966,0.0,0.0,-0.034,3.877,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,8.191,1354.8,997.6,11399.7,3156.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 base-bldgtype-multifamily-shared-water-heater.xml,29.782,29.782,16.412,16.412,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,2.817,0.507,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.85,0.0,12.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.786,8.35,9.539,0.57,0.0,0.0,0.0,0.0,881.2,1466.3,3.654,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,1.364,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-5.596,0.0,-0.01,-0.966,0.0,0.0,-0.034,3.877,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,8.191,1354.8,997.6,11399.7,3156.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 base-bldgtype-multifamily.xml,26.876,26.876,26.2,26.2,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,2.899,0.529,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,8.678,9.539,0.577,0.0,0.0,0.0,0.0,1562.0,2038.4,3.453,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,1.418,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-5.458,0.0,-0.008,-1.031,0.0,0.0,-0.043,3.873,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,8.535,1354.8,997.6,11399.6,3156.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 -base-bldgtype-single-family-attached-2stories.xml,50.005,50.005,34.624,34.624,15.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,3.324,0.597,9.227,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.344,10.007,9.269,0.614,0.0,0.0,0.0,0.0,2092.5,2914.7,17.417,14.337,0.0,2.44,5.065,0.297,4.143,0.64,-0.778,0.0,0.0,3.857,-0.119,7.099,0.0,0.729,0.0,2.134,-11.395,0.0,-0.002,-0.665,-0.027,1.649,-0.021,6.146,0.0,0.0,-3.658,-0.061,-1.709,-2.585,-0.164,0.0,1.336,9.893,1354.8,997.6,11399.6,2678.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 -base-bldgtype-single-family-attached-atticroof-cathedral.xml,96.48,96.48,37.225,37.225,59.255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.772,4.988,0.953,9.235,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.255,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.253,15.787,9.269,0.623,0.0,0.0,0.0,0.0,2158.7,4303.8,36.036,27.701,49.553,0.0,2.942,0.289,3.413,0.668,-0.092,0.0,0.0,2.177,-0.857,7.547,0.0,0.773,0.0,0.0,-12.345,8.436,0.0,-0.16,0.004,1.576,0.118,4.566,0.0,0.0,-3.963,-0.789,-0.86,-1.187,-0.094,0.0,0.0,8.951,1354.8,997.6,11399.6,2678.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 -base-bldgtype-single-family-attached.xml,40.859,40.859,29.993,29.993,10.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.08,2.807,0.485,9.441,0.0,0.0,3.268,0.0,0.27,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.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,10.076,8.1,9.387,0.613,0.0,0.0,0.0,0.0,1821.7,2512.5,12.643,10.171,0.0,2.366,2.373,0.293,4.022,0.628,-0.386,0.0,0.0,3.531,-0.085,3.038,0.0,0.728,0.0,2.792,-9.363,0.0,0.01,-0.298,-0.029,1.587,-0.027,2.992,0.0,0.0,-3.782,-0.043,-0.779,-1.246,-0.168,0.0,1.639,8.295,1354.8,997.6,11399.6,2887.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 -base-calctype-operational-misc-defaults.xml,67.299,47.199,39.652,19.553,27.647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.456,2.35,0.357,7.147,0.0,0.326,4.51,0.0,0.334,1.118,0.0,0.0,1.108,2.36,0.0,0.0,0.769,0.544,4.047,2.057,0.745,3.051,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-20.1,0.0,27.647,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.877,5.802,18.469,0.643,0.0,11.973,0.0,0.0,3194.8,3079.7,24.98,14.803,0.0,3.8,3.697,0.52,7.115,0.647,-1.944,0.0,0.0,6.683,-0.126,1.526,0.0,14.99,0.0,2.399,-13.7,0.0,0.212,-0.174,-0.01,3.464,0.048,10.647,0.0,0.0,-4.796,-0.073,-0.216,0.0,-3.607,-11.607,0.475,12.461,2592.2,2706.6,21155.6,5664.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 -base-calctype-operational-misc-loads-large-uncommon.xml,98.966,98.966,52.048,52.048,39.012,0.0,2.609,5.297,0.0,0.0,0.0,0.0,0.31,4.572,0.899,3.939,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,3.032,2.994,0.0,0.0,18.79,0.0,0.0,0.0,0.0,0.0,18.628,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,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.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.595,15.461,3.621,0.612,0.0,0.0,0.0,0.0,2575.7,4333.4,22.229,18.803,0.0,3.602,3.67,0.517,7.191,0.637,-1.944,0.0,0.0,6.705,-0.124,4.818,0.0,0.729,0.0,4.141,-12.689,0.0,-0.103,-0.504,-0.058,2.68,-0.037,9.732,0.0,0.0,-6.007,-0.063,-1.201,-3.246,-0.17,0.0,3.348,11.267,777.8,496.4,4294.1,850.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 -base-calctype-operational-misc-loads-large-uncommon2.xml,77.912,77.912,49.622,49.622,20.384,2.609,0.0,0.0,5.297,0.0,0.0,0.0,0.31,4.572,0.899,3.939,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,0.606,2.994,0.0,0.0,18.79,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.595,15.461,3.621,0.612,0.0,0.0,0.0,0.0,2377.4,4065.2,22.229,18.803,0.0,3.602,3.67,0.517,7.191,0.637,-1.944,0.0,0.0,6.705,-0.124,4.818,0.0,0.729,0.0,4.141,-12.689,0.0,-0.103,-0.504,-0.058,2.68,-0.037,9.732,0.0,0.0,-6.007,-0.063,-1.201,-3.246,-0.17,0.0,3.348,11.267,777.8,496.4,4294.1,850.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 -base-calctype-operational.xml,50.651,50.651,28.416,28.416,22.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.367,4.047,0.769,3.942,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.822,13.205,3.621,0.615,0.0,0.0,0.0,0.0,1658.7,3126.2,22.879,17.569,0.0,3.549,3.639,0.512,7.092,0.631,-2.056,0.0,0.0,6.589,-0.118,4.805,0.0,0.726,0.0,4.819,-9.683,0.0,-0.024,-0.44,-0.048,2.86,-0.02,9.902,0.0,0.0,-5.725,-0.058,-1.145,-2.958,-0.162,0.0,2.98,8.211,777.8,496.4,4294.1,850.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 -base-dhw-combi-tankless-outside.xml,50.689,50.689,21.418,21.418,29.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.142,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.804,0.0,10.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,0.0,0.0,0.0,0.0,0.0,0.0,15.792,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1376.6,0.0,16.511,0.0,0.0,3.748,3.649,0.514,7.097,0.633,-2.036,0.0,0.0,6.448,-0.119,5.891,0.0,0.728,0.0,0.0,-11.073,0.0,-0.471,-1.004,-0.13,1.229,-0.163,8.163,0.0,0.0,-8.038,-0.059,-1.996,-6.201,-0.273,0.0,0.0,9.6,1068.6,776.0,8563.5,1965.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-combi-tankless.xml,50.689,50.689,21.418,21.418,29.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.142,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.804,0.0,10.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,0.0,0.0,0.0,0.0,0.0,0.0,15.792,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1376.6,0.0,16.511,0.0,0.0,3.748,3.649,0.514,7.097,0.633,-2.036,0.0,0.0,6.448,-0.119,5.891,0.0,0.728,0.0,0.0,-11.073,0.0,-0.471,-1.004,-0.13,1.229,-0.163,8.163,0.0,0.0,-8.038,-0.059,-1.996,-6.201,-0.273,0.0,0.0,9.6,1068.6,776.0,8563.5,1965.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-2-speed.xml,32.363,32.363,32.363,32.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.467,0.816,6.805,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.415,9.232,0.656,3.009,0.0,0.0,0.0,0.0,2769.4,0.0,19.06,0.0,2.781,2.648,0.371,4.254,0.379,-4.965,0.0,0.0,1.737,-0.206,3.236,0.0,0.544,0.0,0.0,-11.11,0.0,-0.111,-0.48,-0.054,2.755,-0.035,9.874,0.0,0.0,-6.378,-0.061,-1.203,-3.077,-0.168,0.0,3.841,10.681,1354.8,997.6,11412.3,2618.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 -base-dhw-desuperheater-gshp.xml,36.881,36.881,36.881,36.881,0.0,0.0,0.0,0.0,0.0,0.0,4.807,0.0,0.396,2.669,1.079,6.653,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.912,13.807,9.232,0.613,2.978,0.0,0.0,0.0,3189.1,2142.5,20.573,15.304,0.0,3.617,3.649,0.514,7.122,0.633,-2.024,0.0,0.0,6.613,-0.121,4.81,0.0,0.729,0.0,3.136,-11.085,0.0,-0.008,-0.47,-0.053,2.768,-0.028,9.812,0.0,0.0,-5.87,-0.06,-1.176,-3.151,-0.166,0.0,1.899,10.512,1354.8,997.6,11414.3,2619.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 -base-dhw-desuperheater-hpwh.xml,54.356,54.356,29.731,29.731,24.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.406,4.484,0.876,2.689,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.06,14.914,9.244,1.809,3.059,0.0,0.0,0.0,1878.0,3086.6,22.763,18.753,0.0,3.543,3.643,0.513,7.104,0.629,-2.117,0.0,0.0,6.642,-0.103,4.798,0.0,0.727,0.0,5.229,-7.9,0.0,-0.024,-0.425,-0.046,2.91,-0.018,9.879,0.0,0.0,-5.634,-0.044,-1.127,-2.973,-0.157,0.0,3.224,9.644,1354.7,997.5,11384.1,2612.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 -base-dhw-desuperheater-tankless.xml,33.831,33.831,33.831,33.831,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.495,1.218,6.841,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.657,9.238,0.0,2.981,0.0,0.0,0.0,0.0,3202.1,0.0,18.393,0.0,2.759,2.625,0.367,4.179,0.373,-5.035,0.0,0.0,1.623,-0.208,3.203,0.0,0.54,0.0,0.0,-10.743,0.0,-0.081,-0.475,-0.053,2.77,-0.033,9.891,0.0,0.0,-6.369,-0.061,-1.196,-3.047,-0.167,0.0,3.264,10.397,1354.8,997.6,11359.1,2606.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 -base-dhw-desuperheater-var-speed.xml,31.444,31.444,31.444,31.444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.987,0.348,6.833,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.109,9.232,0.656,2.968,0.0,0.0,0.0,0.0,2508.3,0.0,19.014,0.0,2.781,2.648,0.371,4.254,0.379,-4.965,0.0,0.0,1.737,-0.206,3.236,0.0,0.544,0.0,0.0,-11.11,0.0,-0.148,-0.48,-0.054,2.756,-0.035,9.875,0.0,0.0,-6.376,-0.061,-1.203,-3.08,-0.168,0.0,4.59,10.671,1354.8,997.6,11411.3,2618.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 -base-dhw-desuperheater.xml,33.848,33.848,33.848,33.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.549,1.237,6.786,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.886,9.232,0.656,3.036,0.0,0.0,0.0,0.0,3215.5,0.0,18.506,0.0,2.781,2.648,0.371,4.254,0.379,-4.965,0.0,0.0,1.737,-0.206,3.236,0.0,0.544,0.0,0.0,-11.11,0.0,-0.088,-0.481,-0.054,2.754,-0.035,9.873,0.0,0.0,-6.379,-0.061,-1.203,-3.078,-0.168,0.0,3.3,10.689,1354.8,997.6,11414.2,2619.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 -base-dhw-dwhr.xml,53.889,53.889,33.756,33.756,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,6.924,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,6.826,0.613,0.0,0.0,0.0,0.0,2103.0,3327.7,22.275,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,10264.8,2355.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 -base-dhw-indirect-dse.xml,56.788,56.788,21.44,21.44,35.348,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.164,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.759,0.0,13.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,14.592,0.0,9.26,2.267,0.0,0.0,0.0,0.0,1375.8,0.0,16.22,0.0,0.0,3.75,3.652,0.514,7.108,0.633,-1.997,0.0,0.0,6.433,-0.123,5.897,0.0,0.729,0.0,0.0,-12.34,0.0,-0.516,-1.05,-0.136,1.087,-0.175,8.047,0.0,0.0,-8.238,-0.063,-2.058,-6.49,-0.282,0.0,0.0,10.601,1138.9,826.9,9547.3,2190.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 -base-dhw-indirect-outside.xml,55.031,55.031,21.418,21.418,33.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.142,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.804,0.0,14.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.792,0.0,9.263,3.3,0.0,0.0,0.0,0.0,1376.6,0.0,16.511,0.0,0.0,3.748,3.649,0.514,7.097,0.633,-2.036,0.0,0.0,6.448,-0.119,5.891,0.0,0.728,0.0,0.0,-11.073,0.0,-0.471,-1.004,-0.13,1.229,-0.163,8.163,0.0,0.0,-8.038,-0.059,-1.996,-6.201,-0.273,0.0,0.0,9.6,1120.1,811.3,9405.5,2158.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 -base-dhw-indirect-standbyloss.xml,52.639,52.639,21.405,21.405,31.234,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.129,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.149,0.0,14.085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.371,0.0,9.262,2.689,0.0,0.0,0.0,0.0,1375.6,0.0,16.147,0.0,0.0,3.751,3.653,0.515,7.111,0.634,-1.992,0.0,0.0,6.434,-0.124,5.899,0.0,0.73,0.0,0.0,-12.58,0.0,-0.523,-1.058,-0.138,1.063,-0.177,8.022,0.0,0.0,-8.272,-0.064,-2.069,-6.545,-0.284,0.0,0.0,10.783,1124.5,813.6,9457.0,2170.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-with-solar-fraction.xml,44.474,44.474,21.414,21.414,23.06,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.138,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.317,0.0,4.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,15.373,0.0,9.24,0.784,0.0,6.006,0.0,0.0,1376.3,0.0,16.389,0.0,0.0,3.748,3.65,0.514,7.1,0.633,-2.022,0.0,0.0,6.444,-0.122,5.894,0.0,0.729,0.0,0.0,-11.516,0.0,-0.486,-1.019,-0.132,1.18,-0.167,8.124,0.0,0.0,-8.104,-0.062,-2.016,-6.299,-0.276,0.0,0.0,9.942,403.8,298.0,3326.0,763.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 -base-dhw-indirect.xml,52.404,52.404,21.407,21.407,30.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.131,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.408,0.0,13.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,14.592,0.0,9.26,2.267,0.0,0.0,0.0,0.0,1375.8,0.0,16.22,0.0,0.0,3.75,3.652,0.514,7.108,0.633,-1.997,0.0,0.0,6.433,-0.123,5.897,0.0,0.729,0.0,0.0,-12.34,0.0,-0.516,-1.05,-0.136,1.087,-0.175,8.047,0.0,0.0,-8.238,-0.063,-2.058,-6.49,-0.282,0.0,0.0,10.601,1138.9,826.9,9547.3,2190.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 -base-dhw-jacket-electric.xml,56.016,56.016,35.67,35.67,20.346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.336,4.349,0.842,8.867,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.053,14.306,9.234,0.295,0.0,0.0,0.0,0.0,2129.9,3413.7,22.328,18.07,0.0,3.573,3.65,0.514,7.127,0.633,-2.031,0.0,0.0,6.616,-0.116,4.808,0.0,0.729,0.0,4.44,-11.222,0.0,-0.06,-0.469,-0.053,2.771,-0.028,9.805,0.0,0.0,-5.866,-0.055,-1.178,-3.115,-0.166,0.0,3.152,9.747,1354.8,997.6,11399.6,2615.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 -base-dhw-jacket-gas.xml,62.08,62.08,26.936,26.936,35.144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.342,4.451,0.867,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.757,0.0,14.387,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.437,14.729,9.234,2.723,0.0,0.0,0.0,0.0,1463.7,3058.7,22.826,18.537,0.0,3.568,3.648,0.514,7.125,0.633,-2.007,0.0,0.0,6.614,-0.12,5.892,0.0,0.728,0.0,4.528,-12.023,0.0,-0.069,-0.474,-0.053,2.762,-0.029,9.819,0.0,0.0,-5.882,-0.059,-1.462,-3.139,-0.167,0.0,3.233,10.426,1354.8,997.6,11399.8,2615.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 -base-dhw-jacket-hpwh.xml,54.232,54.232,29.599,29.599,24.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.406,3.9,0.734,3.284,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.632,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.068,12.504,9.287,1.308,0.0,0.0,0.0,0.0,1895.9,2971.8,22.855,17.95,0.0,3.54,3.639,0.512,7.097,0.63,-2.101,0.0,0.0,6.636,-0.105,4.797,0.0,0.727,0.0,5.228,-7.883,0.0,-0.001,-0.42,-0.046,2.928,-0.015,9.92,0.0,0.0,-5.608,-0.046,-1.12,-2.85,-0.155,0.0,2.822,7.412,1354.8,997.6,10993.4,2522.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 -base-dhw-jacket-indirect.xml,52.202,52.202,21.409,21.409,30.793,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.133,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.626,0.0,13.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.78,0.0,9.259,1.91,0.0,0.0,0.0,0.0,1375.9,0.0,16.244,0.0,0.0,3.748,3.65,0.514,7.105,0.633,-1.999,0.0,0.0,6.433,-0.124,5.896,0.0,0.729,0.0,0.0,-12.139,0.0,-0.51,-1.043,-0.135,1.109,-0.173,8.07,0.0,0.0,-8.209,-0.063,-2.049,-6.445,-0.281,0.0,0.0,10.444,1145.6,830.9,9598.9,2202.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 -base-dhw-low-flow-fixtures.xml,55.76,55.76,35.627,35.627,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,8.796,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,8.838,0.614,0.0,0.0,0.0,0.0,2106.1,3450.4,22.273,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,10829.7,2485.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-multiple.xml,45.128,45.128,23.358,23.358,21.77,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.134,0.0,0.0,1.948,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.831,0.0,3.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,14.96,0.0,9.225,2.813,0.0,5.996,0.0,0.0,2110.7,0.0,18.228,0.0,0.0,3.748,3.65,0.514,7.107,0.633,-2.007,0.0,0.0,6.44,-0.122,5.895,0.0,0.729,0.0,0.0,-11.961,0.0,-0.501,-1.034,-0.134,1.141,-0.171,8.092,0.0,0.0,-8.162,-0.061,-2.037,-6.379,-0.279,0.0,0.0,10.307,472.0,347.5,3998.8,917.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 -base-dhw-none.xml,44.696,44.696,24.596,24.596,20.101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.343,0.842,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.823,14.378,0.0,0.0,0.0,0.0,0.0,0.0,1360.1,2915.5,22.313,18.079,0.0,3.575,3.651,0.514,7.132,0.633,-2.01,0.0,0.0,6.621,-0.119,5.406,0.0,0.0,0.0,4.394,-11.306,0.0,-0.067,-0.475,-0.053,2.757,-0.03,9.807,0.0,0.0,-5.891,-0.058,-1.319,-3.132,0.0,0.0,3.151,9.865,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.078,56.078,35.945,35.945,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.088,0.026,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.174,0.613,0.0,0.0,0.0,0.0,2122.9,3323.8,22.273,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2510.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 -base-dhw-recirc-manual.xml,55.651,55.651,35.519,35.519,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,8.669,0.017,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.174,0.613,0.0,0.0,0.0,0.0,2107.6,3309.4,22.273,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2510.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 -base-dhw-recirc-nocontrol.xml,71.028,71.028,50.895,50.895,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,22.568,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.268,0.613,0.0,0.0,0.0,0.0,3072.1,4100.6,22.275,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2676.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 -base-dhw-recirc-temperature.xml,66.117,66.117,45.984,45.984,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,18.903,0.249,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.268,0.613,0.0,0.0,0.0,0.0,2753.8,3917.1,22.275,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2676.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 -base-dhw-recirc-timer.xml,71.028,71.028,50.895,50.895,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,22.568,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.268,0.613,0.0,0.0,0.0,0.0,3072.1,4100.6,22.275,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2676.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 -base-dhw-solar-direct-evacuated-tube.xml,50.277,50.277,30.144,30.144,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.378,0.849,2.985,0.0,0.324,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.434,9.256,0.627,0.0,6.676,0.0,0.0,2090.7,3047.2,22.273,18.142,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.172,9.91,1354.7,997.5,11206.3,2571.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 -base-dhw-solar-direct-flat-plate.xml,48.797,48.797,28.673,28.673,20.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.39,0.852,1.511,0.0,0.31,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.845,14.486,9.362,0.692,0.0,8.432,0.0,0.0,2091.6,3050.5,22.274,18.171,0.0,3.574,3.649,0.514,7.127,0.632,-2.017,0.0,0.0,6.612,-0.118,4.808,0.0,0.729,0.0,4.397,-11.397,0.0,-0.066,-0.474,-0.053,2.76,-0.029,9.808,0.0,0.0,-5.886,-0.057,-1.183,-3.137,-0.167,0.0,3.18,9.969,1354.4,997.2,10424.2,2392.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,50.333,50.333,30.2,30.2,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.384,0.851,3.029,0.0,0.329,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.457,9.29,0.648,0.0,6.684,0.0,0.0,2124.9,3049.1,22.276,18.159,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.066,-0.473,-0.053,2.761,-0.029,9.812,0.0,0.0,-5.883,-0.058,-1.181,-3.133,-0.167,0.0,3.175,9.931,1354.7,997.6,10951.5,2513.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,50.402,50.402,30.003,30.003,20.399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.337,4.342,0.84,3.207,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.399,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.103,14.278,9.234,0.215,0.0,6.002,0.0,0.0,1785.4,3325.0,22.341,18.056,0.0,3.573,3.65,0.514,7.125,0.633,-2.027,0.0,0.0,6.617,-0.118,4.809,0.0,0.729,0.0,4.451,-11.182,0.0,-0.059,-0.468,-0.053,2.772,-0.028,9.812,0.0,0.0,-5.863,-0.057,-1.175,-3.111,-0.166,0.0,3.147,9.706,474.2,349.2,3989.9,915.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 -base-dhw-solar-indirect-flat-plate.xml,48.542,48.542,28.763,28.763,19.779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.326,4.495,0.878,1.482,0.0,0.306,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.779,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.521,14.935,9.343,0.681,0.0,8.431,0.0,0.0,2064.3,3084.0,22.309,18.471,0.0,3.579,3.652,0.514,7.134,0.633,-2.006,0.0,0.0,6.619,-0.12,4.812,0.0,0.73,0.0,4.329,-11.698,0.0,-0.074,-0.479,-0.054,2.741,-0.031,9.791,0.0,0.0,-5.91,-0.059,-1.189,-3.184,-0.168,0.0,3.255,10.478,1354.2,997.1,10548.8,2420.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 -base-dhw-solar-thermosyphon-flat-plate.xml,48.518,48.518,28.393,28.393,20.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.389,0.852,1.543,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.125,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.846,14.482,9.355,0.688,0.0,8.386,0.0,0.0,2091.8,3018.2,22.275,18.169,0.0,3.574,3.649,0.514,7.127,0.632,-2.017,0.0,0.0,6.612,-0.118,4.808,0.0,0.729,0.0,4.397,-11.396,0.0,-0.066,-0.474,-0.053,2.76,-0.029,9.808,0.0,0.0,-5.886,-0.057,-1.183,-3.136,-0.167,0.0,3.179,9.965,1354.4,997.2,10470.8,2402.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 -base-dhw-tank-coal.xml,62.818,62.818,26.99,26.99,20.361,0.0,0.0,0.0,0.0,15.467,0.0,0.0,0.336,4.5,0.879,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.066,14.941,9.234,3.619,0.0,0.0,0.0,0.0,1463.2,3069.5,22.729,18.631,0.0,3.572,3.65,0.514,7.13,0.633,-2.004,0.0,0.0,6.616,-0.12,5.894,0.0,0.729,0.0,4.451,-12.342,0.0,-0.074,-0.478,-0.054,2.748,-0.03,9.806,0.0,0.0,-5.9,-0.059,-1.469,-3.167,-0.168,0.0,3.267,10.697,1354.8,997.6,11399.9,2615.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 -base-dhw-tank-detailed-setpoints.xml,56.111,56.111,35.985,35.985,20.126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.376,0.849,9.152,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.126,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.846,14.423,9.207,0.623,0.0,0.0,0.0,0.0,2474.4,3332.9,22.251,18.126,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.612,-0.119,4.808,0.0,0.729,0.0,4.397,-11.395,0.0,-0.065,-0.473,-0.053,2.761,-0.029,9.812,0.0,0.0,-5.883,-0.058,-1.181,-3.132,-0.167,0.0,3.169,9.901,1354.8,997.6,11442.3,2625.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 -base-dhw-tank-elec-uef.xml,56.156,56.156,36.074,36.074,20.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.331,4.381,0.85,9.235,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,18.805,14.447,9.234,0.69,0.0,0.0,0.0,0.0,2181.0,3495.7,22.261,18.138,0.0,3.574,3.649,0.514,7.128,0.632,-2.017,0.0,0.0,6.613,-0.118,4.808,0.0,0.729,0.0,4.388,-11.431,0.0,-0.066,-0.473,-0.053,2.76,-0.029,9.808,0.0,0.0,-5.886,-0.057,-1.182,-3.134,-0.167,0.0,3.174,9.933,1354.8,997.6,11399.5,2615.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 -base-dhw-tank-gas-outside.xml,65.946,65.946,26.775,26.775,39.171,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.306,0.831,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.963,0.0,17.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.568,14.101,9.234,5.067,0.0,0.0,0.0,0.0,1465.3,3024.3,23.117,18.247,0.0,3.559,3.646,0.513,7.118,0.632,-2.033,0.0,0.0,6.62,-0.117,5.889,0.0,0.728,0.0,4.762,-11.071,0.0,-0.05,-0.459,-0.051,2.805,-0.025,9.845,0.0,0.0,-5.813,-0.057,-1.44,-3.054,-0.164,0.0,3.133,9.602,1354.8,997.6,11399.7,2615.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 -base-dhw-tank-gas-uef-fhr.xml,62.489,62.489,26.952,26.952,35.537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34,4.466,0.87,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.636,0.0,14.901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.324,14.792,9.234,2.976,0.0,0.0,0.0,0.0,1463.6,3061.7,22.795,18.567,0.0,3.569,3.649,0.514,7.127,0.632,-2.008,0.0,0.0,6.614,-0.119,5.892,0.0,0.728,0.0,4.504,-12.119,0.0,-0.07,-0.475,-0.054,2.758,-0.03,9.813,0.0,0.0,-5.888,-0.058,-1.465,-3.148,-0.168,0.0,3.244,10.509,1354.8,997.6,11399.8,2615.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 -base-dhw-tank-gas-uef.xml,62.489,62.489,26.952,26.952,35.537,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34,4.466,0.87,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.636,0.0,14.901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.324,14.792,9.234,2.976,0.0,0.0,0.0,0.0,1463.6,3061.7,22.795,18.567,0.0,3.569,3.649,0.514,7.127,0.632,-2.008,0.0,0.0,6.614,-0.119,5.892,0.0,0.728,0.0,4.504,-12.119,0.0,-0.07,-0.475,-0.054,2.758,-0.03,9.813,0.0,0.0,-5.888,-0.058,-1.465,-3.148,-0.168,0.0,3.244,10.509,1354.8,997.6,11399.8,2615.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 -base-dhw-tank-gas.xml,62.818,62.818,26.99,26.99,35.828,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.336,4.5,0.879,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.361,0.0,15.467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.066,14.941,9.234,3.619,0.0,0.0,0.0,0.0,1463.2,3069.5,22.729,18.631,0.0,3.572,3.65,0.514,7.13,0.633,-2.004,0.0,0.0,6.616,-0.12,5.894,0.0,0.729,0.0,4.451,-12.342,0.0,-0.074,-0.478,-0.054,2.748,-0.03,9.806,0.0,0.0,-5.9,-0.059,-1.469,-3.167,-0.168,0.0,3.267,10.697,1354.8,997.6,11399.9,2615.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 -base-dhw-tank-heat-pump-detailed-operating-modes.xml,54.059,54.059,28.567,28.567,25.493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.421,3.817,0.714,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.86,12.157,9.291,1.305,0.0,0.0,0.0,0.0,1856.6,3331.2,24.727,18.065,0.0,3.535,3.641,0.513,7.107,0.63,-2.112,0.0,0.0,6.66,-0.096,4.797,0.0,0.726,0.0,5.383,-7.285,0.0,0.014,-0.406,-0.044,2.975,-0.013,9.948,0.0,0.0,-5.534,-0.038,-1.104,-2.781,-0.153,0.0,2.749,7.025,1354.8,997.6,10960.4,2515.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-detailed-schedules.xml,54.193,54.193,28.741,28.741,25.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.42,3.831,0.718,2.496,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.832,12.208,9.374,1.413,0.0,0.0,0.0,0.0,1846.3,2970.3,25.942,17.88,0.0,3.525,3.638,0.512,7.101,0.631,-2.067,0.0,0.0,6.646,-0.112,4.8,0.0,0.727,0.0,5.388,-7.316,0.0,0.013,-0.403,-0.043,2.97,-0.01,10.01,0.0,0.0,-5.522,-0.055,-1.092,-2.746,-0.154,0.0,2.743,7.02,1354.8,997.6,10201.3,2340.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 -base-dhw-tank-heat-pump-detailed-setpoints.xml,54.193,54.193,28.741,28.741,25.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.42,3.831,0.718,2.496,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.832,12.208,9.374,1.413,0.0,0.0,0.0,0.0,1846.3,2970.3,25.942,17.88,0.0,3.525,3.638,0.512,7.101,0.631,-2.067,0.0,0.0,6.646,-0.112,4.8,0.0,0.727,0.0,5.388,-7.316,0.0,0.013,-0.403,-0.043,2.97,-0.01,10.01,0.0,0.0,-5.522,-0.055,-1.092,-2.746,-0.154,0.0,2.743,7.02,1354.8,997.6,10201.3,2340.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 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,54.059,54.059,28.567,28.567,25.493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.421,3.817,0.714,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.86,12.157,9.291,1.305,0.0,0.0,0.0,0.0,1856.6,3331.2,24.727,18.065,0.0,3.535,3.641,0.513,7.107,0.63,-2.112,0.0,0.0,6.66,-0.096,4.797,0.0,0.726,0.0,5.383,-7.285,0.0,0.014,-0.406,-0.044,2.975,-0.013,9.948,0.0,0.0,-5.534,-0.038,-1.104,-2.781,-0.153,0.0,2.749,7.025,1354.8,997.6,10960.4,2515.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-outside.xml,54.143,54.143,33.598,33.598,20.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.339,4.325,0.836,6.822,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.239,14.202,9.255,2.524,0.0,0.0,0.0,0.0,3061.0,3192.7,22.377,18.019,0.0,3.571,3.649,0.514,7.124,0.633,-2.024,0.0,0.0,6.618,-0.121,4.809,0.0,0.729,0.0,4.479,-11.069,0.0,-0.058,-0.467,-0.052,2.777,-0.027,9.821,0.0,0.0,-5.854,-0.06,-1.172,-3.1,-0.166,0.0,3.135,9.604,1354.8,997.6,11245.9,2580.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 -base-dhw-tank-heat-pump-uef.xml,54.059,54.059,28.567,28.567,25.493,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.421,3.817,0.714,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,23.86,12.157,9.291,1.305,0.0,0.0,0.0,0.0,1856.6,3331.2,24.727,18.065,0.0,3.535,3.641,0.513,7.107,0.63,-2.112,0.0,0.0,6.66,-0.096,4.797,0.0,0.726,0.0,5.383,-7.285,0.0,0.014,-0.406,-0.044,2.975,-0.013,9.948,0.0,0.0,-5.534,-0.038,-1.104,-2.781,-0.153,0.0,2.749,7.025,1354.8,997.6,10960.4,2515.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump-with-solar-fraction.xml,49.794,49.794,27.869,27.869,21.925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.178,0.801,1.252,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,20.531,13.62,9.267,0.601,0.0,6.023,0.0,0.0,1901.1,3013.2,25.264,18.097,0.0,3.562,3.646,0.513,7.114,0.632,-2.064,0.0,0.0,6.624,-0.112,4.804,0.0,0.728,0.0,4.734,-9.994,0.0,-0.035,-0.45,-0.05,2.828,-0.023,9.843,0.0,0.0,-5.77,-0.051,-1.155,-3.006,-0.162,0.0,3.023,8.871,474.2,349.2,3898.0,894.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 -base-dhw-tank-heat-pump-with-solar.xml,49.36,49.36,28.489,28.489,20.87,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.344,4.527,0.886,1.126,0.0,0.33,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.542,15.08,9.179,1.96,0.0,8.149,0.0,0.0,1888.1,3100.4,22.639,18.592,0.0,3.572,3.651,0.514,7.134,0.632,-2.019,0.0,0.0,6.627,-0.116,4.81,0.0,0.729,0.0,4.531,-10.874,0.0,-0.072,-0.475,-0.054,2.756,-0.03,9.794,0.0,0.0,-5.878,-0.056,-1.184,-3.181,-0.167,0.0,3.277,10.57,1354.5,997.3,11927.8,2737.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-heat-pump.xml,54.301,54.301,29.74,29.74,24.561,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.405,3.902,0.735,3.421,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,0.0,22.997,12.527,9.279,1.717,0.0,0.0,0.0,0.0,1871.0,3215.1,22.706,18.233,0.0,3.539,3.639,0.512,7.1,0.631,-2.087,0.0,0.0,6.64,-0.11,4.799,0.0,0.727,0.0,5.215,-7.966,0.0,-0.005,-0.423,-0.046,2.92,-0.015,9.926,0.0,0.0,-5.615,-0.051,-1.121,-2.849,-0.155,0.0,2.802,7.489,1354.8,997.6,11053.5,2536.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 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,56.792,56.792,35.653,35.653,21.139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.349,4.429,0.861,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.139,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.794,14.61,9.275,0.094,0.0,0.0,0.0,0.0,5195.3,5557.4,30.157,19.45,0.0,3.568,3.649,0.514,7.126,0.633,-2.018,0.0,0.0,6.616,-0.119,5.266,0.0,0.777,0.0,4.589,-11.132,0.0,-0.062,-0.468,-0.052,2.776,-0.027,9.825,0.0,0.0,-5.857,-0.057,-1.278,-3.093,-0.186,0.0,3.204,10.096,1354.7,998.0,11011.6,2526.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 -base-dhw-tank-model-type-stratified.xml,56.0,56.0,35.519,35.519,20.481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.338,4.333,0.838,8.734,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.179,14.235,9.282,0.094,0.0,0.0,0.0,0.0,2011.3,3355.1,22.361,18.035,0.0,3.572,3.65,0.514,7.124,0.633,-2.023,0.0,0.0,6.618,-0.121,4.81,0.0,0.729,0.0,4.466,-11.12,0.0,-0.059,-0.468,-0.052,2.774,-0.027,9.819,0.0,0.0,-5.857,-0.06,-1.173,-3.105,-0.166,0.0,3.14,9.647,1354.8,997.6,10995.2,2523.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-oil.xml,62.818,62.818,26.99,26.99,20.361,15.467,0.0,0.0,0.0,0.0,0.0,0.0,0.336,4.5,0.879,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.361,0.0,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.467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.066,14.941,9.234,3.619,0.0,0.0,0.0,0.0,1463.2,3069.5,22.729,18.631,0.0,3.572,3.65,0.514,7.13,0.633,-2.004,0.0,0.0,6.616,-0.12,5.894,0.0,0.729,0.0,4.451,-12.342,0.0,-0.074,-0.478,-0.054,2.748,-0.03,9.806,0.0,0.0,-5.9,-0.059,-1.469,-3.167,-0.168,0.0,3.267,10.697,1354.8,997.6,11399.9,2615.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 -base-dhw-tank-wood.xml,62.818,62.818,26.99,26.99,20.361,0.0,0.0,15.467,0.0,0.0,0.0,0.0,0.336,4.5,0.879,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.467,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.066,14.941,9.234,3.619,0.0,0.0,0.0,0.0,1463.2,3069.5,22.729,18.631,0.0,3.572,3.65,0.514,7.13,0.633,-2.004,0.0,0.0,6.616,-0.12,5.894,0.0,0.729,0.0,4.451,-12.342,0.0,-0.074,-0.478,-0.054,2.748,-0.03,9.806,0.0,0.0,-5.9,-0.059,-1.469,-3.167,-0.168,0.0,3.267,10.697,1354.8,997.6,11399.9,2615.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 -base-dhw-tankless-detailed-setpoints.xml,58.688,58.688,26.776,26.776,31.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.339,4.325,0.836,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.545,0.0,11.367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.239,14.202,9.214,0.0,0.0,0.0,0.0,0.0,1461.9,3001.3,22.377,18.019,0.0,3.571,3.649,0.514,7.124,0.633,-2.024,0.0,0.0,6.618,-0.121,4.809,0.0,0.729,0.0,4.479,-11.069,0.0,-0.058,-0.467,-0.052,2.777,-0.027,9.821,0.0,0.0,-5.854,-0.06,-1.172,-3.1,-0.166,0.0,3.135,9.604,1354.8,997.6,11575.1,2656.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-electric-outside.xml,56.755,56.755,36.211,36.211,20.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.339,4.325,0.836,9.435,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.239,14.202,9.234,0.0,0.0,0.0,0.0,0.0,2018.8,3384.4,22.377,18.019,0.0,3.571,3.649,0.514,7.124,0.633,-2.024,0.0,0.0,6.618,-0.121,4.809,0.0,0.729,0.0,4.479,-11.069,0.0,-0.058,-0.467,-0.052,2.777,-0.027,9.821,0.0,0.0,-5.854,-0.06,-1.172,-3.1,-0.166,0.0,3.135,9.604,1354.8,997.6,11397.0,2615.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 -base-dhw-tankless-electric-uef.xml,56.649,56.649,36.104,36.104,20.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.339,4.325,0.836,9.328,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.239,14.202,9.234,0.0,0.0,0.0,0.0,0.0,2012.3,3379.9,22.377,18.019,0.0,3.571,3.649,0.514,7.124,0.633,-2.024,0.0,0.0,6.618,-0.121,4.809,0.0,0.729,0.0,4.479,-11.069,0.0,-0.058,-0.467,-0.052,2.777,-0.027,9.821,0.0,0.0,-5.854,-0.06,-1.172,-3.1,-0.166,0.0,3.135,9.604,1354.8,997.6,11397.0,2615.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 -base-dhw-tankless-electric.xml,56.755,56.755,36.211,36.211,20.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.339,4.325,0.836,9.435,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.239,14.202,9.234,0.0,0.0,0.0,0.0,0.0,2018.8,3384.4,22.377,18.019,0.0,3.571,3.649,0.514,7.124,0.633,-2.024,0.0,0.0,6.618,-0.121,4.809,0.0,0.729,0.0,4.479,-11.069,0.0,-0.058,-0.467,-0.052,2.777,-0.027,9.821,0.0,0.0,-5.854,-0.06,-1.172,-3.1,-0.166,0.0,3.135,9.604,1354.8,997.6,11397.0,2615.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 -base-dhw-tankless-gas-uef.xml,57.15,57.15,26.776,26.776,30.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.339,4.325,0.836,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.545,0.0,9.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,19.239,14.202,9.234,0.0,0.0,0.0,0.0,0.0,1461.9,3001.3,22.377,18.019,0.0,3.571,3.649,0.514,7.124,0.633,-2.024,0.0,0.0,6.618,-0.121,4.809,0.0,0.729,0.0,4.479,-11.069,0.0,-0.058,-0.467,-0.052,2.777,-0.027,9.821,0.0,0.0,-5.854,-0.06,-1.172,-3.1,-0.166,0.0,3.135,9.604,1354.8,997.6,11397.0,2615.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 -base-dhw-tankless-gas-with-solar-fraction.xml,51.308,51.308,26.776,26.776,24.532,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.339,4.325,0.836,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.545,0.0,3.987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.239,14.202,9.234,0.0,0.0,6.002,0.0,0.0,1461.9,3001.3,22.377,18.019,0.0,3.571,3.649,0.514,7.124,0.633,-2.024,0.0,0.0,6.618,-0.121,4.809,0.0,0.729,0.0,4.479,-11.069,0.0,-0.058,-0.467,-0.052,2.777,-0.027,9.821,0.0,0.0,-5.854,-0.06,-1.172,-3.1,-0.166,0.0,3.135,9.604,474.2,349.2,3988.9,915.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 -base-dhw-tankless-gas-with-solar.xml,49.036,49.036,27.207,27.207,21.829,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.333,4.432,0.862,0.0,0.0,0.304,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.191,0.0,1.637,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.908,14.662,9.416,0.0,0.0,8.085,0.0,0.0,1461.7,3067.4,22.41,18.324,0.0,3.574,3.65,0.514,7.129,0.633,-2.014,0.0,0.0,6.616,-0.118,4.809,0.0,0.729,0.0,4.41,-11.362,0.0,-0.069,-0.475,-0.053,2.756,-0.03,9.803,0.0,0.0,-5.891,-0.057,-1.184,-3.151,-0.168,0.0,3.212,10.147,1345.1,989.5,10036.1,2303.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.711,58.711,26.776,26.776,31.935,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.339,4.325,0.836,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.545,0.0,11.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,19.239,14.202,9.234,0.0,0.0,0.0,0.0,0.0,1461.9,3001.3,22.377,18.019,0.0,3.571,3.649,0.514,7.124,0.633,-2.024,0.0,0.0,6.618,-0.121,4.809,0.0,0.729,0.0,4.479,-11.069,0.0,-0.058,-0.467,-0.052,2.777,-0.027,9.821,0.0,0.0,-5.854,-0.06,-1.172,-3.1,-0.166,0.0,3.135,9.604,1354.8,997.6,11397.0,2615.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 -base-dhw-tankless-propane.xml,58.711,58.711,26.776,26.776,20.545,0.0,11.39,0.0,0.0,0.0,0.0,0.0,0.339,4.325,0.836,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,19.239,14.202,9.234,0.0,0.0,0.0,0.0,0.0,1461.9,3001.3,22.377,18.019,0.0,3.571,3.649,0.514,7.124,0.633,-2.024,0.0,0.0,6.618,-0.121,4.809,0.0,0.729,0.0,4.479,-11.069,0.0,-0.058,-0.467,-0.052,2.777,-0.027,9.821,0.0,0.0,-5.854,-0.06,-1.172,-3.1,-0.166,0.0,3.135,9.604,1354.8,997.6,11397.0,2615.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 -base-enclosure-2stories-garage.xml,64.619,64.619,40.907,40.907,23.712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.309,6.275,1.281,9.12,0.0,0.0,5.268,0.142,0.373,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,10.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.11,21.741,9.211,0.609,0.0,0.0,0.0,0.0,2306.9,4384.1,30.126,26.285,0.0,3.858,7.473,1.091,5.593,0.686,-3.508,0.0,0.784,5.557,-0.196,8.959,0.0,0.761,0.0,3.163,-12.676,0.0,-0.108,-1.026,-0.109,1.929,-0.029,20.737,0.0,-0.114,-4.39,-0.135,-1.962,-6.114,-0.162,0.0,2.833,10.824,1354.8,997.6,11399.6,2576.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 -base-enclosure-2stories.xml,72.159,72.159,44.231,44.231,27.928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.364,6.181,1.259,9.005,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.044,21.349,9.146,0.612,0.0,0.0,0.0,0.0,2517.7,4517.6,33.255,26.451,0.0,3.772,7.865,1.07,7.505,0.667,-3.623,0.0,0.0,7.348,-0.211,11.136,0.0,0.745,0.0,3.68,-14.475,0.0,-0.079,-1.057,-0.103,2.746,-0.024,20.28,0.0,0.0,-5.942,-0.127,-2.495,-6.293,-0.163,0.0,2.768,12.253,1354.8,997.6,11399.6,2460.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-1.xml,52.727,52.727,30.609,30.609,22.119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.365,4.065,0.773,5.557,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.203,0.253,1.049,1.262,0.0,1.644,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.119,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.714,13.273,5.356,0.615,0.0,0.0,0.0,0.0,1718.2,3169.4,22.869,17.621,0.0,3.55,3.639,0.512,7.093,0.631,-2.048,0.0,0.0,6.589,-0.119,4.805,0.0,0.726,0.0,4.796,-9.781,0.0,-0.027,-0.443,-0.049,2.853,-0.02,9.901,0.0,0.0,-5.737,-0.059,-1.147,-2.966,-0.162,0.0,2.993,8.305,939.7,637.0,6287.7,1631.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,54.461,54.461,33.338,33.338,21.123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.348,4.218,0.81,7.399,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.261,0.309,1.281,1.395,0.0,1.879,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.123,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.78,13.841,7.337,0.614,0.0,0.0,0.0,0.0,2048.5,3252.3,22.573,17.875,0.0,3.563,3.645,0.513,7.11,0.632,-2.037,0.0,0.0,6.604,-0.119,4.807,0.0,0.728,0.0,4.597,-10.59,0.0,-0.045,-0.457,-0.051,2.808,-0.024,9.852,0.0,0.0,-5.808,-0.058,-1.163,-3.047,-0.165,0.0,3.081,9.097,1147.2,817.3,8843.7,2197.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 -base-enclosure-beds-4.xml,57.777,57.777,38.621,38.621,19.157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.316,4.538,0.888,10.889,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.376,0.421,1.744,1.661,0.0,2.35,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.157,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.938,15.016,11.089,0.613,0.0,0.0,0.0,0.0,2191.6,3479.0,21.975,18.442,0.0,3.586,3.655,0.515,7.145,0.634,-1.99,0.0,0.0,6.631,-0.122,4.812,0.0,0.731,0.0,4.201,-12.199,0.0,-0.083,-0.488,-0.055,2.716,-0.033,9.775,0.0,0.0,-5.949,-0.06,-1.196,-3.212,-0.169,0.0,3.259,10.688,1562.4,1177.9,13955.5,2960.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 -base-enclosure-beds-5.xml,59.419,59.419,41.227,41.227,18.192,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3,4.704,0.929,12.59,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.434,0.477,1.976,1.794,0.0,2.585,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.034,15.621,12.918,0.612,0.0,0.0,0.0,0.0,2548.5,3807.4,21.677,18.765,0.0,3.6,3.663,0.516,7.168,0.635,-1.976,0.0,0.0,6.654,-0.12,4.817,0.0,0.733,0.0,4.005,-13.004,0.0,-0.099,-0.501,-0.057,2.674,-0.037,9.727,0.0,0.0,-6.008,-0.058,-1.211,-3.292,-0.171,0.0,3.348,11.484,1770.0,1358.2,16511.4,3258.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 -base-enclosure-garage.xml,56.388,56.388,34.667,34.667,21.721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.358,3.08,0.546,9.265,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.335,9.129,9.234,0.723,0.0,0.0,0.0,0.0,2134.7,2587.8,17.327,10.967,0.0,3.522,3.781,0.504,5.518,0.617,2.011,0.0,0.0,4.778,-0.1,5.372,0.0,0.0,0.0,3.405,-9.264,0.0,0.092,-0.294,-0.038,2.482,-0.004,6.613,0.0,0.0,-5.183,-0.04,-1.236,-2.125,0.0,0.0,1.322,7.691,1354.8,997.6,11399.6,2615.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 -base-enclosure-infil-ach-house-pressure.xml,56.128,56.128,35.995,35.995,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 -base-enclosure-infil-cfm-house-pressure.xml,56.128,56.128,35.995,35.995,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 -base-enclosure-infil-cfm50.xml,56.128,56.128,35.995,35.995,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 -base-enclosure-infil-flue.xml,57.539,57.539,35.994,35.994,21.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.355,4.356,0.843,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.545,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.176,14.316,9.234,0.614,0.0,0.0,0.0,0.0,2108.8,3346.5,23.014,18.348,0.0,3.563,3.648,0.514,7.121,0.633,-2.029,0.0,0.0,6.621,-0.118,5.891,0.0,0.728,0.0,4.681,-11.404,0.0,-0.056,-0.464,-0.052,2.791,-0.026,9.831,0.0,0.0,-5.833,-0.058,-1.446,-3.084,-0.165,0.0,3.168,9.884,1354.8,997.6,11399.6,2615.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 -base-enclosure-infil-natural-ach.xml,63.754,63.754,36.007,36.007,27.747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.458,4.285,0.823,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.747,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.985,13.95,9.234,0.616,0.0,0.0,0.0,0.0,2153.9,3466.4,27.303,19.208,0.0,3.516,3.644,0.513,7.114,0.632,-2.057,0.0,0.0,6.663,-0.109,10.537,0.0,0.726,0.0,5.924,-11.432,0.0,-0.024,-0.431,-0.047,2.9,-0.017,9.921,0.0,0.0,-5.641,-0.054,-2.447,-2.927,-0.159,0.0,3.156,9.857,1354.8,997.6,11399.6,2615.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 -base-enclosure-orientations.xml,56.347,56.347,35.971,35.971,20.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.336,4.352,0.843,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.081,14.324,9.234,0.614,0.0,0.0,0.0,0.0,2131.5,3315.6,22.288,18.08,0.0,3.569,3.646,0.513,7.119,0.866,-2.033,0.0,0.0,6.603,-0.117,4.806,0.0,0.728,0.0,4.444,-11.393,0.0,-0.06,-0.469,-0.053,2.77,-0.158,9.813,0.0,0.0,-5.866,-0.056,-1.179,-3.116,-0.167,0.0,3.147,9.894,1354.8,997.6,11399.6,2615.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 -base-enclosure-overhangs.xml,56.435,56.435,35.854,35.854,20.581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34,4.255,0.82,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.581,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.273,13.918,9.234,0.614,0.0,0.0,0.0,0.0,2106.0,3302.3,22.278,17.962,0.0,3.567,3.647,0.513,7.111,0.632,-1.618,0.0,0.0,6.599,-0.118,4.808,0.0,0.729,0.0,4.48,-11.406,0.0,-0.045,-0.46,-0.051,2.79,-0.026,9.233,0.0,0.0,-5.832,-0.057,-1.171,-3.083,-0.165,0.0,3.069,9.882,1354.8,997.6,11399.6,2615.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 -base-enclosure-rooftypes.xml,56.051,56.051,35.831,35.831,20.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.334,4.24,0.818,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,18.934,13.865,9.234,0.614,0.0,0.0,0.0,0.0,2131.1,3191.3,22.107,17.081,0.0,3.689,3.648,0.514,7.121,0.633,-2.031,0.0,0.0,6.61,-0.117,4.809,0.0,0.729,0.0,4.403,-11.399,0.0,-0.313,-0.467,-0.052,2.776,-0.027,9.817,0.0,0.0,-5.855,-0.056,-1.176,-3.113,-0.166,0.0,2.813,9.888,1354.8,997.6,11399.6,2615.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 -base-enclosure-skylights-physical-properties.xml,58.659,58.659,37.096,37.096,21.564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.356,5.246,1.055,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,17.996,9.234,0.612,0.0,0.0,0.0,0.0,2137.6,3597.8,23.997,21.479,0.0,3.573,3.667,0.516,7.18,0.637,-1.927,0.551,0.0,6.775,-0.121,4.82,0.0,0.732,0.0,4.714,-11.376,0.0,-0.152,-0.523,-0.06,2.659,-0.041,9.655,3.676,0.0,-6.145,-0.062,-1.196,-3.275,-0.171,0.0,3.977,9.909,1354.8,997.6,11399.6,2615.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 -base-enclosure-skylights-shading.xml,56.42,56.42,36.843,36.843,19.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.323,5.068,1.014,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.331,17.297,9.234,0.612,0.0,0.0,0.0,0.0,2132.3,3597.8,22.776,20.727,0.0,3.593,3.673,0.517,7.195,0.638,-1.913,-0.869,0.0,6.77,-0.122,4.821,0.0,0.732,0.0,4.303,-11.371,0.0,-0.147,-0.526,-0.061,2.641,-0.042,9.65,3.194,0.0,-6.154,-0.061,-1.209,-3.31,-0.172,0.0,3.778,9.915,1354.8,997.6,11399.6,2615.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 -base-enclosure-skylights-storms.xml,56.661,56.661,36.752,36.752,19.909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.328,4.99,0.995,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.642,16.965,9.234,0.612,0.0,0.0,0.0,0.0,2132.8,3597.8,22.86,20.661,0.0,3.586,3.668,0.517,7.181,0.637,-1.931,-0.546,0.0,6.742,-0.122,4.819,0.0,0.731,0.0,4.369,-11.375,0.0,-0.136,-0.518,-0.06,2.659,-0.04,9.674,2.792,0.0,-6.112,-0.061,-1.203,-3.281,-0.171,0.0,3.715,9.911,1354.8,997.6,11399.6,2615.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 -base-enclosure-skylights.xml,56.416,56.416,36.853,36.853,19.564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.323,5.076,1.016,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.319,17.33,9.234,0.612,0.0,0.0,0.0,0.0,2132.3,3597.8,22.775,20.735,0.0,3.593,3.673,0.517,7.196,0.638,-1.912,-0.883,0.0,6.771,-0.122,4.821,0.0,0.732,0.0,4.301,-11.371,0.0,-0.148,-0.527,-0.061,2.64,-0.042,9.647,3.232,0.0,-6.156,-0.062,-1.21,-3.312,-0.172,0.0,3.785,9.915,1354.8,997.6,11399.6,2615.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 -base-enclosure-split-level.xml,40.452,40.452,29.424,29.424,11.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.182,3.826,0.721,9.565,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.321,11.991,9.458,0.606,0.0,0.0,0.0,0.0,1709.3,2608.4,13.121,12.057,0.0,3.936,3.832,0.0,0.0,0.684,-1.662,0.0,0.0,7.749,-0.138,2.649,0.0,0.774,0.0,0.296,-8.292,0.0,-0.078,-0.59,0.0,0.0,-0.025,10.745,0.0,0.0,-1.509,-0.118,-0.593,-3.005,-0.167,0.0,0.078,7.545,1354.8,997.6,11399.6,3013.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-surfaces.xml,56.412,56.412,36.873,36.873,19.539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.322,5.092,1.02,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.539,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.296,17.401,9.234,0.612,0.0,0.0,0.0,0.0,2132.3,3597.8,22.776,20.75,0.0,3.594,3.674,0.516,7.196,0.632,-1.91,-0.901,0.0,6.773,-0.123,4.822,0.0,0.732,0.0,4.296,-11.371,0.0,-0.15,-0.528,-0.061,2.636,-0.042,9.643,3.297,0.0,-6.161,-0.062,-1.21,-3.304,-0.172,0.0,3.799,9.915,1354.8,997.6,11399.6,2615.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 -base-enclosure-split-surfaces2.xml,59.506,59.506,36.978,36.978,22.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,5.137,1.029,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.097,17.549,9.234,0.613,0.0,0.0,0.0,0.0,2112.4,3689.5,24.055,21.156,0.0,3.414,3.641,0.511,7.151,0.623,0.422,-0.736,0.0,6.723,-0.116,4.81,0.0,0.73,0.0,4.876,-11.379,0.0,-0.049,-0.509,-0.058,2.672,-0.04,9.465,3.221,0.0,-6.119,-0.058,-1.187,-3.214,-0.17,0.0,3.914,9.908,1354.8,997.6,11399.6,2615.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 -base-enclosure-thermal-mass.xml,55.93,55.93,35.951,35.951,19.979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33,4.34,0.842,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.709,14.304,9.234,0.614,0.0,0.0,0.0,0.0,2131.2,3285.5,22.16,17.81,0.0,3.574,3.647,0.514,7.115,0.632,-2.002,0.0,0.0,6.59,-0.181,4.804,0.0,0.728,0.0,4.353,-11.395,0.0,-0.057,-0.468,-0.053,2.773,-0.028,9.789,0.0,0.0,-5.863,-0.092,-1.184,-3.164,-0.167,0.0,3.107,9.892,1354.8,997.6,11399.6,2615.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 -base-enclosure-walltypes.xml,72.222,72.222,34.822,34.822,37.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.617,3.183,0.576,9.17,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.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,35.014,9.579,9.234,0.621,0.0,0.0,0.0,0.0,2125.8,2736.6,25.081,13.001,0.0,3.359,16.933,0.472,6.733,0.835,-0.378,0.0,0.0,5.68,-0.09,4.815,0.0,0.73,0.0,7.279,-11.67,0.0,0.252,-0.8,-0.014,3.437,-0.094,1.498,0.0,0.0,-4.528,-0.033,-0.996,-0.384,-0.128,0.0,1.867,9.625,1354.8,997.6,11399.6,2615.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 -base-enclosure-windows-natural-ventilation-availability.xml,55.203,55.203,34.998,34.998,20.205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.333,3.578,0.645,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.921,10.829,9.234,0.616,0.0,0.0,0.0,0.0,2105.7,3282.1,22.274,17.78,0.0,3.572,3.648,0.514,7.134,0.632,-2.018,0.0,0.0,6.66,-0.116,4.808,0.0,0.729,0.0,4.414,-11.391,0.0,0.003,-0.421,-0.046,2.937,-0.016,9.972,0.0,0.0,-5.627,-0.055,-1.121,-7.064,-0.158,0.0,2.725,9.898,1354.8,997.6,11399.6,2615.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 -base-enclosure-windows-none.xml,56.157,56.157,34.074,34.074,22.083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.364,2.777,0.488,9.168,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.673,7.966,9.234,0.618,0.0,0.0,0.0,0.0,2104.6,2336.6,16.513,8.564,0.0,3.495,5.171,0.502,6.837,0.605,0.0,0.0,0.0,5.79,-0.109,4.781,0.0,0.722,0.0,4.352,-11.53,0.0,0.187,-0.407,-0.026,3.216,0.009,0.0,0.0,0.0,-4.818,-0.046,-1.12,0.0,-0.148,0.0,1.379,9.762,1354.8,997.6,11399.6,2615.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 -base-enclosure-windows-physical-properties.xml,63.903,63.903,36.104,36.104,27.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.459,4.365,0.839,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,26.035,14.227,9.234,0.616,0.0,0.0,0.0,0.0,2126.3,3896.8,26.998,20.715,0.0,3.508,3.636,0.512,7.074,0.632,3.369,0.0,0.0,6.694,-0.127,4.826,0.0,0.731,0.0,5.949,-11.465,0.0,0.004,-0.401,-0.043,2.908,-0.009,8.803,0.0,0.0,-5.697,-0.069,-1.092,-2.874,-0.156,0.0,3.272,9.824,1354.8,997.6,11399.6,2615.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 -base-enclosure-windows-shading.xml,56.526,56.526,33.637,33.637,22.889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.378,2.425,0.388,9.17,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.435,6.472,9.234,0.621,0.0,0.0,0.0,0.0,2106.3,2568.0,22.322,11.469,0.0,3.565,3.666,0.515,7.127,0.633,0.037,0.0,0.0,6.806,-0.092,4.852,0.0,0.738,0.0,4.902,-11.649,0.0,0.318,-0.143,-0.006,3.604,0.047,-0.815,0.0,0.0,-4.169,-0.031,-0.943,-2.224,-0.123,0.0,1.478,9.646,1354.8,997.6,11399.6,2615.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 -base-enclosure-windows-storms.xml,57.026,57.026,35.416,35.416,21.611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.357,3.885,0.732,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.611,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.238,12.403,9.234,0.615,0.0,0.0,0.0,0.0,2108.2,3095.1,21.74,16.16,0.0,3.532,3.614,0.509,7.02,0.624,-0.329,0.0,0.0,6.341,-0.115,4.793,0.0,0.725,0.0,4.653,-11.414,0.0,0.008,-0.419,-0.046,2.894,-0.016,7.446,0.0,0.0,-5.601,-0.053,-1.151,-2.943,-0.161,0.0,2.741,9.874,1354.8,997.6,11399.6,2615.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 +base-bldgtype-single-family-attached-2stories.xml,51.52,51.52,34.56,34.56,16.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.221,3.255,0.58,9.228,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,15.817,9.721,9.269,0.614,0.0,0.0,0.0,0.0,2112.3,3013.6,17.827,14.18,0.0,2.425,5.051,0.296,4.334,0.636,-0.809,0.0,0.0,4.958,-0.068,7.092,0.0,0.728,0.0,2.34,-11.4,0.0,0.006,-0.65,-0.026,1.618,-0.018,6.174,0.0,0.0,-3.987,-0.063,-1.694,-2.545,-0.162,0.0,1.306,9.887,1354.8,997.6,11399.6,2678.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 +base-bldgtype-single-family-attached-atticroof-cathedral.xml,97.785,97.785,37.178,37.178,60.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.79,4.935,0.941,9.236,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.514,15.57,9.269,0.623,0.0,0.0,0.0,0.0,2161.1,4374.3,36.355,27.56,49.488,0.0,2.936,0.288,3.614,0.667,-0.101,0.0,0.0,3.324,-0.84,7.548,0.0,0.773,0.0,0.0,-12.354,8.563,0.0,-0.155,0.004,1.536,0.12,4.579,0.0,0.0,-4.289,-0.8,-0.851,-1.174,-0.093,0.0,0.0,8.942,1354.8,997.6,11399.6,2678.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 +base-bldgtype-single-family-attached.xml,42.567,42.567,29.913,29.913,12.654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.093,2.733,0.467,9.441,0.0,0.0,3.268,0.0,0.27,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.734,7.788,9.387,0.614,0.0,0.0,0.0,0.0,1823.2,2595.0,13.124,9.976,0.0,2.343,2.365,0.292,4.201,0.623,-0.412,0.0,0.0,4.62,-0.043,3.033,0.0,0.726,0.0,3.213,-9.37,0.0,0.024,-0.286,-0.027,1.565,-0.023,3.006,0.0,0.0,-4.096,-0.041,-0.77,-1.22,-0.166,0.0,1.589,8.289,1354.8,997.6,11399.6,2887.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 +base-calctype-operational-misc-defaults.xml,69.443,49.344,39.625,19.525,29.819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.492,2.304,0.347,7.15,0.0,0.326,4.51,0.0,0.334,1.118,0.0,0.0,1.098,2.36,0.0,0.0,0.769,0.544,4.047,2.057,0.745,3.051,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-20.099,0.0,29.819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.911,5.633,18.469,0.643,0.0,11.971,0.0,0.0,3201.7,3057.8,25.511,14.606,0.0,3.789,3.683,0.518,7.429,0.643,-2.003,0.0,0.0,8.272,-0.076,1.525,0.0,14.991,0.0,2.587,-13.72,0.0,0.225,-0.16,-0.009,3.422,0.051,10.679,0.0,0.0,-5.258,-0.072,-0.213,0.0,-3.573,-11.344,0.461,12.442,2592.2,2706.6,21154.0,5664.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-calctype-operational-misc-loads-large-uncommon.xml,101.291,101.291,51.958,51.958,41.427,0.0,2.609,5.297,0.0,0.0,0.0,0.0,0.35,4.468,0.873,3.939,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,3.032,2.994,0.0,0.0,21.205,0.0,0.0,0.0,0.0,0.0,18.628,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,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.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.858,15.008,3.621,0.613,0.0,0.0,0.0,0.0,2605.1,4107.0,22.884,18.539,0.0,3.571,3.652,0.514,7.487,0.632,-2.011,0.0,0.0,8.266,-0.066,4.81,0.0,0.728,0.0,4.631,-12.696,0.0,-0.086,-0.49,-0.056,2.637,-0.033,9.773,0.0,0.0,-6.479,-0.063,-1.19,-3.189,-0.169,0.0,3.273,11.26,777.8,496.4,4294.1,850.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 +base-calctype-operational-misc-loads-large-uncommon2.xml,80.237,80.237,49.532,49.532,22.799,2.609,0.0,0.0,5.297,0.0,0.0,0.0,0.35,4.468,0.873,3.939,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,0.606,2.994,0.0,0.0,21.205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.858,15.008,3.621,0.613,0.0,0.0,0.0,0.0,2406.7,3920.8,22.884,18.539,0.0,3.571,3.652,0.514,7.487,0.632,-2.011,0.0,0.0,8.266,-0.066,4.81,0.0,0.728,0.0,4.631,-12.696,0.0,-0.086,-0.49,-0.056,2.637,-0.033,9.773,0.0,0.0,-6.479,-0.063,-1.19,-3.189,-0.169,0.0,3.273,11.26,777.8,496.4,4294.1,850.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 +base-calctype-operational.xml,53.033,53.033,28.335,28.335,24.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.407,3.949,0.745,3.942,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.131,12.786,3.621,0.615,0.0,0.0,0.0,0.0,1659.2,3131.2,23.529,17.294,0.0,3.522,3.624,0.51,7.396,0.627,-2.118,0.0,0.0,8.168,-0.062,4.801,0.0,0.725,0.0,5.31,-9.692,0.0,-0.005,-0.424,-0.046,2.821,-0.015,9.944,0.0,0.0,-6.179,-0.058,-1.133,-2.898,-0.16,0.0,2.907,8.203,777.8,496.4,4294.0,850.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 +base-dhw-combi-tankless-outside.xml,52.76,52.76,21.435,21.435,31.326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.859,0.0,10.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,0.0,0.0,0.0,0.0,0.0,0.0,17.618,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1376.9,0.0,16.995,0.0,0.0,3.734,3.632,0.511,7.4,0.628,-2.089,0.0,0.0,8.027,-0.066,5.886,0.0,0.727,0.0,0.0,-11.085,0.0,-0.441,-0.972,-0.125,1.231,-0.155,8.265,0.0,0.0,-8.427,-0.062,-1.962,-6.027,-0.268,0.0,0.0,9.588,1068.6,776.0,8563.5,1965.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-combi-tankless.xml,52.76,52.76,21.435,21.435,31.326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.859,0.0,10.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,0.0,0.0,0.0,0.0,0.0,0.0,17.618,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1376.9,0.0,16.995,0.0,0.0,3.734,3.632,0.511,7.4,0.628,-2.089,0.0,0.0,8.027,-0.066,5.886,0.0,0.727,0.0,0.0,-11.085,0.0,-0.441,-0.972,-0.125,1.231,-0.155,8.265,0.0,0.0,-8.427,-0.062,-1.962,-6.027,-0.268,0.0,0.0,9.588,1068.6,776.0,8563.5,1965.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-desuperheater-2-speed.xml,32.317,32.317,32.317,32.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.387,0.791,6.863,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.92,9.232,0.662,2.959,0.0,0.0,0.0,0.0,2740.8,0.0,18.834,0.0,2.642,2.5,0.349,4.179,0.341,-5.425,0.0,0.0,2.767,-0.137,3.049,0.0,0.518,0.0,0.0,-11.135,0.0,-0.087,-0.461,-0.051,2.712,-0.03,9.933,0.0,0.0,-6.912,-0.064,-1.188,-3.012,-0.166,0.0,3.752,10.67,1354.8,997.6,11412.6,2618.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 +base-dhw-desuperheater-gshp.xml,37.403,37.403,37.403,37.403,0.0,0.0,0.0,0.0,0.0,0.0,5.362,0.0,0.444,2.586,1.046,6.688,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,13.388,9.232,0.613,2.93,0.0,0.0,0.0,3224.0,2111.7,21.195,15.076,0.0,3.592,3.632,0.511,7.424,0.628,-2.088,0.0,0.0,8.184,-0.062,4.802,0.0,0.728,0.0,3.481,-11.089,0.0,0.008,-0.456,-0.051,2.727,-0.024,9.853,0.0,0.0,-6.334,-0.058,-1.166,-3.093,-0.165,0.0,1.853,10.498,1354.8,997.6,11412.7,2618.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 +base-dhw-desuperheater-hpwh.xml,56.744,56.744,29.654,29.654,27.089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.447,4.379,0.85,2.703,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.369,14.462,9.245,1.809,3.004,0.0,0.0,0.0,1878.6,3057.3,23.4,18.492,0.0,3.514,3.628,0.51,7.412,0.625,-2.169,0.0,0.0,8.223,-0.05,4.794,0.0,0.726,0.0,5.711,-7.909,0.0,-0.007,-0.41,-0.044,2.872,-0.014,9.928,0.0,0.0,-6.091,-0.046,-1.115,-2.915,-0.155,0.0,3.15,9.604,1354.7,997.5,11376.8,2610.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 +base-dhw-desuperheater-tankless.xml,33.732,33.732,33.732,33.732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.379,1.179,6.898,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.168,9.238,0.0,2.932,0.0,0.0,0.0,0.0,3165.4,0.0,18.086,0.0,2.62,2.477,0.346,4.102,0.335,-5.497,0.0,0.0,2.651,-0.138,3.016,0.0,0.513,0.0,0.0,-10.763,0.0,-0.059,-0.455,-0.05,2.728,-0.028,9.95,0.0,0.0,-6.903,-0.064,-1.182,-2.982,-0.164,0.0,3.18,10.385,1354.8,997.6,11361.0,2607.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,31.424,31.424,31.424,31.424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.924,0.333,6.89,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.627,9.232,0.663,2.921,0.0,0.0,0.0,0.0,2479.6,0.0,18.766,0.0,2.642,2.5,0.349,4.179,0.341,-5.425,0.0,0.0,2.767,-0.137,3.049,0.0,0.518,0.0,0.0,-11.135,0.0,-0.125,-0.461,-0.051,2.713,-0.03,9.933,0.0,0.0,-6.91,-0.064,-1.188,-3.015,-0.166,0.0,4.514,10.66,1354.8,997.6,11410.8,2618.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 +base-dhw-desuperheater.xml,33.751,33.751,33.751,33.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.433,1.197,6.845,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.397,9.232,0.662,2.987,0.0,0.0,0.0,0.0,3178.5,0.0,18.194,0.0,2.642,2.501,0.349,4.179,0.341,-5.425,0.0,0.0,2.767,-0.137,3.049,0.0,0.518,0.0,0.0,-11.135,0.0,-0.065,-0.461,-0.051,2.712,-0.03,9.932,0.0,0.0,-6.913,-0.064,-1.188,-3.013,-0.166,0.0,3.218,10.677,1354.8,997.6,11413.5,2619.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.247,56.247,33.67,33.67,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,6.924,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,6.826,0.614,0.0,0.0,0.0,0.0,2106.3,3288.3,22.927,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,10264.9,2355.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 +base-dhw-indirect-dse.xml,59.375,59.375,21.461,21.461,37.914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.184,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.319,0.0,13.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.402,0.0,9.26,2.272,0.0,0.0,0.0,0.0,1376.0,0.0,16.705,0.0,0.0,3.737,3.636,0.512,7.411,0.629,-2.065,0.0,0.0,8.015,-0.068,5.892,0.0,0.728,0.0,0.0,-12.357,0.0,-0.484,-1.017,-0.132,1.089,-0.167,8.138,0.0,0.0,-8.625,-0.064,-2.023,-6.313,-0.277,0.0,0.0,10.589,1138.7,826.6,9544.7,2190.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 +base-dhw-indirect-outside.xml,57.103,57.103,21.435,21.435,35.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.859,0.0,14.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.618,0.0,9.263,3.3,0.0,0.0,0.0,0.0,1376.9,0.0,16.995,0.0,0.0,3.734,3.632,0.511,7.4,0.628,-2.089,0.0,0.0,8.027,-0.066,5.886,0.0,0.727,0.0,0.0,-11.085,0.0,-0.441,-0.972,-0.125,1.231,-0.155,8.265,0.0,0.0,-8.427,-0.062,-1.962,-6.027,-0.268,0.0,0.0,9.588,1120.1,811.3,9405.5,2158.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 +base-dhw-indirect-standbyloss.xml,54.709,54.709,21.422,21.422,33.287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.195,0.0,14.092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,9.262,2.696,0.0,0.0,0.0,0.0,1375.8,0.0,16.632,0.0,0.0,3.735,3.635,0.512,7.412,0.629,-2.052,0.0,0.0,8.007,-0.069,5.892,0.0,0.728,0.0,0.0,-12.589,0.0,-0.494,-1.027,-0.133,1.062,-0.169,8.122,0.0,0.0,-8.668,-0.066,-2.036,-6.368,-0.279,0.0,0.0,10.781,1124.5,813.7,9457.2,2170.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-with-solar-fraction.xml,46.546,46.546,21.431,21.431,25.115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.155,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.371,0.0,4.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.194,0.0,9.24,0.786,0.0,6.006,0.0,0.0,1376.6,0.0,16.874,0.0,0.0,3.736,3.634,0.511,7.404,0.629,-2.087,0.0,0.0,8.023,-0.065,5.888,0.0,0.728,0.0,0.0,-11.525,0.0,-0.454,-0.987,-0.127,1.182,-0.159,8.216,0.0,0.0,-8.494,-0.061,-1.983,-6.123,-0.271,0.0,0.0,9.934,403.8,298.0,3325.1,763.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,54.474,54.474,21.424,21.424,33.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.455,0.0,13.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.402,0.0,9.26,2.272,0.0,0.0,0.0,0.0,1376.0,0.0,16.705,0.0,0.0,3.737,3.636,0.512,7.411,0.629,-2.065,0.0,0.0,8.015,-0.068,5.892,0.0,0.728,0.0,0.0,-12.357,0.0,-0.484,-1.017,-0.132,1.089,-0.167,8.138,0.0,0.0,-8.625,-0.064,-2.023,-6.313,-0.277,0.0,0.0,10.589,1138.7,826.6,9544.7,2190.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 +base-dhw-jacket-electric.xml,58.379,58.379,35.584,35.584,22.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.376,4.248,0.817,8.867,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.347,13.873,9.234,0.295,0.0,0.0,0.0,0.0,2130.4,3612.9,22.98,17.807,0.0,3.543,3.633,0.511,7.427,0.628,-2.085,0.0,0.0,8.19,-0.062,4.803,0.0,0.728,0.0,4.932,-11.232,0.0,-0.043,-0.455,-0.051,2.729,-0.024,9.856,0.0,0.0,-6.328,-0.059,-1.165,-3.057,-0.165,0.0,3.078,9.737,1354.8,997.6,11399.6,2615.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 +base-dhw-jacket-gas.xml,64.438,64.438,26.849,26.849,37.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.383,4.349,0.841,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.199,0.0,14.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,21.725,14.292,9.234,2.726,0.0,0.0,0.0,0.0,1464.3,3028.6,23.48,18.282,0.0,3.54,3.634,0.511,7.43,0.628,-2.083,0.0,0.0,8.195,-0.062,5.888,0.0,0.727,0.0,5.018,-12.039,0.0,-0.049,-0.458,-0.051,2.723,-0.025,9.847,0.0,0.0,-6.336,-0.058,-1.446,-3.082,-0.165,0.0,3.16,10.412,1354.8,997.6,11399.8,2615.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 +base-dhw-jacket-hpwh.xml,56.62,56.62,29.521,29.521,27.099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.447,3.802,0.71,3.285,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,0.0,0.0,25.379,12.093,9.287,1.309,0.0,0.0,0.0,0.0,1896.4,2942.9,23.492,17.688,0.0,3.511,3.625,0.51,7.411,0.626,-2.171,0.0,0.0,8.224,-0.047,4.794,0.0,0.726,0.0,5.713,-7.886,0.0,0.017,-0.404,-0.043,2.895,-0.012,9.951,0.0,0.0,-6.055,-0.043,-1.109,-2.793,-0.153,0.0,2.749,7.414,1354.8,997.6,10993.4,2522.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 +base-dhw-jacket-indirect.xml,54.273,54.273,21.425,21.425,32.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.676,0.0,13.172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.593,0.0,9.259,1.914,0.0,0.0,0.0,0.0,1376.2,0.0,16.753,0.0,0.0,3.737,3.636,0.512,7.409,0.629,-2.076,0.0,0.0,8.019,-0.066,5.89,0.0,0.728,0.0,0.0,-12.155,0.0,-0.476,-1.009,-0.131,1.113,-0.165,8.151,0.0,0.0,-8.593,-0.062,-2.014,-6.27,-0.275,0.0,0.0,10.432,1145.5,830.8,9598.0,2202.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 +base-dhw-low-flow-fixtures.xml,58.119,58.119,35.542,35.542,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,8.796,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,8.838,0.614,0.0,0.0,0.0,0.0,2111.8,3471.1,22.926,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,10829.7,2485.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-multiple.xml,47.208,47.208,23.375,23.375,23.833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,1.948,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.888,0.0,3.945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.78,0.0,9.225,2.819,0.0,5.996,0.0,0.0,2111.7,0.0,18.71,0.0,0.0,3.736,3.634,0.511,7.407,0.629,-2.07,0.0,0.0,8.019,-0.067,5.889,0.0,0.728,0.0,0.0,-11.968,0.0,-0.469,-1.002,-0.13,1.137,-0.163,8.184,0.0,0.0,-8.558,-0.063,-2.004,-6.208,-0.274,0.0,0.0,10.3,472.0,347.5,3998.6,917.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 +base-dhw-none.xml,47.056,47.056,24.51,24.51,22.546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.242,0.817,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.115,13.943,0.0,0.0,0.0,0.0,0.0,0.0,1360.7,2885.1,22.966,17.822,0.0,3.546,3.636,0.512,7.433,0.629,-2.077,0.0,0.0,8.2,-0.063,5.402,0.0,0.0,0.0,4.886,-11.32,0.0,-0.047,-0.459,-0.051,2.716,-0.025,9.845,0.0,0.0,-6.347,-0.059,-1.303,-3.073,0.0,0.0,3.078,9.851,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.437,58.437,35.86,35.86,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.088,0.026,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.174,0.614,0.0,0.0,0.0,0.0,2126.1,3620.1,22.926,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2510.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 +base-dhw-recirc-manual.xml,58.01,58.01,35.433,35.433,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,8.67,0.017,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.174,0.614,0.0,0.0,0.0,0.0,2110.8,3605.5,22.926,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2510.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 +base-dhw-recirc-nocontrol.xml,73.386,73.386,50.809,50.809,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,22.569,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.268,0.614,0.0,0.0,0.0,0.0,3075.5,4169.0,22.928,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2676.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 +base-dhw-recirc-temperature.xml,68.475,68.475,45.898,45.898,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,18.904,0.249,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.268,0.614,0.0,0.0,0.0,0.0,2757.2,3949.6,22.928,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2676.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 +base-dhw-recirc-timer.xml,73.386,73.386,50.809,50.809,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,22.569,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.268,0.614,0.0,0.0,0.0,0.0,3075.5,4169.0,22.928,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2676.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 +base-dhw-solar-direct-evacuated-tube.xml,52.635,52.635,30.059,30.059,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.277,0.824,2.985,0.0,0.324,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,14.0,9.255,0.628,0.0,6.676,0.0,0.0,2091.3,3016.8,22.925,17.877,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.073,-0.165,0.0,3.098,9.895,1354.7,997.5,11208.1,2571.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 +base-dhw-solar-direct-flat-plate.xml,51.155,51.155,28.586,28.586,22.569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.289,0.827,1.511,0.0,0.31,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.135,14.051,9.362,0.693,0.0,8.432,0.0,0.0,2025.5,3020.0,22.927,17.904,0.0,3.545,3.634,0.511,7.428,0.629,-2.081,0.0,0.0,8.191,-0.063,4.805,0.0,0.728,0.0,4.888,-11.413,0.0,-0.047,-0.458,-0.051,2.719,-0.025,9.848,0.0,0.0,-6.342,-0.06,-1.168,-3.079,-0.165,0.0,3.106,9.953,1354.4,997.2,10425.4,2392.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 +base-dhw-solar-direct-ics.xml,52.692,52.692,30.115,30.115,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.282,0.826,3.03,0.0,0.329,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,14.022,9.29,0.649,0.0,6.685,0.0,0.0,2125.4,3018.7,22.928,17.893,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.34,-0.059,-1.168,-3.074,-0.165,0.0,3.102,9.917,1354.7,997.6,10951.6,2513.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-fraction.xml,52.767,52.767,29.918,29.918,22.849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.377,4.241,0.816,3.208,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.398,13.845,9.234,0.215,0.0,6.002,0.0,0.0,1765.2,3294.5,22.994,17.794,0.0,3.543,3.634,0.511,7.428,0.628,-2.092,0.0,0.0,8.193,-0.061,4.803,0.0,0.728,0.0,4.942,-11.191,0.0,-0.041,-0.453,-0.05,2.733,-0.024,9.851,0.0,0.0,-6.322,-0.057,-1.164,-3.053,-0.164,0.0,3.073,9.698,474.2,349.2,3989.9,915.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 +base-dhw-solar-indirect-flat-plate.xml,50.889,50.889,28.675,28.675,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.366,4.392,0.853,1.482,0.0,0.306,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.803,14.492,9.342,0.681,0.0,8.431,0.0,0.0,2108.2,3053.8,22.962,18.202,0.0,3.55,3.637,0.512,7.435,0.629,-2.079,0.0,0.0,8.194,-0.062,4.806,0.0,0.729,0.0,4.82,-11.709,0.0,-0.056,-0.464,-0.052,2.701,-0.027,9.824,0.0,0.0,-6.371,-0.058,-1.177,-3.128,-0.166,0.0,3.181,10.468,1354.2,997.1,10550.8,2421.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-solar-thermosyphon-flat-plate.xml,50.877,50.877,28.307,28.307,22.569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.288,0.827,1.544,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.136,14.047,9.355,0.689,0.0,8.386,0.0,0.0,2092.4,2987.7,22.928,17.901,0.0,3.545,3.634,0.511,7.428,0.629,-2.081,0.0,0.0,8.191,-0.063,4.805,0.0,0.728,0.0,4.888,-11.413,0.0,-0.047,-0.458,-0.051,2.719,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.078,-0.165,0.0,3.106,9.949,1354.4,997.2,10471.1,2402.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 +base-dhw-tank-coal.xml,65.17,65.17,26.903,26.903,22.798,0.0,0.0,0.0,0.0,15.47,0.0,0.0,0.376,4.397,0.853,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.35,14.5,9.234,3.623,0.0,0.0,0.0,0.0,1463.8,3039.9,23.376,18.378,0.0,3.545,3.636,0.512,7.433,0.629,-2.079,0.0,0.0,8.196,-0.062,5.89,0.0,0.728,0.0,4.941,-12.359,0.0,-0.054,-0.461,-0.052,2.709,-0.026,9.834,0.0,0.0,-6.356,-0.058,-1.453,-3.111,-0.166,0.0,3.193,10.682,1354.8,997.6,11399.9,2615.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 +base-dhw-tank-detailed-setpoints.xml,58.47,58.47,35.899,35.899,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.153,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.137,13.988,9.207,0.623,0.0,0.0,0.0,0.0,2481.4,3304.6,22.903,17.855,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.888,-11.409,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.34,-0.059,-1.168,-3.073,-0.165,0.0,3.096,9.887,1354.8,997.6,11442.3,2625.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 +base-dhw-tank-elec-uef.xml,58.513,58.513,35.989,35.989,22.524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.28,0.825,9.236,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.094,14.012,9.234,0.691,0.0,0.0,0.0,0.0,2133.6,3467.4,22.915,17.872,0.0,3.545,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.191,-0.063,4.805,0.0,0.728,0.0,4.88,-11.448,0.0,-0.046,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.06,-1.168,-3.076,-0.165,0.0,3.1,9.917,1354.8,997.6,11399.5,2615.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 +base-dhw-tank-gas-outside.xml,68.313,68.313,26.69,26.69,41.623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.403,4.205,0.806,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.415,0.0,17.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.865,13.673,9.234,5.067,0.0,0.0,0.0,0.0,1465.9,2993.9,23.767,17.99,0.0,3.532,3.632,0.511,7.423,0.628,-2.101,0.0,0.0,8.2,-0.06,5.884,0.0,0.727,0.0,5.252,-11.084,0.0,-0.031,-0.443,-0.049,2.767,-0.021,9.879,0.0,0.0,-6.266,-0.056,-1.424,-2.997,-0.162,0.0,3.06,9.589,1354.8,997.6,11399.7,2615.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 +base-dhw-tank-gas-uef-fhr.xml,64.846,64.846,26.865,26.865,37.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.381,4.363,0.845,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.076,0.0,14.904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.61,14.354,9.234,2.979,0.0,0.0,0.0,0.0,1464.2,3032.1,23.446,18.308,0.0,3.542,3.635,0.511,7.431,0.629,-2.081,0.0,0.0,8.195,-0.062,5.888,0.0,0.728,0.0,4.995,-12.137,0.0,-0.051,-0.459,-0.051,2.719,-0.025,9.844,0.0,0.0,-6.342,-0.058,-1.448,-3.091,-0.165,0.0,3.17,10.493,1354.8,997.6,11399.8,2615.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 +base-dhw-tank-gas-uef.xml,64.846,64.846,26.865,26.865,37.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.381,4.363,0.845,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.076,0.0,14.904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.61,14.354,9.234,2.979,0.0,0.0,0.0,0.0,1464.2,3032.1,23.446,18.308,0.0,3.542,3.635,0.511,7.431,0.629,-2.081,0.0,0.0,8.195,-0.062,5.888,0.0,0.728,0.0,4.995,-12.137,0.0,-0.051,-0.459,-0.051,2.719,-0.025,9.844,0.0,0.0,-6.342,-0.058,-1.448,-3.091,-0.165,0.0,3.17,10.493,1354.8,997.6,11399.8,2615.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 +base-dhw-tank-gas.xml,65.17,65.17,26.903,26.903,38.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.376,4.397,0.853,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.798,0.0,15.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,21.35,14.5,9.234,3.623,0.0,0.0,0.0,0.0,1463.8,3039.9,23.376,18.378,0.0,3.545,3.636,0.512,7.433,0.629,-2.079,0.0,0.0,8.196,-0.062,5.89,0.0,0.728,0.0,4.941,-12.359,0.0,-0.054,-0.461,-0.052,2.709,-0.026,9.834,0.0,0.0,-6.356,-0.058,-1.453,-3.111,-0.166,0.0,3.193,10.682,1354.8,997.6,11399.9,2615.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 +base-dhw-tank-heat-pump-detailed-operating-modes.xml,56.439,56.439,28.487,28.487,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.461,3.721,0.69,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.164,11.747,9.291,1.307,0.0,0.0,0.0,0.0,1859.9,3302.0,25.373,17.801,0.0,3.507,3.629,0.51,7.421,0.625,-2.178,0.0,0.0,8.249,-0.039,4.795,0.0,0.726,0.0,5.864,-7.287,0.0,0.031,-0.389,-0.041,2.942,-0.009,9.981,0.0,0.0,-5.982,-0.035,-1.092,-2.73,-0.151,0.0,2.677,7.034,1354.8,997.6,10960.9,2515.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 +base-dhw-tank-heat-pump-detailed-schedules.xml,56.575,56.575,28.663,28.663,27.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.46,3.734,0.694,2.497,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,26.136,11.802,9.374,1.415,0.0,0.0,0.0,0.0,1846.9,2939.8,26.588,17.604,0.0,3.497,3.625,0.51,7.413,0.626,-2.129,0.0,0.0,8.226,-0.057,4.797,0.0,0.726,0.0,5.869,-7.317,0.0,0.033,-0.387,-0.041,2.935,-0.007,10.049,0.0,0.0,-5.977,-0.053,-1.08,-2.689,-0.153,0.0,2.669,7.028,1354.8,997.6,10201.5,2340.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 +base-dhw-tank-heat-pump-detailed-setpoints.xml,56.575,56.575,28.663,28.663,27.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.46,3.734,0.694,2.497,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,26.136,11.802,9.374,1.415,0.0,0.0,0.0,0.0,1846.9,2939.8,26.588,17.604,0.0,3.497,3.625,0.51,7.413,0.626,-2.129,0.0,0.0,8.226,-0.057,4.797,0.0,0.726,0.0,5.869,-7.317,0.0,0.033,-0.387,-0.041,2.935,-0.007,10.049,0.0,0.0,-5.977,-0.053,-1.08,-2.689,-0.153,0.0,2.669,7.028,1354.8,997.6,10201.5,2340.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 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.439,56.439,28.487,28.487,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.461,3.721,0.69,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.164,11.747,9.291,1.307,0.0,0.0,0.0,0.0,1859.9,3302.0,25.373,17.801,0.0,3.507,3.629,0.51,7.421,0.625,-2.178,0.0,0.0,8.249,-0.039,4.795,0.0,0.726,0.0,5.864,-7.287,0.0,0.031,-0.389,-0.041,2.942,-0.009,9.981,0.0,0.0,-5.982,-0.035,-1.092,-2.73,-0.151,0.0,2.677,7.034,1354.8,997.6,10960.9,2515.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 +base-dhw-tank-heat-pump-outside.xml,56.508,56.508,33.513,33.513,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,6.822,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.255,2.524,0.0,0.0,0.0,0.0,3063.5,3167.6,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11245.9,2580.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 +base-dhw-tank-heat-pump-uef.xml,56.439,56.439,28.487,28.487,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.461,3.721,0.69,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.164,11.747,9.291,1.307,0.0,0.0,0.0,0.0,1859.9,3302.0,25.373,17.801,0.0,3.507,3.629,0.51,7.421,0.625,-2.178,0.0,0.0,8.249,-0.039,4.795,0.0,0.726,0.0,5.864,-7.287,0.0,0.031,-0.389,-0.041,2.942,-0.009,9.981,0.0,0.0,-5.982,-0.035,-1.092,-2.73,-0.151,0.0,2.677,7.034,1354.8,997.6,10960.9,2515.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 +base-dhw-tank-heat-pump-with-solar-fraction.xml,52.162,52.162,27.784,27.784,24.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.402,4.079,0.776,1.251,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.829,13.194,9.267,0.602,0.0,6.023,0.0,0.0,1901.7,2982.6,25.913,17.83,0.0,3.532,3.63,0.511,7.418,0.627,-2.123,0.0,0.0,8.195,-0.055,4.798,0.0,0.727,0.0,5.222,-9.997,0.0,-0.018,-0.436,-0.048,2.787,-0.02,9.886,0.0,0.0,-6.232,-0.051,-1.145,-2.951,-0.161,0.0,2.95,8.87,474.2,349.2,3898.0,894.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 +base-dhw-tank-heat-pump-with-solar.xml,51.709,51.709,28.404,28.404,23.305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.384,4.424,0.861,1.129,0.0,0.329,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,21.823,14.639,9.18,1.965,0.0,8.141,0.0,0.0,1894.1,3070.3,23.278,18.324,0.0,3.541,3.635,0.512,7.439,0.628,-2.085,0.0,0.0,8.2,-0.058,4.804,0.0,0.728,0.0,5.018,-10.881,0.0,-0.055,-0.461,-0.051,2.717,-0.026,9.832,0.0,0.0,-6.341,-0.055,-1.174,-3.124,-0.166,0.0,3.202,10.558,1354.4,997.3,11918.1,2734.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 +base-dhw-tank-heat-pump.xml,56.686,56.686,29.663,29.663,27.023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.446,3.806,0.711,3.424,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.303,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.6,3189.9,23.349,17.972,0.0,3.514,3.627,0.51,7.409,0.626,-2.15,0.0,0.0,8.222,-0.054,4.797,0.0,0.726,0.0,5.699,-7.978,0.0,0.017,-0.406,-0.044,2.884,-0.012,9.964,0.0,0.0,-6.067,-0.051,-1.108,-2.798,-0.153,0.0,2.733,7.488,1354.8,997.6,11052.5,2536.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 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.15,59.15,35.567,35.567,23.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.389,4.328,0.836,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.083,14.175,9.275,0.094,0.0,0.0,0.0,0.0,5197.3,5530.9,30.876,19.181,0.0,3.539,3.634,0.511,7.429,0.629,-2.079,0.0,0.0,8.191,-0.062,5.262,0.0,0.776,0.0,5.078,-11.151,0.0,-0.043,-0.452,-0.05,2.737,-0.023,9.869,0.0,0.0,-6.316,-0.058,-1.263,-3.036,-0.185,0.0,3.131,10.077,1354.7,998.0,11011.7,2526.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 +base-dhw-tank-model-type-stratified.xml,58.365,58.365,35.434,35.434,22.932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.378,4.231,0.813,8.734,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.476,13.803,9.282,0.094,0.0,0.0,0.0,0.0,1994.9,3331.3,23.013,17.774,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.803,0.0,0.728,0.0,4.958,-11.125,0.0,-0.04,-0.453,-0.05,2.736,-0.024,9.854,0.0,0.0,-6.318,-0.057,-1.163,-3.047,-0.164,0.0,3.066,9.643,1354.8,997.6,10995.3,2523.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tank-oil.xml,65.17,65.17,26.903,26.903,22.798,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.376,4.397,0.853,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.35,14.5,9.234,3.623,0.0,0.0,0.0,0.0,1463.8,3039.9,23.376,18.378,0.0,3.545,3.636,0.512,7.433,0.629,-2.079,0.0,0.0,8.196,-0.062,5.89,0.0,0.728,0.0,4.941,-12.359,0.0,-0.054,-0.461,-0.052,2.709,-0.026,9.834,0.0,0.0,-6.356,-0.058,-1.453,-3.111,-0.166,0.0,3.193,10.682,1354.8,997.6,11399.9,2615.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 +base-dhw-tank-wood.xml,65.17,65.17,26.903,26.903,22.798,0.0,0.0,15.47,0.0,0.0,0.0,0.0,0.376,4.397,0.853,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.35,14.5,9.234,3.623,0.0,0.0,0.0,0.0,1463.8,3039.9,23.376,18.378,0.0,3.545,3.636,0.512,7.433,0.629,-2.079,0.0,0.0,8.196,-0.062,5.89,0.0,0.728,0.0,4.941,-12.359,0.0,-0.054,-0.461,-0.052,2.709,-0.026,9.834,0.0,0.0,-6.356,-0.058,-1.453,-3.111,-0.166,0.0,3.193,10.682,1354.8,997.6,11399.9,2615.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 +base-dhw-tankless-detailed-setpoints.xml,61.053,61.053,26.691,26.691,34.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,11.367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.214,0.0,0.0,0.0,0.0,0.0,1462.5,2970.8,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11575.1,2656.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-tankless-electric-outside.xml,59.121,59.121,36.125,36.125,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,9.435,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,2022.0,3356.0,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.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 +base-dhw-tankless-electric-uef.xml,59.014,59.014,36.019,36.019,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,9.328,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,2015.6,3351.5,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.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 +base-dhw-tankless-electric.xml,59.121,59.121,36.125,36.125,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,9.435,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,2022.0,3356.0,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.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 +base-dhw-tankless-gas-uef.xml,59.516,59.516,26.691,26.691,32.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,9.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,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,1462.5,2970.8,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.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 +base-dhw-tankless-gas-with-solar-fraction.xml,53.673,53.673,26.691,26.691,26.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,3.987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.234,0.0,0.0,6.002,0.0,0.0,1462.5,2970.8,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,474.2,349.2,3988.9,915.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 +base-dhw-tankless-gas-with-solar.xml,51.39,51.39,27.12,27.12,24.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.373,4.33,0.837,0.0,0.0,0.304,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.632,0.0,1.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.195,14.224,9.416,0.0,0.0,8.084,0.0,0.0,1462.3,3037.1,23.062,18.054,0.0,3.545,3.635,0.512,7.43,0.629,-2.078,0.0,0.0,8.193,-0.064,4.806,0.0,0.728,0.0,4.901,-11.379,0.0,-0.049,-0.459,-0.051,2.715,-0.025,9.844,0.0,0.0,-6.347,-0.06,-1.17,-3.094,-0.165,0.0,3.138,10.131,1345.1,989.5,10036.9,2303.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 +base-dhw-tankless-gas.xml,61.077,61.077,26.691,26.691,34.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,11.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,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,1462.5,2970.8,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.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 +base-dhw-tankless-propane.xml,61.077,61.077,26.691,26.691,22.996,0.0,11.39,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,1462.5,2970.8,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.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 +base-enclosure-2stories-garage.xml,66.165,66.165,40.836,40.836,25.328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33,6.201,1.263,9.12,0.0,0.0,5.268,0.142,0.373,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,10.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.62,21.423,9.211,0.61,0.0,0.0,0.0,0.0,2307.2,4366.6,30.589,26.13,0.0,3.842,7.531,1.087,5.823,0.682,-3.635,0.0,0.84,6.66,-0.144,8.947,0.0,0.76,0.0,3.37,-12.699,0.0,-0.096,-1.018,-0.106,1.886,-0.026,20.76,0.0,-0.122,-4.735,-0.135,-1.943,-6.055,-0.161,0.0,2.802,10.802,1354.8,997.6,11399.6,2576.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 +base-enclosure-2stories.xml,74.243,74.243,44.137,44.137,30.106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.392,6.083,1.235,9.005,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.078,20.927,9.146,0.612,0.0,0.0,0.0,0.0,2538.9,4783.7,33.85,26.238,0.0,3.755,7.843,1.066,7.816,0.663,-3.733,0.0,0.0,8.918,-0.137,11.123,0.0,0.744,0.0,3.954,-14.49,0.0,-0.065,-1.03,-0.099,2.684,-0.021,20.33,0.0,0.0,-6.443,-0.127,-2.472,-6.216,-0.162,0.0,2.725,12.238,1354.8,997.6,11399.5,2460.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-enclosure-beds-1.xml,55.11,55.11,30.528,30.528,24.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.406,3.967,0.749,5.557,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.203,0.253,1.049,1.262,0.0,1.644,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.022,12.854,5.356,0.615,0.0,0.0,0.0,0.0,1847.3,3140.7,23.521,17.347,0.0,3.523,3.625,0.51,7.399,0.627,-2.115,0.0,0.0,8.173,-0.063,4.802,0.0,0.726,0.0,5.288,-9.794,0.0,-0.008,-0.426,-0.046,2.816,-0.016,9.938,0.0,0.0,-6.187,-0.059,-1.134,-2.906,-0.16,0.0,2.92,8.293,939.7,637.0,6287.7,1631.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.83,56.83,33.255,33.255,23.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.389,4.118,0.786,7.399,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.261,0.309,1.281,1.395,0.0,1.879,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.078,13.414,7.337,0.615,0.0,0.0,0.0,0.0,2054.2,3221.7,23.224,17.602,0.0,3.535,3.63,0.511,7.415,0.628,-2.106,0.0,0.0,8.183,-0.061,4.803,0.0,0.727,0.0,5.089,-10.602,0.0,-0.025,-0.441,-0.049,2.77,-0.02,9.887,0.0,0.0,-6.261,-0.057,-1.151,-2.989,-0.162,0.0,3.008,9.085,1147.2,817.3,8843.7,2197.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 +base-enclosure-beds-4.xml,60.118,60.118,38.531,38.531,21.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.356,4.433,0.863,10.889,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.376,0.421,1.744,1.661,0.0,2.35,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.215,14.569,11.089,0.613,0.0,0.0,0.0,0.0,2192.2,3454.2,22.629,18.187,0.0,3.558,3.64,0.512,7.447,0.629,-2.076,0.0,0.0,8.204,-0.059,4.805,0.0,0.73,0.0,4.692,-12.208,0.0,-0.063,-0.471,-0.053,2.677,-0.029,9.795,0.0,0.0,-6.408,-0.055,-1.185,-3.156,-0.167,0.0,3.184,10.68,1562.4,1177.9,13955.5,2960.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 +base-enclosure-beds-5.xml,61.744,61.744,41.136,41.136,20.608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34,4.598,0.903,12.592,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.434,0.477,1.976,1.794,0.0,2.585,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.298,15.167,12.918,0.613,0.0,0.0,0.0,0.0,2536.3,3777.6,22.332,18.512,0.0,3.569,3.645,0.513,7.464,0.63,-2.044,0.0,0.0,8.22,-0.064,4.81,0.0,0.731,0.0,4.495,-13.016,0.0,-0.082,-0.486,-0.055,2.631,-0.033,9.767,0.0,0.0,-6.476,-0.06,-1.199,-3.237,-0.169,0.0,3.273,11.473,1770.0,1358.2,16511.4,3258.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 +base-enclosure-garage.xml,58.833,58.833,34.586,34.586,24.247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4,2.98,0.522,9.266,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,8.712,9.234,0.724,0.0,0.0,0.0,0.0,2135.2,2485.8,17.961,10.733,0.0,3.525,3.783,0.502,5.781,0.613,1.964,0.0,0.0,6.474,-0.041,5.37,0.0,0.0,0.0,3.809,-9.273,0.0,0.11,-0.275,-0.035,2.457,0.001,6.648,0.0,0.0,-5.651,-0.038,-1.218,-2.077,0.0,0.0,1.266,7.682,1354.8,997.6,11399.6,2615.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 +base-enclosure-infil-ach-house-pressure.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 +base-enclosure-infil-cfm-house-pressure.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 +base-enclosure-infil-cfm50.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 +base-enclosure-infil-flue.xml,59.904,59.904,35.909,35.909,23.995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.396,4.255,0.818,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.471,13.886,9.234,0.615,0.0,0.0,0.0,0.0,2112.0,3382.3,23.664,18.091,0.0,3.534,3.633,0.511,7.425,0.628,-2.093,0.0,0.0,8.196,-0.061,5.885,0.0,0.727,0.0,5.171,-11.413,0.0,-0.038,-0.449,-0.05,2.751,-0.022,9.87,0.0,0.0,-6.292,-0.057,-1.432,-3.026,-0.163,0.0,3.094,9.875,1354.8,997.6,11399.6,2615.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 +base-enclosure-infil-natural-ach.xml,66.123,66.123,35.925,35.925,30.197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.498,4.186,0.799,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.281,13.535,9.234,0.616,0.0,0.0,0.0,0.0,2132.4,3415.0,27.943,18.938,0.0,3.491,3.631,0.511,7.418,0.629,-2.101,0.0,0.0,8.23,-0.061,10.538,0.0,0.725,0.0,6.401,-11.445,0.0,-0.003,-0.414,-0.045,2.856,-0.012,9.975,0.0,0.0,-6.111,-0.058,-2.415,-2.873,-0.157,0.0,3.083,9.845,1354.8,997.6,11399.6,2615.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 +base-enclosure-orientations.xml,58.71,58.71,35.885,35.885,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.377,4.251,0.818,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.376,13.891,9.234,0.614,0.0,0.0,0.0,0.0,2110.0,3285.2,22.939,17.823,0.0,3.54,3.63,0.511,7.42,0.862,-2.093,0.0,0.0,8.178,-0.062,4.802,0.0,0.728,0.0,4.935,-11.406,0.0,-0.042,-0.454,-0.051,2.729,-0.154,9.858,0.0,0.0,-6.325,-0.058,-1.165,-3.058,-0.165,0.0,3.074,9.882,1354.8,997.6,11399.6,2615.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 +base-enclosure-overhangs.xml,58.801,58.801,35.769,35.769,23.031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38,4.154,0.795,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.569,13.489,9.234,0.615,0.0,0.0,0.0,0.0,2131.9,3351.7,22.929,17.703,0.0,3.538,3.631,0.511,7.415,0.627,-1.684,0.0,0.0,8.171,-0.06,4.802,0.0,0.728,0.0,4.971,-11.412,0.0,-0.027,-0.445,-0.049,2.751,-0.022,9.271,0.0,0.0,-6.29,-0.056,-1.161,-3.024,-0.163,0.0,2.995,9.876,1354.8,997.6,11399.6,2615.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 +base-enclosure-rooftypes.xml,58.412,58.412,35.748,35.748,22.664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.374,4.141,0.793,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.224,13.441,9.234,0.614,0.0,0.0,0.0,0.0,2110.0,3163.7,22.753,16.831,0.0,3.658,3.633,0.511,7.423,0.628,-2.096,0.0,0.0,8.184,-0.059,4.803,0.0,0.728,0.0,4.893,-11.408,0.0,-0.295,-0.451,-0.05,2.736,-0.024,9.856,0.0,0.0,-6.315,-0.056,-1.165,-3.054,-0.164,0.0,2.747,9.88,1354.8,997.6,11399.6,2615.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 +base-enclosure-skylights-physical-properties.xml,60.97,60.97,37.0,37.0,23.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.395,5.138,1.028,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.447,17.524,9.234,0.613,0.0,0.0,0.0,0.0,2115.3,3639.8,24.645,21.303,0.0,3.541,3.65,0.514,7.481,0.632,-1.991,0.538,0.0,8.339,-0.066,4.813,0.0,0.73,0.0,5.197,-11.383,0.0,-0.136,-0.51,-0.059,2.611,-0.038,9.693,3.684,0.0,-6.622,-0.062,-1.186,-3.225,-0.17,0.0,3.899,9.904,1354.8,997.6,11399.6,2615.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 +base-enclosure-skylights-shading.xml,58.734,58.734,36.748,36.748,21.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.363,4.96,0.987,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,20.588,16.826,9.234,0.612,0.0,0.0,0.0,0.0,2109.6,3598.0,23.428,20.663,0.0,3.562,3.656,0.515,7.492,0.633,-1.982,-0.875,0.0,8.333,-0.065,4.814,0.0,0.73,0.0,4.791,-11.379,0.0,-0.13,-0.513,-0.059,2.594,-0.039,9.685,3.196,0.0,-6.629,-0.061,-1.199,-3.257,-0.171,0.0,3.701,9.907,1354.8,997.6,11399.6,2615.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 +base-enclosure-skylights-storms.xml,58.981,58.981,36.658,36.658,22.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.368,4.883,0.969,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,16.497,9.234,0.613,0.0,0.0,0.0,0.0,2133.4,3594.8,23.511,20.574,0.0,3.556,3.652,0.514,7.48,0.632,-2.001,-0.553,0.0,8.309,-0.065,4.813,0.0,0.73,0.0,4.856,-11.385,0.0,-0.119,-0.504,-0.058,2.614,-0.036,9.708,2.793,0.0,-6.583,-0.061,-1.192,-3.228,-0.17,0.0,3.638,9.901,1354.8,997.6,11399.6,2615.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 +base-enclosure-skylights.xml,58.73,58.73,36.757,36.757,21.972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.968,0.989,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.576,16.859,9.234,0.612,0.0,0.0,0.0,0.0,2109.6,3598.0,23.427,20.671,0.0,3.562,3.656,0.515,7.493,0.633,-1.981,-0.889,0.0,8.334,-0.065,4.814,0.0,0.73,0.0,4.788,-11.379,0.0,-0.131,-0.513,-0.059,2.592,-0.039,9.683,3.234,0.0,-6.632,-0.061,-1.199,-3.259,-0.171,0.0,3.708,9.907,1354.8,997.6,11399.6,2615.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 +base-enclosure-split-level.xml,40.726,40.726,29.418,29.418,11.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.187,3.818,0.719,9.565,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.582,11.956,9.458,0.607,0.0,0.0,0.0,0.0,1709.7,2429.5,13.185,12.044,0.0,3.938,3.832,0.0,0.0,0.682,-1.698,0.0,0.0,8.03,-0.118,2.648,0.0,0.774,0.0,0.304,-8.296,0.0,-0.075,-0.587,0.0,0.0,-0.025,10.734,0.0,0.0,-1.546,-0.115,-0.592,-2.999,-0.166,0.0,0.077,7.541,1354.8,997.6,11399.6,3013.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-surfaces.xml,58.723,58.723,36.777,36.777,21.946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.984,0.993,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.551,16.928,9.234,0.612,0.0,0.0,0.0,0.0,2109.6,3598.0,23.428,20.686,0.0,3.563,3.657,0.513,7.493,0.627,-1.979,-0.907,0.0,8.335,-0.066,4.814,0.0,0.731,0.0,4.783,-11.379,0.0,-0.132,-0.515,-0.059,2.588,-0.039,9.679,3.299,0.0,-6.636,-0.062,-1.2,-3.252,-0.171,0.0,3.721,9.907,1354.8,997.6,11399.6,2615.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 +base-enclosure-split-surfaces2.xml,61.852,61.852,36.883,36.883,24.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.412,5.029,1.002,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.385,17.079,9.234,0.613,0.0,0.0,0.0,0.0,2115.6,3664.4,24.707,20.939,0.0,3.384,3.625,0.509,7.467,0.618,0.349,-0.742,0.0,8.303,-0.062,4.804,0.0,0.728,0.0,5.36,-11.385,0.0,-0.033,-0.496,-0.056,2.622,-0.036,9.505,3.223,0.0,-6.595,-0.058,-1.176,-3.162,-0.168,0.0,3.836,9.902,1354.8,997.6,11399.6,2615.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 +base-enclosure-thermal-mass.xml,58.336,58.336,35.866,35.866,22.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.371,4.239,0.817,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.043,13.869,9.234,0.614,0.0,0.0,0.0,0.0,2131.8,3340.5,22.815,17.552,0.0,3.546,3.633,0.511,7.418,0.627,-2.072,0.0,0.0,8.169,-0.095,4.799,0.0,0.727,0.0,4.853,-11.406,0.0,-0.038,-0.452,-0.05,2.732,-0.024,9.823,0.0,0.0,-6.32,-0.09,-1.171,-3.106,-0.165,0.0,3.034,9.882,1354.8,997.6,11399.6,2615.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 +base-enclosure-walltypes.xml,74.72,74.72,34.751,34.751,39.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.659,3.091,0.553,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.419,9.19,9.234,0.621,0.0,0.0,0.0,0.0,2129.3,2972.5,25.707,12.733,0.0,3.338,16.908,0.471,7.063,0.833,-0.384,0.0,0.0,7.301,-0.038,4.821,0.0,0.73,0.0,7.749,-11.693,0.0,0.273,-0.7,-0.011,3.409,-0.089,1.503,0.0,0.0,-4.959,-0.033,-0.979,-0.38,-0.126,0.0,1.804,9.602,1354.8,997.6,11399.6,2615.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 +base-enclosure-windows-natural-ventilation-availability.xml,57.58,57.58,34.931,34.931,22.648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.374,3.491,0.625,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.21,10.478,9.234,0.617,0.0,0.0,0.0,0.0,2131.8,3247.6,22.926,17.491,0.0,3.544,3.633,0.511,7.436,0.628,-2.084,0.0,0.0,8.237,-0.06,4.804,0.0,0.728,0.0,4.905,-11.406,0.0,0.022,-0.405,-0.043,2.897,-0.012,10.01,0.0,0.0,-6.085,-0.056,-1.108,-6.92,-0.156,0.0,2.655,9.884,1354.8,997.6,11399.6,2615.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 +base-enclosure-windows-none.xml,58.698,58.698,33.993,33.993,24.706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.408,2.677,0.464,9.169,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,23.128,7.544,9.234,0.619,0.0,0.0,0.0,0.0,2115.7,2533.8,17.171,8.377,0.0,3.469,5.155,0.5,7.156,0.6,0.0,0.0,0.0,7.427,-0.044,4.781,0.0,0.723,0.0,4.848,-11.559,0.0,0.205,-0.377,-0.023,3.207,0.013,0.0,0.0,0.0,-5.213,-0.041,-1.104,0.0,-0.145,0.0,1.315,9.733,1354.8,997.6,11399.6,2615.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 +base-enclosure-windows-physical-properties.xml,66.242,66.242,36.026,36.026,30.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.498,4.27,0.816,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.299,13.823,9.234,0.616,0.0,0.0,0.0,0.0,2129.4,3597.9,27.633,20.655,0.0,3.482,3.624,0.51,7.387,0.628,3.269,0.0,0.0,8.281,-0.072,4.824,0.0,0.731,0.0,6.424,-11.477,0.0,0.023,-0.385,-0.041,2.869,-0.005,8.863,0.0,0.0,-6.152,-0.066,-1.08,-2.822,-0.154,0.0,3.201,9.812,1354.8,997.6,11399.6,2615.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 +base-enclosure-windows-shading.xml,58.962,58.962,33.574,33.574,25.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.419,2.34,0.368,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,0.0,23.777,6.129,9.234,0.622,0.0,0.0,0.0,0.0,2109.7,2535.8,22.973,11.187,0.0,3.548,3.66,0.514,7.436,0.632,0.017,0.0,0.0,8.375,-0.042,4.86,0.0,0.738,0.0,5.397,-11.695,0.0,0.35,-0.114,-0.002,3.579,0.055,-0.72,0.0,0.0,-4.607,-0.038,-0.917,-2.173,-0.119,0.0,1.411,9.6,1354.8,997.6,11399.6,2615.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 +base-enclosure-windows-storms.xml,59.439,59.439,35.336,35.336,24.104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.398,3.788,0.708,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.574,11.992,9.234,0.616,0.0,0.0,0.0,0.0,2131.7,3065.6,22.39,15.895,0.0,3.505,3.6,0.506,7.33,0.621,-0.378,0.0,0.0,7.934,-0.059,4.792,0.0,0.725,0.0,5.145,-11.433,0.0,0.027,-0.403,-0.043,2.859,-0.011,7.49,0.0,0.0,-6.044,-0.055,-1.137,-2.882,-0.159,0.0,2.67,9.856,1354.8,997.6,11399.6,2615.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 base-foundation-ambient.xml,47.513,47.513,30.276,30.276,17.237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.284,4.61,0.898,9.353,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.147,15.206,9.342,0.606,0.0,0.0,0.0,2.0,1739.3,3397.3,20.36,21.102,0.0,3.835,3.82,0.0,0.0,0.743,-0.631,0.0,9.918,0.0,-0.403,2.064,0.0,0.788,0.0,3.878,-8.221,0.0,-0.044,-0.503,0.0,0.0,0.04,11.695,0.0,-3.613,0.0,-0.397,-0.407,-2.432,-0.157,0.0,3.599,7.616,1354.8,997.6,11399.6,2808.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 -base-foundation-basement-garage.xml,50.866,50.866,32.701,32.701,18.165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.3,4.376,0.847,9.401,0.0,0.0,3.406,0.142,0.277,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.01,14.387,9.365,0.612,0.0,0.0,0.0,0.0,1905.9,3275.4,20.79,18.704,0.0,3.669,4.642,0.515,5.213,0.696,-2.22,0.0,0.761,4.956,-0.071,3.251,0.0,0.735,0.0,4.101,-9.58,0.0,-0.047,-0.634,-0.058,1.975,-0.044,9.976,0.0,-0.109,-4.272,-0.036,-0.795,-3.037,-0.168,0.0,3.328,8.481,1354.8,997.6,11399.5,2849.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 -base-foundation-complex.xml,63.44,63.44,36.994,36.994,26.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.436,5.093,1.024,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.446,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.767,17.476,9.234,0.614,0.0,0.0,0.0,0.0,2118.7,3721.4,25.809,20.782,0.0,3.498,3.614,0.509,10.645,0.624,-2.194,0.0,0.0,7.993,-0.098,4.806,0.0,0.728,0.0,5.656,-11.406,0.0,-0.097,-0.481,-0.055,3.72,-0.032,9.797,0.0,0.0,-4.21,-0.049,-1.159,-3.2,-0.164,0.0,3.696,9.882,1354.8,997.6,11399.6,2615.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 -base-foundation-conditioned-basement-slab-insulation.xml,55.392,55.392,36.179,36.179,19.213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.317,4.536,0.888,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.213,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.991,15.098,9.234,0.613,0.0,0.0,0.0,0.0,2105.2,3466.3,22.114,18.871,0.0,3.598,3.668,0.517,7.426,0.636,-1.967,0.0,0.0,5.512,-0.117,4.818,0.0,0.731,0.0,4.222,-11.385,0.0,-0.085,-0.489,-0.055,2.582,-0.033,9.76,0.0,0.0,-4.996,-0.054,-1.189,-3.198,-0.168,0.0,3.292,9.901,1354.8,997.6,11399.6,2615.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 -base-foundation-conditioned-basement-wall-insulation.xml,54.109,54.109,35.438,35.438,18.671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.308,3.948,0.742,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.671,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.483,12.57,9.234,0.613,0.0,0.0,0.0,0.0,2102.5,3231.8,21.86,17.401,0.0,3.609,3.677,0.518,5.091,0.639,-1.944,0.0,0.0,7.378,-0.122,4.827,0.0,0.733,0.0,4.122,-11.39,0.0,-0.015,-0.437,-0.048,0.989,-0.021,9.905,0.0,0.0,-6.08,-0.058,-1.16,-2.955,-0.164,0.0,2.898,9.896,1354.8,997.6,11399.6,2615.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 -base-foundation-conditioned-crawlspace.xml,45.911,45.911,28.953,28.953,16.958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.28,3.529,0.653,9.361,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.868,10.911,9.342,0.614,0.0,0.0,0.0,0.0,1731.4,2302.3,15.503,10.954,0.0,3.707,3.605,0.507,4.956,0.623,-2.337,0.0,0.0,8.696,-0.073,3.488,0.0,0.73,0.0,0.0,-8.357,0.0,0.019,-0.479,-0.054,1.802,-0.03,9.965,0.0,0.0,-3.564,-0.035,-0.84,-2.966,-0.164,0.0,0.0,7.488,1354.8,997.6,11399.6,2808.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 -base-foundation-multiple.xml,41.855,41.855,29.725,29.725,12.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,4.261,0.822,9.311,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.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,11.355,13.74,9.285,0.673,0.0,0.0,0.0,0.0,1708.6,2672.4,14.779,14.294,0.0,4.01,3.896,0.0,0.0,0.777,-0.236,0.0,4.543,0.0,-0.34,2.586,0.0,0.0,0.0,1.785,-6.049,0.0,-0.121,-0.697,0.0,0.0,-0.019,11.573,0.0,-0.389,0.0,-0.332,-0.569,-2.639,0.0,0.0,1.739,5.463,1354.8,997.6,11399.6,2706.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 -base-foundation-slab.xml,39.652,39.652,29.277,29.277,10.375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.171,3.886,0.736,9.353,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.71,12.253,9.342,0.605,0.0,0.0,0.0,0.0,1712.6,2443.7,12.64,12.024,0.0,3.924,3.799,0.0,0.0,0.684,-1.627,0.0,0.0,7.757,-0.139,2.007,0.0,0.775,0.0,0.278,-8.26,0.0,-0.066,-0.575,0.0,0.0,-0.03,10.716,0.0,0.0,-1.562,-0.119,-0.466,-2.851,-0.171,0.0,0.079,7.577,1354.8,997.6,11399.6,2808.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 -base-foundation-unconditioned-basement-above-grade.xml,43.372,43.372,29.843,29.843,13.529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.223,4.315,0.835,9.339,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.529,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.666,13.982,9.285,0.702,0.0,0.0,0.0,0.0,1727.7,2766.6,16.207,15.176,0.0,4.01,3.892,0.0,0.0,0.775,-0.295,0.0,5.483,0.0,-0.351,2.59,0.0,0.0,0.0,2.294,-6.083,0.0,-0.089,-0.667,0.0,0.0,-0.013,11.51,0.0,-0.384,0.0,-0.343,-0.552,-2.614,0.0,0.0,1.973,5.43,1354.8,997.6,11399.6,2706.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 -base-foundation-unconditioned-basement-assembly-r.xml,39.993,39.993,29.299,29.299,10.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.176,3.93,0.743,9.319,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.694,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.011,12.333,9.285,0.681,0.0,0.0,0.0,0.0,1718.4,2541.5,14.016,13.101,0.0,4.006,3.864,0.0,0.0,0.771,-0.005,0.0,3.299,0.0,-0.381,2.59,0.0,0.0,0.0,1.489,-5.992,0.0,-0.115,-0.672,0.0,0.0,0.009,11.76,0.0,-1.624,0.0,-0.374,-0.58,-2.561,0.0,0.0,1.246,5.521,1354.8,997.6,11399.5,2706.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 -base-foundation-unconditioned-basement-wall-insulation.xml,46.582,46.582,29.036,29.036,17.547,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.289,3.663,0.678,9.274,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.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,16.421,11.277,9.285,0.633,0.0,0.0,0.0,0.0,1728.8,2560.9,15.495,11.824,0.0,3.747,3.646,0.0,0.0,0.638,-2.551,0.0,12.282,0.0,-0.048,2.459,0.0,0.0,0.0,2.219,-6.234,0.0,0.025,-0.477,0.0,0.0,-0.026,10.417,0.0,-2.065,0.0,-0.038,-0.537,-2.484,0.0,0.0,1.379,5.279,1354.8,997.6,11399.6,2706.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 -base-foundation-unconditioned-basement.xml,41.914,41.914,29.767,29.767,12.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.2,4.286,0.828,9.321,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.37,13.856,9.285,0.683,0.0,0.0,0.0,0.0,1709.1,2693.6,15.065,14.492,0.0,3.999,3.857,0.0,0.0,0.757,-0.249,0.0,4.557,0.0,-0.347,2.583,0.0,0.0,0.0,1.879,-6.034,0.0,-0.107,-0.661,0.0,0.0,-0.001,11.568,0.0,-0.402,0.0,-0.339,-0.573,-2.666,0.0,0.0,1.825,5.478,1354.8,997.6,11399.6,2706.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 -base-foundation-unvented-crawlspace.xml,39.567,39.567,29.868,29.868,9.699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.16,4.313,0.838,9.427,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.08,13.982,9.342,0.684,0.0,0.0,0.0,0.0,1717.6,2623.4,13.772,13.815,0.0,3.983,3.837,0.0,0.0,0.782,0.353,0.0,3.552,0.0,-0.428,2.051,0.0,0.775,0.0,1.357,-7.572,0.0,-0.228,-0.791,0.0,0.0,-0.003,11.843,0.0,-1.714,0.0,-0.42,-0.491,-2.748,-0.198,0.0,1.373,7.659,1354.8,997.6,11399.5,2808.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 -base-foundation-vented-crawlspace.xml,41.853,41.853,29.779,29.779,12.074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.199,4.145,0.794,9.51,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.304,13.167,9.342,0.773,0.0,0.0,0.0,0.0,1725.1,2856.2,15.185,14.202,0.0,3.987,3.843,0.0,0.0,0.762,-0.147,0.0,6.083,0.0,-0.388,1.85,0.0,0.785,0.0,1.897,-7.767,0.0,-0.095,-0.656,0.0,0.0,0.008,11.715,0.0,-2.756,0.0,-0.38,-0.39,-2.602,-0.176,0.0,1.338,7.464,1354.8,997.6,11399.5,2808.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 -base-foundation-walkout-basement.xml,59.722,59.722,36.351,36.351,23.371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.386,4.62,0.906,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.885,15.389,9.234,0.614,0.0,0.0,0.0,0.0,2141.3,3508.8,24.635,19.782,0.0,3.577,3.698,0.514,4.46,0.632,-1.55,0.0,0.0,9.256,-0.102,6.636,0.0,0.73,0.0,5.076,-11.391,0.0,-0.133,-0.536,-0.054,1.649,-0.031,9.923,0.0,0.0,-3.225,-0.052,-1.588,-3.473,-0.166,0.0,3.359,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-1-speed-backup-lockout-temperature.xml,44.301,44.301,44.301,44.301,0.0,0.0,0.0,0.0,0.0,0.0,8.168,0.391,0.81,3.441,1.052,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.845,13.153,9.234,0.612,0.0,0.0,140.0,0.0,8771.8,3174.8,30.366,15.453,0.0,3.656,3.695,0.519,7.266,0.631,-2.133,0.0,0.0,6.725,-0.009,4.771,0.0,0.762,0.0,3.972,-11.383,0.0,-0.011,-0.468,-0.053,2.839,-0.039,9.589,0.0,0.0,-5.732,0.044,-1.205,-3.38,-0.165,0.0,2.026,9.902,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.915,34.915,34.915,34.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.398,1.038,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.974,9.234,0.656,0.0,0.0,0.0,0.0,0.0,3150.9,0.0,15.263,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,-0.034,-0.483,-0.054,2.747,-0.035,9.866,0.0,0.0,-6.38,-0.061,-1.205,-3.05,-0.168,0.0,2.001,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,40.348,40.348,40.348,40.348,0.0,0.0,0.0,0.0,0.0,0.0,8.215,0.152,1.565,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.924,0.0,9.234,0.588,0.0,0.0,0.0,0.0,6016.3,0.0,24.642,0.0,0.0,3.529,3.654,0.515,7.113,0.634,-2.01,0.0,0.0,6.447,-0.121,4.811,0.0,0.729,0.0,5.666,-11.393,0.0,-0.498,-1.033,-0.134,1.133,-0.171,8.08,0.0,0.0,-8.173,-0.06,-1.64,-6.373,-0.279,0.0,-0.0,9.869,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,44.847,44.847,44.847,44.847,0.0,0.0,0.0,0.0,0.0,0.0,8.826,0.145,0.905,3.467,1.065,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.371,13.317,9.234,0.613,0.0,0.0,0.0,0.0,5704.0,3172.9,23.6,15.496,0.0,3.552,3.649,0.514,7.128,0.633,-2.014,0.0,0.0,6.614,-0.119,4.808,0.0,0.729,0.0,4.929,-11.391,0.0,-0.017,-0.473,-0.053,2.761,-0.029,9.811,0.0,0.0,-5.884,-0.058,-1.181,-3.129,-0.167,0.0,2.045,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-1-speed.xml,44.795,44.795,44.795,44.795,0.0,0.0,0.0,0.0,0.0,0.0,8.759,0.145,0.905,3.482,1.065,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.371,13.317,9.234,0.613,0.0,0.0,0.0,0.0,5686.3,3179.7,23.6,15.496,0.0,3.552,3.649,0.514,7.128,0.633,-2.014,0.0,0.0,6.614,-0.119,4.808,0.0,0.729,0.0,4.929,-11.391,0.0,-0.017,-0.473,-0.053,2.761,-0.029,9.811,0.0,0.0,-5.884,-0.058,-1.181,-3.129,-0.167,0.0,2.045,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-2-speed.xml,40.816,40.816,40.816,40.816,0.0,0.0,0.0,0.0,0.0,0.0,6.492,0.143,0.534,2.513,0.695,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.38,13.663,9.234,0.613,0.0,0.0,0.0,0.0,5020.6,2751.3,23.59,16.474,0.0,3.514,3.651,0.514,7.13,0.633,-2.02,0.0,0.0,6.62,-0.118,4.809,0.0,0.729,0.0,5.968,-11.393,0.0,-0.03,-0.472,-0.053,2.762,-0.029,9.805,0.0,0.0,-5.88,-0.057,-1.181,-3.128,-0.167,0.0,2.396,9.894,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,52.306,52.306,38.349,38.349,13.957,0.0,0.0,0.0,0.0,0.0,4.252,0.0,0.511,2.606,0.54,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.957,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.47,16.345,9.234,0.614,0.0,0.0,0.0,44.0,3345.0,2798.1,22.772,16.483,0.0,3.323,3.65,0.514,7.128,0.633,-2.03,0.0,0.0,6.634,-0.118,5.891,0.0,0.728,0.0,11.149,-11.408,0.0,-0.153,-0.464,-0.052,2.789,-0.026,9.824,0.0,0.0,-5.832,-0.057,-1.447,-3.095,-0.165,0.0,5.288,9.88,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,44.653,44.653,41.725,41.725,2.928,0.0,0.0,0.0,0.0,0.0,7.159,0.0,0.98,2.606,0.54,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.592,16.346,9.234,0.614,0.0,0.0,0.0,44.0,3399.3,2798.1,23.895,16.483,0.0,3.275,3.651,0.514,7.13,0.634,-2.028,0.0,0.0,6.637,-0.118,5.892,0.0,0.728,0.0,12.306,-11.408,0.0,-0.153,-0.464,-0.052,2.789,-0.026,9.824,0.0,0.0,-5.832,-0.057,-1.447,-3.095,-0.165,0.0,5.289,9.88,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,44.69,44.69,41.802,41.802,2.889,0.0,0.0,0.0,0.0,0.0,7.159,0.0,1.057,2.606,0.54,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.889,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.906,16.346,9.234,0.614,0.0,0.0,0.0,44.0,3402.7,2798.1,26.518,16.483,0.0,3.262,3.651,0.514,7.13,0.634,-2.028,0.0,0.0,6.638,-0.118,5.892,0.0,0.728,0.0,12.633,-11.408,0.0,-0.153,-0.464,-0.052,2.789,-0.026,9.824,0.0,0.0,-5.832,-0.057,-1.447,-3.095,-0.165,0.0,5.288,9.88,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-var-speed.xml,40.387,40.387,40.387,40.387,0.0,0.0,0.0,0.0,0.0,0.0,6.565,0.066,0.7,2.394,0.222,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.964,14.912,9.234,0.613,0.0,0.0,0.0,0.0,5028.2,2549.9,23.947,17.516,0.0,3.416,3.652,0.514,7.135,0.633,-2.024,0.0,0.0,6.628,-0.117,4.809,0.0,0.729,0.0,8.623,-11.395,0.0,-0.083,-0.471,-0.053,2.764,-0.029,9.799,0.0,0.0,-5.875,-0.055,-1.18,-3.131,-0.167,0.0,3.691,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.51,35.51,35.51,35.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.836,1.195,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.048,9.234,0.656,0.0,0.0,0.0,12.0,0.0,3240.9,0.0,17.199,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,-0.126,-0.483,-0.054,2.748,-0.035,9.867,0.0,0.0,-6.378,-0.061,-1.205,-3.055,-0.169,0.0,4.119,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,40.777,40.777,40.777,40.777,0.0,0.0,0.0,0.0,0.0,0.0,8.452,0.274,1.635,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.895,0.0,9.234,0.588,0.0,0.0,0.0,0.0,6131.5,0.0,24.922,0.0,0.0,3.493,3.655,0.515,7.115,0.634,-2.016,0.0,0.0,6.451,-0.12,4.811,0.0,0.729,0.0,6.662,-11.395,0.0,-0.497,-1.032,-0.134,1.134,-0.171,8.073,0.0,0.0,-8.17,-0.059,-1.639,-6.373,-0.278,0.0,-0.0,9.867,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,46.898,46.898,46.898,46.898,0.0,0.0,0.0,0.0,0.0,0.0,8.957,1.528,0.983,3.809,1.181,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.721,14.845,9.234,0.613,0.0,0.0,0.0,0.0,6595.1,3469.0,24.625,18.584,0.0,3.426,3.652,0.514,7.134,0.633,-2.024,0.0,0.0,6.627,-0.117,4.809,0.0,0.729,0.0,8.37,-11.395,0.0,-0.081,-0.471,-0.053,2.764,-0.029,9.799,0.0,0.0,-5.875,-0.055,-1.18,-3.132,-0.167,0.0,3.601,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,45.171,45.171,45.171,45.171,0.0,0.0,0.0,0.0,0.0,0.0,8.939,0.186,0.993,3.532,1.082,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.1,13.544,9.234,0.613,0.0,0.0,0.0,0.0,5683.2,3239.9,23.75,16.04,0.0,3.526,3.651,0.514,7.13,0.633,-2.02,0.0,0.0,6.619,-0.118,4.809,0.0,0.729,0.0,5.679,-11.393,0.0,-0.026,-0.472,-0.053,2.762,-0.029,9.804,0.0,0.0,-5.88,-0.057,-1.181,-3.129,-0.167,0.0,2.277,9.894,1354.8,997.6,11399.6,2615.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 +base-foundation-basement-garage.xml,52.661,52.661,32.634,32.634,20.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33,4.297,0.828,9.402,0.0,0.0,3.406,0.142,0.277,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.755,14.046,9.365,0.613,0.0,0.0,0.0,0.0,1892.1,3252.9,21.311,18.501,0.0,3.646,4.699,0.512,5.434,0.696,-2.286,0.0,0.815,6.049,-0.038,3.246,0.0,0.734,0.0,4.494,-9.585,0.0,-0.032,-0.631,-0.056,1.94,-0.042,10.006,0.0,-0.117,-4.606,-0.034,-0.789,-2.992,-0.167,0.0,3.267,8.476,1354.8,997.6,11399.6,2849.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 +base-foundation-complex.xml,65.426,65.426,36.929,36.929,28.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.47,5.014,1.005,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.689,17.128,9.234,0.614,0.0,0.0,0.0,0.0,2144.8,3597.8,26.339,20.734,0.0,3.474,3.602,0.507,10.852,0.62,-2.234,0.0,0.0,9.357,-0.056,4.805,0.0,0.727,0.0,6.057,-11.412,0.0,-0.085,-0.472,-0.053,3.692,-0.029,9.831,0.0,0.0,-4.57,-0.051,-1.15,-3.164,-0.163,0.0,3.64,9.876,1354.8,997.6,11399.6,2615.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 +base-foundation-conditioned-basement-slab-insulation.xml,57.367,57.367,36.115,36.115,21.252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.351,4.457,0.868,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.901,14.758,9.234,0.613,0.0,0.0,0.0,0.0,2106.2,3390.0,22.652,18.717,0.0,3.571,3.653,0.514,7.734,0.632,-2.023,0.0,0.0,6.757,-0.06,4.811,0.0,0.729,0.0,4.637,-11.389,0.0,-0.071,-0.477,-0.054,2.527,-0.03,9.797,0.0,0.0,-5.343,-0.055,-1.18,-3.151,-0.167,0.0,3.234,9.898,1354.8,997.6,11399.6,2615.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 +base-foundation-conditioned-basement-wall-insulation.xml,56.08,56.08,35.361,35.361,20.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.342,3.859,0.721,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.402,12.193,9.234,0.614,0.0,0.0,0.0,0.0,2127.1,3204.7,22.433,17.162,0.0,3.585,3.664,0.516,5.126,0.635,-2.012,0.0,0.0,8.909,-0.062,4.821,0.0,0.732,0.0,4.542,-11.401,0.0,0.004,-0.421,-0.046,0.989,-0.017,9.936,0.0,0.0,-6.52,-0.057,-1.148,-2.901,-0.162,0.0,2.831,9.886,1354.8,997.6,11399.6,2615.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 +base-foundation-conditioned-crawlspace.xml,47.296,47.296,28.913,28.913,18.383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.303,3.477,0.64,9.362,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.203,10.691,9.342,0.615,0.0,0.0,0.0,0.0,1731.8,2628.7,15.843,10.853,0.0,3.697,3.592,0.505,5.089,0.619,-2.383,0.0,0.0,9.952,-0.04,3.486,0.0,0.73,0.0,0.0,-8.362,0.0,0.028,-0.47,-0.053,1.787,-0.028,9.996,0.0,0.0,-3.858,-0.036,-0.834,-2.93,-0.163,0.0,0.0,7.484,1354.8,997.6,11399.5,2808.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 +base-foundation-multiple.xml,42.707,42.707,29.675,29.675,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.215,4.193,0.806,9.33,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.199,13.442,9.285,0.693,0.0,0.0,0.0,0.0,1720.9,2656.1,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,-0.388,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-6.065,0.0,-0.098,-0.674,0.0,0.0,-0.018,11.518,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.648,5.447,1354.8,997.6,11399.5,2706.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 +base-foundation-slab.xml,39.927,39.927,29.271,29.271,10.656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.176,3.878,0.734,9.353,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.972,12.217,9.342,0.606,0.0,0.0,0.0,0.0,1712.9,2442.6,12.704,12.011,0.0,3.925,3.798,0.0,0.0,0.682,-1.657,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-8.264,0.0,-0.063,-0.572,0.0,0.0,-0.03,10.711,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.079,7.573,1354.8,997.6,11399.6,2808.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 +base-foundation-unconditioned-basement-above-grade.xml,43.907,43.907,29.819,29.819,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.232,4.281,0.826,9.348,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.189,13.831,9.285,0.712,0.0,0.0,0.0,0.0,1727.8,2758.5,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,-0.369,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-6.089,0.0,-0.081,-0.658,0.0,0.0,-0.013,11.49,0.0,-0.505,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.927,5.424,1354.8,997.6,11399.5,2706.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 +base-foundation-unconditioned-basement-assembly-r.xml,41.166,41.166,29.213,29.213,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.197,3.823,0.716,9.346,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.865,9.285,0.71,0.0,0.0,0.0,0.0,1718.9,2538.1,14.652,12.883,0.0,3.994,3.856,0.0,0.0,0.759,-0.27,0.0,4.456,0.0,-0.343,2.583,0.0,0.0,0.0,1.82,-6.035,0.0,-0.074,-0.626,0.0,0.0,0.009,11.654,0.0,-2.012,0.0,-0.339,-0.564,-2.512,0.0,0.0,1.122,5.478,1354.8,997.6,11399.6,2706.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 +base-foundation-unconditioned-basement-wall-insulation.xml,48.922,48.922,28.926,28.926,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33,3.537,0.647,9.28,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.715,10.743,9.285,0.64,0.0,0.0,0.0,0.0,1729.5,2469.6,16.597,11.56,0.0,3.723,3.619,0.0,0.0,0.633,-2.639,0.0,14.374,0.0,-0.047,2.46,0.0,0.0,0.0,2.599,-6.259,0.0,0.063,-0.441,0.0,0.0,-0.015,10.518,0.0,-2.768,0.0,-0.045,-0.521,-2.405,0.0,0.0,1.301,5.253,1354.8,997.6,11399.6,2706.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 +base-foundation-unconditioned-basement.xml,42.785,42.785,29.704,29.704,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.216,4.208,0.809,9.34,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.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,12.245,13.511,9.285,0.703,0.0,0.0,0.0,0.0,1723.7,2674.7,15.45,14.319,0.0,3.994,3.853,0.0,0.0,0.749,-0.43,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-6.063,0.0,-0.077,-0.629,0.0,0.0,-0.0,11.494,0.0,-0.672,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.722,5.45,1354.8,997.6,11399.6,2706.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 +base-foundation-unvented-crawlspace.xml,40.591,40.591,29.8,29.8,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.178,4.225,0.816,9.45,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.103,13.591,9.342,0.708,0.0,0.0,0.0,0.0,1707.3,2944.0,14.33,13.655,0.0,3.97,3.827,0.0,0.0,0.771,0.151,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-7.628,0.0,-0.196,-0.756,0.0,0.0,-0.002,11.776,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.27,7.603,1354.8,997.6,11399.6,2808.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 +base-foundation-vented-crawlspace.xml,42.539,42.539,29.748,29.748,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.211,4.099,0.783,9.523,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.975,12.966,9.342,0.786,0.0,0.0,0.0,0.0,1723.5,2655.0,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,-0.322,0.0,6.778,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-7.801,0.0,-0.068,-0.628,0.0,0.0,0.007,11.623,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.298,7.43,1354.8,997.6,11399.6,2808.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 +base-foundation-walkout-basement.xml,61.522,61.522,36.298,36.298,25.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.416,4.552,0.889,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.622,15.098,9.234,0.614,0.0,0.0,0.0,0.0,2141.7,3490.2,25.105,19.615,0.0,3.555,3.687,0.512,4.633,0.63,-1.592,0.0,0.0,10.509,-0.063,6.636,0.0,0.729,0.0,5.447,-11.405,0.0,-0.122,-0.526,-0.053,1.621,-0.028,9.958,0.0,0.0,-3.533,-0.059,-1.574,-3.433,-0.165,0.0,3.31,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-air-to-air-heat-pump-1-speed-backup-lockout-temperature.xml,45.515,45.515,45.515,45.515,0.0,0.0,0.0,0.0,0.0,0.0,9.249,0.585,0.931,3.303,1.008,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,12.58,9.234,0.613,0.0,0.0,145.0,0.0,10089.3,3135.0,37.461,15.129,0.0,3.61,3.669,0.515,7.689,0.622,-2.271,0.0,0.0,8.986,0.065,4.748,0.0,0.762,0.0,4.539,-11.407,0.0,0.014,-0.443,-0.05,2.793,-0.034,9.616,0.0,0.0,-6.37,0.055,-1.188,-3.298,-0.162,0.0,1.956,9.88,1354.8,997.6,11399.6,2615.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 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.776,34.776,34.776,34.776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.288,1.003,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.523,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3242.9,0.0,14.995,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.013,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.191,-2.984,-0.166,0.0,1.946,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,41.462,41.462,41.462,41.462,0.0,0.0,0.0,0.0,0.0,0.0,9.081,0.232,1.731,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.283,0.0,9.234,0.59,0.0,0.0,0.0,0.0,6170.7,0.0,25.169,0.0,0.0,3.495,3.637,0.512,7.414,0.629,-2.071,0.0,0.0,8.028,-0.067,4.806,0.0,0.728,0.0,6.225,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.74,45.74,45.74,45.74,0.0,0.0,0.0,0.0,0.0,0.0,9.677,0.222,1.0,3.368,1.033,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.654,12.906,9.234,0.614,0.0,0.0,0.0,0.0,5856.4,3144.6,24.12,15.265,0.0,3.523,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.805,0.0,0.728,0.0,5.415,-11.406,0.0,0.001,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,1.996,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-air-to-air-heat-pump-1-speed.xml,45.681,45.681,45.681,45.681,0.0,0.0,0.0,0.0,0.0,0.0,9.602,0.222,1.0,3.383,1.033,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.654,12.906,9.234,0.614,0.0,0.0,0.0,0.0,5838.7,3151.3,24.12,15.265,0.0,3.523,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.805,0.0,0.728,0.0,5.415,-11.406,0.0,0.001,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,1.996,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-air-to-air-heat-pump-2-speed.xml,41.431,41.431,41.431,41.431,0.0,0.0,0.0,0.0,0.0,0.0,7.062,0.219,0.592,2.444,0.674,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.717,13.246,9.234,0.614,0.0,0.0,0.0,0.0,5173.5,2729.1,24.111,16.233,0.0,3.481,3.635,0.511,7.43,0.629,-2.08,0.0,0.0,8.195,-0.063,4.805,0.0,0.728,0.0,6.51,-11.406,0.0,-0.013,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,2.34,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,53.534,53.534,38.708,38.708,14.826,0.0,0.0,0.0,0.0,0.0,4.634,0.0,0.569,2.543,0.521,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.744,15.918,9.234,0.615,0.0,0.0,0.0,34.0,3367.3,2869.9,23.258,16.461,0.0,3.293,3.636,0.512,7.433,0.629,-2.101,0.0,0.0,8.214,-0.059,5.886,0.0,0.727,0.0,11.622,-11.419,0.0,-0.133,-0.447,-0.05,2.752,-0.022,9.855,0.0,0.0,-6.286,-0.055,-1.432,-3.037,-0.163,0.0,5.213,9.869,1354.8,997.6,11399.6,2615.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 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,45.798,45.798,42.2,42.2,3.598,0.0,0.0,0.0,0.0,0.0,7.636,0.0,1.06,2.543,0.521,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.927,15.917,9.234,0.615,0.0,0.0,0.0,34.0,3401.4,2869.9,24.382,16.461,0.0,3.242,3.637,0.512,7.435,0.629,-2.1,0.0,0.0,8.217,-0.059,5.887,0.0,0.727,0.0,12.844,-11.419,0.0,-0.133,-0.447,-0.05,2.752,-0.022,9.855,0.0,0.0,-6.286,-0.055,-1.432,-3.037,-0.163,0.0,5.212,9.869,1354.8,997.6,11399.6,2615.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 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,45.837,45.837,42.293,42.293,3.544,0.0,0.0,0.0,0.0,0.0,7.636,0.0,1.153,2.543,0.521,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.314,15.918,9.234,0.615,0.0,0.0,0.0,34.0,3411.3,2869.9,27.084,16.461,0.0,3.226,3.637,0.512,7.435,0.629,-2.1,0.0,0.0,8.218,-0.059,5.887,0.0,0.727,0.0,13.243,-11.419,0.0,-0.133,-0.447,-0.05,2.752,-0.022,9.855,0.0,0.0,-6.286,-0.055,-1.432,-3.037,-0.163,0.0,5.213,9.869,1354.8,997.6,11399.6,2615.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 +base-hvac-air-to-air-heat-pump-var-speed.xml,40.976,40.976,40.976,40.976,0.0,0.0,0.0,0.0,0.0,0.0,7.106,0.104,0.776,2.335,0.216,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.289,14.489,9.234,0.614,0.0,0.0,0.0,0.0,5180.2,2604.8,24.465,17.315,0.0,3.381,3.635,0.512,7.434,0.629,-2.078,0.0,0.0,8.2,-0.063,4.805,0.0,0.728,0.0,9.156,-11.406,0.0,-0.067,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.337,-0.059,-1.168,-3.072,-0.165,0.0,3.627,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.362,35.362,35.362,35.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.72,1.156,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.554,9.234,0.663,0.0,0.0,0.0,9.0,0.0,3452.9,0.0,17.182,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.102,-0.463,-0.051,2.705,-0.03,9.926,0.0,0.0,-6.914,-0.064,-1.191,-2.988,-0.166,0.0,4.017,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,41.931,41.931,41.931,41.931,0.0,0.0,0.0,0.0,0.0,0.0,9.316,0.393,1.804,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.328,0.0,9.234,0.59,0.0,0.0,0.0,0.0,6382.7,0.0,25.456,0.0,0.0,3.456,3.638,0.512,7.415,0.629,-2.071,0.0,0.0,8.03,-0.067,4.806,0.0,0.728,0.0,7.297,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.982,47.982,47.982,47.982,0.0,0.0,0.0,0.0,0.0,0.0,9.672,1.952,1.068,3.705,1.146,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.192,14.403,9.234,0.614,0.0,0.0,0.0,0.0,6930.5,3469.0,25.173,18.407,0.0,3.386,3.635,0.512,7.433,0.629,-2.078,0.0,0.0,8.199,-0.063,4.805,0.0,0.728,0.0,9.052,-11.406,0.0,-0.063,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.338,-0.059,-1.168,-3.073,-0.165,0.0,3.519,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.077,46.077,46.077,46.077,0.0,0.0,0.0,0.0,0.0,0.0,9.78,0.283,1.093,3.432,1.049,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.432,13.128,9.234,0.614,0.0,0.0,0.0,0.0,5917.8,3211.0,24.274,15.803,0.0,3.493,3.635,0.511,7.43,0.629,-2.08,0.0,0.0,8.194,-0.063,4.805,0.0,0.728,0.0,6.215,-11.406,0.0,-0.009,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.071,-0.165,0.0,2.223,9.882,1354.8,997.6,11399.6,2615.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 base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml,49.428,49.428,49.428,49.428,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,17.836,5.462,4.848,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66.662,4.659,0.55,0.0,0.0,0.0,0.0,0.0,3523.8,0.0,21.456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.82,0.735,0.136,9.723,0.337,23.998,0.0,0.0,3.137,-0.01,-0.524,-2.899,-0.006,0.0,10.092,21.224,1354.8,997.6,8625.1,1979.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 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,43.854,43.854,43.854,43.854,0.0,0.0,0.0,0.0,0.0,0.0,8.294,0.0,0.821,3.297,1.003,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.341,12.487,9.234,0.613,0.0,0.0,0.0,0.0,4812.3,2963.4,21.833,13.585,0.0,3.626,3.649,0.514,7.126,0.632,-2.016,0.0,0.0,6.61,-0.119,4.808,0.0,0.729,0.0,2.843,-11.391,0.0,0.014,-0.474,-0.053,2.76,-0.029,9.81,0.0,0.0,-5.885,-0.058,-1.181,-3.126,-0.167,0.0,1.199,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,42.563,42.563,42.563,42.563,0.0,0.0,0.0,0.0,0.0,0.0,6.399,1.546,0.689,2.716,0.772,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.678,15.199,9.234,0.613,0.0,0.0,0.0,0.0,6274.8,3104.5,24.488,19.07,0.0,3.388,3.653,0.514,7.135,0.633,-2.023,0.0,0.0,6.629,-0.117,4.809,0.0,0.729,0.0,9.356,-11.395,0.0,-0.095,-0.471,-0.053,2.764,-0.029,9.8,0.0,0.0,-5.874,-0.055,-1.18,-3.131,-0.167,0.0,3.957,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.21,41.21,41.21,41.21,0.0,0.0,0.0,0.0,0.0,0.0,6.555,0.308,0.656,2.545,0.707,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.531,13.908,9.234,0.613,0.0,0.0,0.0,0.0,5349.3,2800.6,23.726,17.113,0.0,3.471,3.652,0.514,7.133,0.633,-2.025,0.0,0.0,6.625,-0.117,4.809,0.0,0.729,0.0,7.151,-11.395,0.0,-0.039,-0.471,-0.053,2.763,-0.029,9.798,0.0,0.0,-5.877,-0.055,-1.18,-3.129,-0.167,0.0,2.645,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.275,40.275,40.275,40.275,0.0,0.0,0.0,0.0,0.0,0.0,6.27,0.0,0.568,2.357,0.641,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.135,12.532,9.234,0.613,0.0,0.0,0.0,0.0,4361.6,2545.4,22.785,13.743,0.0,3.597,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.612,-0.119,4.808,0.0,0.729,0.0,3.661,-11.391,0.0,0.013,-0.474,-0.053,2.76,-0.029,9.81,0.0,0.0,-5.885,-0.058,-1.181,-3.126,-0.167,0.0,1.243,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,40.881,40.881,40.785,40.785,0.095,0.0,0.0,0.0,0.0,0.0,6.947,0.0,0.784,2.386,0.229,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.928,14.969,9.234,0.614,0.0,0.0,0.0,0.0,4458.3,2645.1,24.22,17.949,0.0,3.379,3.65,0.514,7.127,0.633,-2.023,0.0,0.0,6.632,-0.119,5.892,0.0,0.728,0.0,9.567,-11.406,0.0,-0.084,-0.463,-0.052,2.791,-0.026,9.833,0.0,0.0,-5.831,-0.059,-1.446,-3.084,-0.165,0.0,3.853,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,40.903,40.903,40.789,40.789,0.114,0.0,0.0,0.0,0.0,0.0,6.947,0.0,0.787,2.385,0.229,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.114,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.949,14.969,9.234,0.614,0.0,0.0,0.0,0.0,4458.3,2644.8,26.403,17.947,0.0,3.377,3.649,0.514,7.128,0.633,-2.025,0.0,0.0,6.632,-0.118,5.891,0.0,0.728,0.0,9.591,-11.403,0.0,-0.085,-0.464,-0.052,2.792,-0.026,9.832,0.0,0.0,-5.831,-0.058,-1.446,-3.084,-0.165,0.0,3.853,9.884,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,41.356,41.356,41.356,41.356,0.0,0.0,0.0,0.0,0.0,0.0,6.854,0.455,0.825,2.462,0.321,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.912,15.725,9.234,0.613,0.0,0.0,0.0,0.0,5823.9,2913.2,24.611,18.773,0.0,3.342,3.654,0.514,7.137,0.633,-2.029,0.0,0.0,6.634,-0.115,4.809,0.0,0.729,0.0,10.628,-11.397,0.0,-0.122,-0.47,-0.053,2.766,-0.029,9.794,0.0,0.0,-5.87,-0.054,-1.18,-3.134,-0.167,0.0,4.526,9.89,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,40.483,40.483,40.483,40.483,0.0,0.0,0.0,0.0,0.0,0.0,6.621,0.06,0.741,2.393,0.229,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.57,15.076,9.234,0.613,0.0,0.0,0.0,0.0,4977.7,2618.2,24.08,17.78,0.0,3.393,3.653,0.514,7.135,0.633,-2.023,0.0,0.0,6.629,-0.117,4.809,0.0,0.729,0.0,9.248,-11.395,0.0,-0.091,-0.471,-0.053,2.764,-0.029,9.799,0.0,0.0,-5.874,-0.055,-1.18,-3.131,-0.167,0.0,3.857,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.193,40.193,40.193,40.193,0.0,0.0,0.0,0.0,0.0,0.0,6.483,0.0,0.67,2.398,0.202,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.674,14.068,9.234,0.613,0.0,0.0,0.0,0.0,4087.0,2494.6,23.199,16.529,0.0,3.465,3.652,0.514,7.133,0.633,-2.025,0.0,0.0,6.626,-0.117,4.809,0.0,0.729,0.0,7.298,-11.395,0.0,-0.045,-0.471,-0.053,2.763,-0.029,9.798,0.0,0.0,-5.876,-0.055,-1.18,-3.129,-0.167,0.0,2.824,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-boiler-elec-only.xml,46.149,46.149,46.149,46.149,0.0,0.0,0.0,0.0,0.0,0.0,15.566,0.0,0.167,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.429,0.0,9.234,0.588,0.0,0.0,0.0,0.0,5617.0,0.0,15.859,0.0,0.0,3.749,3.651,0.514,7.106,0.633,-2.006,0.0,0.0,6.433,-0.124,4.811,0.0,0.73,0.0,0.0,-11.393,0.0,-0.501,-1.034,-0.134,1.133,-0.171,8.09,0.0,0.0,-8.175,-0.063,-1.639,-6.373,-0.279,0.0,0.0,9.868,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,53.312,53.312,36.564,36.564,16.749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.199,4.657,1.269,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.749,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.6,15.479,9.234,0.613,0.0,0.0,0.0,13.0,2107.2,3361.1,15.859,17.233,0.0,3.746,3.648,0.514,7.122,0.632,-2.016,0.0,0.0,6.605,-0.121,4.809,0.0,0.729,0.0,0.0,-11.393,0.0,-0.115,-0.473,-0.053,2.761,-0.029,9.814,0.0,0.0,-5.882,-0.059,-1.181,-3.134,-0.167,0.0,4.252,9.894,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-boiler-gas-only.xml,47.167,47.167,30.612,30.612,16.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.196,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.429,0.0,9.234,0.588,0.0,0.0,0.0,0.0,2057.0,0.0,15.859,0.0,0.0,3.749,3.651,0.514,7.106,0.633,-2.006,0.0,0.0,6.433,-0.124,4.811,0.0,0.73,0.0,0.0,-11.393,0.0,-0.501,-1.034,-0.134,1.133,-0.171,8.09,0.0,0.0,-8.175,-0.063,-1.639,-6.373,-0.279,0.0,0.0,9.868,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-central-ac-only-1-speed.xml,36.283,36.283,36.283,36.283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.566,1.238,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.094,9.234,0.656,0.0,0.0,0.0,12.0,0.0,3240.6,0.0,17.198,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,-0.128,-0.483,-0.054,2.748,-0.035,9.867,0.0,0.0,-6.378,-0.061,-1.205,-3.055,-0.169,0.0,4.167,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-central-ac-only-2-speed.xml,34.809,34.809,34.809,34.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.516,0.813,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.518,9.234,0.656,0.0,0.0,0.0,6.0,0.0,2850.6,0.0,17.704,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,-0.146,-0.482,-0.054,2.75,-0.035,9.868,0.0,0.0,-6.377,-0.061,-1.205,-3.055,-0.168,0.0,4.594,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-central-ac-only-var-speed.xml,33.969,33.969,33.969,33.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.003,0.487,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.982,9.234,0.656,0.0,0.0,0.0,11.0,0.0,2645.0,0.0,17.142,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,-0.175,-0.482,-0.054,2.749,-0.035,9.867,0.0,0.0,-6.377,-0.061,-1.205,-3.06,-0.169,0.0,5.102,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,46.84,46.84,46.84,46.84,0.0,0.0,0.0,0.0,0.0,0.0,8.546,0.275,1.653,4.657,1.269,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.135,15.48,9.234,0.613,0.0,0.0,0.0,13.0,6181.5,3361.1,24.922,17.234,0.0,3.488,3.652,0.514,7.132,0.633,-2.026,0.0,0.0,6.624,-0.117,4.809,0.0,0.729,0.0,6.732,-11.395,0.0,-0.11,-0.471,-0.053,2.763,-0.029,9.798,0.0,0.0,-5.876,-0.055,-1.181,-3.134,-0.167,0.0,4.252,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,52.59,52.59,41.776,41.776,10.814,0.0,0.0,0.0,0.0,0.0,5.283,0.0,1.062,3.809,1.181,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.125,14.845,9.234,0.613,0.0,0.0,0.0,0.0,3570.4,3469.0,24.624,18.584,0.0,3.407,3.652,0.514,7.134,0.633,-2.024,0.0,0.0,6.628,-0.117,4.809,0.0,0.729,0.0,8.794,-11.395,0.0,-0.081,-0.471,-0.053,2.764,-0.029,9.799,0.0,0.0,-5.875,-0.055,-1.18,-3.132,-0.167,0.0,3.601,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,51.405,51.405,41.303,41.303,10.103,0.0,0.0,0.0,0.0,0.0,4.927,0.0,1.321,3.532,1.082,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.323,13.544,9.234,0.613,0.0,0.0,0.0,0.0,3438.0,3239.9,23.741,16.04,0.0,3.472,3.651,0.514,7.132,0.633,-2.019,0.0,0.0,6.622,-0.118,4.809,0.0,0.729,0.0,6.943,-11.393,0.0,-0.026,-0.472,-0.053,2.762,-0.029,9.804,0.0,0.0,-5.88,-0.057,-1.181,-3.129,-0.167,0.0,2.277,9.894,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,51.405,51.405,41.303,41.303,10.103,0.0,0.0,0.0,0.0,0.0,4.927,0.0,1.321,3.532,1.082,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.103,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.323,13.544,9.234,0.613,0.0,0.0,0.0,0.0,3438.0,3239.9,23.741,16.04,0.0,3.472,3.651,0.514,7.132,0.633,-2.019,0.0,0.0,6.622,-0.118,4.809,0.0,0.729,0.0,6.943,-11.393,0.0,-0.026,-0.472,-0.053,2.762,-0.029,9.804,0.0,0.0,-5.88,-0.057,-1.181,-3.129,-0.167,0.0,2.277,9.894,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,43.521,43.521,35.575,35.575,7.946,0.0,0.0,0.0,0.0,0.0,2.371,0.0,0.499,2.181,0.084,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.801,12.604,9.234,0.613,0.0,0.0,0.0,0.0,2734.9,2189.9,18.829,13.494,0.0,3.611,3.649,0.514,7.126,0.632,-2.015,0.0,0.0,6.611,-0.119,4.808,0.0,0.729,0.0,3.319,-11.391,0.0,0.011,-0.474,-0.053,2.76,-0.029,9.81,0.0,0.0,-5.885,-0.058,-1.181,-3.127,-0.167,0.0,1.329,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-elec-resistance-only.xml,44.858,44.858,44.858,44.858,0.0,0.0,0.0,0.0,0.0,0.0,14.442,0.0,0.0,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.429,0.0,9.234,0.588,0.0,0.0,0.0,0.0,5610.2,0.0,15.871,0.0,0.0,3.749,3.651,0.514,7.106,0.633,-2.006,0.0,0.0,6.433,-0.124,4.811,0.0,0.73,0.0,0.0,-11.393,0.0,-0.501,-1.034,-0.134,1.133,-0.171,8.09,0.0,0.0,-8.175,-0.063,-1.639,-6.373,-0.279,0.0,0.0,9.868,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-evap-cooler-furnace-gas.xml,53.438,53.438,32.013,32.013,21.425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.557,0.0,1.017,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,0.0,0.0,20.268,11.297,9.234,0.613,0.0,0.0,0.0,0.0,2121.1,1944.3,24.256,11.211,0.0,3.525,3.651,0.514,7.13,0.633,-2.027,0.0,0.0,6.621,-0.117,4.809,0.0,0.729,0.0,5.846,-11.395,0.0,0.03,-0.471,-0.053,2.762,-0.029,9.798,0.0,0.0,-5.878,-0.055,-1.18,-3.12,-0.167,0.0,-0.0,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-floor-furnace-propane-only.xml,49.781,49.781,30.417,30.417,0.0,0.0,19.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,15.478,0.0,9.234,0.589,0.0,0.0,0.0,0.0,2021.1,0.0,16.428,0.0,0.0,3.746,3.648,0.514,7.099,0.633,-2.018,0.0,0.0,6.44,-0.123,5.892,0.0,0.728,0.0,0.0,-11.401,0.0,-0.484,-1.017,-0.132,1.191,-0.166,8.141,0.0,0.0,-8.092,-0.063,-2.012,-6.276,-0.275,0.0,0.0,9.861,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-furnace-elec-only.xml,50.846,50.846,50.846,50.846,0.0,0.0,0.0,0.0,0.0,0.0,19.88,0.0,0.55,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.032,0.0,9.234,0.588,0.0,0.0,0.0,0.0,8166.5,0.0,24.256,0.0,0.0,3.53,3.654,0.515,7.114,0.634,-2.017,0.0,0.0,6.448,-0.12,4.811,0.0,0.729,0.0,5.781,-11.395,0.0,-0.497,-1.032,-0.134,1.134,-0.171,8.073,0.0,0.0,-8.17,-0.059,-1.639,-6.373,-0.278,0.0,-0.0,9.867,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,56.419,56.419,35.304,35.304,21.115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.45,3.582,0.833,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.876,15.898,9.234,0.613,0.0,0.0,0.0,6.0,2152.2,2974.5,23.728,17.725,0.0,3.539,3.651,0.514,7.13,0.633,-2.027,0.0,0.0,6.62,-0.117,4.809,0.0,0.729,0.0,5.449,-11.395,0.0,-0.129,-0.471,-0.053,2.765,-0.029,9.8,0.0,0.0,-5.875,-0.055,-1.18,-3.133,-0.167,0.0,4.675,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,55.563,55.563,34.445,34.445,21.118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.452,3.053,0.502,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.118,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.88,16.358,9.234,0.613,0.0,0.0,0.0,12.0,2152.4,2760.5,23.734,17.151,0.0,3.539,3.651,0.514,7.13,0.633,-2.027,0.0,0.0,6.62,-0.117,4.809,0.0,0.729,0.0,5.454,-11.395,0.0,-0.157,-0.471,-0.053,2.764,-0.029,9.799,0.0,0.0,-5.875,-0.055,-1.181,-3.138,-0.167,0.0,5.181,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-furnace-gas-only.xml,52.143,52.143,30.966,30.966,21.176,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.55,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,20.032,0.0,9.234,0.588,0.0,0.0,0.0,0.0,2120.4,0.0,24.256,0.0,0.0,3.53,3.654,0.515,7.114,0.634,-2.017,0.0,0.0,6.448,-0.12,4.811,0.0,0.729,0.0,5.781,-11.395,0.0,-0.497,-1.032,-0.134,1.134,-0.171,8.073,0.0,0.0,-8.17,-0.059,-1.639,-6.373,-0.278,0.0,-0.0,9.867,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-furnace-gas-room-ac.xml,57.564,57.564,36.139,36.139,21.425,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.557,5.143,0.0,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,0.0,0.0,20.268,11.294,9.234,0.613,0.0,0.0,0.0,0.0,2121.1,3033.3,24.256,10.657,0.0,3.525,3.651,0.514,7.13,0.633,-2.027,0.0,0.0,6.621,-0.117,4.809,0.0,0.729,0.0,5.846,-11.395,0.0,0.03,-0.472,-0.053,2.762,-0.029,9.797,0.0,0.0,-5.878,-0.055,-1.18,-3.121,-0.167,0.0,-0.0,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.444,34.444,34.444,34.444,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.101,0.863,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.564,9.234,0.656,0.0,0.0,0.0,0.0,0.0,2823.8,0.0,18.605,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,-0.105,-0.482,-0.054,2.749,-0.035,9.868,0.0,0.0,-6.377,-0.061,-1.205,-3.054,-0.168,0.0,3.626,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,35.947,35.947,35.947,35.947,0.0,0.0,0.0,0.0,0.0,0.0,4.839,0.0,0.693,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.516,0.0,9.234,0.588,0.0,0.0,0.0,0.0,3336.8,0.0,22.686,0.0,0.0,3.583,3.652,0.514,7.111,0.633,-2.005,0.0,0.0,6.441,-0.123,4.81,0.0,0.729,0.0,4.221,-11.391,0.0,-0.5,-1.034,-0.134,1.133,-0.171,8.087,0.0,0.0,-8.176,-0.062,-1.64,-6.373,-0.279,0.0,-0.001,9.871,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.273,39.273,39.273,39.273,0.0,0.0,0.0,0.0,0.0,0.0,4.839,0.0,0.593,2.618,0.783,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.466,13.8,9.234,0.613,0.0,0.0,0.0,0.0,3294.1,2544.5,22.287,16.028,0.0,3.587,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.612,-0.119,4.808,0.0,0.729,0.0,3.999,-11.391,0.0,-0.039,-0.473,-0.053,2.761,-0.029,9.811,0.0,0.0,-5.883,-0.058,-1.181,-3.131,-0.167,0.0,2.545,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.151,39.151,39.151,39.151,0.0,0.0,0.0,0.0,0.0,0.0,4.72,0.0,0.39,2.561,1.041,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.848,13.297,9.234,0.613,0.0,0.0,0.0,0.0,3187.6,2592.8,20.971,15.327,0.0,3.609,3.649,0.514,7.126,0.632,-2.016,0.0,0.0,6.611,-0.119,4.808,0.0,0.729,0.0,3.368,-11.391,0.0,-0.016,-0.473,-0.053,2.761,-0.029,9.811,0.0,0.0,-5.884,-0.058,-1.181,-3.128,-0.167,0.0,2.018,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.151,39.151,39.151,39.151,0.0,0.0,0.0,0.0,0.0,0.0,4.72,0.0,0.39,2.561,1.041,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.848,13.297,9.234,0.613,0.0,0.0,0.0,0.0,3187.6,2592.8,20.971,15.327,0.0,3.609,3.649,0.514,7.126,0.632,-2.016,0.0,0.0,6.611,-0.119,4.808,0.0,0.729,0.0,3.368,-11.391,0.0,-0.016,-0.473,-0.053,2.761,-0.029,9.811,0.0,0.0,-5.884,-0.058,-1.181,-3.128,-0.167,0.0,2.018,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.12,33.12,33.12,33.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.521,0.119,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.987,9.234,0.656,0.0,0.0,0.0,0.0,0.0,2798.2,0.0,13.758,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,-0.038,-0.483,-0.054,2.747,-0.035,9.866,0.0,0.0,-6.38,-0.061,-1.205,-3.053,-0.168,0.0,2.041,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,33.12,33.12,33.12,33.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.521,0.119,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.987,9.234,0.656,0.0,0.0,0.0,0.0,0.0,2798.2,0.0,13.758,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,-0.038,-0.483,-0.054,2.747,-0.035,9.866,0.0,0.0,-6.38,-0.061,-1.205,-3.053,-0.168,0.0,2.041,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,35.611,35.611,35.611,35.611,0.0,0.0,0.0,0.0,0.0,0.0,4.727,0.158,0.311,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.563,0.0,9.234,0.588,0.0,0.0,0.0,0.0,4426.1,0.0,18.89,0.0,0.0,3.616,3.652,0.514,7.11,0.633,-2.006,0.0,0.0,6.439,-0.123,4.81,0.0,0.729,0.0,3.246,-11.391,0.0,-0.5,-1.034,-0.134,1.133,-0.171,8.087,0.0,0.0,-8.176,-0.062,-1.64,-6.373,-0.279,0.0,-0.0,9.871,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,38.733,38.733,38.733,38.733,0.0,0.0,0.0,0.0,0.0,0.0,5.007,0.622,0.311,2.258,0.095,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.297,13.026,9.234,0.613,0.0,0.0,0.0,0.0,5000.0,2340.9,19.082,13.722,0.0,3.595,3.65,0.514,7.127,0.633,-2.022,0.0,0.0,6.615,-0.118,4.809,0.0,0.729,0.0,3.829,-11.393,0.0,-0.005,-0.472,-0.053,2.761,-0.029,9.804,0.0,0.0,-5.882,-0.057,-1.181,-3.129,-0.167,0.0,1.767,9.894,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,37.925,37.925,37.925,37.925,0.0,0.0,0.0,0.0,0.0,0.0,4.778,0.165,0.279,2.181,0.084,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.716,12.604,9.234,0.613,0.0,0.0,0.0,0.0,4418.8,2189.9,18.829,13.494,0.0,3.614,3.649,0.514,7.126,0.632,-2.015,0.0,0.0,6.611,-0.119,4.808,0.0,0.729,0.0,3.232,-11.391,0.0,0.011,-0.474,-0.053,2.76,-0.029,9.81,0.0,0.0,-5.885,-0.058,-1.181,-3.127,-0.167,0.0,1.329,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,37.549,37.549,37.549,37.549,0.0,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.265,2.256,0.079,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.746,11.935,9.234,0.613,0.0,0.0,0.0,0.0,3481.0,2224.9,18.447,12.385,0.0,3.647,3.649,0.514,7.125,0.632,-2.016,0.0,0.0,6.609,-0.119,4.808,0.0,0.729,0.0,2.235,-11.391,0.0,0.027,-0.474,-0.053,2.76,-0.029,9.81,0.0,0.0,-5.885,-0.058,-1.181,-3.125,-0.167,0.0,0.645,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,37.274,37.274,37.047,37.047,0.0,0.227,0.0,0.0,0.0,0.0,4.399,0.0,0.101,2.077,0.029,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.649,11.194,9.234,0.614,0.0,0.0,0.0,0.0,3292.7,2080.9,16.428,11.374,0.0,3.745,3.646,0.513,7.116,0.632,-2.033,0.0,0.0,6.611,-0.118,5.891,0.0,0.728,0.0,0.0,-11.404,0.0,0.035,-0.464,-0.052,2.79,-0.026,9.83,0.0,0.0,-5.835,-0.058,-1.446,-3.073,-0.165,0.0,0.0,9.884,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-ptac-with-heating.xml,49.137,49.137,49.137,49.137,0.0,0.0,0.0,0.0,0.0,0.0,14.613,0.0,0.0,4.085,0.0,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.6,11.294,9.234,0.613,0.0,0.0,0.0,0.0,5610.2,2731.6,15.871,10.657,0.0,3.745,3.646,0.514,7.12,0.632,-2.011,0.0,0.0,6.6,-0.121,4.808,0.0,0.729,0.0,0.0,-11.389,0.0,0.025,-0.474,-0.053,2.759,-0.029,9.818,0.0,0.0,-5.888,-0.06,-1.181,-3.121,-0.167,0.0,0.0,9.898,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-ptac.xml,34.47,34.47,34.47,34.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.991,0.0,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.991,9.234,0.656,0.0,0.0,0.0,0.0,0.0,2627.2,0.0,10.584,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,0.009,-0.483,-0.054,2.747,-0.035,9.866,0.0,0.0,-6.38,-0.061,-1.205,-3.043,-0.168,0.0,0.0,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,40.764,40.764,40.764,40.764,0.0,0.0,0.0,0.0,0.0,0.0,5.705,0.711,0.0,3.909,0.0,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.6,11.296,9.234,0.613,0.0,0.0,0.0,0.0,4472.0,2691.1,15.871,11.212,0.0,3.745,3.646,0.514,7.12,0.632,-2.011,0.0,0.0,6.6,-0.121,4.808,0.0,0.729,0.0,0.0,-11.389,0.0,0.025,-0.474,-0.053,2.759,-0.029,9.819,0.0,0.0,-5.888,-0.06,-1.181,-3.12,-0.167,0.0,0.0,9.898,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,40.96,40.96,40.96,40.96,0.0,0.0,0.0,0.0,0.0,0.0,6.347,0.063,0.0,4.11,0.0,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.6,11.296,9.234,0.613,0.0,0.0,0.0,0.0,3805.6,2778.8,15.871,11.212,0.0,3.745,3.646,0.514,7.12,0.632,-2.011,0.0,0.0,6.6,-0.121,4.808,0.0,0.729,0.0,0.0,-11.389,0.0,0.025,-0.474,-0.053,2.759,-0.029,9.819,0.0,0.0,-5.888,-0.06,-1.181,-3.12,-0.167,0.0,0.0,9.898,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,41.453,41.453,41.453,41.453,0.0,0.0,0.0,0.0,0.0,0.0,6.74,0.0,0.0,4.273,0.0,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.6,11.296,9.234,0.613,0.0,0.0,0.0,0.0,3941.1,2851.9,15.871,11.212,0.0,3.745,3.646,0.514,7.12,0.632,-2.011,0.0,0.0,6.6,-0.121,4.808,0.0,0.729,0.0,0.0,-11.389,0.0,0.025,-0.474,-0.053,2.759,-0.029,9.819,0.0,0.0,-5.888,-0.06,-1.181,-3.12,-0.167,0.0,0.0,9.898,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-room-ac-only.xml,35.503,35.503,35.503,35.503,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.024,0.0,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.991,9.234,0.656,0.0,0.0,0.0,0.0,0.0,2937.8,0.0,10.584,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,0.009,-0.483,-0.054,2.747,-0.035,9.866,0.0,0.0,-6.38,-0.061,-1.205,-3.043,-0.168,0.0,0.0,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-stove-oil-only.xml,49.759,49.759,30.506,30.506,0.0,19.254,0.0,0.0,0.0,0.0,0.0,0.0,0.089,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.478,0.0,9.234,0.589,0.0,0.0,0.0,0.0,2037.0,0.0,16.428,0.0,0.0,3.746,3.648,0.514,7.099,0.633,-2.018,0.0,0.0,6.44,-0.123,5.892,0.0,0.728,0.0,0.0,-11.401,0.0,-0.484,-1.017,-0.132,1.191,-0.166,8.141,0.0,0.0,-8.092,-0.063,-2.012,-6.276,-0.275,0.0,0.0,9.861,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-wall-furnace-elec-only.xml,45.152,45.152,45.152,45.152,0.0,0.0,0.0,0.0,0.0,0.0,14.736,0.0,0.0,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.429,0.0,9.234,0.588,0.0,0.0,0.0,0.0,5692.6,0.0,15.871,0.0,0.0,3.748,3.65,0.514,7.104,0.633,-2.001,0.0,0.0,6.429,-0.124,4.81,0.0,0.729,0.0,0.0,-11.389,0.0,-0.502,-1.035,-0.134,1.131,-0.171,8.094,0.0,0.0,-8.18,-0.063,-1.64,-6.373,-0.279,0.0,0.0,9.873,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize.xml,57.51,57.51,36.373,36.373,21.137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.458,4.572,0.903,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.137,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.904,15.397,9.234,0.613,0.0,0.0,0.0,8.0,2153.5,3229.6,23.767,17.392,0.0,3.538,3.651,0.514,7.13,0.633,-2.027,0.0,0.0,6.62,-0.117,4.809,0.0,0.729,0.0,5.478,-11.395,0.0,-0.107,-0.471,-0.053,2.764,-0.029,9.799,0.0,0.0,-5.876,-0.055,-1.181,-3.133,-0.167,0.0,4.168,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-boiler-coal-only.xml,47.788,47.788,30.629,30.629,0.0,0.0,0.0,0.0,0.0,17.159,0.0,0.0,0.213,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.429,0.0,9.234,0.588,0.0,0.0,0.0,0.0,2060.1,0.0,15.857,0.0,0.0,3.749,3.651,0.514,7.106,0.633,-2.006,0.0,0.0,6.433,-0.124,4.811,0.0,0.73,0.0,0.0,-11.393,0.0,-0.501,-1.034,-0.134,1.133,-0.171,8.09,0.0,0.0,-8.175,-0.063,-1.639,-6.373,-0.279,0.0,0.0,9.868,1354.8,997.6,11399.6,2615.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 -base-hvac-boiler-elec-only.xml,46.726,46.726,46.726,46.726,0.0,0.0,0.0,0.0,0.0,0.0,16.2,0.0,0.11,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.429,0.0,9.234,0.588,0.0,0.0,0.0,0.0,5769.9,0.0,15.857,0.0,0.0,3.749,3.651,0.514,7.106,0.633,-2.006,0.0,0.0,6.433,-0.124,4.811,0.0,0.73,0.0,0.0,-11.393,0.0,-0.501,-1.034,-0.134,1.133,-0.171,8.09,0.0,0.0,-8.175,-0.063,-1.639,-6.373,-0.279,0.0,0.0,9.868,1354.8,997.6,11399.6,2615.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 -base-hvac-boiler-gas-central-ac-1-speed.xml,53.682,53.682,36.241,36.241,17.441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.131,4.463,1.207,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.6,14.509,9.234,0.613,0.0,0.0,0.0,0.0,2095.0,3503.0,15.857,18.314,0.0,3.746,3.648,0.514,7.122,0.632,-2.016,0.0,0.0,6.604,-0.121,4.809,0.0,0.729,0.0,0.0,-11.393,0.0,-0.07,-0.473,-0.053,2.762,-0.029,9.815,0.0,0.0,-5.882,-0.059,-1.18,-3.131,-0.167,0.0,3.258,9.894,1354.8,997.6,11399.6,2615.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 -base-hvac-boiler-gas-only.xml,47.783,47.783,30.546,30.546,17.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.13,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.429,0.0,9.234,0.588,0.0,0.0,0.0,0.0,2044.9,0.0,15.857,0.0,0.0,3.749,3.651,0.514,7.106,0.633,-2.006,0.0,0.0,6.433,-0.124,4.811,0.0,0.73,0.0,0.0,-11.393,0.0,-0.501,-1.034,-0.134,1.133,-0.171,8.09,0.0,0.0,-8.175,-0.063,-1.639,-6.373,-0.279,0.0,0.0,9.868,1354.8,997.6,11399.6,2615.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 -base-hvac-boiler-oil-only.xml,47.788,47.788,30.629,30.629,0.0,17.159,0.0,0.0,0.0,0.0,0.0,0.0,0.213,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.159,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.429,0.0,9.234,0.588,0.0,0.0,0.0,0.0,2060.1,0.0,15.857,0.0,0.0,3.749,3.651,0.514,7.106,0.633,-2.006,0.0,0.0,6.433,-0.124,4.811,0.0,0.73,0.0,0.0,-11.393,0.0,-0.501,-1.034,-0.134,1.133,-0.171,8.09,0.0,0.0,-8.175,-0.063,-1.639,-6.373,-0.279,0.0,0.0,9.868,1354.8,997.6,11399.6,2615.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 -base-hvac-boiler-propane-only.xml,47.782,47.782,30.526,30.526,0.0,0.0,17.256,0.0,0.0,0.0,0.0,0.0,0.11,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.429,0.0,9.234,0.588,0.0,0.0,0.0,0.0,2041.3,0.0,15.857,0.0,0.0,3.749,3.651,0.514,7.106,0.633,-2.006,0.0,0.0,6.433,-0.124,4.811,0.0,0.73,0.0,0.0,-11.393,0.0,-0.501,-1.034,-0.134,1.133,-0.171,8.09,0.0,0.0,-8.175,-0.063,-1.639,-6.373,-0.279,0.0,0.0,9.868,1354.8,997.6,11399.6,2615.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 -base-hvac-boiler-wood-only.xml,47.782,47.782,30.526,30.526,0.0,0.0,0.0,17.256,0.0,0.0,0.0,0.0,0.11,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.256,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.429,0.0,9.234,0.588,0.0,0.0,0.0,0.0,2041.3,0.0,15.857,0.0,0.0,3.749,3.651,0.514,7.106,0.633,-2.006,0.0,0.0,6.433,-0.124,4.811,0.0,0.73,0.0,0.0,-11.393,0.0,-0.501,-1.034,-0.134,1.133,-0.171,8.09,0.0,0.0,-8.175,-0.063,-1.639,-6.373,-0.279,0.0,0.0,9.868,1354.8,997.6,11399.6,2615.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 -base-hvac-central-ac-only-1-speed-seer2.xml,36.015,36.015,36.015,36.015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.358,1.177,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.139,9.234,0.656,0.0,0.0,0.0,0.0,0.0,3463.2,0.0,18.049,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,-0.085,-0.483,-0.054,2.748,-0.035,9.867,0.0,0.0,-6.378,-0.061,-1.205,-3.053,-0.168,0.0,3.19,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-central-ac-only-1-speed.xml,36.03,36.03,36.03,36.03,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.374,1.177,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.139,9.234,0.656,0.0,0.0,0.0,0.0,0.0,3471.1,0.0,18.049,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,-0.085,-0.483,-0.054,2.748,-0.035,9.867,0.0,0.0,-6.378,-0.061,-1.205,-3.053,-0.168,0.0,3.19,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-central-ac-only-2-speed.xml,34.607,34.607,34.607,34.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.35,0.778,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.673,9.234,0.656,0.0,0.0,0.0,0.0,0.0,3037.5,0.0,18.729,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,-0.107,-0.482,-0.054,2.749,-0.035,9.868,0.0,0.0,-6.377,-0.061,-1.205,-3.052,-0.168,0.0,3.73,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-central-ac-only-var-speed.xml,33.7,33.7,33.7,33.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.897,0.324,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.417,9.234,0.656,0.0,0.0,0.0,0.0,0.0,2776.0,0.0,18.646,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,-0.146,-0.482,-0.054,2.75,-0.035,9.868,0.0,0.0,-6.376,-0.061,-1.205,-3.056,-0.168,0.0,4.519,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,46.151,46.151,46.151,46.151,0.0,0.0,0.0,0.0,0.0,0.0,8.306,0.153,1.582,4.463,1.207,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.153,14.51,9.234,0.613,0.0,0.0,0.0,0.0,6066.3,3503.0,24.642,18.315,0.0,3.524,3.651,0.514,7.13,0.633,-2.02,0.0,0.0,6.619,-0.118,4.809,0.0,0.729,0.0,5.725,-11.393,0.0,-0.067,-0.472,-0.053,2.763,-0.029,9.805,0.0,0.0,-5.879,-0.057,-1.181,-3.131,-0.167,0.0,3.258,9.894,1354.8,997.6,11399.6,2615.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 -base-hvac-dse.xml,56.403,56.403,36.899,36.899,19.505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.322,5.173,0.964,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.505,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.6,11.297,9.234,0.613,0.0,0.0,0.0,0.0,2117.8,2638.5,15.871,11.212,0.0,3.745,3.646,0.514,7.12,0.632,-2.011,0.0,0.0,6.6,-0.121,4.808,0.0,0.729,0.0,0.0,-11.389,0.0,0.025,-0.474,-0.053,2.759,-0.029,9.819,0.0,0.0,-5.888,-0.06,-1.181,-3.12,-0.167,0.0,0.0,9.898,1354.8,997.6,11399.6,2615.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 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml,50.583,50.583,50.583,50.583,0.0,0.0,0.0,0.0,0.0,0.0,4.82,9.432,1.344,3.482,1.065,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.86,13.318,9.234,0.613,0.0,0.0,0.0,0.0,7889.9,3179.7,23.586,15.496,0.0,3.487,3.65,0.514,7.13,0.633,-2.012,0.0,0.0,6.618,-0.119,4.808,0.0,0.729,0.0,6.468,-11.391,0.0,-0.017,-0.473,-0.053,2.761,-0.029,9.811,0.0,0.0,-5.884,-0.058,-1.181,-3.129,-0.167,0.0,2.045,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,51.08,51.08,41.151,41.151,9.929,0.0,0.0,0.0,0.0,0.0,4.82,0.0,1.344,3.482,1.065,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.929,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.86,13.318,9.234,0.613,0.0,0.0,0.0,0.0,3387.2,3179.7,23.586,15.496,0.0,3.487,3.65,0.514,7.13,0.633,-2.012,0.0,0.0,6.618,-0.119,4.808,0.0,0.729,0.0,6.468,-11.391,0.0,-0.017,-0.473,-0.053,2.761,-0.029,9.811,0.0,0.0,-5.884,-0.058,-1.181,-3.129,-0.167,0.0,2.045,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,48.289,48.289,38.08,38.08,10.209,0.0,0.0,0.0,0.0,0.0,3.508,0.0,0.924,2.513,0.695,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.209,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.346,13.663,9.234,0.613,0.0,0.0,0.0,0.0,2961.5,2751.3,23.585,16.474,0.0,3.471,3.651,0.514,7.132,0.633,-2.019,0.0,0.0,6.622,-0.118,4.809,0.0,0.729,0.0,6.967,-11.393,0.0,-0.03,-0.472,-0.053,2.762,-0.029,9.805,0.0,0.0,-5.88,-0.057,-1.181,-3.128,-0.167,0.0,2.396,9.894,1354.8,997.6,11399.6,2615.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 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,48.086,48.086,38.061,38.061,10.025,0.0,0.0,0.0,0.0,0.0,3.541,0.0,1.462,2.394,0.223,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.025,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.427,14.914,9.234,0.613,0.0,0.0,0.0,0.0,2961.6,2549.9,23.941,17.516,0.0,3.396,3.653,0.514,7.135,0.633,-2.023,0.0,0.0,6.629,-0.117,4.809,0.0,0.729,0.0,9.102,-11.395,0.0,-0.083,-0.471,-0.053,2.764,-0.029,9.799,0.0,0.0,-5.875,-0.055,-1.18,-3.131,-0.167,0.0,3.692,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,43.551,43.551,35.838,35.838,7.713,0.0,0.0,0.0,0.0,0.0,2.437,0.0,0.659,2.221,0.081,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.482,12.23,9.234,0.613,0.0,0.0,0.0,0.0,2604.1,2209.7,18.652,12.969,0.0,3.622,3.649,0.514,7.126,0.632,-2.016,0.0,0.0,6.611,-0.119,4.808,0.0,0.729,0.0,2.992,-11.391,0.0,0.021,-0.474,-0.053,2.76,-0.029,9.81,0.0,0.0,-5.885,-0.058,-1.181,-3.126,-0.167,0.0,0.946,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-ducts-area-fractions.xml,90.409,90.409,46.612,46.612,43.797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.571,7.944,1.671,9.005,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.874,28.959,9.146,0.612,0.0,0.0,2.0,48.0,2574.5,5002.0,48.896,34.975,0.0,3.243,7.881,1.072,7.515,0.668,-3.654,0.0,0.0,7.362,-0.197,11.14,0.0,0.746,0.0,18.994,-14.489,0.0,-0.382,-1.044,-0.101,2.748,-0.023,20.238,0.0,0.0,-5.938,-0.111,-2.491,-6.329,-0.162,0.0,10.708,12.239,1354.8,997.6,11399.6,2460.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-area-multipliers.xml,55.416,55.416,35.868,35.868,19.548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.322,4.28,0.826,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.548,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.31,14.083,9.234,0.613,0.0,0.0,0.0,0.0,2129.3,3255.1,21.616,17.588,0.0,3.593,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.612,-0.119,4.808,0.0,0.729,0.0,3.839,-11.391,0.0,-0.05,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.883,-0.058,-1.181,-3.129,-0.167,0.0,2.82,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-ducts-leakage-cfm50.xml,55.594,55.594,35.884,35.884,19.711,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.325,4.291,0.828,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,18.47,14.227,9.234,0.613,0.0,0.0,0.0,0.0,2129.4,3298.7,21.7,18.026,0.0,3.583,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.022,-11.391,0.0,-0.055,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.883,-0.058,-1.181,-3.129,-0.167,0.0,3.021,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-ducts-leakage-percent.xml,57.258,57.258,36.194,36.194,21.064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.347,4.524,0.883,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.73,15.08,9.234,0.613,0.0,0.0,0.0,0.0,2133.5,3499.8,23.466,19.767,0.0,3.542,3.65,0.514,7.129,0.633,-2.021,0.0,0.0,6.617,-0.118,4.809,0.0,0.729,0.0,5.304,-11.393,0.0,-0.093,-0.472,-0.053,2.763,-0.029,9.806,0.0,0.0,-5.878,-0.057,-1.181,-3.132,-0.167,0.0,3.853,9.894,1354.8,997.6,11399.6,2615.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 -base-hvac-elec-resistance-only.xml,44.858,44.858,44.858,44.858,0.0,0.0,0.0,0.0,0.0,0.0,14.442,0.0,0.0,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.429,0.0,9.234,0.588,0.0,0.0,0.0,0.0,5610.2,0.0,15.871,0.0,0.0,3.749,3.651,0.514,7.106,0.633,-2.006,0.0,0.0,6.433,-0.124,4.811,0.0,0.73,0.0,0.0,-11.393,0.0,-0.501,-1.034,-0.134,1.133,-0.171,8.09,0.0,0.0,-8.175,-0.063,-1.639,-6.373,-0.279,0.0,0.0,9.868,1354.8,997.6,11399.6,2615.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 -base-hvac-evap-cooler-furnace-gas.xml,52.502,52.502,31.816,31.816,20.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.538,0.0,0.839,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.568,11.297,9.234,0.613,0.0,0.0,0.0,0.0,2118.0,1877.4,23.266,11.221,0.0,3.549,3.65,0.514,7.129,0.633,-2.021,0.0,0.0,6.617,-0.118,4.808,0.0,0.729,0.0,5.127,-11.393,0.0,0.029,-0.472,-0.053,2.761,-0.029,9.804,0.0,0.0,-5.881,-0.057,-1.181,-3.12,-0.167,0.0,-0.0,9.894,1354.8,997.6,11399.6,2615.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 -base-hvac-evap-cooler-only-ducted.xml,31.384,31.384,31.384,31.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.905,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.943,9.234,0.656,0.0,0.0,0.0,0.0,0.0,1885.3,0.0,15.235,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,0.003,-0.483,-0.054,2.746,-0.035,9.865,0.0,0.0,-6.381,-0.061,-1.205,-3.046,-0.169,0.0,0.936,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-evap-cooler-only.xml,31.299,31.299,31.299,31.299,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.819,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.993,9.234,0.656,0.0,0.0,0.0,0.0,0.0,1789.3,0.0,11.047,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,0.009,-0.483,-0.054,2.747,-0.035,9.866,0.0,0.0,-6.38,-0.061,-1.205,-3.042,-0.169,0.0,0.0,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-fireplace-wood-only.xml,49.781,49.781,30.417,30.417,0.0,0.0,0.0,19.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,15.478,0.0,9.234,0.589,0.0,0.0,0.0,0.0,2021.1,0.0,16.428,0.0,0.0,3.746,3.648,0.514,7.099,0.633,-2.018,0.0,0.0,6.44,-0.123,5.892,0.0,0.728,0.0,0.0,-11.401,0.0,-0.484,-1.017,-0.132,1.191,-0.166,8.141,0.0,0.0,-8.092,-0.063,-2.012,-6.276,-0.275,0.0,0.0,9.861,1354.8,997.6,11399.6,2615.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 -base-hvac-fixed-heater-gas-only.xml,44.858,44.858,30.416,30.416,14.442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.429,0.0,9.234,0.588,0.0,0.0,0.0,0.0,2021.1,0.0,15.871,0.0,0.0,3.748,3.65,0.514,7.104,0.633,-2.001,0.0,0.0,6.429,-0.124,4.81,0.0,0.729,0.0,0.0,-11.389,0.0,-0.502,-1.035,-0.134,1.131,-0.171,8.094,0.0,0.0,-8.18,-0.063,-1.64,-6.373,-0.279,0.0,0.0,9.873,1354.8,997.6,11399.6,2615.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 -base-hvac-floor-furnace-propane-only.xml,49.781,49.781,30.417,30.417,0.0,0.0,19.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,15.478,0.0,9.234,0.589,0.0,0.0,0.0,0.0,2021.1,0.0,16.428,0.0,0.0,3.746,3.648,0.514,7.099,0.633,-2.018,0.0,0.0,6.44,-0.123,5.892,0.0,0.728,0.0,0.0,-11.401,0.0,-0.484,-1.017,-0.132,1.191,-0.166,8.141,0.0,0.0,-8.092,-0.063,-2.012,-6.276,-0.275,0.0,0.0,9.861,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-coal-only.xml,51.393,51.393,30.948,30.948,0.0,0.0,0.0,0.0,0.0,20.445,0.0,0.0,0.532,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.34,0.0,9.234,0.588,0.0,0.0,0.0,0.0,2117.3,0.0,23.266,0.0,0.0,3.554,3.653,0.514,7.112,0.634,-2.011,0.0,0.0,6.445,-0.121,4.81,0.0,0.729,0.0,5.07,-11.393,0.0,-0.498,-1.033,-0.134,1.133,-0.171,8.08,0.0,0.0,-8.173,-0.06,-1.64,-6.373,-0.279,0.0,-0.0,9.869,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-elec-central-ac-1-speed.xml,54.517,54.517,54.517,54.517,0.0,0.0,0.0,0.0,0.0,0.0,18.522,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,7495.4,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-elec-only.xml,50.141,50.141,50.141,50.141,0.0,0.0,0.0,0.0,0.0,0.0,19.194,0.0,0.532,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.34,0.0,9.234,0.588,0.0,0.0,0.0,0.0,7869.7,0.0,23.266,0.0,0.0,3.554,3.653,0.514,7.112,0.634,-2.011,0.0,0.0,6.445,-0.121,4.81,0.0,0.729,0.0,5.07,-11.393,0.0,-0.498,-1.033,-0.134,1.133,-0.171,8.08,0.0,0.0,-8.173,-0.06,-1.64,-6.373,-0.279,0.0,-0.0,9.869,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-gas-central-ac-2-speed.xml,55.061,55.061,34.928,34.928,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,3.397,0.76,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.986,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3063.1,22.274,18.931,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.089,-0.473,-0.053,2.763,-0.029,9.813,0.0,0.0,-5.881,-0.058,-1.181,-3.13,-0.167,0.0,3.741,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-gas-central-ac-var-speed.xml,54.183,54.183,34.05,34.05,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,2.944,0.334,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,15.785,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,2801.0,22.274,18.862,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.131,-0.473,-0.053,2.763,-0.029,9.813,0.0,0.0,-5.88,-0.058,-1.181,-3.134,-0.167,0.0,4.588,9.896,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.682,44.682,44.682,44.682,0.0,0.0,0.0,0.0,0.0,0.0,9.154,0.0,0.915,3.202,0.972,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.451,12.094,9.234,0.614,0.0,0.0,0.0,0.0,4985.2,2937.3,22.468,13.378,0.0,3.603,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.188,-0.063,4.805,0.0,0.728,0.0,3.149,-11.406,0.0,0.031,-0.458,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.342,-0.059,-1.168,-3.068,-0.165,0.0,1.169,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,43.405,43.405,43.405,43.405,0.0,0.0,0.0,0.0,0.0,0.0,6.87,1.952,0.749,2.645,0.75,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.106,14.756,9.234,0.614,0.0,0.0,0.0,0.0,6559.9,3080.0,25.033,18.874,0.0,3.349,3.636,0.512,7.435,0.629,-2.077,0.0,0.0,8.201,-0.063,4.805,0.0,0.728,0.0,9.997,-11.406,0.0,-0.077,-0.457,-0.051,2.722,-0.024,9.851,0.0,0.0,-6.337,-0.059,-1.168,-3.073,-0.165,0.0,3.874,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.857,41.857,41.857,41.857,0.0,0.0,0.0,0.0,0.0,0.0,7.103,0.432,0.721,2.476,0.686,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.891,13.486,9.234,0.614,0.0,0.0,0.0,0.0,5525.2,2778.2,24.251,16.866,0.0,3.436,3.635,0.512,7.432,0.629,-2.079,0.0,0.0,8.197,-0.063,4.805,0.0,0.728,0.0,7.718,-11.406,0.0,-0.023,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.07,-0.165,0.0,2.584,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.852,40.852,40.852,40.852,0.0,0.0,0.0,0.0,0.0,0.0,6.872,0.0,0.629,2.29,0.621,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.297,12.139,9.234,0.614,0.0,0.0,0.0,0.0,4412.1,2518.1,23.304,13.535,0.0,3.571,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.805,0.0,0.728,0.0,4.022,-11.406,0.0,0.03,-0.458,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.067,-0.165,0.0,1.213,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,41.504,41.504,41.341,41.341,0.163,0.0,0.0,0.0,0.0,0.0,7.495,0.0,0.858,2.327,0.221,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.225,14.549,9.234,0.615,0.0,0.0,0.0,0.0,4479.4,2705.3,24.702,17.74,0.0,3.348,3.635,0.512,7.432,0.629,-2.094,0.0,0.0,8.21,-0.06,5.886,0.0,0.727,0.0,10.066,-11.417,0.0,-0.064,-0.447,-0.05,2.753,-0.022,9.865,0.0,0.0,-6.286,-0.056,-1.431,-3.027,-0.163,0.0,3.789,9.871,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,41.539,41.539,41.347,41.347,0.192,0.0,0.0,0.0,0.0,0.0,7.496,0.0,0.863,2.327,0.221,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.263,14.548,9.234,0.615,0.0,0.0,0.0,0.0,4483.6,2705.4,27.146,17.742,0.0,3.346,3.635,0.511,7.432,0.629,-2.095,0.0,0.0,8.21,-0.06,5.886,0.0,0.727,0.0,10.107,-11.415,0.0,-0.065,-0.448,-0.05,2.753,-0.022,9.865,0.0,0.0,-6.287,-0.056,-1.432,-3.027,-0.163,0.0,3.788,9.873,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,42.082,42.082,42.082,42.082,0.0,0.0,0.0,0.0,0.0,0.0,7.414,0.615,0.905,2.401,0.308,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.273,15.297,9.234,0.614,0.0,0.0,0.0,0.0,6052.4,2887.0,25.147,18.56,0.0,3.305,3.637,0.512,7.436,0.629,-2.083,0.0,0.0,8.205,-0.062,4.805,0.0,0.728,0.0,11.199,-11.408,0.0,-0.106,-0.456,-0.051,2.724,-0.024,9.845,0.0,0.0,-6.333,-0.058,-1.167,-3.076,-0.165,0.0,4.459,9.88,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.085,41.085,41.085,41.085,0.0,0.0,0.0,0.0,0.0,0.0,7.175,0.101,0.815,2.334,0.221,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.89,14.652,9.234,0.614,0.0,0.0,0.0,0.0,5130.7,2640.4,24.601,17.576,0.0,3.359,3.636,0.512,7.435,0.629,-2.083,0.0,0.0,8.204,-0.062,4.805,0.0,0.728,0.0,9.775,-11.408,0.0,-0.073,-0.456,-0.051,2.723,-0.024,9.845,0.0,0.0,-6.334,-0.058,-1.167,-3.073,-0.165,0.0,3.794,9.88,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.714,40.714,40.714,40.714,0.0,0.0,0.0,0.0,0.0,0.0,7.007,0.0,0.733,2.337,0.196,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.942,13.648,9.234,0.614,0.0,0.0,0.0,0.0,4175.3,2563.1,23.752,16.302,0.0,3.433,3.635,0.512,7.432,0.629,-2.079,0.0,0.0,8.198,-0.063,4.805,0.0,0.728,0.0,7.771,-11.406,0.0,-0.029,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.07,-0.165,0.0,2.765,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-boiler-elec-only.xml,48.012,48.012,48.012,48.012,0.0,0.0,0.0,0.0,0.0,0.0,17.407,0.0,0.188,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,5872.6,0.0,16.351,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.151,55.151,36.448,36.448,18.703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.223,4.552,1.233,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.414,15.027,9.234,0.614,0.0,0.0,0.0,11.0,2094.0,3362.3,16.351,17.185,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,-0.094,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.34,-0.059,-1.168,-3.075,-0.165,0.0,4.16,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-boiler-gas-only.xml,49.151,49.151,30.638,30.638,18.513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.221,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2057.4,0.0,16.351,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-central-ac-only-1-speed.xml,36.135,36.135,36.135,36.135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.451,1.199,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.599,9.234,0.663,0.0,0.0,0.0,9.0,0.0,3452.9,0.0,17.174,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.105,-0.463,-0.051,2.705,-0.03,9.925,0.0,0.0,-6.914,-0.064,-1.191,-2.989,-0.166,0.0,4.065,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-central-ac-only-2-speed.xml,34.704,34.704,34.704,34.704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.432,0.787,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,9.234,0.663,0.0,0.0,0.0,4.0,0.0,3143.8,0.0,17.669,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.123,-0.463,-0.051,2.707,-0.03,9.927,0.0,0.0,-6.912,-0.064,-1.191,-2.988,-0.166,0.0,4.497,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-central-ac-only-var-speed.xml,33.89,33.89,33.89,33.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.939,0.466,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.506,9.234,0.663,0.0,0.0,0.0,9.0,0.0,2828.8,0.0,17.099,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.152,-0.463,-0.051,2.706,-0.03,9.926,0.0,0.0,-6.913,-0.064,-1.191,-2.993,-0.166,0.0,5.019,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,47.848,47.848,47.848,47.848,0.0,0.0,0.0,0.0,0.0,0.0,9.406,0.395,1.822,4.552,1.233,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.56,15.028,9.234,0.614,0.0,0.0,0.0,11.0,6432.7,3362.3,25.456,17.185,0.0,3.45,3.635,0.511,7.431,0.629,-2.08,0.0,0.0,8.196,-0.063,4.805,0.0,0.728,0.0,7.364,-11.406,0.0,-0.093,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.075,-0.165,0.0,4.16,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,53.869,53.869,42.273,42.273,11.596,0.0,0.0,0.0,0.0,0.0,5.844,0.0,1.137,3.705,1.146,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.527,14.403,9.234,0.614,0.0,0.0,8.0,0.0,3648.4,3469.0,25.176,18.407,0.0,3.369,3.635,0.512,7.433,0.629,-2.079,0.0,0.0,8.198,-0.063,4.804,0.0,0.728,0.0,9.41,-11.406,0.0,-0.063,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.338,-0.059,-1.168,-3.073,-0.165,0.0,3.519,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,52.638,52.638,41.795,41.795,10.843,0.0,0.0,0.0,0.0,0.0,5.474,0.0,1.4,3.432,1.049,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.559,13.128,9.234,0.614,0.0,0.0,0.0,0.0,3630.6,3211.0,24.267,15.803,0.0,3.442,3.635,0.512,7.432,0.629,-2.079,0.0,0.0,8.196,-0.063,4.805,0.0,0.728,0.0,7.383,-11.406,0.0,-0.009,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.071,-0.165,0.0,2.223,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,52.638,52.638,41.795,41.795,10.843,0.0,0.0,0.0,0.0,0.0,5.474,0.0,1.4,3.432,1.049,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.559,13.128,9.234,0.614,0.0,0.0,0.0,0.0,3630.6,3211.0,24.267,15.803,0.0,3.442,3.635,0.512,7.432,0.629,-2.079,0.0,0.0,8.196,-0.063,4.805,0.0,0.728,0.0,7.383,-11.406,0.0,-0.009,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.071,-0.165,0.0,2.223,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,44.475,44.475,35.86,35.86,8.615,0.0,0.0,0.0,0.0,0.0,2.696,0.0,0.523,2.12,0.081,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.826,12.207,9.234,0.614,0.0,0.0,0.0,0.0,2789.4,2186.1,19.333,13.314,0.0,3.592,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.189,-0.063,4.805,0.0,0.728,0.0,3.538,-11.406,0.0,0.028,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.069,-0.165,0.0,1.295,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-elec-resistance-only.xml,46.676,46.676,46.676,46.676,0.0,0.0,0.0,0.0,0.0,0.0,16.259,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,5891.9,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-evap-cooler-furnace-gas.xml,56.047,56.047,32.051,32.051,23.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,0.988,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,10.933,9.234,0.614,0.0,0.0,0.0,0.0,2115.0,1920.4,24.945,11.042,0.0,3.488,3.634,0.511,7.43,0.629,-2.081,0.0,0.0,8.193,-0.063,4.804,0.0,0.728,0.0,6.485,-11.406,0.0,0.044,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.167,-3.062,-0.165,0.0,-0.001,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-floor-furnace-propane-only.xml,52.06,52.06,30.418,30.418,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2021.1,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-furnace-elec-only.xml,53.335,53.335,53.335,53.335,0.0,0.0,0.0,0.0,0.0,0.0,22.3,0.0,0.617,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.473,0.0,9.234,0.59,0.0,0.0,0.0,0.0,8554.1,0.0,24.945,0.0,0.0,3.493,3.637,0.512,7.414,0.629,-2.072,0.0,0.0,8.027,-0.067,4.806,0.0,0.728,0.0,6.423,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.916,58.916,35.259,35.259,23.657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.505,3.506,0.809,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,22.271,15.452,9.234,0.614,0.0,0.0,0.0,6.0,2138.1,2998.5,24.407,17.69,0.0,3.504,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,6.049,-11.406,0.0,-0.111,-0.457,-0.051,2.723,-0.024,9.851,0.0,0.0,-6.337,-0.059,-1.168,-3.075,-0.165,0.0,4.59,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,58.084,58.084,34.423,34.423,23.661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.506,2.994,0.483,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.276,15.921,9.234,0.614,0.0,0.0,0.0,10.0,2138.4,2777.5,24.414,17.126,0.0,3.503,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,6.054,-11.406,0.0,-0.14,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.338,-0.059,-1.168,-3.08,-0.165,0.0,5.104,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-furnace-gas-only.xml,54.789,54.789,31.035,31.035,23.754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.617,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.473,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2121.4,0.0,24.945,0.0,0.0,3.493,3.637,0.512,7.414,0.629,-2.072,0.0,0.0,8.027,-0.067,4.806,0.0,0.728,0.0,6.423,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-furnace-gas-room-ac.xml,60.065,60.065,36.069,36.069,23.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,5.006,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,10.932,9.234,0.614,0.0,0.0,0.0,0.0,2115.0,2940.3,24.945,10.57,0.0,3.488,3.634,0.511,7.43,0.629,-2.081,0.0,0.0,8.193,-0.063,4.804,0.0,0.728,0.0,6.485,-11.406,0.0,0.044,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,-0.001,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.302,34.302,34.302,34.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.984,0.833,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.068,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3045.2,0.0,18.266,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.081,-0.463,-0.051,2.706,-0.03,9.926,0.0,0.0,-6.913,-0.064,-1.191,-2.988,-0.166,0.0,3.524,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.623,36.623,36.623,36.623,0.0,0.0,0.0,0.0,0.0,0.0,5.422,0.0,0.784,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.817,0.0,9.234,0.59,0.0,0.0,0.0,0.0,3394.5,0.0,23.38,0.0,0.0,3.554,3.637,0.512,7.412,0.629,-2.073,0.0,0.0,8.024,-0.067,4.806,0.0,0.728,0.0,4.718,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.818,39.818,39.818,39.818,0.0,0.0,0.0,0.0,0.0,0.0,5.416,0.0,0.67,2.534,0.758,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.733,13.374,9.234,0.614,0.0,0.0,0.0,0.0,3349.9,2536.9,22.974,15.784,0.0,3.56,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.466,-11.406,0.0,-0.02,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.072,-0.165,0.0,2.48,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.643,39.643,39.643,39.643,0.0,0.0,0.0,0.0,0.0,0.0,5.278,0.0,0.439,2.479,1.008,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.03,12.885,9.234,0.614,0.0,0.0,0.0,0.0,3237.5,2586.9,21.613,15.092,0.0,3.584,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.189,-0.063,4.804,0.0,0.728,0.0,3.746,-11.406,0.0,0.003,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.168,-3.069,-0.165,0.0,1.969,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.643,39.643,39.643,39.643,0.0,0.0,0.0,0.0,0.0,0.0,5.278,0.0,0.439,2.479,1.008,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.03,12.885,9.234,0.614,0.0,0.0,0.0,0.0,3237.5,2586.9,21.613,15.092,0.0,3.584,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.189,-0.063,4.804,0.0,0.728,0.0,3.746,-11.406,0.0,0.003,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.168,-3.069,-0.165,0.0,1.969,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.021,33.021,33.021,33.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.422,0.114,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.55,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2838.4,0.0,13.544,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.017,-0.463,-0.051,2.704,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.191,-2.986,-0.166,0.0,1.999,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,33.021,33.021,33.021,33.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.422,0.114,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.55,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2838.4,0.0,13.544,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.017,-0.463,-0.051,2.704,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.191,-2.986,-0.166,0.0,1.999,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.27,36.27,36.27,36.27,0.0,0.0,0.0,0.0,0.0,0.0,5.263,0.241,0.349,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.609,0.0,9.234,0.59,0.0,0.0,0.0,0.0,4591.8,0.0,19.395,0.0,0.0,3.597,3.637,0.512,7.411,0.629,-2.074,0.0,0.0,8.022,-0.067,4.806,0.0,0.728,0.0,3.482,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.431,39.431,39.431,39.431,0.0,0.0,0.0,0.0,0.0,0.0,5.537,0.828,0.347,2.188,0.092,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.355,12.628,9.234,0.614,0.0,0.0,0.0,0.0,5261.0,2297.8,19.593,13.538,0.0,3.575,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.081,-11.406,0.0,0.011,-0.458,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.168,-3.071,-0.165,0.0,1.73,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.515,38.515,38.515,38.515,0.0,0.0,0.0,0.0,0.0,0.0,5.313,0.249,0.312,2.12,0.081,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.754,12.207,9.234,0.614,0.0,0.0,0.0,0.0,4586.5,2186.1,19.334,13.314,0.0,3.595,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.189,-0.063,4.805,0.0,0.728,0.0,3.463,-11.406,0.0,0.028,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.069,-0.165,0.0,1.295,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,37.997,37.997,37.997,37.997,0.0,0.0,0.0,0.0,0.0,0.0,4.997,0.0,0.293,2.191,0.077,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.74,11.555,9.234,0.614,0.0,0.0,0.0,0.0,3551.4,2217.3,18.951,12.193,0.0,3.628,3.634,0.511,7.426,0.628,-2.083,0.0,0.0,8.187,-0.063,4.805,0.0,0.728,0.0,2.422,-11.406,0.0,0.043,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.342,-0.059,-1.167,-3.066,-0.165,0.0,0.628,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,37.852,37.852,37.499,37.499,0.0,0.353,0.0,0.0,0.0,0.0,4.899,0.0,0.114,2.018,0.028,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.468,10.835,9.234,0.615,0.0,0.0,0.0,0.0,3293.5,2166.0,16.914,11.202,0.0,3.733,3.631,0.511,7.42,0.628,-2.098,0.0,0.0,8.187,-0.061,5.885,0.0,0.727,0.0,0.0,-11.413,0.0,0.051,-0.449,-0.05,2.75,-0.022,9.869,0.0,0.0,-6.294,-0.057,-1.432,-3.016,-0.163,0.0,0.0,9.875,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-ptac-with-heating.xml,50.843,50.843,50.843,50.843,0.0,0.0,0.0,0.0,0.0,0.0,16.426,0.0,0.0,3.977,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.413,10.931,9.234,0.614,0.0,0.0,0.0,0.0,5891.9,2658.6,16.358,10.57,0.0,3.733,3.631,0.511,7.422,0.628,-2.08,0.0,0.0,8.179,-0.064,4.804,0.0,0.728,0.0,0.0,-11.404,0.0,0.041,-0.458,-0.051,2.719,-0.025,9.856,0.0,0.0,-6.344,-0.061,-1.168,-3.062,-0.165,0.0,0.0,9.884,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-ptac.xml,34.357,34.357,34.357,34.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.872,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.595,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2836.5,0.0,10.548,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.472,41.472,41.472,41.472,0.0,0.0,0.0,0.0,0.0,0.0,6.237,0.991,0.0,3.804,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.414,10.933,9.234,0.614,0.0,0.0,0.0,0.0,4747.5,2618.2,16.358,11.04,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,0.042,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,0.0,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.573,41.573,41.573,41.573,0.0,0.0,0.0,0.0,0.0,0.0,7.013,0.122,0.0,3.998,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.414,10.933,9.234,0.614,0.0,0.0,0.0,0.0,4041.3,2700.3,16.358,11.04,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,0.042,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,0.0,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.088,42.088,42.088,42.088,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.0,0.0,4.154,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.414,10.933,9.234,0.614,0.0,0.0,0.0,0.0,4007.8,2796.7,16.358,11.04,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,0.042,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,0.0,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-room-ac-only.xml,35.359,35.359,35.359,35.359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.874,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.595,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3160.1,0.0,10.548,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-stove-oil-only.xml,52.035,52.035,30.517,30.517,0.0,21.518,0.0,0.0,0.0,0.0,0.0,0.0,0.099,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2037.2,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize-wall-furnace-elec-only.xml,47.008,47.008,47.008,47.008,0.0,0.0,0.0,0.0,0.0,0.0,16.59,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,5985.7,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.015,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-autosize.xml,59.981,59.981,36.299,36.299,23.682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.513,4.469,0.877,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.302,14.946,9.234,0.614,0.0,0.0,0.0,7.0,2140.0,3227.7,24.447,17.376,0.0,3.503,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,6.081,-11.406,0.0,-0.089,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.338,-0.059,-1.168,-3.075,-0.165,0.0,4.077,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-boiler-coal-only.xml,49.865,49.865,30.657,30.657,0.0,0.0,0.0,0.0,0.0,19.208,0.0,0.0,0.24,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2060.4,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-boiler-elec-only.xml,48.676,48.676,48.676,48.676,0.0,0.0,0.0,0.0,0.0,0.0,18.134,0.0,0.124,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,6009.4,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-boiler-gas-central-ac-1-speed.xml,55.614,55.614,36.119,36.119,19.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.148,4.359,1.172,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,16.414,14.073,9.234,0.614,0.0,0.0,0.0,0.0,2084.4,3471.5,16.366,18.051,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,-0.051,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.183,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-boiler-gas-only.xml,49.86,49.86,30.563,30.563,19.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.146,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2045.1,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-boiler-oil-only.xml,49.865,49.865,30.657,30.657,0.0,19.208,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2060.4,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-boiler-propane-only.xml,49.859,49.859,30.542,30.542,0.0,0.0,19.317,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2041.5,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-boiler-wood-only.xml,49.859,49.859,30.542,30.542,0.0,0.0,0.0,19.317,0.0,0.0,0.0,0.0,0.124,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2041.5,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-central-ac-only-1-speed-seer2.xml,35.868,35.868,35.868,35.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.245,1.139,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.662,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3481.2,0.0,17.736,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.062,-0.463,-0.051,2.705,-0.03,9.926,0.0,0.0,-6.914,-0.064,-1.191,-2.986,-0.166,0.0,3.107,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-central-ac-only-1-speed.xml,35.884,35.884,35.884,35.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.26,1.139,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.662,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3487.7,0.0,17.736,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.062,-0.463,-0.051,2.705,-0.03,9.926,0.0,0.0,-6.914,-0.064,-1.191,-2.986,-0.166,0.0,3.107,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-central-ac-only-2-speed.xml,34.51,34.51,34.51,34.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.272,0.754,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3008.8,0.0,18.498,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.084,-0.463,-0.051,2.706,-0.03,9.926,0.0,0.0,-6.913,-0.064,-1.19,-2.986,-0.166,0.0,3.641,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-central-ac-only-var-speed.xml,33.631,33.631,33.631,33.631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.836,0.31,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.949,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2786.6,0.0,18.401,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.124,-0.463,-0.051,2.707,-0.03,9.927,0.0,0.0,-6.912,-0.064,-1.191,-2.989,-0.166,0.0,4.446,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.122,47.122,47.122,47.122,0.0,0.0,0.0,0.0,0.0,0.0,9.17,0.233,1.748,4.36,1.172,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.506,14.073,9.234,0.614,0.0,0.0,0.0,0.0,6220.7,3471.5,25.169,18.052,0.0,3.49,3.635,0.511,7.43,0.629,-2.08,0.0,0.0,8.194,-0.063,4.805,0.0,0.728,0.0,6.282,-11.406,0.0,-0.049,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.073,-0.165,0.0,3.183,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-dse.xml,58.712,58.712,36.787,36.787,21.925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,5.051,0.934,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,16.413,10.933,9.234,0.614,0.0,0.0,0.0,0.0,2102.4,2602.0,16.358,11.04,0.0,3.733,3.631,0.511,7.422,0.628,-2.08,0.0,0.0,8.179,-0.064,4.804,0.0,0.728,0.0,0.0,-11.404,0.0,0.041,-0.458,-0.051,2.72,-0.025,9.856,0.0,0.0,-6.344,-0.061,-1.168,-3.062,-0.165,0.0,0.0,9.884,1354.8,997.6,11399.6,2615.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 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml,51.762,51.762,51.762,51.762,0.0,0.0,0.0,0.0,0.0,0.0,5.359,10.129,1.418,3.383,1.033,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.054,12.907,9.234,0.614,0.0,0.0,0.0,0.0,8215.5,3151.3,24.108,15.265,0.0,3.461,3.635,0.511,7.431,0.629,-2.08,0.0,0.0,8.196,-0.063,4.805,0.0,0.728,0.0,6.863,-11.406,0.0,0.001,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,1.996,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,52.295,52.295,41.633,41.633,10.662,0.0,0.0,0.0,0.0,0.0,5.359,0.0,1.418,3.383,1.033,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.054,12.907,9.234,0.614,0.0,0.0,0.0,0.0,3608.4,3151.3,24.108,15.265,0.0,3.461,3.635,0.511,7.431,0.629,-2.08,0.0,0.0,8.196,-0.063,4.805,0.0,0.728,0.0,6.863,-11.406,0.0,0.001,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,1.996,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,49.34,49.34,38.393,38.393,10.947,0.0,0.0,0.0,0.0,0.0,3.866,0.0,0.969,2.444,0.674,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.585,13.246,9.234,0.614,0.0,0.0,0.0,0.0,3011.3,2729.1,24.107,16.233,0.0,3.441,3.635,0.512,7.432,0.629,-2.079,0.0,0.0,8.197,-0.063,4.805,0.0,0.728,0.0,7.411,-11.406,0.0,-0.013,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,2.34,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,49.123,49.123,38.369,38.369,10.754,0.0,0.0,0.0,0.0,0.0,3.856,0.0,1.522,2.336,0.216,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.72,14.49,9.234,0.614,0.0,0.0,0.0,0.0,3001.4,2604.8,24.46,17.315,0.0,3.362,3.636,0.512,7.435,0.629,-2.077,0.0,0.0,8.201,-0.063,4.805,0.0,0.728,0.0,9.602,-11.406,0.0,-0.067,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.337,-0.059,-1.168,-3.072,-0.165,0.0,3.629,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,44.469,44.469,36.096,36.096,8.373,0.0,0.0,0.0,0.0,0.0,2.735,0.0,0.684,2.158,0.079,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.483,11.843,9.234,0.614,0.0,0.0,0.0,0.0,2659.9,2203.3,19.151,12.77,0.0,3.603,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.188,-0.063,4.805,0.0,0.728,0.0,3.187,-11.406,0.0,0.038,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.067,-0.165,0.0,0.922,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-ducts-area-fractions.xml,93.311,93.311,46.514,46.514,46.797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.61,7.833,1.643,9.005,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.682,28.472,9.146,0.612,0.0,0.0,5.0,44.0,2577.6,5002.0,48.978,34.996,0.0,3.195,7.86,1.068,7.829,0.664,-3.777,0.0,0.0,8.936,-0.117,11.128,0.0,0.745,0.0,20.087,-14.504,0.0,-0.363,-1.017,-0.098,2.689,-0.02,20.274,0.0,0.0,-6.437,-0.105,-2.467,-6.252,-0.161,0.0,10.597,12.224,1354.8,997.6,11399.6,2460.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-ducts-area-multipliers.xml,57.712,57.712,35.783,35.783,21.928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.181,0.801,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.541,13.657,9.234,0.614,0.0,0.0,0.0,0.0,2108.4,3225.2,22.252,17.336,0.0,3.567,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.268,-11.406,0.0,-0.031,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.071,-0.165,0.0,2.755,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-ducts-leakage-cfm50.xml,57.91,57.91,35.799,35.799,22.111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.365,4.191,0.803,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.721,13.798,9.234,0.614,0.0,0.0,0.0,0.0,2108.7,3270.0,22.339,17.768,0.0,3.556,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.191,-0.063,4.805,0.0,0.728,0.0,4.474,-11.406,0.0,-0.035,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.071,-0.165,0.0,2.953,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-ducts-leakage-percent.xml,59.711,59.711,36.106,36.106,23.605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.389,4.42,0.857,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.112,14.632,9.234,0.614,0.0,0.0,0.0,0.0,2111.8,3467.9,24.142,19.48,0.0,3.509,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.891,-11.406,0.0,-0.074,-0.457,-0.051,2.722,-0.025,9.851,0.0,0.0,-6.338,-0.059,-1.168,-3.074,-0.165,0.0,3.765,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-elec-resistance-only.xml,46.676,46.676,46.676,46.676,0.0,0.0,0.0,0.0,0.0,0.0,16.259,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,5891.9,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-evap-cooler-furnace-gas.xml,55.042,55.042,31.858,31.858,23.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.815,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.932,10.933,9.234,0.614,0.0,0.0,0.0,0.0,2110.3,1858.6,23.937,11.049,0.0,3.517,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.695,-11.406,0.0,0.044,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.167,-3.062,-0.165,0.0,-0.001,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-evap-cooler-only-ducted.xml,31.362,31.362,31.362,31.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.876,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.52,9.234,0.663,0.0,0.0,0.0,0.0,0.0,1963.0,0.0,14.956,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.815,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.022,-0.464,-0.051,2.703,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.19,-2.98,-0.166,0.0,0.911,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-evap-cooler-only.xml,31.278,31.278,31.278,31.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,1891.1,0.0,10.847,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-fireplace-wood-only.xml,52.06,52.06,30.418,30.418,0.0,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2021.1,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.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 +base-hvac-fixed-heater-gas-only.xml,46.676,46.676,30.417,30.417,16.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2021.1,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.015,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-floor-furnace-propane-only.xml,52.06,52.06,30.418,30.418,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2021.1,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.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 +base-hvac-furnace-coal-only.xml,53.964,53.964,31.014,31.014,0.0,0.0,0.0,0.0,0.0,22.951,0.0,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2118.3,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-furnace-elec-central-ac-1-speed.xml,56.68,56.68,56.68,56.68,0.0,0.0,0.0,0.0,0.0,0.0,20.771,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,7868.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-furnace-elec-only.xml,52.559,52.559,52.559,52.559,0.0,0.0,0.0,0.0,0.0,0.0,21.545,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,8252.1,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-furnace-gas-central-ac-2-speed.xml,57.453,57.453,34.876,34.876,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,3.326,0.738,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,14.546,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3038.5,22.926,18.736,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.069,-0.457,-0.051,2.722,-0.024,9.851,0.0,0.0,-6.338,-0.059,-1.168,-3.072,-0.165,0.0,3.661,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-furnace-gas-central-ac-var-speed.xml,56.598,56.598,34.022,34.022,22.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,2.888,0.321,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.143,15.355,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,2776.5,22.926,18.649,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.111,-0.457,-0.051,2.723,-0.024,9.851,0.0,0.0,-6.337,-0.059,-1.168,-3.076,-0.165,0.0,4.519,9.882,1354.8,997.6,11399.6,2615.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 base-hvac-furnace-gas-only-detailed-setpoints.xml,34.885,34.885,30.564,30.564,4.321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.112,0.0,0.0,9.176,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,4.079,0.0,9.234,0.627,0.0,0.0,0.0,0.0,2067.9,0.0,16.734,0.0,0.0,2.942,2.865,0.402,4.919,0.433,-4.314,0.0,0.0,2.716,-0.177,3.564,0.0,0.584,0.0,1.089,-11.277,0.0,-0.408,-0.928,-0.118,1.472,-0.149,8.489,0.0,0.0,-8.011,-0.056,-1.549,-7.65,-0.26,0.0,0.0,10.023,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-gas-only.xml,51.393,51.393,30.948,30.948,20.445,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.532,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,19.34,0.0,9.234,0.588,0.0,0.0,0.0,0.0,2117.3,0.0,23.266,0.0,0.0,3.554,3.653,0.514,7.112,0.634,-2.011,0.0,0.0,6.445,-0.121,4.81,0.0,0.729,0.0,5.07,-11.393,0.0,-0.498,-1.033,-0.134,1.133,-0.171,8.08,0.0,0.0,-8.173,-0.06,-1.64,-6.373,-0.279,0.0,-0.0,9.869,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-gas-room-ac.xml,57.161,57.161,36.475,36.475,20.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.538,5.498,0.0,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.686,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.568,11.297,9.234,0.613,0.0,0.0,0.0,0.0,2118.0,3213.8,23.266,11.213,0.0,3.549,3.65,0.514,7.129,0.633,-2.021,0.0,0.0,6.617,-0.118,4.808,0.0,0.729,0.0,5.127,-11.393,0.0,0.029,-0.472,-0.053,2.761,-0.029,9.804,0.0,0.0,-5.881,-0.057,-1.181,-3.12,-0.167,0.0,-0.0,9.894,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-oil-only.xml,51.393,51.393,30.948,30.948,0.0,20.445,0.0,0.0,0.0,0.0,0.0,0.0,0.532,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,19.34,0.0,9.234,0.588,0.0,0.0,0.0,0.0,2117.3,0.0,23.266,0.0,0.0,3.554,3.653,0.514,7.112,0.634,-2.011,0.0,0.0,6.445,-0.121,4.81,0.0,0.729,0.0,5.07,-11.393,0.0,-0.498,-1.033,-0.134,1.133,-0.171,8.08,0.0,0.0,-8.173,-0.06,-1.64,-6.373,-0.279,0.0,-0.0,9.869,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-propane-only.xml,51.393,51.393,30.948,30.948,0.0,0.0,20.445,0.0,0.0,0.0,0.0,0.0,0.532,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,19.34,0.0,9.234,0.588,0.0,0.0,0.0,0.0,2117.3,0.0,23.266,0.0,0.0,3.554,3.653,0.514,7.112,0.634,-2.011,0.0,0.0,6.445,-0.121,4.81,0.0,0.729,0.0,5.07,-11.393,0.0,-0.498,-1.033,-0.134,1.133,-0.171,8.08,0.0,0.0,-8.173,-0.06,-1.64,-6.373,-0.279,0.0,-0.0,9.869,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-wood-only.xml,51.393,51.393,30.948,30.948,0.0,0.0,0.0,20.445,0.0,0.0,0.0,0.0,0.532,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,19.34,0.0,9.234,0.588,0.0,0.0,0.0,0.0,2117.3,0.0,23.266,0.0,0.0,3.554,3.653,0.514,7.112,0.634,-2.011,0.0,0.0,6.445,-0.121,4.81,0.0,0.729,0.0,5.07,-11.393,0.0,-0.498,-1.033,-0.134,1.133,-0.171,8.08,0.0,0.0,-8.173,-0.06,-1.64,-6.373,-0.279,0.0,-0.0,9.869,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-x3-dse.xml,56.401,56.401,36.925,36.925,19.476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.348,5.173,0.964,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.476,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.6,11.297,9.234,0.613,0.0,0.0,0.0,0.0,2121.6,2638.5,15.871,11.212,0.0,3.745,3.646,0.514,7.12,0.632,-2.011,0.0,0.0,6.6,-0.121,4.808,0.0,0.729,0.0,0.0,-11.389,0.0,0.025,-0.474,-0.053,2.759,-0.029,9.819,0.0,0.0,-5.888,-0.06,-1.181,-3.12,-0.167,0.0,0.0,9.898,1354.8,997.6,11399.6,2615.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 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.909,33.909,33.909,33.909,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.675,0.754,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.104,9.234,0.656,0.0,0.0,0.0,0.0,0.0,2486.4,0.0,15.123,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,-0.041,-0.483,-0.054,2.747,-0.035,9.866,0.0,0.0,-6.379,-0.061,-1.205,-3.051,-0.168,0.0,2.14,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-ground-to-air-heat-pump-heating-only.xml,35.847,35.847,35.847,35.847,0.0,0.0,0.0,0.0,0.0,0.0,4.764,0.0,0.667,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.882,0.0,9.234,0.588,0.0,0.0,0.0,0.0,3292.7,0.0,21.488,0.0,0.0,3.605,3.652,0.514,7.11,0.633,-2.006,0.0,0.0,6.44,-0.123,4.81,0.0,0.729,0.0,3.571,-11.391,0.0,-0.5,-1.034,-0.134,1.133,-0.171,8.087,0.0,0.0,-8.176,-0.062,-1.64,-6.373,-0.279,0.0,-0.0,9.871,1354.8,997.6,11399.6,2615.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 -base-hvac-ground-to-air-heat-pump.xml,39.128,39.128,39.128,39.128,0.0,0.0,0.0,0.0,0.0,0.0,4.716,0.0,0.389,2.557,1.027,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.571,13.117,9.234,0.613,0.0,0.0,0.0,0.0,3178.3,2577.7,20.465,14.924,0.0,3.618,3.649,0.514,7.126,0.632,-2.016,0.0,0.0,6.611,-0.119,4.808,0.0,0.729,0.0,3.083,-11.391,0.0,-0.009,-0.473,-0.053,2.761,-0.029,9.811,0.0,0.0,-5.884,-0.058,-1.181,-3.127,-0.167,0.0,1.836,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,47.668,47.668,47.668,47.668,0.0,0.0,0.0,0.0,0.0,0.0,11.252,0.38,0.635,4.247,0.715,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.711,13.866,9.234,0.613,0.0,0.0,0.0,0.0,6353.0,3429.5,24.097,16.591,0.0,3.502,3.651,0.514,7.13,0.633,-2.02,0.0,0.0,6.62,-0.118,4.809,0.0,0.729,0.0,6.306,-11.393,0.0,-0.04,-0.472,-0.053,2.762,-0.029,9.805,0.0,0.0,-5.88,-0.057,-1.181,-3.13,-0.167,0.0,2.609,9.894,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.143,43.143,43.143,43.143,0.0,0.0,0.0,0.0,0.0,0.0,8.146,0.344,0.527,3.062,0.623,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.964,14.294,9.234,0.613,0.0,0.0,0.0,0.0,5677.5,3070.0,24.091,17.935,0.0,3.455,3.652,0.514,7.133,0.633,-2.025,0.0,0.0,6.625,-0.117,4.809,0.0,0.729,0.0,7.597,-11.395,0.0,-0.055,-0.471,-0.053,2.763,-0.029,9.799,0.0,0.0,-5.876,-0.055,-1.18,-3.13,-0.167,0.0,3.042,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,42.502,42.502,42.502,42.502,0.0,0.0,0.0,0.0,0.0,0.0,8.07,0.184,0.666,2.914,0.229,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.141,15.481,9.234,0.613,0.0,0.0,0.0,0.0,5671.9,2929.9,24.416,18.201,0.0,3.371,3.653,0.514,7.136,0.633,-2.023,0.0,0.0,6.63,-0.117,4.809,0.0,0.729,0.0,9.832,-11.395,0.0,-0.112,-0.471,-0.053,2.765,-0.029,9.8,0.0,0.0,-5.874,-0.055,-1.18,-3.133,-0.167,0.0,4.28,9.892,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,58.009,58.009,36.808,36.808,21.201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.255,5.327,0.787,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.756,15.338,9.234,0.613,0.0,0.0,0.0,3.0,2116.9,3477.1,23.289,18.205,0.0,3.543,3.65,0.514,7.129,0.633,-2.024,0.0,0.0,6.616,-0.116,4.808,0.0,0.729,0.0,5.33,-11.391,0.0,-0.106,-0.472,-0.053,2.763,-0.029,9.803,0.0,0.0,-5.879,-0.055,-1.182,-3.133,-0.167,0.0,4.111,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,56.669,56.669,35.464,35.464,21.206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.255,4.069,0.7,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.206,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.761,15.874,9.234,0.613,0.0,0.0,0.0,2.0,2117.0,3160.0,23.295,18.439,0.0,3.543,3.65,0.514,7.129,0.633,-2.024,0.0,0.0,6.616,-0.116,4.808,0.0,0.729,0.0,5.335,-11.391,0.0,-0.129,-0.471,-0.053,2.764,-0.029,9.804,0.0,0.0,-5.878,-0.055,-1.181,-3.133,-0.167,0.0,4.654,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,55.846,55.846,34.64,34.64,21.205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.255,3.526,0.419,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.76,16.471,9.234,0.613,0.0,0.0,0.0,6.0,2117.0,2901.5,23.295,17.827,0.0,3.543,3.65,0.514,7.129,0.633,-2.024,0.0,0.0,6.616,-0.116,4.808,0.0,0.729,0.0,5.335,-11.391,0.0,-0.163,-0.471,-0.053,2.764,-0.029,9.804,0.0,0.0,-5.878,-0.055,-1.182,-3.139,-0.167,0.0,5.298,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-furnace-gas-only.xml,52.629,52.629,30.83,30.83,21.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.465,0.0,9.234,0.588,0.0,0.0,0.0,0.0,2095.5,0.0,24.545,0.0,0.0,3.515,3.654,0.515,7.114,0.634,-2.02,0.0,0.0,6.448,-0.119,4.81,0.0,0.729,0.0,6.229,-11.393,0.0,-0.496,-1.032,-0.134,1.134,-0.171,8.071,0.0,0.0,-8.171,-0.058,-1.64,-6.373,-0.278,0.0,-0.001,9.868,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-ground-to-air-heat-pump.xml,40.827,40.827,40.827,40.827,0.0,0.0,0.0,0.0,0.0,0.0,6.0,0.0,0.396,3.031,0.962,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.429,13.601,9.234,0.613,0.0,0.0,0.0,0.0,3402.2,2730.4,21.404,15.958,0.0,3.588,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.612,-0.119,4.808,0.0,0.729,0.0,3.965,-11.391,0.0,-0.03,-0.473,-0.053,2.761,-0.029,9.811,0.0,0.0,-5.883,-0.058,-1.181,-3.129,-0.167,0.0,2.333,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.328,33.328,33.328,33.328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.676,0.172,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.725,9.234,0.656,0.0,0.0,0.0,0.0,0.0,2492.2,0.0,13.574,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,-0.025,-0.483,-0.054,2.747,-0.035,9.866,0.0,0.0,-6.38,-0.061,-1.205,-3.051,-0.168,0.0,1.767,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,39.58,39.58,39.58,39.58,0.0,0.0,0.0,0.0,0.0,0.0,5.828,0.019,0.448,2.689,0.157,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.539,12.511,9.234,0.613,0.0,0.0,0.0,0.0,4082.9,2338.1,18.807,13.476,0.0,3.62,3.649,0.514,7.126,0.632,-2.016,0.0,0.0,6.611,-0.119,4.808,0.0,0.729,0.0,3.049,-11.391,0.0,0.013,-0.474,-0.053,2.76,-0.029,9.81,0.0,0.0,-5.885,-0.058,-1.181,-3.127,-0.167,0.0,1.234,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-mini-split-air-conditioner-only-ducted.xml,32.687,32.687,32.687,32.687,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.125,0.083,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.381,9.234,0.656,0.0,0.0,0.0,0.0,0.0,2113.0,0.0,13.36,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,-0.012,-0.483,-0.054,2.747,-0.035,9.866,0.0,0.0,-6.38,-0.061,-1.205,-3.049,-0.168,0.0,1.411,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-mini-split-air-conditioner-only-ductless.xml,32.557,32.557,32.557,32.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.049,0.028,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.993,9.234,0.656,0.0,0.0,0.0,0.0,0.0,2051.1,0.0,11.038,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,0.009,-0.483,-0.054,2.747,-0.035,9.866,0.0,0.0,-6.38,-0.061,-1.205,-3.042,-0.168,0.0,0.0,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.726,32.726,32.726,32.726,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.168,0.079,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.908,9.234,0.656,0.0,0.0,0.0,0.0,0.0,2116.3,0.0,12.768,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,0.004,-0.483,-0.054,2.746,-0.035,9.865,0.0,0.0,-6.381,-0.061,-1.205,-3.048,-0.168,0.0,0.925,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,35.272,35.272,35.272,35.272,0.0,0.0,0.0,0.0,0.0,0.0,4.589,0.005,0.262,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.952,0.0,9.234,0.588,0.0,0.0,0.0,0.0,3663.6,0.0,18.716,0.0,0.0,3.638,3.652,0.514,7.109,0.633,-2.006,0.0,0.0,6.438,-0.123,4.81,0.0,0.729,0.0,2.618,-11.391,0.0,-0.5,-1.034,-0.134,1.133,-0.171,8.087,0.0,0.0,-8.176,-0.062,-1.64,-6.373,-0.279,0.0,-0.0,9.871,1354.8,997.6,11399.6,2615.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 -base-hvac-mini-split-heat-pump-ducted.xml,37.684,37.684,37.684,37.684,0.0,0.0,0.0,0.0,0.0,0.0,4.676,0.006,0.261,2.221,0.081,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.327,12.23,9.234,0.613,0.0,0.0,0.0,0.0,3648.9,2209.7,18.654,12.969,0.0,3.627,3.649,0.514,7.126,0.632,-2.016,0.0,0.0,6.61,-0.119,4.808,0.0,0.729,0.0,2.832,-11.391,0.0,0.021,-0.474,-0.053,2.76,-0.029,9.81,0.0,0.0,-5.885,-0.058,-1.181,-3.126,-0.167,0.0,0.946,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,37.677,37.677,37.176,37.176,0.0,0.501,0.0,0.0,0.0,0.0,4.571,0.0,0.101,2.034,0.03,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.501,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.649,11.194,9.234,0.614,0.0,0.0,0.0,0.0,3135.2,2109.8,16.428,11.376,0.0,3.745,3.646,0.513,7.116,0.632,-2.033,0.0,0.0,6.611,-0.118,5.891,0.0,0.728,0.0,0.0,-11.404,0.0,0.035,-0.464,-0.052,2.79,-0.026,9.83,0.0,0.0,-5.835,-0.058,-1.446,-3.073,-0.165,0.0,0.0,9.884,1354.8,997.6,11399.6,2615.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 -base-hvac-mini-split-heat-pump-ductless.xml,36.905,36.905,36.905,36.905,0.0,0.0,0.0,0.0,0.0,0.0,4.138,0.0,0.086,2.212,0.029,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.601,11.296,9.234,0.613,0.0,0.0,0.0,0.0,3368.3,2173.9,15.871,11.213,0.0,3.745,3.647,0.514,7.121,0.632,-2.011,0.0,0.0,6.6,-0.121,4.808,0.0,0.729,0.0,0.0,-11.389,0.0,0.025,-0.474,-0.053,2.759,-0.029,9.819,0.0,0.0,-5.888,-0.06,-1.181,-3.12,-0.167,0.0,0.0,9.898,1354.8,997.6,11399.6,2615.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 -base-hvac-multiple.xml,62.188,62.188,49.292,49.292,6.402,3.211,3.283,0.0,0.0,0.0,11.595,0.153,0.777,5.769,0.559,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.211,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.207,19.696,9.234,0.614,0.0,0.0,0.0,4.0,6168.9,3962.9,36.724,22.8,0.0,3.459,3.65,0.514,7.126,0.633,-2.041,0.0,0.0,6.629,-0.115,5.891,0.0,0.728,0.0,13.805,-11.408,0.0,-0.148,-0.462,-0.052,2.793,-0.026,9.818,0.0,0.0,-5.827,-0.055,-1.447,-3.114,-0.165,0.0,8.616,9.88,1354.8,997.6,11399.6,2615.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 -base-hvac-none.xml,30.46,30.46,30.46,30.46,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.184,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.234,0.636,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.715,2.578,0.36,4.251,0.361,-5.186,0.0,0.0,2.342,-0.163,3.148,0.0,0.532,0.0,0.0,-11.29,0.0,-0.479,-1.004,-0.129,1.159,-0.167,8.264,0.0,0.0,-8.906,-0.066,-1.631,-6.073,-0.273,0.0,0.0,10.02,1354.8,997.6,11399.6,2615.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 -base-hvac-portable-heater-gas-only.xml,44.858,44.858,30.416,30.416,14.442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.429,0.0,9.234,0.588,0.0,0.0,0.0,0.0,2021.1,0.0,15.871,0.0,0.0,3.748,3.65,0.514,7.104,0.633,-2.001,0.0,0.0,6.429,-0.124,4.81,0.0,0.729,0.0,0.0,-11.389,0.0,-0.502,-1.035,-0.134,1.131,-0.171,8.094,0.0,0.0,-8.18,-0.063,-1.64,-6.373,-0.279,0.0,0.0,9.873,1354.8,997.6,11399.6,2615.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 -base-hvac-ptac-with-heating.xml,49.42,49.42,49.42,49.42,0.0,0.0,0.0,0.0,0.0,0.0,14.613,0.0,0.0,4.367,0.0,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.6,11.296,9.234,0.613,0.0,0.0,0.0,0.0,5610.2,2852.9,15.871,11.212,0.0,3.745,3.646,0.514,7.12,0.632,-2.011,0.0,0.0,6.6,-0.121,4.808,0.0,0.729,0.0,0.0,-11.389,0.0,0.025,-0.474,-0.053,2.759,-0.029,9.819,0.0,0.0,-5.888,-0.06,-1.181,-3.12,-0.167,0.0,0.0,9.898,1354.8,997.6,11399.6,2615.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 -base-hvac-ptac.xml,34.744,34.744,34.744,34.744,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.264,0.0,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.993,9.234,0.656,0.0,0.0,0.0,0.0,0.0,2789.3,0.0,11.038,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,0.009,-0.483,-0.054,2.747,-0.035,9.866,0.0,0.0,-6.38,-0.061,-1.205,-3.042,-0.168,0.0,0.0,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-pthp.xml,41.287,41.287,41.287,41.287,0.0,0.0,0.0,0.0,0.0,0.0,6.626,0.0,0.0,4.222,0.0,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.6,11.296,9.234,0.613,0.0,0.0,0.0,0.0,3869.5,2828.6,15.871,11.212,0.0,3.745,3.646,0.514,7.12,0.632,-2.011,0.0,0.0,6.6,-0.121,4.808,0.0,0.729,0.0,0.0,-11.389,0.0,0.025,-0.474,-0.053,2.759,-0.029,9.819,0.0,0.0,-5.888,-0.06,-1.181,-3.12,-0.167,0.0,0.0,9.898,1354.8,997.6,11399.6,2615.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 -base-hvac-room-ac-only-33percent.xml,32.351,32.351,32.351,32.351,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.871,0.0,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.993,9.234,0.656,0.0,0.0,0.0,0.0,0.0,2041.6,0.0,11.039,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,0.009,-0.483,-0.054,2.747,-0.035,9.866,0.0,0.0,-6.38,-0.061,-1.205,-3.042,-0.168,0.0,0.0,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-room-ac-only-ceer.xml,35.858,35.858,35.858,35.858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.378,0.0,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.993,9.234,0.656,0.0,0.0,0.0,0.0,0.0,3195.8,0.0,11.038,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,0.009,-0.483,-0.054,2.747,-0.035,9.866,0.0,0.0,-6.38,-0.061,-1.205,-3.042,-0.168,0.0,0.0,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-room-ac-only-detailed-setpoints.xml,34.634,34.634,34.634,34.634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.163,0.0,9.195,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.248,9.234,0.647,0.0,0.0,0.0,0.0,0.0,3197.6,0.0,9.98,0.0,2.825,2.695,0.378,4.31,0.391,-4.819,0.0,0.0,1.539,-0.221,3.299,0.0,0.553,0.0,0.0,-11.285,0.0,-0.162,-0.665,-0.08,2.266,-0.081,9.312,0.0,0.0,-7.018,-0.063,-1.353,-3.449,-0.202,0.0,0.0,10.035,1354.8,997.6,11399.6,2615.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 -base-hvac-room-ac-only.xml,35.848,35.848,35.848,35.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.368,0.0,9.203,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.993,9.234,0.656,0.0,0.0,0.0,0.0,0.0,3192.1,0.0,11.038,0.0,2.792,2.659,0.372,4.29,0.382,-4.931,0.0,0.0,1.791,-0.205,3.252,0.0,0.546,0.0,0.0,-11.286,0.0,0.009,-0.483,-0.054,2.747,-0.035,9.866,0.0,0.0,-6.38,-0.061,-1.205,-3.042,-0.168,0.0,0.0,10.043,1354.8,997.6,11399.6,2615.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 -base-hvac-seasons.xml,55.933,55.933,35.945,35.945,19.987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33,4.337,0.839,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.717,14.25,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.3,22.274,18.123,0.0,3.536,3.614,0.509,7.131,0.62,-2.08,0.0,0.0,6.563,-0.092,4.759,0.0,0.723,0.0,4.371,-11.267,0.0,-0.104,-0.508,-0.058,2.764,-0.042,9.747,0.0,0.0,-5.931,-0.03,-1.23,-3.148,-0.173,0.0,3.135,10.02,1354.8,997.6,11399.6,2615.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 -base-hvac-setpoints-daily-schedules.xml,53.691,53.691,35.434,35.434,18.257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.301,3.933,0.76,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.776,12.649,9.234,0.614,0.0,0.0,92.0,52.0,2140.7,3586.4,34.186,20.196,0.0,3.567,3.607,0.508,6.977,0.617,-2.203,0.0,0.0,6.034,-0.086,4.682,0.0,0.73,0.0,3.829,-11.349,0.0,-0.093,-0.52,-0.06,2.716,-0.047,9.606,0.0,0.0,-5.886,-0.007,-1.239,-3.471,-0.176,0.0,2.5,9.938,1354.8,997.6,11399.6,2615.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 -base-hvac-setpoints-daily-setbacks.xml,53.872,53.872,35.554,35.554,18.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.302,4.032,0.779,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.072,13.122,9.234,0.615,0.0,0.0,0.0,9.0,2110.4,3597.8,24.379,20.734,0.0,3.531,3.57,0.502,6.897,0.608,-2.355,0.0,0.0,6.19,-0.088,4.643,0.0,0.724,0.0,3.872,-11.368,0.0,-0.07,-0.51,-0.059,2.656,-0.044,9.601,0.0,0.0,-6.075,-0.025,-1.217,-3.394,-0.179,0.0,2.615,9.921,1354.8,997.6,11399.6,2615.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 -base-hvac-setpoints.xml,38.215,38.215,34.26,34.26,3.955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.065,3.174,0.556,9.19,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,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,0.0,0.0,0.0,0.0,0.0,3.696,9.536,9.234,0.641,0.0,0.0,0.0,0.0,2100.5,3037.3,15.863,15.703,0.0,2.96,2.876,0.403,4.894,0.436,-4.278,0.0,0.0,2.506,-0.191,3.578,0.0,0.586,0.0,0.881,-11.277,0.0,-0.157,-0.604,-0.071,2.475,-0.066,9.496,0.0,0.0,-6.581,-0.055,-1.286,-5.259,-0.192,0.0,2.174,10.038,1354.8,997.6,11399.5,2615.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 -base-hvac-stove-oil-only.xml,49.767,49.767,30.475,30.475,0.0,19.291,0.0,0.0,0.0,0.0,0.0,0.0,0.059,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.478,0.0,9.234,0.589,0.0,0.0,0.0,0.0,2031.6,0.0,16.428,0.0,0.0,3.746,3.648,0.514,7.099,0.633,-2.018,0.0,0.0,6.44,-0.123,5.892,0.0,0.728,0.0,0.0,-11.401,0.0,-0.484,-1.017,-0.132,1.191,-0.166,8.141,0.0,0.0,-8.092,-0.063,-2.012,-6.276,-0.275,0.0,0.0,9.861,1354.8,997.6,11399.6,2615.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 -base-hvac-stove-wood-pellets-only.xml,49.767,49.767,30.475,30.475,0.0,0.0,0.0,0.0,19.291,0.0,0.0,0.0,0.059,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.291,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.478,0.0,9.234,0.589,0.0,0.0,0.0,0.0,2031.6,0.0,16.428,0.0,0.0,3.746,3.648,0.514,7.099,0.633,-2.018,0.0,0.0,6.44,-0.123,5.892,0.0,0.728,0.0,0.0,-11.401,0.0,-0.484,-1.017,-0.132,1.191,-0.166,8.141,0.0,0.0,-8.092,-0.063,-2.012,-6.276,-0.275,0.0,0.0,9.861,1354.8,997.6,11399.6,2615.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 -base-hvac-undersized-allow-increased-fixed-capacities.xml,53.795,53.795,35.637,35.637,18.158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.369,4.048,0.78,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.158,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.072,13.232,9.234,0.613,0.0,0.0,0.0,0.0,2137.9,2940.1,19.743,15.072,0.0,3.634,3.649,0.514,7.126,0.632,-2.016,0.0,0.0,6.61,-0.119,4.808,0.0,0.729,0.0,2.576,-11.391,0.0,-0.012,-0.473,-0.053,2.761,-0.029,9.811,0.0,0.0,-5.884,-0.058,-1.181,-3.127,-0.167,0.0,1.978,9.896,1354.8,997.6,11399.6,2615.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 -base-hvac-undersized.xml,48.206,48.206,33.149,33.149,15.057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.243,2.097,0.36,9.173,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.057,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.1,6.416,9.234,0.624,0.0,0.0,3579.0,2634.0,2090.1,1893.3,3.967,2.695,0.0,2.798,3.029,0.425,5.282,0.477,-3.997,0.0,0.0,3.43,-0.193,3.765,0.0,0.618,0.0,9.558,-11.494,0.0,-0.392,-0.833,-0.105,1.645,-0.121,8.602,0.0,0.0,-7.639,-0.066,-1.444,-5.163,-0.239,0.0,2.669,9.804,1354.8,997.6,11399.5,2615.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 -base-hvac-wall-furnace-elec-only.xml,45.152,45.152,45.152,45.152,0.0,0.0,0.0,0.0,0.0,0.0,14.736,0.0,0.0,0.0,0.0,9.14,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.429,0.0,9.234,0.588,0.0,0.0,0.0,0.0,5692.6,0.0,15.871,0.0,0.0,3.748,3.65,0.514,7.104,0.633,-2.001,0.0,0.0,6.429,-0.124,4.81,0.0,0.729,0.0,0.0,-11.389,0.0,-0.502,-1.035,-0.134,1.131,-0.171,8.094,0.0,0.0,-8.18,-0.063,-1.64,-6.373,-0.279,0.0,0.0,9.873,1354.8,997.6,11399.6,2615.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 -base-lighting-ceiling-fans.xml,56.496,56.496,36.384,36.384,20.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.269,0.822,9.161,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.833,14.037,9.234,0.612,0.0,0.0,0.0,0.0,2105.7,3357.9,22.274,17.91,0.0,3.574,3.649,0.514,7.126,0.633,-2.014,0.0,0.0,6.598,-0.12,4.808,0.0,0.729,0.0,4.394,-11.391,0.0,-0.105,-0.521,-0.06,2.635,-0.041,9.669,0.0,0.0,-6.079,-0.058,-1.216,-3.297,-0.175,0.0,3.052,10.419,1354.8,997.6,11399.6,2615.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 -base-lighting-holiday.xml,56.327,56.327,36.194,36.194,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.533,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2364.0,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 -base-lighting-none.xml,53.696,53.696,30.795,30.795,22.901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.378,4.051,0.769,9.165,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.901,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.446,13.03,9.234,0.615,0.0,0.0,0.0,0.0,1748.4,3160.7,22.655,17.389,0.0,3.529,3.621,0.51,7.035,0.627,-2.124,0.0,0.0,6.5,-0.114,4.801,0.0,0.727,0.0,4.935,-8.923,0.0,-0.005,-0.423,-0.046,2.9,-0.016,9.946,0.0,0.0,-5.65,-0.054,-1.14,-2.934,-0.161,0.0,2.937,7.856,1354.8,997.6,11399.6,2615.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 -base-location-AMY-2012.xml,64.763,64.763,34.918,34.918,29.845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.485,3.003,0.508,9.579,0.0,0.0,4.524,0.0,0.335,0.0,0.0,0.0,0.0,2.225,0.0,0.0,0.32,0.366,1.517,1.533,0.0,2.121,8.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.845,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.944,8.911,9.676,0.618,0.0,0.0,0.0,0.0,2138.1,2808.0,22.682,15.164,0.0,4.287,4.39,0.624,9.443,0.808,-0.78,0.0,0.0,9.267,-0.129,5.192,0.0,0.775,0.0,6.64,-13.023,0.0,-0.034,-0.369,-0.046,1.68,-0.053,7.99,0.0,0.0,-7.013,-0.059,-0.907,-2.517,-0.1,0.0,2.149,8.333,1358.5,1000.6,11587.9,2659.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-baltimore-md.xml,38.129,38.129,29.974,29.974,8.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.034,5.118,1.054,8.637,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.533,17.207,8.551,0.635,0.0,0.0,0.0,0.0,1681.5,2489.0,12.657,13.684,0.0,3.519,3.375,0.0,0.0,0.722,0.826,0.0,2.273,0.0,-0.311,2.066,0.0,0.807,0.0,1.176,-7.167,0.0,-0.121,-0.612,0.0,0.0,-0.01,11.41,0.0,-0.544,0.0,-0.295,-0.436,-1.544,-0.209,0.0,1.691,8.064,1354.8,997.6,11036.0,2719.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 -base-location-capetown-zaf.xml,27.708,27.708,27.507,27.507,0.201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,3.833,0.914,7.629,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.201,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.186,14.603,7.422,0.692,0.0,0.0,0.0,0.0,1232.5,2221.1,4.631,11.442,0.0,1.699,1.432,0.0,0.0,0.571,-1.372,0.0,2.768,0.0,-0.88,0.769,0.0,0.34,0.0,0.03,-5.342,0.0,-0.685,-1.439,0.0,0.0,-0.436,14.383,0.0,-3.937,0.0,-0.879,-0.584,-1.955,-0.385,0.0,0.927,9.889,1354.8,997.6,10580.5,2607.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-dallas-tx.xml,34.163,34.163,32.556,32.556,1.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.007,8.742,1.862,6.815,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.482,30.281,6.675,0.573,0.0,0.0,0.0,0.0,1659.1,2764.6,9.634,14.246,0.0,1.728,1.609,0.0,0.0,0.369,-0.166,0.0,0.0,1.019,-0.345,1.004,0.0,0.387,0.0,0.04,-4.384,0.0,0.541,-0.017,0.0,0.0,0.191,18.832,0.0,0.0,1.946,-0.317,-0.361,-1.933,-0.095,0.0,0.344,11.42,1354.8,997.6,9989.1,2461.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 -base-location-duluth-mn.xml,68.768,68.768,29.809,29.809,38.958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.415,2.325,0.344,11.595,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.958,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.254,5.545,11.597,0.802,0.0,0.0,0.0,0.0,1751.7,2397.5,24.352,11.382,0.0,7.054,7.057,0.0,0.0,1.594,6.945,0.0,8.562,0.0,-0.342,6.398,0.0,0.0,0.0,6.758,-8.184,0.0,-0.47,-0.819,0.0,0.0,-0.103,6.591,0.0,-1.294,0.0,-0.339,-0.532,-1.053,0.0,0.0,0.403,3.329,1354.8,997.6,12167.9,2889.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 -base-location-helena-mt.xml,75.26,75.26,35.317,35.317,39.943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.979,2.363,0.367,10.332,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.943,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.726,6.19,10.479,0.624,0.0,0.0,0.0,0.0,2236.2,2760.8,28.974,14.337,0.0,5.393,5.48,0.776,11.049,1.053,0.566,0.0,0.0,11.93,-0.236,7.816,0.0,1.208,0.0,7.785,-15.531,0.0,0.007,-0.259,-0.028,1.342,0.008,7.346,0.0,0.0,-5.765,-0.179,-0.684,-2.424,-0.122,0.0,1.296,5.767,1354.8,997.6,11852.0,2719.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 +base-hvac-furnace-gas-only.xml,53.964,53.964,31.014,31.014,22.951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2118.3,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-furnace-gas-room-ac.xml,59.574,59.574,36.39,36.39,23.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.603,5.348,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.932,10.934,9.234,0.614,0.0,0.0,0.0,0.0,2110.3,3192.3,23.937,11.04,0.0,3.517,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.695,-11.406,0.0,0.044,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.167,-3.062,-0.165,0.0,-0.001,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-furnace-oil-only.xml,53.964,53.964,31.014,31.014,0.0,22.951,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2118.3,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-furnace-propane-only.xml,53.964,53.964,31.014,31.014,0.0,0.0,22.951,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2118.3,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-furnace-wood-only.xml,53.964,53.964,31.014,31.014,0.0,0.0,0.0,22.951,0.0,0.0,0.0,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2118.3,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-furnace-x3-dse.xml,58.709,58.709,36.817,36.817,21.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.392,5.051,0.934,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.413,10.933,9.234,0.614,0.0,0.0,0.0,0.0,2105.4,2602.0,16.358,11.04,0.0,3.733,3.631,0.511,7.422,0.628,-2.08,0.0,0.0,8.179,-0.064,4.804,0.0,0.728,0.0,0.0,-11.404,0.0,0.041,-0.458,-0.051,2.72,-0.025,9.856,0.0,0.0,-6.344,-0.061,-1.168,-3.062,-0.165,0.0,0.0,9.884,1354.8,997.6,11399.6,2615.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 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.791,33.791,33.791,33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.578,0.727,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.647,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2653.6,0.0,14.847,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.02,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.915,-0.064,-1.191,-2.985,-0.166,0.0,2.078,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-ground-to-air-heat-pump-heating-only.xml,36.506,36.506,36.506,36.506,0.0,0.0,0.0,0.0,0.0,0.0,5.335,0.0,0.754,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.11,0.0,9.234,0.59,0.0,0.0,0.0,0.0,3347.0,0.0,22.147,0.0,0.0,3.579,3.637,0.512,7.412,0.629,-2.073,0.0,0.0,8.023,-0.067,4.806,0.0,0.728,0.0,3.992,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-ground-to-air-heat-pump.xml,39.618,39.618,39.618,39.618,0.0,0.0,0.0,0.0,0.0,0.0,5.271,0.0,0.437,2.476,0.994,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.721,12.71,9.234,0.614,0.0,0.0,0.0,0.0,3227.0,2570.9,21.085,14.694,0.0,3.595,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.189,-0.063,4.804,0.0,0.728,0.0,3.429,-11.406,0.0,0.009,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.168,-3.069,-0.165,0.0,1.791,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.798,48.798,48.798,48.798,0.0,0.0,0.0,0.0,0.0,0.0,12.317,0.522,0.7,4.126,0.693,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.1,13.44,9.234,0.614,0.0,0.0,0.0,0.0,6598.8,3396.2,24.63,16.348,0.0,3.468,3.635,0.511,7.431,0.629,-2.08,0.0,0.0,8.195,-0.063,4.805,0.0,0.728,0.0,6.901,-11.406,0.0,-0.023,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.072,-0.165,0.0,2.545,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.933,43.933,43.933,43.933,0.0,0.0,0.0,0.0,0.0,0.0,8.849,0.478,0.582,2.979,0.605,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.387,13.863,9.234,0.614,0.0,0.0,0.0,0.0,5871.9,3044.3,24.626,17.672,0.0,3.417,3.635,0.512,7.433,0.629,-2.079,0.0,0.0,8.198,-0.063,4.805,0.0,0.728,0.0,8.228,-11.406,0.0,-0.038,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,2.972,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.265,43.265,43.265,43.265,0.0,0.0,0.0,0.0,0.0,0.0,8.753,0.276,0.734,2.842,0.221,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.508,15.053,9.234,0.614,0.0,0.0,0.0,0.0,5843.0,2905.6,24.947,18.005,0.0,3.335,3.637,0.512,7.436,0.629,-2.083,0.0,0.0,8.204,-0.062,4.805,0.0,0.728,0.0,10.411,-11.408,0.0,-0.094,-0.456,-0.051,2.723,-0.024,9.845,0.0,0.0,-6.333,-0.058,-1.167,-3.075,-0.165,0.0,4.213,9.88,1354.8,997.6,11399.6,2615.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 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.459,60.459,36.691,36.691,23.768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.285,5.202,0.764,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.15,14.884,9.234,0.614,0.0,0.0,0.0,2.0,2098.7,3477.3,23.965,18.153,0.0,3.509,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.928,-11.406,0.0,-0.087,-0.457,-0.051,2.722,-0.025,9.851,0.0,0.0,-6.338,-0.059,-1.168,-3.075,-0.165,0.0,4.017,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.157,59.157,35.384,35.384,23.773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.286,3.978,0.68,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.155,15.423,9.234,0.614,0.0,0.0,0.0,2.0,2098.8,3160.0,23.971,18.409,0.0,3.509,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.934,-11.406,0.0,-0.11,-0.457,-0.051,2.723,-0.024,9.851,0.0,0.0,-6.337,-0.059,-1.168,-3.075,-0.165,0.0,4.563,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.357,58.357,34.584,34.584,23.773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.286,3.455,0.403,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.155,16.03,9.234,0.614,0.0,0.0,0.0,5.0,2098.8,2960.2,23.971,17.791,0.0,3.509,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.934,-11.406,0.0,-0.145,-0.457,-0.051,2.723,-0.024,9.851,0.0,0.0,-6.336,-0.059,-1.168,-3.08,-0.165,0.0,5.217,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-install-quality-furnace-gas-only.xml,55.34,55.34,30.881,30.881,24.459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.464,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.963,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2096.2,0.0,25.245,0.0,0.0,3.475,3.637,0.512,7.414,0.629,-2.072,0.0,0.0,8.028,-0.067,4.806,0.0,0.728,0.0,6.93,-11.406,0.0,-0.465,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-install-quality-ground-to-air-heat-pump.xml,41.46,41.46,41.46,41.46,0.0,0.0,0.0,0.0,0.0,0.0,6.71,0.0,0.445,2.934,0.931,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.67,13.182,9.234,0.614,0.0,0.0,0.0,0.0,3457.2,2720.4,22.045,15.716,0.0,3.562,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.189,-0.063,4.804,0.0,0.728,0.0,4.405,-11.406,0.0,-0.011,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,2.275,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.235,33.235,33.235,33.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.585,0.165,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.286,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2599.0,0.0,13.362,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.004,-0.463,-0.051,2.704,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.191,-2.985,-0.166,0.0,1.724,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.252,40.252,40.252,40.252,0.0,0.0,0.0,0.0,0.0,0.0,6.511,0.029,0.506,2.614,0.152,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.581,12.116,9.234,0.614,0.0,0.0,0.0,0.0,4280.5,2331.3,19.311,13.289,0.0,3.6,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.188,-0.063,4.805,0.0,0.728,0.0,3.286,-11.406,0.0,0.03,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.069,-0.165,0.0,1.203,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-mini-split-air-conditioner-only-ducted.xml,32.622,32.622,32.622,32.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.057,0.08,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.947,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2279.6,0.0,13.15,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.009,-0.464,-0.051,2.703,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.191,-2.983,-0.166,0.0,1.373,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-mini-split-air-conditioner-only-ductless.xml,32.497,32.497,32.497,32.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.984,0.027,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2155.7,0.0,10.838,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.66,32.66,32.66,32.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.098,0.076,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.485,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2252.5,0.0,12.537,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.023,-0.464,-0.051,2.703,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.19,-2.981,-0.166,0.0,0.898,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,35.84,35.84,35.84,35.84,0.0,0.0,0.0,0.0,0.0,0.0,5.119,0.008,0.296,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.984,0.0,9.234,0.59,0.0,0.0,0.0,0.0,3748.9,0.0,19.215,0.0,0.0,3.618,3.636,0.512,7.411,0.629,-2.074,0.0,0.0,8.022,-0.067,4.806,0.0,0.728,0.0,2.84,-11.406,0.0,-0.466,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-mini-split-heat-pump-ducted.xml,38.178,38.178,38.178,38.178,0.0,0.0,0.0,0.0,0.0,0.0,5.202,0.009,0.291,2.158,0.079,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.346,11.843,9.234,0.614,0.0,0.0,0.0,0.0,3731.2,2203.3,19.153,12.77,0.0,3.608,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.188,-0.063,4.805,0.0,0.728,0.0,3.044,-11.406,0.0,0.038,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.067,-0.165,0.0,0.922,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,38.35,38.35,37.641,37.641,0.0,0.709,0.0,0.0,0.0,0.0,5.087,0.0,0.114,1.972,0.029,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.468,10.835,9.234,0.615,0.0,0.0,0.0,0.0,3135.3,2250.3,16.914,11.203,0.0,3.733,3.631,0.511,7.42,0.628,-2.098,0.0,0.0,8.187,-0.061,5.885,0.0,0.727,0.0,0.0,-11.413,0.0,0.051,-0.449,-0.05,2.75,-0.022,9.869,0.0,0.0,-6.294,-0.057,-1.432,-3.016,-0.163,0.0,0.0,9.875,1354.8,997.6,11399.6,2615.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 +base-hvac-mini-split-heat-pump-ductless.xml,37.334,37.334,37.334,37.334,0.0,0.0,0.0,0.0,0.0,0.0,4.621,0.0,0.096,2.148,0.028,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.415,10.933,9.234,0.614,0.0,0.0,0.0,0.0,3441.7,2165.1,16.357,11.04,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,0.042,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,0.0,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-multiple.xml,64.759,64.759,50.456,50.456,7.091,3.566,3.645,0.0,0.0,0.0,12.806,0.191,0.86,5.615,0.544,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.394,19.142,9.234,0.615,0.0,0.0,0.0,4.0,6399.6,4121.3,37.654,22.678,0.0,3.42,3.635,0.511,7.429,0.629,-2.104,0.0,0.0,8.207,-0.059,5.886,0.0,0.727,0.0,15.179,-11.419,0.0,-0.127,-0.447,-0.05,2.753,-0.022,9.857,0.0,0.0,-6.285,-0.055,-1.432,-3.056,-0.163,0.0,8.416,9.869,1354.8,997.6,11399.6,2615.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 +base-hvac-none.xml,19.737,19.737,19.737,19.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.607,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.484,-4.279,0.0,0.0,-0.959,11.061,0.0,0.0,-8.682,-0.056,-2.251,-4.738,-1.085,0.0,0.0,15.558,1354.8,997.6,8540.7,2104.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 +base-hvac-portable-heater-gas-only.xml,46.676,46.676,30.417,30.417,16.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2021.1,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.015,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-hvac-ptac-with-heating.xml,51.114,51.114,51.114,51.114,0.0,0.0,0.0,0.0,0.0,0.0,16.426,0.0,0.0,4.248,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.413,10.933,9.234,0.614,0.0,0.0,0.0,0.0,5891.9,2789.4,16.358,11.04,0.0,3.733,3.631,0.511,7.422,0.628,-2.08,0.0,0.0,8.179,-0.064,4.804,0.0,0.728,0.0,0.0,-11.404,0.0,0.041,-0.458,-0.051,2.72,-0.025,9.856,0.0,0.0,-6.344,-0.061,-1.168,-3.062,-0.165,0.0,0.0,9.884,1354.8,997.6,11399.6,2615.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 +base-hvac-ptac.xml,34.618,34.618,34.618,34.618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.133,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2959.7,0.0,10.838,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-pthp.xml,41.904,41.904,41.904,41.904,0.0,0.0,0.0,0.0,0.0,0.0,7.359,0.001,0.0,4.105,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.414,10.933,9.234,0.614,0.0,0.0,0.0,0.0,3931.4,2765.9,16.358,11.04,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,0.042,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,0.0,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-room-ac-only-33percent.xml,32.297,32.297,32.297,32.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.812,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2193.9,0.0,10.838,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-room-ac-only-ceer.xml,35.698,35.698,35.698,35.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.213,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3318.5,0.0,10.838,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-room-ac-only-detailed-setpoints.xml,34.453,34.453,34.453,34.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.975,0.0,9.202,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.824,9.234,0.655,0.0,0.0,0.0,0.0,0.0,3002.0,0.0,9.795,0.0,2.657,2.516,0.351,4.215,0.345,-5.376,0.0,0.0,2.771,-0.138,3.071,0.0,0.521,0.0,0.0,-11.292,0.0,-0.136,-0.639,-0.076,2.224,-0.074,9.392,0.0,0.0,-7.648,-0.066,-1.333,-3.356,-0.199,0.0,0.0,10.036,1354.8,997.6,11399.5,2615.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 +base-hvac-room-ac-only.xml,35.688,35.688,35.688,35.688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.203,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3315.2,0.0,10.838,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 +base-hvac-seasons.xml,58.275,58.275,35.866,35.866,22.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.37,4.241,0.815,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.987,13.839,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3364.9,22.926,17.854,0.0,3.504,3.596,0.506,7.43,0.614,-2.146,0.0,0.0,8.12,-0.033,4.751,0.0,0.721,0.0,4.858,-11.267,0.0,-0.086,-0.493,-0.056,2.729,-0.038,9.793,0.0,0.0,-6.401,-0.03,-1.218,-3.085,-0.172,0.0,3.067,10.021,1354.8,997.6,11399.6,2615.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 +base-hvac-setpoints-daily-schedules.xml,57.278,57.278,35.302,35.302,21.976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.363,3.777,0.722,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.203,11.997,9.234,0.615,0.0,0.0,103.0,51.0,2147.7,3586.5,34.942,20.092,0.0,3.505,3.568,0.501,7.424,0.605,-2.357,0.0,0.0,8.552,0.008,4.647,0.0,0.726,0.0,4.547,-11.357,0.0,-0.062,-0.493,-0.056,2.658,-0.041,9.671,0.0,0.0,-6.651,-0.001,-1.219,-3.37,-0.173,0.0,2.387,9.932,1354.8,997.6,11399.6,2615.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 +base-hvac-setpoints-daily-setbacks.xml,56.678,56.678,35.454,35.454,21.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35,3.913,0.75,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.786,12.612,9.234,0.616,0.0,0.0,0.0,8.0,2114.7,3597.9,25.225,20.656,0.0,3.496,3.55,0.499,7.26,0.602,-2.442,0.0,0.0,8.073,-0.022,4.635,0.0,0.723,0.0,4.44,-11.385,0.0,-0.046,-0.489,-0.056,2.612,-0.038,9.647,0.0,0.0,-6.632,-0.023,-1.201,-3.32,-0.176,0.0,2.533,9.905,1354.8,997.6,11399.6,2615.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 +base-hvac-setpoints.xml,41.483,41.483,34.09,34.09,7.393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.122,2.987,0.511,9.194,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.918,8.766,9.234,0.646,0.0,0.0,0.0,0.0,2091.3,3151.2,17.325,15.092,0.0,2.829,2.763,0.386,5.247,0.406,-4.647,0.0,0.0,5.334,-0.06,3.457,0.0,0.568,0.0,1.58,-11.281,0.0,-0.112,-0.563,-0.066,2.409,-0.056,9.616,0.0,0.0,-7.562,-0.06,-1.257,-5.076,-0.187,0.0,2.03,10.039,1354.8,997.6,11399.6,2615.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 +base-hvac-stove-oil-only.xml,52.044,52.044,30.484,30.484,0.0,21.56,0.0,0.0,0.0,0.0,0.0,0.0,0.065,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2031.7,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.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 +base-hvac-stove-wood-pellets-only.xml,52.044,52.044,30.484,30.484,0.0,0.0,0.0,0.0,21.56,0.0,0.0,0.0,0.065,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2031.7,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.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 +base-hvac-undersized-allow-increased-fixed-capacities.xml,55.953,55.953,35.565,35.565,20.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,3.954,0.757,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,0.0,19.169,12.825,9.234,0.614,0.0,0.0,0.0,0.0,2117.5,2940.2,20.336,15.047,0.0,3.612,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.188,-0.063,4.804,0.0,0.728,0.0,2.868,-11.406,0.0,0.006,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.168,-3.068,-0.165,0.0,1.933,9.882,1354.8,997.6,11399.6,2615.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 +base-hvac-undersized.xml,48.65,48.65,33.141,33.141,15.509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25,2.08,0.355,9.179,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,6.322,9.234,0.63,0.0,0.0,3728.0,2596.0,2090.1,1934.4,3.827,2.687,0.0,2.674,2.903,0.406,5.274,0.445,-4.418,0.0,0.0,4.612,-0.122,3.599,0.0,0.597,0.0,9.659,-11.529,0.0,-0.362,-0.8,-0.1,1.647,-0.113,8.68,0.0,0.0,-8.056,-0.065,-1.417,-5.004,-0.234,0.0,2.665,9.775,1354.8,997.6,11399.6,2615.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 +base-hvac-wall-furnace-elec-only.xml,47.008,47.008,47.008,47.008,0.0,0.0,0.0,0.0,0.0,0.0,16.59,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,5985.7,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.015,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 +base-lighting-ceiling-fans.xml,58.856,58.856,36.3,36.3,22.556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.168,0.797,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.124,13.606,9.234,0.612,0.0,0.0,0.0,0.0,2109.3,3329.5,22.926,17.652,0.0,3.545,3.634,0.511,7.427,0.629,-2.081,0.0,0.0,8.176,-0.064,4.805,0.0,0.728,0.0,4.885,-11.406,0.0,-0.085,-0.504,-0.058,2.595,-0.036,9.707,0.0,0.0,-6.535,-0.06,-1.203,-3.236,-0.173,0.0,2.98,10.404,1354.8,997.6,11399.6,2615.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 +base-lighting-holiday.xml,58.685,58.685,36.109,36.109,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.533,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2397.0,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 +base-lighting-none.xml,56.089,56.089,30.714,30.714,25.375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.419,3.953,0.745,9.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.765,12.614,9.234,0.616,0.0,0.0,0.0,0.0,1751.5,3063.3,23.302,17.127,0.0,3.501,3.606,0.507,7.343,0.623,-2.183,0.0,0.0,8.084,-0.058,4.798,0.0,0.727,0.0,5.425,-8.931,0.0,0.013,-0.407,-0.044,2.862,-0.012,9.988,0.0,0.0,-6.1,-0.054,-1.128,-2.875,-0.158,0.0,2.863,7.849,1354.8,997.6,11399.6,2615.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 +base-location-AMY-2012.xml,67.091,67.091,34.85,34.85,32.241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.524,2.916,0.487,9.58,0.0,0.0,4.524,0.0,0.335,0.0,0.0,0.0,0.0,2.225,0.0,0.0,0.32,0.366,1.517,1.533,0.0,2.121,8.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.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,30.189,8.534,9.676,0.619,0.0,0.0,0.0,0.0,2146.2,2730.0,23.365,14.839,0.0,4.249,4.367,0.62,9.729,0.801,-0.861,0.0,0.0,10.857,-0.074,5.179,0.0,0.772,0.0,7.122,-13.027,0.0,-0.015,-0.352,-0.043,1.643,-0.049,8.043,0.0,0.0,-7.443,-0.065,-0.895,-2.447,-0.098,0.0,2.075,8.329,1358.5,1000.6,11587.9,2659.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-baltimore-md.xml,39.241,39.241,29.871,29.871,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.039,5.013,1.028,8.661,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.656,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1685.2,2497.1,13.734,13.552,0.0,3.506,3.362,0.0,0.0,0.715,0.644,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-7.221,0.0,-0.093,-0.582,0.0,0.0,-0.007,11.358,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,8.01,1354.8,997.6,11036.0,2719.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 +base-location-capetown-zaf.xml,27.702,27.702,27.5,27.5,0.202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,3.827,0.913,7.629,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.187,14.577,7.422,0.693,0.0,0.0,0.0,0.0,1232.5,2220.9,4.635,11.44,0.0,1.698,1.431,0.0,0.0,0.571,-1.372,0.0,2.773,0.0,-0.881,0.769,0.0,0.34,0.0,0.03,-5.343,0.0,-0.685,-1.438,0.0,0.0,-0.436,14.386,0.0,-3.963,0.0,-0.88,-0.584,-1.952,-0.385,0.0,0.923,9.888,1354.8,997.6,10580.5,2607.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-location-dallas-tx.xml,34.297,34.297,32.531,32.531,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008,8.722,1.857,6.815,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,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,1.629,30.194,6.675,0.573,0.0,0.0,0.0,0.0,1662.1,2763.3,9.704,14.234,0.0,1.739,1.617,0.0,0.0,0.364,-0.299,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-4.416,0.0,0.559,0.0,0.0,0.0,0.189,18.747,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.344,11.388,1354.8,997.6,9989.1,2461.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 +base-location-duluth-mn.xml,70.947,70.947,29.773,29.773,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.438,2.254,0.326,11.624,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.316,5.224,11.597,0.833,0.0,0.0,0.0,0.0,1752.2,2394.7,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,6.72,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-8.223,0.0,-0.435,-0.782,0.0,0.0,-0.099,6.493,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.335,3.29,1354.8,997.6,12167.9,2889.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 +base-location-helena-mt.xml,77.807,77.807,35.297,35.297,42.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.042,2.297,0.35,10.333,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.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,40.151,5.896,10.479,0.625,0.0,0.0,0.0,0.0,2237.1,2944.6,30.202,14.109,0.0,5.353,5.46,0.773,11.386,1.047,0.435,0.0,0.0,13.753,-0.184,7.808,0.0,1.207,0.0,8.247,-15.573,0.0,0.013,-0.249,-0.027,1.322,0.009,7.312,0.0,0.0,-6.005,-0.178,-0.675,-2.363,-0.121,0.0,1.246,5.726,1354.8,997.6,11852.0,2719.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 base-location-honolulu-hi.xml,36.112,36.112,36.112,36.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.148,3.017,4.815,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,0.0,2301.6,0.0,13.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,1.228,0.744,0.0,0.0,0.3,26.44,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,15.781,1354.8,997.6,8540.5,2104.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 base-location-miami-fl.xml,35.272,35.272,35.272,35.272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.381,2.813,4.948,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.971,4.712,0.551,0.0,0.0,0.0,0.0,0.0,2503.2,0.0,13.564,0.0,0.0,0.0,0.0,0.0,0.0,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.006,0.575,0.0,0.0,0.304,24.828,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,15.782,1354.8,997.6,8625.3,2125.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 -base-location-phoenix-az.xml,38.401,38.401,38.4,38.4,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.003,3.085,5.181,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,51.868,4.955,0.556,0.0,0.0,0.0,0.0,1214.9,3313.2,0.549,17.641,0.0,0.7,0.515,0.0,0.0,0.208,0.46,0.0,0.0,-0.139,-0.47,0.366,0.0,0.122,0.0,-0.0,-1.875,0.0,1.772,1.411,0.0,0.0,0.807,29.801,0.0,0.0,7.07,-0.473,0.011,-3.125,0.115,0.0,0.885,13.912,1354.8,997.6,8429.2,2077.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,36.624,36.624,27.621,27.621,9.003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.037,2.843,0.538,9.072,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.003,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.317,8.709,8.879,0.77,0.0,0.0,0.0,0.0,1688.0,2614.1,8.242,13.479,0.0,3.453,3.295,0.0,0.0,0.75,0.763,0.0,5.671,0.0,-0.427,1.472,0.0,0.813,0.0,1.501,-9.169,0.0,-0.314,-0.782,0.0,0.0,-0.01,9.076,0.0,-2.801,0.0,-0.419,-0.364,-1.839,-0.255,0.0,0.563,6.062,1354.8,997.6,11239.5,2769.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 -base-mechvent-balanced.xml,77.52,77.52,37.828,37.828,39.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.655,4.153,0.782,9.169,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.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,37.173,13.209,9.234,0.62,0.0,0.0,0.0,0.0,2238.1,3983.5,31.651,20.841,0.0,3.519,3.718,0.523,7.045,0.655,-1.91,0.0,0.0,6.474,-0.151,5.493,0.0,15.046,0.0,8.172,-11.715,0.0,0.134,-0.27,-0.024,3.08,0.028,10.339,0.0,0.0,-5.472,-0.101,-1.033,-2.569,-3.594,0.0,3.189,9.578,1354.8,997.6,11399.5,2615.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 -base-mechvent-bath-kitchen-fans.xml,57.912,57.912,36.088,36.088,21.824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.36,4.337,0.838,9.164,0.0,0.0,4.51,0.0,0.334,0.112,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.824,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.436,14.227,9.234,0.614,0.0,0.0,0.0,0.0,2159.4,3530.9,24.165,19.722,0.0,3.567,3.65,0.514,7.124,0.633,-2.041,0.0,0.0,6.633,-0.113,4.324,0.0,2.474,0.0,4.737,-11.406,0.0,-0.049,-0.458,-0.051,2.805,-0.025,9.832,0.0,0.0,-5.803,-0.053,-1.053,-3.062,-0.689,0.0,3.151,9.881,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-airflow-fraction-zero.xml,70.837,70.837,37.763,37.763,33.074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.546,4.242,0.807,9.167,0.0,0.0,4.51,0.0,0.334,1.725,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.074,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.976,13.65,9.234,0.617,0.0,0.0,0.0,0.0,2171.4,3598.0,28.648,20.634,0.0,3.501,3.661,0.515,7.102,0.638,-2.031,0.0,0.0,6.651,-0.117,1.505,0.0,13.813,0.0,6.942,-11.507,0.0,0.026,-0.377,-0.04,2.996,-0.002,10.062,0.0,0.0,-5.499,-0.063,-0.26,-2.771,-3.314,0.0,3.214,9.784,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-dse.xml,70.955,70.955,38.727,38.727,32.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.532,4.966,0.902,9.167,0.0,0.0,4.51,0.0,0.334,1.884,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.127,10.516,9.234,0.617,0.0,0.0,0.0,0.0,2170.3,2714.2,20.674,12.743,0.0,3.757,3.657,0.515,7.093,0.637,-2.024,0.0,0.0,6.637,-0.12,1.505,0.0,13.684,0.0,0.0,-11.503,0.0,0.117,-0.38,-0.04,2.993,-0.002,10.074,0.0,0.0,-5.504,-0.066,-0.26,-2.761,-3.283,0.0,0.0,9.788,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-evap-cooler-only-ducted.xml,34.163,34.163,34.163,34.163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.912,9.228,0.0,0.0,4.51,0.0,0.334,2.748,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.398,9.234,0.683,0.0,0.0,0.0,0.0,0.0,2190.0,0.0,17.498,0.0,2.246,2.181,0.304,2.75,0.261,-6.396,0.0,0.0,-0.481,-0.229,0.723,0.0,7.87,0.0,1.94,-11.308,0.0,0.136,-0.37,-0.038,3.062,-0.007,10.216,0.0,0.0,-6.052,-0.056,-0.26,-2.6,-3.127,0.0,0.632,10.048,1354.8,997.6,11399.5,2615.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 -base-mechvent-cfis-supplemental-fan-exhaust.xml,67.919,67.919,36.396,36.396,31.522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,4.157,0.787,9.168,0.0,0.0,4.51,0.0,0.334,0.489,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.522,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.522,13.308,9.234,0.619,0.0,0.0,0.0,0.0,2135.4,3598.1,28.65,20.62,0.0,3.534,3.681,0.518,7.076,0.644,-1.993,0.0,0.0,6.588,-0.128,1.94,0.0,12.315,0.0,6.64,-11.592,0.0,0.081,-0.326,-0.032,3.059,0.012,10.199,0.0,0.0,-5.434,-0.075,-0.26,-2.635,-4.037,0.0,3.139,9.701,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-supplemental-fan-supply.xml,70.187,70.187,36.422,36.422,33.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.557,4.161,0.787,9.168,0.0,0.0,4.51,0.0,0.334,0.473,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.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,31.623,13.297,9.234,0.618,0.0,0.0,0.0,0.0,2161.3,3598.1,28.649,20.623,0.0,3.504,3.667,0.516,7.087,0.641,-2.009,0.0,0.0,6.624,-0.123,1.508,0.0,14.387,0.0,7.062,-11.541,0.0,0.054,-0.352,-0.036,3.033,0.006,10.144,0.0,0.0,-5.449,-0.07,-0.25,-2.68,-3.924,0.0,3.162,9.751,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis.xml,72.164,72.164,37.694,37.694,34.471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.569,4.189,0.792,9.168,0.0,0.0,4.51,0.0,0.334,1.699,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.471,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.284,13.399,9.234,0.618,0.0,0.0,0.0,0.0,2175.3,3598.0,28.647,20.617,0.0,3.499,3.701,0.521,7.073,0.651,-1.902,0.0,0.0,6.546,-0.152,1.518,0.0,13.988,0.0,8.168,-11.613,0.0,0.128,-0.319,-0.031,3.016,0.016,10.247,0.0,0.0,-5.519,-0.101,-0.239,-2.682,-3.101,0.0,2.442,9.679,1354.8,997.6,11399.6,2615.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 -base-mechvent-erv-atre-asre.xml,62.957,62.957,37.859,37.859,25.097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.368,0.843,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.097,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.503,14.295,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3548.5,24.598,19.394,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.905,0.0,5.384,-11.427,0.0,-0.036,-0.441,-0.049,2.87,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.858,0.0,3.226,9.862,1354.8,997.6,11399.6,2615.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 -base-mechvent-erv.xml,62.961,62.961,37.859,37.859,25.101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.368,0.843,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.101,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.507,14.295,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3548.6,24.6,19.394,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.908,0.0,5.385,-11.427,0.0,-0.036,-0.441,-0.049,2.871,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.859,0.0,3.226,9.862,1354.8,997.6,11399.6,2615.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 -base-mechvent-exhaust-rated-flow-rate.xml,71.738,71.738,36.824,36.824,34.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.576,4.129,0.778,9.168,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.7,13.147,9.234,0.619,0.0,0.0,0.0,0.0,2168.2,3628.1,28.7,20.683,0.0,3.516,3.684,0.518,7.077,0.644,-2.004,0.0,0.0,6.584,-0.124,1.462,0.0,15.369,0.0,7.265,-11.592,0.0,0.084,-0.322,-0.032,3.061,0.012,10.189,0.0,0.0,-5.437,-0.071,-0.236,-2.626,-4.238,0.0,3.149,9.7,1354.8,997.6,11399.6,2615.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 -base-mechvent-exhaust.xml,71.738,71.738,36.824,36.824,34.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.576,4.129,0.778,9.168,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.915,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.7,13.147,9.234,0.619,0.0,0.0,0.0,0.0,2168.2,3628.1,28.7,20.683,0.0,3.516,3.684,0.518,7.077,0.644,-2.004,0.0,0.0,6.584,-0.124,1.462,0.0,15.369,0.0,7.265,-11.592,0.0,0.084,-0.322,-0.032,3.061,0.012,10.189,0.0,0.0,-5.437,-0.071,-0.236,-2.626,-4.238,0.0,3.149,9.7,1354.8,997.6,11399.6,2615.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 -base-mechvent-hrv-asre.xml,62.957,62.957,37.863,37.863,25.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.371,0.844,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.501,14.297,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3549.7,24.597,19.396,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.902,0.0,5.384,-11.427,0.0,-0.036,-0.441,-0.049,2.87,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.858,0.0,3.228,9.862,1354.8,997.6,11399.6,2615.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 -base-mechvent-hrv.xml,62.961,62.961,37.863,37.863,25.099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,4.37,0.844,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,0.0,0.0,23.504,14.297,9.234,0.615,0.0,0.0,0.0,0.0,2178.7,3549.7,24.599,19.397,0.0,3.538,3.645,0.513,7.116,0.633,-2.055,0.0,0.0,6.65,-0.112,5.4,0.0,3.905,0.0,5.385,-11.427,0.0,-0.036,-0.441,-0.049,2.871,-0.02,9.886,0.0,0.0,-5.7,-0.054,-1.266,-2.976,-0.859,0.0,3.228,9.862,1354.8,997.6,11399.6,2615.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 -base-mechvent-multiple.xml,77.667,77.667,37.573,37.573,40.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.659,3.795,0.685,9.172,0.0,0.0,4.51,0.0,0.334,1.579,0.0,0.0,0.406,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.095,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.55,11.57,9.234,0.622,0.0,0.0,0.0,19.0,2218.1,3646.4,35.062,22.708,0.0,3.21,3.708,0.522,7.085,0.653,-1.889,0.0,0.0,6.598,-0.154,3.867,0.0,9.527,0.0,15.709,-11.617,0.0,0.04,-0.227,-0.018,3.269,0.038,10.517,0.0,0.0,-5.143,-0.101,-0.62,0.0,-2.175,-8.228,4.665,9.678,1354.8,997.6,11399.6,2615.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 -base-mechvent-supply.xml,70.317,70.317,36.895,36.895,33.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.551,4.206,0.797,9.168,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.422,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.302,13.481,9.234,0.618,0.0,0.0,0.0,0.0,2190.6,3628.1,28.514,20.665,0.0,3.506,3.666,0.516,7.089,0.64,-2.012,0.0,0.0,6.628,-0.123,1.508,0.0,14.126,0.0,6.997,-11.539,0.0,0.051,-0.353,-0.036,3.033,0.005,10.139,0.0,0.0,-5.448,-0.069,-0.251,-2.685,-3.763,0.0,3.198,9.753,1354.8,997.6,11399.6,2615.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 -base-mechvent-whole-house-fan.xml,54.648,54.648,34.33,34.33,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.335,2.491,0.39,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.667,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.027,6.45,9.234,0.622,0.0,0.0,0.0,0.0,2105.7,2993.5,22.274,15.245,0.0,3.57,3.647,0.514,7.145,0.632,-2.022,0.0,0.0,6.737,-0.113,4.807,0.0,0.729,0.0,4.438,-11.391,0.0,0.081,-0.274,-0.025,3.342,0.019,10.404,0.0,0.0,-4.938,-0.051,-1.001,0.0,-0.136,-11.801,1.765,9.904,1354.8,997.6,11399.6,2615.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 -base-misc-additional-properties.xml,56.128,56.128,35.995,35.995,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 -base-misc-bills-none.xml,56.128,56.128,35.995,35.995,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 -base-misc-bills-pv.xml,56.128,-1.135,35.995,-21.268,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-57.264,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 -base-misc-bills.xml,56.128,56.128,35.995,35.995,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 -base-misc-defaults.xml,64.201,44.888,31.681,12.368,32.52,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.659,2.189,0.457,2.6,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.083,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.745,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-19.313,0.0,32.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,28.221,5.497,10.574,1.399,0.0,9.376,0.0,0.0,2469.3,2862.9,25.533,14.612,0.0,3.493,3.69,0.519,7.064,1.121,-1.925,0.0,0.0,6.563,-0.141,2.105,0.0,15.055,0.0,2.61,-12.206,0.0,0.68,-0.106,-0.0,3.51,-0.197,10.773,0.0,0.0,-4.765,-0.089,-0.287,0.0,-3.448,-11.016,0.452,10.918,1610.3,1574.0,10913.6,3846.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-misc-emissions.xml,56.128,29.553,35.995,9.42,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.575,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.9,4677.86,1712.28,58.63,725.4,139.48,1590.75,790.52,60.7,392.41,55.6,62.16,257.77,261.29,375.64,1467.15,-4525.24,2965.59,2965.59,4115.51,1149.92,38.67,415.09,78.24,943.95,474.09,37.41,232.37,33.15,36.24,150.75,155.82,224.9,888.52,-2559.28,2965.59,2965.59,5355.12,2389.53,84.25,1109.79,215.24,2324.38,1143.92,84.66,563.04,80.8,92.67,383.71,387.61,536.3,2124.29,-6741.11,2965.59,2965.59,1.07,1.06,0.04,0.49,0.1,1.03,0.51,0.04,0.25,0.04,0.04,0.17,0.17,0.24,0.94,-2.99,0.01,0.01,3.71,1.85,0.07,0.86,0.17,1.8,0.89,0.07,0.44,0.06,0.07,0.3,0.3,0.42,1.64,-5.22,1.86,1.86 -base-misc-generators.xml,73.128,69.716,35.995,32.583,28.633,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.412,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 -base-misc-ground-conductivity.xml,53.871,53.871,35.921,35.921,17.951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.296,4.345,0.841,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.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,16.808,14.281,9.234,0.613,0.0,0.0,0.0,0.0,2128.6,3395.6,21.399,18.178,0.0,3.615,3.676,0.518,6.908,0.639,-1.93,0.0,0.0,5.036,-0.122,4.82,0.0,0.731,0.0,3.968,-11.385,0.0,-0.072,-0.481,-0.054,2.471,-0.031,9.796,0.0,0.0,-5.663,-0.059,-1.188,-3.146,-0.168,0.0,3.156,9.902,1354.8,997.6,11399.6,2615.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 -base-misc-loads-large-uncommon.xml,144.1,144.1,68.457,68.457,67.647,0.0,2.499,5.496,0.0,0.0,0.0,0.0,0.246,5.372,1.098,9.159,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,4.437,3.415,0.0,0.0,14.883,0.0,0.0,0.0,0.0,0.0,49.967,0.0,0.0,2.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,2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.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,13.934,18.748,9.234,0.609,0.0,0.0,0.0,0.0,3234.2,5151.9,21.179,20.312,0.0,3.651,3.696,0.521,7.332,0.641,-1.811,0.0,0.0,6.874,-0.119,4.833,0.0,0.734,0.0,3.343,-16.13,0.0,-0.212,-0.591,-0.07,2.493,-0.06,9.526,0.0,0.0,-6.305,-0.056,-1.285,-3.598,-0.183,0.0,3.84,15.412,1354.8,997.6,11399.6,2615.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 -base-misc-loads-large-uncommon2.xml,90.584,90.584,64.908,64.908,17.681,2.499,0.0,0.0,5.496,0.0,0.0,0.0,0.246,5.372,1.098,9.159,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,0.887,3.415,0.0,0.0,14.883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,5.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.934,18.748,9.234,0.609,0.0,0.0,0.0,0.0,3176.1,4749.4,21.179,20.312,0.0,3.651,3.696,0.521,7.332,0.641,-1.811,0.0,0.0,6.874,-0.119,4.833,0.0,0.734,0.0,3.343,-16.13,0.0,-0.212,-0.591,-0.07,2.493,-0.06,9.526,0.0,0.0,-6.305,-0.056,-1.285,-3.598,-0.183,0.0,3.84,15.412,1354.8,997.6,11399.6,2615.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 -base-misc-loads-none.xml,50.86,50.86,24.753,24.753,26.107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.431,3.687,0.68,9.167,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.107,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.451,11.516,9.234,0.617,0.0,0.0,0.0,0.0,1537.0,2732.9,23.516,16.373,0.0,3.495,3.605,0.507,6.99,0.624,-2.188,0.0,0.0,6.462,-0.107,4.798,0.0,0.726,0.0,5.546,-6.31,0.0,0.051,-0.374,-0.039,3.046,-0.003,10.06,0.0,0.0,-5.418,-0.048,-1.093,-2.722,-0.153,0.0,2.67,5.707,1354.8,997.6,11399.6,2615.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 -base-misc-neighbor-shading.xml,58.942,58.942,35.664,35.664,23.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.384,4.064,0.774,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,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,21.8,13.123,9.234,0.615,0.0,0.0,0.0,0.0,2112.8,3271.3,22.527,17.288,0.0,3.536,3.822,0.564,7.016,0.831,0.352,0.0,0.0,6.37,-0.113,4.795,0.0,0.726,0.0,4.996,-11.412,0.0,-0.023,-0.552,-0.072,2.858,-0.086,8.47,0.0,0.0,-5.712,-0.053,-1.155,-2.994,-0.163,0.0,2.905,9.876,1354.8,997.6,11399.6,2615.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 -base-misc-shielding-of-home.xml,55.792,55.792,36.138,36.138,19.654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.324,4.496,0.879,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.404,14.964,9.234,0.613,0.0,0.0,0.0,0.0,2131.0,3318.2,22.254,18.092,0.0,3.579,3.652,0.514,7.132,0.633,-2.009,0.0,0.0,6.611,-0.12,4.426,0.0,0.73,0.0,4.306,-11.389,0.0,-0.078,-0.485,-0.055,2.726,-0.032,9.775,0.0,0.0,-5.94,-0.059,-1.074,-2.63,-0.169,0.0,3.24,9.897,1354.8,997.6,11399.6,2615.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 -base-misc-usage-multiplier.xml,123.98,123.98,50.823,50.823,65.961,0.0,2.249,4.947,0.0,0.0,0.0,0.0,0.305,4.647,0.916,8.303,0.0,0.0,4.059,0.0,0.3,0.0,0.0,0.0,0.0,1.998,2.151,0.0,0.287,0.329,1.361,1.375,0.0,1.903,7.537,0.0,0.0,0.0,8.286,3.993,3.073,0.0,0.0,18.473,0.0,0.0,0.0,0.0,0.0,44.97,0.0,0.0,2.518,0.0,0.0,0.0,0.0,0.0,0.0,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.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.298,15.58,8.31,0.612,0.0,0.0,0.0,0.0,2728.7,4194.1,21.973,18.735,0.0,3.601,3.666,0.516,7.177,0.636,-1.965,0.0,0.0,6.676,-0.121,4.868,0.0,0.659,0.0,4.068,-12.828,0.0,-0.101,-0.502,-0.057,2.675,-0.037,9.726,0.0,0.0,-6.01,-0.06,-1.219,-3.275,-0.154,0.0,3.35,11.422,1219.3,897.9,10259.7,2354.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 -base-pv-battery-ah.xml,56.128,29.553,35.995,9.42,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.575,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 -base-pv-battery-garage.xml,56.419,29.889,34.669,8.139,21.75,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.359,3.08,0.546,9.266,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.53,0.0,21.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,20.362,9.127,9.234,0.724,0.0,0.0,0.0,0.0,2134.8,2556.2,17.33,10.96,0.0,3.53,3.791,0.504,5.518,0.617,2.01,0.0,0.0,4.778,-0.1,5.372,0.0,0.0,0.0,3.415,-9.264,0.0,0.091,-0.295,-0.038,2.483,-0.004,6.613,0.0,0.0,-5.181,-0.04,-1.235,-2.124,0.0,0.0,1.32,7.691,1354.8,997.6,11399.6,2615.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 -base-pv-battery-lifetime-model.xml,56.128,29.605,35.995,9.472,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.523,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 -base-pv-battery.xml,56.128,29.553,35.995,9.42,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.575,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 -base-pv.xml,56.128,29.242,35.995,9.109,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 +base-location-phoenix-az.xml,38.372,38.372,38.371,38.371,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.98,3.08,5.181,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,51.764,4.955,0.556,0.0,0.0,0.0,0.0,1117.5,3312.6,0.594,17.637,0.0,0.71,0.522,0.0,0.0,0.205,0.389,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.908,0.0,1.784,1.422,0.0,0.0,0.805,29.748,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,13.879,1354.8,997.6,8429.2,2077.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,37.21,37.21,27.593,27.593,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,2.812,0.53,9.081,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.884,8.569,8.879,0.78,0.0,0.0,0.0,0.0,1686.5,2608.8,8.464,13.423,0.0,3.447,3.289,0.0,0.0,0.744,0.651,0.0,6.241,0.0,-0.412,1.469,0.0,0.813,0.0,1.647,-9.196,0.0,-0.3,-0.767,0.0,0.0,-0.009,9.028,0.0,-2.904,0.0,-0.409,-0.361,-1.829,-0.252,0.0,0.543,6.035,1354.8,997.6,11239.5,2769.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 +base-mechvent-balanced.xml,79.907,79.907,37.754,37.754,42.153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.695,4.06,0.759,9.17,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.48,12.824,9.234,0.62,0.0,0.0,0.0,0.0,2216.0,3658.0,32.281,20.83,0.0,3.499,3.712,0.522,7.357,0.653,-1.953,0.0,0.0,8.047,-0.112,5.502,0.0,15.078,0.0,8.631,-11.75,0.0,0.161,-0.248,-0.021,3.037,0.034,10.388,0.0,0.0,-5.944,-0.108,-1.012,-2.523,-3.525,0.0,3.118,9.543,1354.8,997.6,11399.6,2615.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 +base-mechvent-bath-kitchen-fans.xml,60.27,60.27,36.002,36.002,24.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4,4.236,0.813,9.164,0.0,0.0,4.51,0.0,0.334,0.112,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.726,13.798,9.234,0.615,0.0,0.0,0.0,0.0,2162.6,3503.0,24.803,19.466,0.0,3.537,3.633,0.511,7.427,0.628,-2.099,0.0,0.0,8.204,-0.058,4.319,0.0,2.471,0.0,5.225,-11.412,0.0,-0.031,-0.444,-0.049,2.764,-0.021,9.878,0.0,0.0,-6.264,-0.054,-1.043,-3.004,-0.684,0.0,3.077,9.876,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis-airflow-fraction-zero.xml,73.243,73.243,37.657,37.657,35.586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.587,4.149,0.784,9.167,0.0,0.0,4.51,0.0,0.334,1.693,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.33,13.259,9.234,0.618,0.0,0.0,0.0,0.0,2173.8,3591.3,29.284,20.518,0.0,3.476,3.651,0.514,7.409,0.635,-2.072,0.0,0.0,8.222,-0.07,1.506,0.0,13.864,0.0,7.421,-11.525,0.0,0.048,-0.359,-0.037,2.953,0.003,10.117,0.0,0.0,-5.969,-0.066,-0.255,-2.72,-3.256,0.0,3.143,9.766,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis-dse.xml,73.349,73.349,38.597,38.597,34.752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.573,4.855,0.875,9.167,0.0,0.0,4.51,0.0,0.334,1.85,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,26.018,10.195,9.234,0.618,0.0,0.0,0.0,0.0,2173.0,2701.0,21.16,12.567,0.0,3.75,3.646,0.513,7.401,0.634,-2.067,0.0,0.0,8.206,-0.073,1.506,0.0,13.738,0.0,0.0,-11.521,0.0,0.135,-0.361,-0.037,2.951,0.003,10.127,0.0,0.0,-5.973,-0.069,-0.255,-2.711,-3.224,0.0,0.0,9.771,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis-evap-cooler-only-ducted.xml,34.15,34.15,34.15,34.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.887,9.233,0.0,0.0,4.51,0.0,0.334,2.754,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,9.234,0.688,0.0,0.0,0.0,0.0,0.0,1981.3,0.0,17.21,0.0,2.133,2.057,0.285,2.751,0.229,-6.785,0.0,0.0,0.639,-0.161,0.676,0.0,7.483,0.0,1.841,-11.313,0.0,0.155,-0.351,-0.035,3.023,-0.002,10.273,0.0,0.0,-6.571,-0.058,-0.256,-2.55,-3.076,0.0,0.63,10.049,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis-supplemental-fan-exhaust.xml,70.417,70.417,36.31,36.31,34.108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.563,4.059,0.763,9.169,0.0,0.0,4.51,0.0,0.334,0.479,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.944,12.9,9.234,0.619,0.0,0.0,0.0,0.0,2138.5,3872.8,29.286,20.457,0.0,3.509,3.672,0.517,7.389,0.641,-2.032,0.0,0.0,8.16,-0.083,1.927,0.0,12.428,0.0,7.139,-11.617,0.0,0.102,-0.305,-0.029,3.021,0.017,10.256,0.0,0.0,-5.905,-0.079,-0.253,-2.587,-3.991,0.0,3.065,9.675,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis-supplemental-fan-supply.xml,72.582,72.582,36.337,36.337,36.245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.598,4.067,0.764,9.168,0.0,0.0,4.51,0.0,0.334,0.465,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.947,12.904,9.234,0.619,0.0,0.0,0.0,0.0,2161.9,3586.3,29.285,20.473,0.0,3.484,3.661,0.515,7.398,0.638,-2.054,0.0,0.0,8.191,-0.077,1.509,0.0,14.418,0.0,7.534,-11.568,0.0,0.079,-0.329,-0.033,2.993,0.011,10.195,0.0,0.0,-5.923,-0.073,-0.245,-2.629,-3.863,0.0,3.09,9.725,1354.8,997.6,11399.6,2615.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 +base-mechvent-cfis.xml,74.428,74.428,37.591,37.591,36.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.608,4.097,0.77,9.169,0.0,0.0,4.51,0.0,0.334,1.671,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.502,13.016,9.234,0.619,0.0,0.0,0.0,0.0,2170.8,3582.9,29.283,20.443,0.0,3.486,3.698,0.52,7.38,0.65,-1.946,0.0,0.0,8.108,-0.113,1.521,0.0,14.061,0.0,8.521,-11.658,0.0,0.156,-0.294,-0.028,2.971,0.022,10.297,0.0,0.0,-6.003,-0.109,-0.233,-2.637,-3.021,0.0,2.402,9.634,1354.8,997.6,11399.6,2615.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 +base-mechvent-erv-atre-asre.xml,65.33,65.33,37.777,37.777,27.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.455,4.269,0.819,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.804,13.875,9.234,0.616,0.0,0.0,0.0,0.0,2205.2,3608.0,25.243,19.125,0.0,3.509,3.63,0.511,7.422,0.628,-2.109,0.0,0.0,8.229,-0.06,5.397,0.0,3.902,0.0,5.868,-11.436,0.0,-0.019,-0.426,-0.047,2.83,-0.016,9.933,0.0,0.0,-6.158,-0.056,-1.253,-2.921,-0.848,0.0,3.153,9.853,1354.8,997.6,11399.6,2615.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 +base-mechvent-erv.xml,65.334,65.334,37.777,37.777,27.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.455,4.268,0.819,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.808,13.874,9.234,0.616,0.0,0.0,0.0,0.0,2205.2,3608.3,25.245,19.126,0.0,3.509,3.63,0.511,7.422,0.628,-2.109,0.0,0.0,8.229,-0.06,5.397,0.0,3.905,0.0,5.869,-11.436,0.0,-0.019,-0.426,-0.047,2.83,-0.016,9.933,0.0,0.0,-6.158,-0.056,-1.253,-2.921,-0.849,0.0,3.153,9.853,1354.8,997.6,11399.6,2615.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 +base-mechvent-exhaust-rated-flow-rate.xml,74.129,74.129,36.748,36.748,37.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.617,4.034,0.755,9.169,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.011,12.756,9.234,0.619,0.0,0.0,0.0,0.0,2171.4,3922.0,29.335,20.61,0.0,3.491,3.674,0.517,7.39,0.642,-2.045,0.0,0.0,8.163,-0.079,1.463,0.0,15.39,0.0,7.732,-11.622,0.0,0.105,-0.303,-0.029,3.024,0.018,10.243,0.0,0.0,-5.9,-0.075,-0.231,-2.578,-4.177,0.0,3.076,9.671,1354.8,997.6,11399.5,2615.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 +base-mechvent-exhaust.xml,74.129,74.129,36.748,36.748,37.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.617,4.034,0.755,9.169,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.011,12.756,9.234,0.619,0.0,0.0,0.0,0.0,2171.4,3922.0,29.335,20.61,0.0,3.491,3.674,0.517,7.39,0.642,-2.045,0.0,0.0,8.163,-0.079,1.463,0.0,15.39,0.0,7.732,-11.622,0.0,0.105,-0.303,-0.029,3.024,0.018,10.243,0.0,0.0,-5.9,-0.075,-0.231,-2.578,-4.177,0.0,3.076,9.671,1354.8,997.6,11399.5,2615.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 +base-mechvent-hrv-asre.xml,65.33,65.33,37.78,37.78,27.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.454,4.271,0.819,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,25.802,13.876,9.234,0.616,0.0,0.0,0.0,0.0,2205.1,3609.6,25.242,19.128,0.0,3.509,3.63,0.511,7.422,0.628,-2.109,0.0,0.0,8.229,-0.06,5.397,0.0,3.9,0.0,5.868,-11.436,0.0,-0.019,-0.426,-0.047,2.829,-0.016,9.932,0.0,0.0,-6.158,-0.056,-1.253,-2.921,-0.847,0.0,3.154,9.853,1354.8,997.6,11399.6,2615.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 +base-mechvent-hrv.xml,65.334,65.334,37.78,37.78,27.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.455,4.271,0.819,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.805,13.876,9.234,0.616,0.0,0.0,0.0,0.0,2205.2,3610.0,25.244,19.129,0.0,3.509,3.63,0.511,7.422,0.628,-2.109,0.0,0.0,8.229,-0.06,5.397,0.0,3.903,0.0,5.869,-11.436,0.0,-0.019,-0.426,-0.047,2.83,-0.016,9.933,0.0,0.0,-6.158,-0.056,-1.253,-2.921,-0.848,0.0,3.154,9.853,1354.8,997.6,11399.6,2615.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 +base-mechvent-multiple.xml,80.388,80.388,37.515,37.515,42.873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.705,3.719,0.667,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.402,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.156,11.264,9.234,0.622,0.0,0.0,0.0,16.0,2221.7,3782.1,35.787,22.623,0.0,3.173,3.702,0.521,7.392,0.651,-1.936,0.0,0.0,8.166,-0.112,3.863,0.0,9.543,0.0,16.52,-11.648,0.0,0.066,-0.205,-0.015,3.226,0.044,10.564,0.0,0.0,-5.619,-0.107,-0.607,0.0,-2.134,-8.05,4.582,9.648,1354.8,997.6,11399.6,2615.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 +base-mechvent-supply.xml,72.707,72.707,36.819,36.819,35.888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.592,4.111,0.774,9.168,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.612,13.087,9.234,0.619,0.0,0.0,0.0,0.0,2191.2,3628.1,29.15,20.593,0.0,3.486,3.661,0.515,7.398,0.638,-2.053,0.0,0.0,8.191,-0.077,1.509,0.0,14.148,0.0,7.467,-11.568,0.0,0.078,-0.33,-0.033,2.991,0.011,10.194,0.0,0.0,-5.927,-0.073,-0.245,-2.633,-3.702,0.0,3.127,9.725,1354.8,997.6,11399.6,2615.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 +base-mechvent-whole-house-fan.xml,57.049,57.049,34.29,34.29,22.758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.375,2.432,0.376,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.659,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.313,6.234,9.234,0.622,0.0,0.0,0.0,0.0,2132.0,2962.3,22.926,14.965,0.0,3.542,3.632,0.511,7.445,0.628,-2.088,0.0,0.0,8.312,-0.057,4.803,0.0,0.728,0.0,4.928,-11.406,0.0,0.096,-0.26,-0.023,3.297,0.023,10.437,0.0,0.0,-5.409,-0.053,-0.99,0.0,-0.134,-11.518,1.713,9.89,1354.8,997.6,11399.6,2615.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 +base-misc-additional-properties.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 +base-misc-bills-none.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 +base-misc-bills-pv.xml,58.486,1.223,35.909,-21.354,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-57.264,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 +base-misc-bills.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 +base-misc-defaults.xml,66.542,47.231,31.66,12.348,34.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.707,2.145,0.442,2.598,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.073,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.745,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-19.311,0.0,34.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.272,5.328,10.574,1.4,0.0,9.377,0.0,0.0,2463.7,2840.6,26.064,14.414,0.0,3.485,3.68,0.517,7.375,1.118,-1.974,0.0,0.0,8.151,-0.095,2.105,0.0,15.07,0.0,2.799,-12.229,0.0,0.697,-0.089,0.002,3.464,-0.193,10.812,0.0,0.0,-5.234,-0.091,-0.283,0.0,-3.403,-10.767,0.438,10.895,1610.3,1574.0,10914.3,3846.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 +base-misc-emissions.xml,58.486,31.913,35.909,9.336,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.573,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,5022.53,1696.97,65.68,708.51,135.3,1590.65,790.52,60.7,392.41,55.6,62.16,257.77,261.29,375.64,1467.15,-4526.42,3325.56,3325.56,4466.97,1141.41,43.23,405.63,75.88,943.89,474.09,37.41,232.37,33.15,36.24,150.75,155.82,224.9,888.52,-2560.47,3325.56,3325.56,5693.89,2368.33,94.47,1084.07,208.91,2324.46,1143.92,84.66,563.04,80.8,92.67,383.71,387.61,536.3,2124.29,-6740.57,3325.56,3325.56,1.06,1.05,0.04,0.48,0.09,1.03,0.51,0.04,0.25,0.04,0.04,0.17,0.17,0.24,0.94,-2.99,0.01,0.01,3.91,1.83,0.07,0.84,0.16,1.8,0.89,0.07,0.44,0.06,0.07,0.3,0.3,0.42,1.64,-5.22,2.08,2.08 +base-misc-generators.xml,75.486,72.074,35.909,32.497,31.077,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.412,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 +base-misc-ground-conductivity.xml,56.176,56.176,35.831,35.831,20.345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.336,4.241,0.815,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.052,13.836,9.234,0.613,0.0,0.0,0.0,0.0,2105.3,3299.4,22.044,17.914,0.0,3.581,3.656,0.515,7.215,0.633,-2.001,0.0,0.0,6.57,-0.062,4.81,0.0,0.729,0.0,4.457,-11.387,0.0,-0.054,-0.467,-0.052,2.423,-0.028,9.838,0.0,0.0,-6.132,-0.058,-1.178,-3.087,-0.167,0.0,3.08,9.9,1354.8,997.6,11399.6,2615.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 +base-misc-loads-large-uncommon.xml,146.336,146.336,68.356,68.356,69.985,0.0,2.499,5.496,0.0,0.0,0.0,0.0,0.284,5.259,1.069,9.16,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,4.437,3.415,0.0,0.0,17.22,0.0,0.0,0.0,0.0,0.0,49.967,0.0,0.0,2.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,2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.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,16.125,18.25,9.234,0.61,0.0,0.0,0.0,0.0,3243.4,5123.7,21.843,20.061,0.0,3.623,3.68,0.518,7.612,0.637,-1.881,0.0,0.0,8.411,-0.066,4.826,0.0,0.732,0.0,3.827,-16.165,0.0,-0.189,-0.572,-0.067,2.439,-0.055,9.573,0.0,0.0,-6.792,-0.063,-1.268,-3.548,-0.181,0.0,3.763,15.377,1354.8,997.6,11399.6,2615.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 +base-misc-loads-large-uncommon2.xml,92.82,92.82,64.806,64.806,20.019,2.499,0.0,0.0,5.496,0.0,0.0,0.0,0.284,5.259,1.069,9.16,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,0.887,3.415,0.0,0.0,17.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,5.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,18.25,9.234,0.61,0.0,0.0,0.0,0.0,3183.7,4721.2,21.843,20.061,0.0,3.623,3.68,0.518,7.612,0.637,-1.881,0.0,0.0,8.411,-0.066,4.826,0.0,0.732,0.0,3.827,-16.165,0.0,-0.189,-0.572,-0.067,2.439,-0.055,9.573,0.0,0.0,-6.792,-0.063,-1.268,-3.548,-0.181,0.0,3.763,15.377,1354.8,997.6,11399.6,2615.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 +base-misc-loads-none.xml,53.277,53.277,24.676,24.676,28.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.472,3.592,0.657,9.168,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,26.787,11.118,9.234,0.618,0.0,0.0,0.0,0.0,1524.2,2936.5,24.16,16.09,0.0,3.467,3.592,0.505,7.307,0.62,-2.252,0.0,0.0,8.059,-0.05,4.795,0.0,0.726,0.0,6.032,-6.317,0.0,0.071,-0.358,-0.037,3.016,0.001,10.096,0.0,0.0,-5.856,-0.045,-1.08,-2.666,-0.15,0.0,2.599,5.7,1354.8,997.6,11399.6,2615.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 +base-misc-neighbor-shading.xml,61.342,61.342,35.583,35.583,25.759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.425,3.966,0.75,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.124,12.705,9.234,0.616,0.0,0.0,0.0,0.0,2116.4,3190.8,23.172,17.026,0.0,3.509,3.809,0.561,7.326,0.827,0.3,0.0,0.0,7.961,-0.06,4.794,0.0,0.725,0.0,5.484,-11.431,0.0,-0.005,-0.536,-0.07,2.82,-0.082,8.518,0.0,0.0,-6.16,-0.056,-1.14,-2.934,-0.16,0.0,2.833,9.858,1354.8,997.6,11399.6,2615.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 +base-misc-shielding-of-home.xml,58.141,58.141,36.049,36.049,22.092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.364,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.689,14.514,9.234,0.613,0.0,0.0,0.0,0.0,2131.5,3288.0,22.906,17.823,0.0,3.55,3.636,0.512,7.432,0.629,-2.074,0.0,0.0,8.187,-0.065,4.423,0.0,0.729,0.0,4.797,-11.406,0.0,-0.059,-0.469,-0.053,2.685,-0.027,9.815,0.0,0.0,-6.396,-0.061,-1.061,-2.583,-0.167,0.0,3.166,9.881,1354.8,997.6,11399.6,2615.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 +base-misc-usage-multiplier.xml,126.305,126.305,50.733,50.733,68.377,0.0,2.249,4.947,0.0,0.0,0.0,0.0,0.345,4.543,0.89,8.303,0.0,0.0,4.059,0.0,0.3,0.0,0.0,0.0,0.0,1.998,2.151,0.0,0.287,0.329,1.361,1.375,0.0,1.903,7.537,0.0,0.0,0.0,8.286,3.993,3.073,0.0,0.0,20.888,0.0,0.0,0.0,0.0,0.0,44.97,0.0,0.0,2.518,0.0,0.0,0.0,0.0,0.0,0.0,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.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.561,15.127,8.31,0.613,0.0,0.0,0.0,0.0,2739.2,4277.6,22.627,18.484,0.0,3.569,3.647,0.513,7.473,0.631,-2.028,0.0,0.0,8.236,-0.065,4.86,0.0,0.657,0.0,4.558,-12.834,0.0,-0.085,-0.489,-0.056,2.631,-0.033,9.771,0.0,0.0,-6.482,-0.062,-1.208,-3.219,-0.153,0.0,3.275,11.416,1219.3,897.9,10259.7,2354.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 +base-pv-battery-ah.xml,58.486,31.913,35.909,9.336,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.573,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 +base-pv-battery-garage.xml,58.865,32.338,34.588,8.061,24.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4,2.98,0.522,9.268,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.527,0.0,24.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,22.729,8.71,9.234,0.726,0.0,0.0,0.0,0.0,2135.4,2485.0,17.963,10.726,0.0,3.532,3.792,0.502,5.781,0.613,1.964,0.0,0.0,6.474,-0.041,5.37,0.0,0.0,0.0,3.82,-9.273,0.0,0.108,-0.277,-0.035,2.457,0.001,6.648,0.0,0.0,-5.65,-0.038,-1.218,-2.076,0.0,0.0,1.263,7.682,1354.8,997.6,11399.5,2615.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 +base-pv-battery-lifetime-model.xml,58.486,31.966,35.909,9.389,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.52,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 +base-pv-battery.xml,58.486,31.913,35.909,9.336,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.573,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 +base-pv.xml,58.486,31.6,35.909,9.023,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 base-schedules-detailed-all-10-mins.xml,57.597,57.597,36.259,36.259,21.338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.352,4.565,0.888,9.168,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.981,15.03,9.21,0.638,0.0,0.0,0.333,1.0,9357.0,10868.4,37.3,21.892,0.0,3.628,3.674,0.518,7.2,0.644,-1.857,0.0,0.0,6.642,-0.115,5.309,0.0,0.775,0.0,4.691,-11.428,0.0,-0.185,-0.496,-0.057,2.785,-0.035,9.799,0.0,0.0,-5.852,-0.057,-1.288,-3.02,-0.179,0.0,3.402,10.355,1354.7,998.0,11489.6,2636.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 -base-schedules-detailed-occupancy-smooth.xml,56.137,56.137,36.007,36.007,20.13,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.377,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,18.85,14.427,9.234,0.613,0.0,0.0,0.0,0.0,2120.4,3313.1,22.281,18.1,0.0,3.575,3.65,0.514,7.128,0.633,-2.021,0.0,0.0,6.616,-0.118,4.808,0.0,0.729,0.0,4.398,-11.397,0.0,-0.064,-0.472,-0.053,2.762,-0.029,9.805,0.0,0.0,-5.88,-0.056,-1.181,-3.128,-0.167,0.0,3.171,9.897,1354.7,998.0,11399.6,2615.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 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,56.988,56.988,36.173,36.173,20.814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.343,4.483,0.874,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.116,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.814,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.487,14.83,9.148,0.615,0.0,0.0,0.0,0.0,9192.1,7411.4,30.745,20.814,0.0,3.571,3.651,0.514,7.131,0.634,-1.988,0.0,0.0,6.616,-0.124,5.324,0.0,0.765,0.0,4.521,-11.439,0.0,-0.066,-0.47,-0.053,2.769,-0.028,9.843,0.0,0.0,-5.87,-0.062,-1.295,-3.107,-0.19,0.0,3.242,10.391,1002.6,945.2,11591.6,2659.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 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,55.625,55.625,30.908,30.908,24.716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.408,4.471,0.872,7.488,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.705,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.716,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.145,14.791,7.433,0.614,0.0,0.0,0.0,0.0,5306.8,5588.7,30.211,19.538,0.0,3.522,3.626,0.511,7.046,0.628,-2.078,0.0,0.0,6.446,-0.117,5.306,0.0,0.514,0.0,5.285,-7.862,0.0,-0.067,-0.472,-0.053,2.762,-0.028,9.82,0.0,0.0,-5.881,-0.059,-1.284,-3.117,-0.187,0.0,3.232,10.337,1141.2,883.5,9305.3,2135.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 -base-schedules-detailed-occupancy-stochastic.xml,56.921,56.921,36.132,36.132,20.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.343,4.472,0.872,9.159,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.789,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.466,14.794,9.229,0.614,0.0,0.0,0.0,0.0,5306.8,5589.0,30.072,19.54,0.0,3.57,3.649,0.514,7.128,0.633,-2.01,0.0,0.0,6.613,-0.12,5.267,0.0,0.777,0.0,4.52,-11.406,0.0,-0.068,-0.473,-0.053,2.762,-0.029,9.817,0.0,0.0,-5.879,-0.058,-1.285,-3.118,-0.187,0.0,3.233,10.342,1354.7,998.0,11396.7,2615.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 -base-schedules-detailed-setpoints-daily-schedules.xml,53.691,53.691,35.434,35.434,18.257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.301,3.933,0.76,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.257,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.776,12.649,9.234,0.614,0.0,0.0,92.0,52.0,2140.7,3586.4,34.186,20.196,0.0,3.567,3.607,0.508,6.977,0.617,-2.203,0.0,0.0,6.034,-0.086,4.682,0.0,0.73,0.0,3.829,-11.349,0.0,-0.093,-0.52,-0.06,2.716,-0.047,9.606,0.0,0.0,-5.886,-0.007,-1.239,-3.471,-0.176,0.0,2.5,9.938,1354.8,997.6,11399.6,2615.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 +base-schedules-detailed-occupancy-smooth.xml,58.495,58.495,35.921,35.921,22.574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.275,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.14,13.992,9.234,0.614,0.0,0.0,0.0,0.0,2134.8,3282.7,22.933,17.829,0.0,3.545,3.634,0.511,7.429,0.629,-2.082,0.0,0.0,8.191,-0.063,4.804,0.0,0.728,0.0,4.889,-11.41,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.07,-0.165,0.0,3.098,9.885,1354.7,998.0,11399.6,2615.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 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.342,59.342,36.088,36.088,23.254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.384,4.381,0.849,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.116,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,14.396,9.148,0.616,0.0,0.0,0.0,0.0,9193.5,7394.4,31.482,20.749,0.0,3.546,3.638,0.512,7.434,0.63,-2.07,0.0,0.0,8.199,-0.063,5.32,0.0,0.763,0.0,5.011,-11.459,0.0,-0.043,-0.452,-0.05,2.729,-0.023,9.866,0.0,0.0,-6.322,-0.059,-1.28,-3.051,-0.188,0.0,3.17,10.372,1002.6,945.2,11591.5,2659.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 +base-schedules-detailed-occupancy-stochastic-vacancy.xml,57.991,57.991,30.823,30.823,27.169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.448,4.37,0.847,7.488,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.705,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.443,14.356,7.433,0.615,0.0,0.0,0.0,0.0,5308.9,5555.4,30.918,19.271,0.0,3.494,3.612,0.508,7.356,0.623,-2.145,0.0,0.0,8.033,-0.063,5.303,0.0,0.513,0.0,5.765,-7.872,0.0,-0.048,-0.456,-0.051,2.723,-0.024,9.853,0.0,0.0,-6.34,-0.058,-1.271,-3.06,-0.185,0.0,3.16,10.328,1141.2,883.5,9305.3,2135.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 +base-schedules-detailed-occupancy-stochastic.xml,59.275,59.275,36.046,36.046,23.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.383,4.37,0.847,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.751,14.359,9.229,0.615,0.0,0.0,0.0,0.0,5308.8,5555.7,30.793,19.273,0.0,3.542,3.635,0.511,7.431,0.629,-2.08,0.0,0.0,8.188,-0.062,5.262,0.0,0.776,0.0,5.01,-11.421,0.0,-0.048,-0.457,-0.051,2.723,-0.024,9.853,0.0,0.0,-6.337,-0.058,-1.271,-3.06,-0.185,0.0,3.16,10.328,1354.7,998.0,11396.7,2615.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 +base-schedules-detailed-setpoints-daily-schedules.xml,54.115,54.115,35.417,35.417,18.699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.308,3.913,0.755,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.182,12.566,9.234,0.614,0.0,0.0,95.0,52.0,2137.8,3586.5,34.216,20.184,0.0,3.558,3.601,0.507,7.028,0.615,-2.228,0.0,0.0,6.344,-0.071,4.674,0.0,0.729,0.0,3.915,-11.35,0.0,-0.089,-0.517,-0.06,2.708,-0.046,9.615,0.0,0.0,-5.983,-0.007,-1.237,-3.459,-0.176,0.0,2.486,9.938,1354.8,997.6,11399.6,2615.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 base-schedules-detailed-setpoints-daily-setbacks.xml,53.872,53.872,35.554,35.554,18.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.302,4.032,0.779,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.072,13.122,9.234,0.615,0.0,0.0,0.0,9.0,2110.4,3597.8,24.379,20.734,0.0,3.531,3.57,0.502,6.897,0.608,-2.355,0.0,0.0,6.19,-0.088,4.643,0.0,0.724,0.0,3.872,-11.368,0.0,-0.07,-0.51,-0.059,2.656,-0.044,9.601,0.0,0.0,-6.075,-0.025,-1.217,-3.394,-0.179,0.0,2.615,9.921,1354.8,997.6,11399.6,2615.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 -base-schedules-detailed-setpoints.xml,38.215,38.215,34.26,34.26,3.955,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.065,3.174,0.556,9.19,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,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,0.0,0.0,0.0,0.0,0.0,3.696,9.536,9.234,0.641,0.0,0.0,0.0,0.0,2100.5,3037.3,15.863,15.703,0.0,2.96,2.876,0.403,4.894,0.436,-4.278,0.0,0.0,2.506,-0.191,3.578,0.0,0.586,0.0,0.881,-11.277,0.0,-0.157,-0.604,-0.071,2.475,-0.066,9.496,0.0,0.0,-6.581,-0.055,-1.286,-5.259,-0.192,0.0,2.174,10.038,1354.8,997.6,11399.5,2615.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 -base-schedules-simple.xml,56.3,56.3,36.031,36.031,20.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.334,4.403,0.855,9.163,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,18.98,14.539,9.234,0.613,0.0,0.0,0.0,0.0,2007.3,3343.6,22.309,18.208,0.0,3.571,3.647,0.514,7.121,0.632,-2.023,0.0,0.0,6.602,-0.118,4.806,0.0,0.729,0.0,4.424,-11.258,0.0,-0.068,-0.475,-0.053,2.756,-0.03,9.804,0.0,0.0,-5.89,-0.057,-1.183,-3.138,-0.167,0.0,3.19,10.027,1354.8,997.6,11399.6,2615.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 -base-simcontrol-calendar-year-custom.xml,56.103,56.103,35.965,35.965,20.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.351,0.843,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.858,14.32,9.234,0.614,0.0,0.0,0.0,0.0,2118.0,3336.4,22.274,18.179,0.0,3.573,3.649,0.514,7.128,0.633,-2.015,0.0,0.0,6.616,-0.119,4.808,0.0,0.729,0.0,4.399,-11.391,0.0,-0.06,-0.468,-0.053,2.784,-0.028,9.827,0.0,0.0,-5.86,-0.058,-1.176,-3.28,-0.166,0.0,3.133,9.896,1354.8,997.6,11399.6,2615.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 -base-simcontrol-daylight-saving-custom.xml,56.129,56.129,35.995,35.995,20.134,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,18.854,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.4,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 -base-simcontrol-daylight-saving-disabled.xml,56.099,56.099,35.979,35.979,20.12,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.362,0.846,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,18.841,14.363,9.234,0.614,0.0,0.0,0.0,0.0,2131.1,3232.7,22.274,17.755,0.0,3.572,3.648,0.514,7.127,0.632,-2.023,0.0,0.0,6.612,-0.117,4.807,0.0,0.726,0.0,4.395,-11.387,0.0,-0.065,-0.474,-0.053,2.76,-0.03,9.806,0.0,0.0,-5.879,-0.056,-1.185,-3.156,-0.164,0.0,3.145,9.9,1354.8,997.6,11399.6,2615.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 -base-simcontrol-runperiod-1-month.xml,8.0852,8.0852,3.1747,3.1747,4.9105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.081,0.1119,0.0,0.9159,0.0,0.0,0.4474,0.0,0.0354,0.0,0.0,0.0,0.0,0.1577,0.0,0.0,0.0297,0.0314,0.1285,0.1424,0.0,0.2049,0.8885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.9105,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.5921,0.0,0.9282,0.0565,0.0,0.0,0.0,0.0,2105.65,0.0,18.0605,0.0,0.0,0.7163,0.697,0.0992,1.7015,0.1085,-0.1689,0.0,0.0,1.3291,-0.0575,0.935,0.0,0.1376,0.0,1.0721,-2.0328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.32,92.97,1019.67,233.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 -base-simcontrol-temperature-capacitance-multiplier.xml,56.025,56.025,35.89,35.89,20.135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.289,0.829,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.855,14.072,9.234,0.614,0.0,0.0,0.0,0.0,2130.7,3292.5,22.216,18.025,0.0,3.65,3.646,0.513,7.122,0.631,-2.047,0.0,0.0,6.595,-0.11,4.805,0.0,0.727,0.0,4.395,-11.384,0.0,-0.231,-0.47,-0.053,2.766,-0.03,9.797,0.0,0.0,-5.877,-0.049,-1.188,-3.2,-0.166,0.0,3.012,9.903,1354.8,997.6,11399.6,2615.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 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,57.608,57.608,36.255,36.255,21.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.352,4.563,0.888,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.996,15.023,9.232,0.616,0.0,0.0,0.333,1.0,9438.6,8374.2,37.303,21.892,0.0,3.628,3.674,0.518,7.2,0.644,-1.858,0.0,0.0,6.642,-0.115,5.309,0.0,0.775,0.0,4.695,-11.417,0.0,-0.185,-0.496,-0.057,2.785,-0.035,9.8,0.0,0.0,-5.851,-0.057,-1.288,-3.018,-0.179,0.0,3.401,10.345,1354.7,998.0,11410.3,2618.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 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,57.53,57.53,36.247,36.247,21.283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.351,4.562,0.888,9.161,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.283,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.93,15.017,9.229,0.614,0.0,0.0,0.0,0.333,6208.9,7477.9,34.558,21.295,0.0,3.628,3.673,0.518,7.198,0.644,-1.858,0.0,0.0,6.639,-0.116,5.257,0.0,0.769,0.0,4.684,-11.408,0.0,-0.185,-0.497,-0.057,2.783,-0.035,9.8,0.0,0.0,-5.855,-0.058,-1.273,-3.021,-0.188,0.0,3.399,10.339,1354.7,998.0,11396.7,2615.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 -base-simcontrol-timestep-10-mins.xml,56.758,56.758,36.109,36.109,20.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.341,4.463,0.864,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.649,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.336,14.639,9.234,0.613,0.0,0.0,0.0,0.0,3549.0,4929.4,22.564,18.133,0.0,3.634,3.674,0.518,7.198,0.644,-1.864,0.0,0.0,6.646,-0.113,4.794,0.0,0.735,0.0,4.566,-11.396,0.0,-0.18,-0.495,-0.057,2.787,-0.034,9.796,0.0,0.0,-5.847,-0.055,-1.164,-3.028,-0.173,0.0,3.335,9.89,1354.8,997.6,11399.7,2615.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 -base.xml,56.128,56.128,35.995,35.995,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.332,4.375,0.849,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.133,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.853,14.42,9.234,0.613,0.0,0.0,0.0,0.0,2131.1,3323.5,22.274,18.125,0.0,3.573,3.649,0.514,7.127,0.633,-2.015,0.0,0.0,6.613,-0.119,4.808,0.0,0.729,0.0,4.398,-11.391,0.0,-0.065,-0.473,-0.053,2.762,-0.029,9.812,0.0,0.0,-5.882,-0.058,-1.181,-3.131,-0.167,0.0,3.169,9.896,1354.8,997.6,11399.6,2615.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 -house001.xml,87.073,87.073,47.085,47.085,39.988,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.258,15.79,4.424,0.0,0.0,0.0,7.38,0.315,0.652,0.448,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,3.284,1.794,0.0,2.585,6.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.95,0.0,17.038,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.61,50.283,10.416,2.674,0.0,0.0,0.0,0.0,1857.1,6432.4,40.308,40.707,0.489,1.969,7.172,0.42,0.0,0.953,2.651,0.0,0.415,0.831,-0.297,5.168,0.0,5.159,0.0,3.275,-9.73,0.578,2.033,3.835,0.308,0.0,0.264,11.894,0.0,0.58,6.953,-0.253,-0.459,-1.395,-0.728,0.0,10.846,16.0,2104.5,2144.0,14468.9,4385.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 -house002.xml,67.227,67.227,39.912,39.912,27.315,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.155,13.802,3.428,0.0,0.0,0.0,6.381,0.315,0.594,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,5.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.833,0.0,13.482,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.215,39.611,7.526,2.888,0.0,0.0,0.0,0.0,1556.5,4949.0,25.174,28.59,0.0,2.532,5.045,0.0,0.0,0.843,1.962,0.0,0.0,1.113,-0.169,2.168,0.0,3.788,0.0,1.362,-7.579,0.0,3.109,2.784,0.0,0.0,0.405,8.107,0.0,0.0,8.706,-0.137,-0.24,-1.044,-0.63,0.0,5.92,12.804,1610.9,1574.7,9989.4,3520.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 -house003.xml,68.579,68.579,40.218,40.218,28.361,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.17,12.86,3.577,0.0,0.0,0.0,6.875,0.315,0.623,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.122,0.0,13.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,12.259,41.217,7.526,2.687,0.0,0.0,0.0,0.0,1635.4,5226.1,28.025,32.107,0.648,2.782,4.661,0.0,0.0,0.974,2.774,0.0,0.0,0.221,-0.192,2.71,0.0,3.936,0.0,1.597,-8.0,0.808,3.083,2.609,0.0,0.0,0.642,9.627,0.0,0.0,6.872,-0.156,-0.284,-1.088,-0.627,0.0,6.551,13.357,1610.9,1574.7,9989.5,3520.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 -house004.xml,139.169,139.169,75.876,75.876,63.293,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.418,29.403,9.58,0.0,0.0,0.0,11.562,0.315,0.893,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,1.633,2.35,11.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.152,0.0,16.141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.13,107.885,8.985,3.505,0.0,0.0,0.0,139.0,2440.4,7373.0,58.892,50.183,0.128,5.534,11.405,0.0,0.0,1.26,8.002,0.0,0.0,3.193,-0.724,6.625,0.0,6.327,0.0,7.453,-11.388,0.203,6.841,11.798,0.0,0.0,0.534,22.891,0.0,0.0,18.901,-0.711,1.532,0.0,1.911,0.0,21.712,22.531,1857.7,1859.3,12229.1,3983.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 -house005.xml,95.626,95.626,53.486,53.486,42.14,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.302,18.43,5.194,0.0,0.0,0.0,9.155,0.315,0.754,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,8.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.945,0.0,15.195,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.851,60.1,8.985,2.726,0.0,0.0,0.0,0.0,2080.3,7521.3,48.937,51.205,0.0,3.009,8.094,0.267,0.0,1.333,3.433,0.0,0.356,0.518,-0.39,6.047,0.0,5.081,0.0,4.429,-10.515,0.0,3.052,4.384,0.215,0.0,0.303,15.748,0.0,0.451,7.779,-0.329,-0.541,-1.749,-0.715,0.0,14.682,17.025,1857.7,1859.4,12229.1,3984.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,141.128,141.128,31.883,31.883,109.245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.913,3.006,0.35,0.0,0.0,0.0,8.687,0.29,0.705,3.138,0.0,0.0,0.0,1.707,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.114,8.883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.398,0.0,20.135,2.642,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.29,8.114,13.085,3.277,0.0,0.0,0.0,0.0,1988.5,2447.8,40.661,14.903,0.0,4.246,22.187,1.983,36.76,1.852,8.456,0.0,0.0,11.416,-0.328,9.52,0.0,4.367,0.0,0.0,-20.987,0.0,0.173,-0.814,-0.046,2.714,-0.087,3.394,0.0,0.0,-3.5,-0.314,-0.519,-0.623,-0.078,0.0,0.0,7.915,1610.9,1574.7,12168.2,4288.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 -house007.xml,140.674,140.674,34.04,34.04,106.634,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.67,2.61,0.414,0.0,0.0,0.0,10.299,0.315,0.82,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.967,0.0,23.281,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.469,6.099,15.632,3.268,0.0,0.0,0.0,0.0,2193.3,2572.9,39.928,13.475,0.0,4.696,23.551,4.389,9.949,1.484,9.588,0.0,0.076,13.654,-0.357,6.117,0.0,20.816,0.0,2.929,-24.954,0.0,0.201,-0.728,-0.045,0.539,-0.048,4.001,0.0,-0.009,-3.667,-0.334,-0.195,-0.6,-1.915,0.0,0.108,8.884,1857.7,1859.4,14896.4,4852.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 -house008.xml,184.539,184.539,39.26,39.26,145.279,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.512,3.639,0.547,0.0,0.0,0.0,11.006,0.315,0.861,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.843,0.0,26.375,3.452,3.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,105.387,10.436,18.129,3.213,0.0,0.0,0.0,0.0,2471.4,3296.7,54.501,19.578,0.0,7.203,27.289,4.663,24.058,1.159,14.507,0.0,1.151,19.217,-0.377,18.315,0.0,6.382,0.0,7.766,-26.795,0.0,0.303,-1.151,-0.067,1.622,-0.087,3.982,0.0,-0.099,-2.339,-0.364,-1.0,-0.695,-0.289,0.0,0.556,10.163,2104.5,2144.0,17624.7,5341.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 -house009.xml,152.992,152.992,33.982,33.982,119.01,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.006,2.399,0.291,0.0,0.0,0.0,10.271,0.315,0.819,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.334,0.0,23.29,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.176,5.336,15.632,3.275,0.0,0.0,0.0,0.0,2222.4,2602.6,43.52,13.936,0.0,5.087,28.322,4.268,12.813,2.243,11.336,0.0,0.265,14.865,-0.37,8.73,0.0,21.434,0.0,0.0,-25.348,0.0,0.242,-0.708,-0.019,0.761,-0.076,3.771,0.0,-0.029,-4.018,-0.348,-0.261,-0.528,-1.812,0.0,0.0,8.443,1857.7,1859.4,14896.4,4852.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 -house010.xml,155.271,155.271,37.662,37.662,117.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.89,2.968,0.284,0.0,0.0,0.0,10.986,0.315,0.86,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.173,0.0,26.375,3.452,3.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,79.317,7.655,18.129,3.213,0.0,0.0,0.0,0.0,2409.1,2817.7,45.321,15.556,0.872,4.911,25.316,4.839,9.596,1.235,14.204,0.0,0.866,13.24,-0.381,19.559,0.0,6.4,0.0,4.901,-26.857,0.024,0.218,-0.762,-0.079,0.518,-0.073,3.724,0.0,-0.046,-3.823,-0.36,-1.033,-0.692,-0.274,0.0,0.352,10.063,2104.5,2144.0,17624.7,5341.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 -house011.xml,44.362,44.362,44.362,44.362,0.0,0.0,0.0,0.0,0.0,0.0,6.787,0.069,0.599,7.936,2.334,10.452,0.0,0.0,4.905,0.0,0.509,0.003,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.0,0.0,1.661,0.0,2.35,3.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.06,25.953,9.325,1.123,0.0,0.0,0.0,311.0,4706.6,3171.5,17.642,15.59,0.0,2.714,5.414,0.0,0.0,1.639,0.379,0.0,1.289,0.0,-0.371,1.843,0.0,5.4,0.0,3.821,-8.077,0.0,1.638,1.118,0.0,0.0,0.147,5.607,0.0,0.993,0.0,-0.368,-0.203,-0.183,-1.03,0.0,6.651,11.71,0.0,1859.4,12951.4,4219.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 -house012.xml,35.436,35.436,35.436,35.436,0.0,0.0,0.0,0.0,0.0,0.0,4.673,0.0,0.238,5.541,1.522,8.943,0.0,0.0,4.378,0.0,0.478,0.003,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.0,0.0,1.528,0.0,2.114,3.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,9.754,16.31,7.782,1.158,0.0,0.0,0.0,0.0,2977.2,2539.1,10.687,10.83,0.0,2.37,4.754,0.0,0.0,0.629,1.003,0.0,1.707,0.0,-0.235,1.645,0.0,4.362,0.0,0.312,-6.795,0.0,1.709,1.071,0.0,0.0,-0.036,3.74,0.0,1.708,0.0,-0.233,-0.162,-0.166,-0.741,0.0,0.275,9.207,0.0,1574.7,10579.5,3728.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 -house013.xml,30.59,30.59,30.59,30.59,0.0,0.0,0.0,0.0,0.0,0.0,2.782,0.0,0.16,3.891,1.314,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878,15.183,6.85,0.853,0.0,0.0,0.0,0.0,2598.3,2104.0,9.217,9.329,0.0,1.635,2.867,0.0,0.0,0.655,0.544,0.0,1.906,0.0,-0.269,1.52,0.0,1.062,0.0,1.113,-5.182,0.0,1.076,0.372,0.0,0.0,-0.094,4.015,0.0,0.598,0.0,-0.267,-0.255,-0.2,-0.281,0.0,1.484,8.823,1364.1,1290.1,8207.3,3131.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 -house014.xml,31.5,31.5,31.5,31.5,0.0,0.0,0.0,0.0,0.0,0.0,3.309,0.001,0.195,4.198,1.417,7.451,0.0,0.0,4.053,0.0,0.46,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.278,16.47,6.85,0.597,0.0,0.0,0.0,0.0,2641.8,2188.1,10.543,10.13,0.0,1.708,3.704,0.0,0.0,0.585,0.62,0.0,2.027,0.0,-0.229,1.727,0.0,1.118,0.0,1.399,-5.418,0.0,1.139,0.553,0.0,0.0,-0.069,5.034,0.0,0.688,0.0,-0.227,-0.25,-0.226,-0.26,0.0,1.672,8.503,1364.1,1290.1,8207.3,3131.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 -house015.xml,30.59,30.59,30.59,30.59,0.0,0.0,0.0,0.0,0.0,0.0,2.782,0.0,0.16,3.891,1.314,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.878,15.183,6.85,0.853,0.0,0.0,0.0,0.0,2598.3,2104.0,9.217,9.329,0.0,1.635,2.867,0.0,0.0,0.655,0.544,0.0,1.906,0.0,-0.269,1.52,0.0,1.062,0.0,1.113,-5.182,0.0,1.076,0.372,0.0,0.0,-0.094,4.015,0.0,0.598,0.0,-0.267,-0.255,-0.2,-0.281,0.0,1.484,8.823,1364.1,1290.1,8207.3,3131.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 -house016.xml,57.577,57.577,38.552,38.552,0.0,0.0,19.024,0.0,0.0,0.0,6.722,0.129,0.482,3.19,1.081,0.0,0.0,0.0,8.606,0.0,0.723,0.215,0.0,0.0,0.0,2.448,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.431,0.0,13.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.24,12.659,9.378,0.0,0.0,0.0,0.0,16.0,7136.3,3540.2,42.133,19.345,0.0,4.45,10.95,0.625,5.209,0.301,-0.53,0.0,0.0,3.882,-0.065,5.754,0.0,3.861,0.0,0.0,-13.305,0.0,-0.39,-0.98,-0.029,2.982,-0.05,11.715,0.0,0.0,-7.934,-0.021,-1.404,-1.237,-1.049,0.0,0.0,11.552,1610.9,1574.7,11979.5,4221.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 -house017.xml,90.0,90.0,28.38,28.38,61.62,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.196,4.618,0.783,0.0,0.0,0.0,4.67,0.187,0.387,0.033,0.0,0.0,0.0,2.086,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.774,0.0,18.846,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.183,10.795,11.749,3.408,0.0,0.0,149.0,109.0,1735.9,3534.1,60.162,19.291,0.0,5.469,14.755,0.657,9.934,0.365,-2.245,0.0,0.699,2.575,-0.053,19.851,0.0,1.22,0.0,0.0,-14.25,0.0,-0.211,-1.164,-0.029,4.72,-0.064,6.914,0.0,-0.005,-4.404,0.017,-2.863,-0.76,-0.267,0.0,0.0,8.958,1857.7,1859.4,14839.1,4834.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 -house018.xml,38.958,38.958,38.958,38.958,0.0,0.0,0.0,0.0,0.0,0.0,4.303,0.0,0.19,2.703,0.831,9.93,0.0,0.0,4.761,0.0,0.461,0.112,0.0,0.0,0.0,4.21,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,4.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.901,9.999,9.377,0.551,0.0,0.0,0.0,0.0,4865.8,2767.8,19.628,11.161,0.0,4.605,4.667,0.0,0.0,0.278,-0.065,0.0,1.823,0.0,-0.024,2.632,0.0,2.08,0.0,1.571,-9.785,0.0,-0.563,-0.853,0.0,0.0,-0.097,3.361,0.0,0.061,0.0,-0.016,-0.787,-0.659,-0.77,0.0,1.355,9.194,1610.9,1574.7,11983.2,4223.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house019.xml,131.865,131.865,55.039,55.039,76.826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.1,11.322,3.8,11.933,0.0,0.0,8.923,0.0,0.741,0.054,0.0,0.0,0.0,2.005,1.27,0.0,0.447,0.338,2.514,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.757,0.0,0.0,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66.828,44.85,10.1,1.826,0.0,0.0,190.0,277.0,2882.0,6701.2,84.092,46.085,0.0,11.397,44.826,0.651,4.676,1.919,1.567,0.0,0.0,5.146,-0.041,8.867,0.0,1.864,0.0,0.0,-15.552,0.0,2.948,9.938,0.146,2.824,0.261,19.804,0.0,0.0,-4.193,-0.015,-0.181,-0.156,0.017,0.0,0.0,12.151,1610.9,1574.7,10370.6,3654.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 -house020.xml,112.359,112.359,56.466,56.466,0.0,0.0,55.893,0.0,0.0,0.0,0.0,0.0,0.756,13.329,2.941,0.0,0.0,0.0,12.75,0.0,0.892,0.026,0.0,0.0,0.0,3.976,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,16.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,35.338,0.0,17.487,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.55,35.012,9.377,4.217,0.0,0.0,0.0,0.0,2662.7,6572.5,30.346,32.57,0.911,11.044,10.618,1.137,9.303,0.635,-0.714,0.0,0.0,5.374,-0.121,15.225,0.0,0.835,0.0,0.0,-22.055,0.24,0.104,0.129,0.047,6.484,0.009,19.769,0.0,0.0,-6.133,-0.027,-2.766,-1.703,-0.201,0.0,0.0,19.225,1610.9,1574.7,11983.5,4223.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 -house021.xml,155.138,155.138,48.338,48.338,106.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.942,7.903,1.589,0.0,0.0,0.0,10.64,0.244,0.771,0.071,0.0,0.0,0.0,2.448,1.472,0.0,0.528,0.39,2.899,1.661,0.0,2.35,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.783,0.0,20.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,71.359,19.276,11.749,3.812,0.0,0.0,0.0,0.0,2762.1,4773.7,80.418,23.906,0.0,8.278,27.083,2.424,8.833,0.86,0.743,0.0,1.074,8.346,-0.365,26.605,0.0,2.489,0.0,5.917,-21.538,0.0,0.001,-0.908,0.001,2.242,-0.095,13.949,0.0,0.044,-5.869,-0.291,-2.466,-0.882,-0.392,0.0,1.333,12.761,1857.7,1859.4,14839.2,4834.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 -house022.xml,133.505,133.505,47.35,47.35,0.0,86.155,0.0,0.0,0.0,0.0,0.0,0.0,2.142,8.798,1.192,11.315,0.0,0.0,6.69,0.0,0.61,0.034,0.0,0.0,0.0,2.086,1.649,0.0,0.447,0.338,2.514,1.528,0.0,2.114,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.155,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.714,20.081,9.834,1.478,0.0,0.0,183.0,128.0,2938.5,5419.3,89.6,27.885,3.719,3.785,20.787,0.0,0.0,1.495,2.937,0.0,12.303,0.0,-0.303,37.706,0.0,1.154,0.0,0.0,-13.682,1.083,0.139,0.444,0.0,0.0,-0.132,11.086,0.0,2.57,0.0,-0.281,-2.803,-0.654,-0.076,0.0,0.0,8.562,1610.9,1574.7,12121.0,4271.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 -house023.xml,131.428,131.428,58.89,58.89,0.0,72.538,0.0,0.0,0.0,0.0,0.0,0.0,1.827,5.746,0.82,17.103,0.0,0.0,9.219,0.0,0.692,0.045,0.0,0.0,0.0,4.21,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,11.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.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,60.559,16.867,14.227,2.768,0.0,0.0,0.0,0.0,3857.7,4311.2,61.58,20.76,0.0,10.235,21.549,1.204,15.869,0.852,1.744,0.0,0.0,4.748,-0.104,23.721,0.0,1.638,0.0,0.0,-21.244,0.0,-0.231,-1.11,-0.019,6.052,-0.117,8.597,0.0,0.0,-5.666,-0.006,-2.721,-0.781,-0.32,0.0,0.0,13.281,1857.7,1859.4,6346.2,2067.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 -house024.xml,130.688,130.688,37.968,37.968,0.0,92.72,0.0,0.0,0.0,0.0,0.0,0.0,2.306,5.317,0.976,12.276,0.0,0.0,3.916,0.0,0.396,0.058,0.0,0.0,0.0,2.005,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,3.778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.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,76.441,15.919,10.188,2.079,0.0,0.0,0.0,0.0,2550.2,3335.5,78.04,17.96,0.0,7.213,30.159,0.0,0.0,0.685,-0.989,0.0,4.02,0.0,-0.122,32.038,0.0,1.835,0.0,12.136,-10.828,0.0,0.591,1.235,0.0,0.0,-0.039,6.297,0.0,0.793,0.0,-0.112,-1.732,-0.324,-0.192,0.0,2.833,6.629,1610.9,1574.7,9900.4,3489.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,108.451,108.451,73.044,73.044,35.407,0.0,0.0,0.0,0.0,0.0,6.24,0.0,1.069,18.77,3.361,14.465,0.0,0.0,9.263,0.0,0.783,0.0,0.0,0.0,0.0,4.105,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.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,37.234,48.829,10.555,3.831,0.0,0.0,0.0,0.0,4472.6,7095.2,36.661,33.408,0.0,3.384,17.6,0.0,0.0,2.173,1.437,0.0,6.186,0.0,-1.335,15.146,0.0,0.41,0.0,4.938,-12.769,0.0,1.075,5.63,0.0,0.0,0.435,15.286,0.0,5.821,0.0,-1.328,-0.831,-0.164,-0.005,0.0,6.285,16.904,1610.9,1574.7,4628.0,1631.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.901,56.901,24.857,24.857,32.044,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.045,0.0,0.0,0.0,0.0,0.0,6.534,0.251,0.548,0.299,0.0,0.0,0.0,1.987,0.0,0.0,0.447,0.338,2.514,1.528,0.934,2.114,7.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.931,0.0,14.113,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.735,0.0,8.606,2.053,0.0,0.0,0.0,0.0,1553.6,0.0,17.087,0.0,0.0,1.772,6.777,0.232,0.0,0.197,1.966,0.0,6.546,0.0,-0.066,2.891,0.0,3.126,0.0,0.0,-9.8,0.0,-0.187,-4.596,-0.158,0.0,-0.159,1.973,0.0,-2.293,0.0,-0.054,-1.959,-2.384,-2.852,0.0,0.0,12.862,1347.4,1334.3,8863.1,3123.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 -house027.xml,72.337,72.337,32.018,32.018,40.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.422,7.672,1.518,0.0,0.0,0.0,5.947,0.218,0.485,0.927,0.0,0.0,0.0,1.724,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,7.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.37,0.0,17.88,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.245,23.373,8.564,5.23,0.0,0.0,0.0,0.0,1574.7,3753.1,23.307,23.287,0.718,1.781,7.849,0.433,0.0,0.589,1.2,0.0,0.361,2.856,-0.167,1.745,0.0,10.425,0.0,1.977,-11.626,0.485,1.108,0.721,0.09,0.0,-0.108,5.326,0.0,0.113,3.963,-0.136,-0.368,-0.981,-3.494,0.0,2.729,13.838,1610.9,1574.7,10579.5,3728.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 -house028.xml,67.017,67.017,29.671,29.671,37.346,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.244,7.112,1.516,0.0,0.0,0.0,6.138,0.226,0.503,0.618,0.0,0.0,0.0,2.104,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,7.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.842,0.0,18.117,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.061,22.965,10.226,3.617,0.0,0.0,0.0,0.0,1512.4,3311.0,19.115,21.27,0.769,1.662,7.015,0.341,0.0,0.425,1.711,0.0,0.227,1.886,-0.09,4.045,0.0,4.469,0.0,1.461,-11.972,0.611,1.238,-0.539,0.117,0.0,0.074,5.67,0.0,0.073,2.0,-0.048,-1.089,-1.219,-1.652,0.0,2.929,14.771,1857.7,1859.4,12951.6,4219.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 -house029.xml,76.622,76.622,30.181,30.181,46.441,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.615,6.325,0.944,0.0,0.0,0.0,6.543,0.274,0.569,0.76,0.0,0.0,0.0,1.981,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,6.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.776,0.0,12.596,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.454,14.382,9.614,0.0,0.0,0.0,0.0,0.0,1603.1,3020.5,27.815,14.289,0.0,3.369,14.664,0.394,0.0,0.3,0.263,0.0,5.892,0.0,-0.09,7.29,0.0,7.301,0.0,2.971,-12.062,0.0,1.106,-0.934,0.006,0.0,0.054,6.05,0.0,0.424,0.0,-0.076,-0.833,-1.119,-1.568,0.0,1.331,10.025,1610.9,1574.7,11033.1,3888.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 -house030.xml,57.725,57.725,17.189,17.189,0.0,0.0,40.536,0.0,0.0,0.0,0.0,0.0,0.053,0.0,0.0,0.0,0.0,0.0,5.324,0.272,0.497,0.57,0.0,0.0,0.0,1.834,0.0,0.0,0.366,0.286,0.168,0.096,0.701,1.879,5.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.224,0.0,13.275,2.238,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.781,0.0,7.713,2.192,0.0,0.0,0.0,0.0,1133.8,0.0,15.874,0.0,0.0,1.662,10.173,0.486,1.076,1.038,0.964,0.0,0.0,3.618,-0.064,2.741,0.0,5.693,0.0,0.0,-10.758,0.0,-0.023,-3.341,-0.144,0.153,-0.348,1.782,0.0,0.0,-2.08,-0.034,-0.8,-2.046,-2.851,0.0,0.0,9.888,1141.2,1062.7,7141.8,2725.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 -house031.xml,228.201,228.201,49.348,49.348,178.853,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.991,12.417,3.647,0.0,0.0,0.0,10.36,0.246,0.758,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.689,0.493,0.29,0.132,0.0,2.82,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,144.36,0.0,26.758,3.857,3.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,118.349,40.798,16.074,5.233,0.0,0.0,48.0,119.0,2869.8,7727.1,124.933,49.575,0.0,14.474,42.019,1.049,6.402,1.393,2.542,0.0,1.826,5.496,-0.841,56.848,0.0,0.653,0.0,9.65,-23.331,0.0,2.158,4.968,0.17,2.836,0.109,18.62,0.0,0.273,-3.546,-0.791,-2.011,-0.397,-0.012,0.0,3.14,14.839,2351.3,2428.6,16182.3,4593.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 -house032.xml,106.794,106.794,16.352,16.352,90.442,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.459,0.0,0.0,0.0,0.0,0.0,5.094,0.0,0.518,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.548,0.0,21.508,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.101,0.0,12.214,4.913,0.0,0.0,152.0,0.0,1410.9,0.0,49.77,0.0,0.0,10.465,8.812,1.933,20.248,1.418,-1.387,0.0,0.0,3.741,0.005,14.997,0.0,0.626,0.0,0.0,-12.698,0.0,-1.835,-2.225,-0.456,0.461,-0.445,6.651,0.0,0.0,-4.64,0.026,-3.357,-1.488,-0.192,0.0,0.0,7.635,1857.7,1859.4,11844.0,3858.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 -house033.xml,123.724,123.724,17.726,17.726,0.0,105.998,0.0,0.0,0.0,0.0,0.0,0.0,0.305,0.0,0.0,0.0,0.0,0.0,4.888,0.0,0.528,0.0,0.0,0.0,0.0,1.294,0.0,0.0,0.0,0.39,2.899,1.661,0.0,2.35,3.412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.138,0.0,23.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,61.803,0.0,10.968,0.0,0.0,0.0,0.0,0.0,1203.9,0.0,47.899,0.0,0.0,19.237,14.638,0.0,0.0,1.004,3.263,0.0,13.25,0.0,-0.361,18.583,0.0,0.793,0.0,0.0,-8.892,0.0,-0.839,-1.581,0.0,0.0,-0.174,3.758,0.0,-2.46,0.0,-0.349,-2.14,-0.595,-0.16,0.0,0.0,4.56,1857.7,0.0,12693.2,4135.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house034.xml,151.737,151.737,43.565,43.565,0.0,0.0,108.173,0.0,0.0,0.0,0.0,0.0,0.079,0.0,0.0,0.0,0.0,0.0,16.498,0.341,1.204,0.0,0.0,0.0,0.0,1.909,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,15.707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.867,0.0,22.306,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.703,0.0,12.369,5.391,0.0,0.0,0.0,0.0,2971.8,0.0,85.274,0.0,0.0,8.93,27.134,0.0,2.679,1.91,-0.742,0.0,10.235,1.982,0.029,34.875,0.0,0.573,0.0,0.0,-26.753,0.0,-2.201,-8.23,0.0,-0.159,-0.542,17.432,0.0,-2.855,-3.781,0.121,-9.771,-5.616,-0.209,0.0,0.0,15.862,1857.7,1859.4,11100.3,3616.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 -house035.xml,71.521,71.521,18.73,18.73,52.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.745,1.869,0.133,0.0,0.0,0.0,5.438,0.0,0.533,0.0,0.0,0.0,0.0,2.257,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.114,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.949,0.0,17.13,2.642,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.592,3.027,9.967,3.808,0.0,0.0,97.0,0.0,1407.0,2002.1,38.188,10.19,0.374,6.251,11.062,0.0,0.0,0.546,-1.475,0.0,5.812,0.0,-0.011,13.698,0.0,0.494,0.0,0.0,-11.957,0.055,-0.66,-1.741,0.0,0.0,-0.089,6.025,0.0,-4.033,0.0,0.01,-2.837,-0.776,-0.132,0.0,0.0,7.33,1610.9,1574.7,11176.7,3938.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 -house036.xml,79.155,79.155,26.301,26.301,52.854,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.875,6.159,1.091,0.0,0.0,0.0,5.449,0.0,0.536,0.0,0.0,0.0,0.0,1.617,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.211,0.0,17.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.939,15.738,8.412,5.784,0.0,0.0,98.0,128.0,1454.2,3248.4,30.306,17.61,5.638,2.3,4.054,0.0,0.0,1.85,-1.079,0.0,18.034,0.0,-0.016,7.427,0.0,0.556,0.0,0.0,-9.824,1.539,0.107,-0.058,0.0,0.0,-0.237,6.081,0.0,3.054,0.0,-0.002,-0.772,-0.435,-0.064,0.0,0.0,6.428,1364.1,1290.1,6619.3,2525.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 -house037.xml,91.413,91.413,22.737,22.737,0.0,68.676,0.0,0.0,0.0,0.0,0.0,0.0,0.171,0.0,0.0,0.0,0.0,0.0,6.807,0.0,0.61,0.0,0.0,0.0,0.0,2.004,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.993,0.0,20.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.54,0.0,9.51,0.0,0.0,0.0,0.0,0.0,1517.0,0.0,29.156,0.0,0.0,16.808,11.398,0.0,0.0,1.57,-3.158,0.0,4.937,0.0,-0.308,14.701,0.0,0.461,0.0,0.0,-10.824,0.0,-3.458,-3.44,0.0,0.0,-0.664,11.285,0.0,-4.198,0.0,-0.296,-4.665,-2.655,-0.207,0.0,0.0,8.886,1610.9,1574.7,11016.6,3882.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 -house038.xml,127.69,127.69,52.52,52.52,75.169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.896,13.889,2.9,0.0,0.0,0.0,6.908,0.315,0.625,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.689,0.493,3.669,1.927,0.0,2.82,6.085,0.0,0.0,0.0,9.699,0.0,0.0,0.0,0.0,49.448,0.0,25.721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.439,31.906,16.074,4.6,0.0,0.0,0.0,235.0,2508.2,5703.9,48.112,27.526,0.0,3.656,14.885,0.651,4.408,0.808,1.55,0.0,1.73,2.285,-0.044,22.414,0.0,0.593,0.0,0.0,-14.004,0.0,0.83,2.526,0.137,2.218,0.013,14.608,0.0,0.375,-0.604,-0.029,-0.644,-0.146,0.002,0.0,0.0,11.88,2351.3,2428.6,16182.3,4593.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 -house039.xml,96.719,96.719,20.905,20.905,75.815,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,3.757,0.0,0.0,4.411,0.239,0.418,0.0,0.0,0.0,0.0,1.763,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.746,0.0,0.0,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.368,0.0,9.905,1.132,0.0,0.0,0.0,0.0,1574.3,0.0,52.31,0.0,0.0,14.374,5.443,0.0,0.0,2.531,1.977,0.0,12.366,0.0,-0.05,16.991,0.0,0.559,0.0,0.0,-8.225,0.0,-2.292,-1.305,0.0,0.0,-0.782,7.649,0.0,-3.506,0.0,-0.033,-3.7,-1.456,-0.175,0.0,0.0,5.889,1610.9,1574.7,11659.7,4109.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,103.924,103.924,24.455,24.455,79.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.273,0.0,0.0,0.0,0.0,0.0,7.373,0.0,0.651,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.265,0.0,20.204,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,55.833,0.0,10.233,5.492,0.0,0.0,0.0,0.0,1807.8,0.0,61.913,0.0,11.288,5.634,22.335,0.0,4.112,2.099,-0.202,0.0,1.992,2.88,-0.097,19.734,0.0,0.613,0.0,0.0,-14.987,0.086,-0.8,-5.238,0.0,-0.013,-0.61,8.034,0.0,-0.04,-3.687,-0.043,-4.259,-1.995,-0.186,0.0,0.0,8.848,1610.9,1574.7,9674.9,3409.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 -house041.xml,260.832,260.832,47.298,47.298,213.534,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.2,2.687,0.272,0.0,0.0,0.0,13.943,0.315,1.031,0.05,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.473,2.35,14.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,186.988,0.0,26.546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,176.192,5.055,15.632,5.034,0.0,0.0,107.0,0.0,3249.4,4579.6,77.729,23.956,0.0,11.241,44.517,3.415,34.399,2.949,18.399,0.0,4.019,20.617,-0.552,64.035,0.0,2.762,0.0,0.0,-31.195,0.0,0.072,-2.269,-0.12,1.531,-0.21,7.084,0.0,-0.307,-4.757,-0.513,-3.573,-1.073,-0.264,0.0,0.0,9.592,1857.7,1859.4,14896.5,4852.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 -house042.xml,231.496,231.496,40.175,40.175,191.321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.911,1.872,0.079,0.0,0.0,0.0,9.539,0.213,0.678,0.093,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,13.542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,166.887,0.0,24.434,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,164.088,3.268,15.632,3.223,0.0,0.0,0.0,0.0,2758.4,3100.8,87.908,19.886,0.0,9.191,39.836,3.991,43.266,2.653,12.498,0.0,2.426,17.504,-0.432,56.224,0.0,1.75,0.0,0.0,-26.704,0.0,0.177,-1.643,-0.067,2.535,-0.163,3.929,0.0,-0.275,-4.537,-0.39,-2.912,-0.678,-0.148,0.0,0.0,7.541,1857.7,1859.4,14896.4,4852.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 -house043.xml,159.097,159.097,30.135,30.135,128.962,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.476,2.085,0.125,0.0,0.0,0.0,6.562,0.213,0.514,0.093,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.064,0.0,19.898,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.884,3.244,13.085,2.205,0.0,0.0,0.0,0.0,1986.6,2802.6,54.37,14.026,0.0,3.168,23.161,2.277,33.426,5.572,11.975,0.0,0.547,11.641,-0.297,28.928,0.0,1.576,0.0,0.0,-19.489,0.0,0.025,-0.949,-0.096,1.46,-0.384,3.408,0.0,-0.071,-3.319,-0.27,-1.645,-0.558,-0.149,0.0,0.0,5.894,1610.9,1574.7,12168.1,4288.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 -house044.xml,227.028,227.028,43.62,43.62,183.408,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.71,2.162,0.21,0.0,0.0,0.0,12.955,0.315,0.974,0.037,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,12.956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,160.844,0.0,22.564,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.44,4.033,13.085,4.449,0.0,0.0,0.0,0.0,3090.8,3558.7,80.719,19.212,4.364,6.892,36.362,9.1,18.888,2.732,5.625,0.0,12.69,17.077,-0.491,61.875,0.0,1.434,0.0,0.0,-28.239,0.23,0.429,-1.516,-0.111,1.107,-0.125,5.563,0.0,-1.174,-4.468,-0.456,-2.793,-0.51,-0.104,0.0,0.0,8.039,1610.9,1574.7,12168.2,4288.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 -house045.xml,150.599,150.599,35.234,35.234,115.365,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.721,2.444,0.31,0.0,0.0,0.0,9.065,0.315,0.749,1.793,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.917,0.0,22.448,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.327,4.231,13.085,4.359,0.0,0.0,0.0,0.0,2305.7,3008.2,46.015,13.006,3.57,3.077,15.083,2.263,32.188,1.132,6.28,0.639,0.086,11.516,-0.221,20.634,0.0,10.929,0.0,0.0,-21.636,-0.016,0.004,-1.112,-0.119,0.92,-0.09,5.103,0.329,-0.013,-3.984,-0.191,-1.204,-0.934,-1.276,0.0,0.0,6.914,1610.9,1574.7,12168.2,4288.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 +base-schedules-detailed-setpoints.xml,38.465,38.465,34.241,34.241,4.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,3.154,0.551,9.19,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.949,9.456,9.234,0.642,0.0,0.0,0.0,0.0,2077.9,3367.6,16.021,15.639,0.0,2.943,2.86,0.401,4.917,0.432,-4.329,0.0,0.0,2.777,-0.176,3.559,0.0,0.583,0.0,0.937,-11.278,0.0,-0.153,-0.599,-0.071,2.468,-0.065,9.508,0.0,0.0,-6.682,-0.056,-1.283,-5.24,-0.192,0.0,2.159,10.038,1354.8,997.6,11399.6,2615.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 +base-schedules-simple.xml,58.66,58.66,35.945,35.945,22.715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.375,4.302,0.83,9.164,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.272,14.104,9.234,0.614,0.0,0.0,0.0,0.0,2010.6,3313.3,22.96,17.938,0.0,3.543,3.632,0.511,7.423,0.628,-2.087,0.0,0.0,8.181,-0.063,4.804,0.0,0.728,0.0,4.916,-11.275,0.0,-0.049,-0.459,-0.051,2.716,-0.025,9.844,0.0,0.0,-6.346,-0.059,-1.168,-3.08,-0.165,0.0,3.117,10.011,1354.8,997.6,11399.6,2615.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 +base-simcontrol-calendar-year-custom.xml,58.465,58.465,35.881,35.881,22.584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.373,4.25,0.818,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.149,13.891,9.234,0.614,0.0,0.0,0.0,0.0,2131.7,3333.9,22.926,17.908,0.0,3.545,3.634,0.511,7.429,0.629,-2.082,0.0,0.0,8.194,-0.063,4.804,0.0,0.728,0.0,4.891,-11.406,0.0,-0.04,-0.453,-0.05,2.743,-0.023,9.864,0.0,0.0,-6.317,-0.059,-1.162,-3.215,-0.164,0.0,3.061,9.882,1354.8,997.6,11399.6,2615.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 +base-simcontrol-daylight-saving-custom.xml,58.487,58.487,35.909,35.909,22.578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.144,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.429,0.629,-2.082,0.0,0.0,8.191,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 +base-simcontrol-daylight-saving-disabled.xml,58.457,58.457,35.894,35.894,22.563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.26,0.821,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.13,13.929,9.234,0.614,0.0,0.0,0.0,0.0,2131.7,3204.2,22.926,17.481,0.0,3.544,3.633,0.511,7.43,0.628,-2.093,0.0,0.0,8.188,-0.059,4.802,0.0,0.725,0.0,4.886,-11.399,0.0,-0.045,-0.458,-0.051,2.721,-0.025,9.841,0.0,0.0,-6.337,-0.055,-1.172,-3.098,-0.163,0.0,3.072,9.889,1354.8,997.6,11399.6,2615.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 +base-simcontrol-runperiod-1-month.xml,9.6018,9.6018,3.1992,3.1992,6.4026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1056,0.1119,0.0,0.9158,0.0,0.0,0.4474,0.0,0.0354,0.0,0.0,0.0,0.0,0.1577,0.0,0.0,0.0297,0.0314,0.1285,0.1424,0.0,0.2049,0.8885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9894,0.0,0.9282,0.0566,0.0,0.0,0.0,0.0,2109.17,0.0,20.563,0.0,0.0,0.7031,0.6916,0.0981,1.9171,0.106,-0.1994,0.0,0.0,2.202,-0.001,0.9325,0.0,0.1372,0.0,1.3794,-2.0328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.32,92.97,1019.66,233.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 +base-simcontrol-temperature-capacitance-multiplier.xml,58.379,58.379,35.805,35.805,22.574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.189,0.804,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.14,13.643,9.234,0.614,0.0,0.0,0.0,0.0,2109.4,3373.7,22.867,17.765,0.0,3.613,3.631,0.511,7.426,0.626,-2.114,0.0,0.0,8.169,-0.053,4.801,0.0,0.727,0.0,4.883,-11.396,0.0,-0.213,-0.454,-0.051,2.728,-0.025,9.834,0.0,0.0,-6.334,-0.05,-1.175,-3.142,-0.164,0.0,2.942,9.892,1354.8,997.6,11399.6,2615.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 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,59.931,59.931,36.169,36.169,23.762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.392,4.461,0.863,9.167,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.251,14.588,9.232,0.617,0.0,0.0,0.333,1.0,9432.3,8358.5,37.386,21.878,0.0,3.594,3.658,0.515,7.494,0.64,-1.919,0.0,0.0,8.207,-0.062,5.304,0.0,0.776,0.0,5.177,-11.434,0.0,-0.166,-0.481,-0.055,2.745,-0.03,9.844,0.0,0.0,-6.312,-0.058,-1.274,-2.961,-0.176,0.0,3.327,10.329,1354.7,998.0,11410.5,2618.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 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,59.852,59.852,36.16,36.16,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.391,4.46,0.862,9.161,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,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,22.186,14.582,9.229,0.614,0.0,0.0,0.0,0.167,6213.5,7477.9,35.248,21.263,0.0,3.595,3.658,0.515,7.492,0.64,-1.925,0.0,0.0,8.204,-0.061,5.251,0.0,0.77,0.0,5.166,-11.422,0.0,-0.166,-0.481,-0.055,2.744,-0.031,9.838,0.0,0.0,-6.315,-0.056,-1.26,-2.963,-0.185,0.0,3.325,10.326,1354.7,998.0,11396.7,2615.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 +base-simcontrol-timestep-10-mins.xml,59.081,59.081,36.022,36.022,23.059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38,4.361,0.839,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.593,14.205,9.234,0.614,0.0,0.0,0.0,0.0,3548.1,4934.4,23.213,17.88,0.0,3.6,3.659,0.515,7.492,0.64,-1.93,0.0,0.0,8.209,-0.059,4.789,0.0,0.734,0.0,5.049,-11.406,0.0,-0.162,-0.48,-0.055,2.747,-0.03,9.835,0.0,0.0,-6.307,-0.055,-1.152,-2.969,-0.171,0.0,3.26,9.881,1354.8,997.6,11399.7,2615.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 +base.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 +house001.xml,87.655,87.655,47.054,47.054,40.601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.265,15.761,4.415,0.0,0.0,0.0,7.38,0.315,0.652,0.448,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,3.284,1.794,0.0,2.585,6.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.565,0.0,17.036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.109,50.172,10.416,2.673,0.0,0.0,0.0,0.0,1857.1,6429.7,40.431,40.682,0.489,1.963,7.184,0.418,0.0,0.959,2.625,0.0,0.436,1.218,-0.267,5.165,0.0,5.156,0.0,3.357,-9.733,0.579,2.038,3.842,0.309,0.0,0.263,11.904,0.0,0.575,6.824,-0.253,-0.453,-1.389,-0.722,0.0,10.829,15.998,2104.5,2144.0,14468.8,4385.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house002.xml,67.981,67.981,39.858,39.858,28.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.164,13.753,3.414,0.0,0.0,0.0,6.381,0.315,0.594,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,5.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.642,0.0,13.481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.871,39.441,7.526,2.888,0.0,0.0,0.0,0.0,1556.6,4944.7,25.364,28.55,0.0,2.516,5.041,0.0,0.0,0.847,1.932,0.0,0.0,1.731,-0.146,2.166,0.0,3.786,0.0,1.436,-7.591,0.0,3.121,2.799,0.0,0.0,0.406,8.133,0.0,0.0,8.491,-0.14,-0.234,-1.035,-0.619,0.0,5.901,12.792,1610.9,1574.7,9989.5,3520.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 +house003.xml,69.561,69.561,40.145,40.145,29.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.182,12.795,3.557,0.0,0.0,0.0,6.875,0.315,0.623,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,13.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.116,40.969,7.526,2.686,0.0,0.0,0.0,0.0,1635.5,5175.2,28.303,31.648,0.645,2.766,4.648,0.0,0.0,0.979,2.732,0.0,0.0,1.039,-0.168,2.708,0.0,3.936,0.0,1.7,-8.021,0.813,3.105,2.639,0.0,0.0,0.645,9.662,0.0,0.0,6.546,-0.161,-0.273,-1.076,-0.609,0.0,6.519,13.336,1610.9,1574.7,9989.4,3520.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 +house004.xml,139.222,139.222,75.872,75.872,63.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.419,29.4,9.578,0.0,0.0,0.0,11.562,0.315,0.893,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,1.633,2.35,11.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.21,0.0,16.141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.176,107.87,8.985,3.505,0.0,0.0,0.0,139.0,2440.4,7373.0,58.904,50.183,0.128,5.532,11.447,0.0,0.0,1.26,8.001,0.0,0.0,3.191,-0.724,6.625,0.0,6.327,0.0,7.461,-11.388,0.203,6.842,11.784,0.0,0.0,0.534,22.891,0.0,0.0,18.901,-0.711,1.532,0.0,1.911,0.0,21.709,22.531,1857.7,1859.3,12229.1,3983.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 +house005.xml,96.573,96.573,53.429,53.429,43.144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.314,18.378,5.178,0.0,0.0,0.0,9.155,0.315,0.754,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,8.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.951,0.0,15.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.667,59.898,8.985,2.724,0.0,0.0,0.0,0.0,2080.4,7521.3,49.166,51.179,0.0,2.996,8.095,0.266,0.0,1.337,3.365,0.0,0.369,1.211,-0.334,6.048,0.0,5.084,0.0,4.583,-10.548,0.0,3.064,4.412,0.216,0.0,0.306,15.748,0.0,0.449,7.545,-0.317,-0.524,-1.738,-0.699,0.0,14.646,16.992,1857.7,1859.4,12229.0,3983.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 +house006.xml,141.931,141.931,31.872,31.872,110.059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.932,2.982,0.346,0.0,0.0,0.0,8.687,0.29,0.705,3.138,0.0,0.0,0.0,1.707,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.114,8.883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.212,0.0,20.136,2.642,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.073,8.004,13.085,3.278,0.0,0.0,0.0,0.0,1992.7,2444.3,41.243,14.855,0.0,4.246,22.224,1.986,37.024,1.862,8.433,0.0,0.0,11.927,-0.318,9.522,0.0,4.368,0.0,0.0,-21.017,0.0,0.177,-0.798,-0.045,2.683,-0.086,3.391,0.0,0.0,-3.57,-0.318,-0.515,-0.62,-0.075,0.0,0.0,7.886,1610.9,1574.7,12168.2,4288.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 +house007.xml,141.369,141.369,34.029,34.029,107.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.685,2.589,0.408,0.0,0.0,0.0,10.299,0.315,0.82,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.674,0.0,23.28,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.135,6.014,15.632,3.268,0.0,0.0,0.0,0.0,2196.8,2569.2,40.428,13.43,0.0,4.694,23.596,4.394,10.052,1.495,9.576,0.0,0.076,14.159,-0.347,6.117,0.0,20.824,0.0,2.956,-24.981,0.0,0.202,-0.72,-0.043,0.525,-0.048,4.006,0.0,-0.009,-3.734,-0.342,-0.193,-0.596,-1.902,0.0,0.107,8.858,1857.7,1859.4,14896.4,4852.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 +house008.xml,185.445,185.445,39.257,39.257,146.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.532,3.619,0.543,0.0,0.0,0.0,11.006,0.315,0.861,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.752,0.0,26.376,3.452,3.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,106.243,10.35,18.129,3.214,0.0,0.0,0.0,0.0,2477.3,3293.3,55.348,19.539,0.0,7.201,27.357,4.679,24.256,1.177,14.499,0.0,1.222,19.564,-0.367,18.319,0.0,6.384,0.0,7.941,-26.834,0.0,0.305,-1.142,-0.066,1.602,-0.088,3.989,0.0,-0.105,-2.376,-0.367,-0.993,-0.692,-0.286,0.0,0.546,10.125,2104.5,2144.0,17624.7,5341.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 +house009.xml,153.687,153.687,33.974,33.974,119.713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.022,2.379,0.287,0.0,0.0,0.0,10.271,0.315,0.819,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.037,0.0,23.29,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.839,5.257,15.632,3.276,0.0,0.0,0.0,0.0,2225.7,2598.6,43.986,13.891,0.0,5.085,28.326,4.268,12.943,2.25,11.316,0.0,0.265,15.408,-0.347,8.73,0.0,21.435,0.0,0.0,-25.365,0.0,0.243,-0.7,-0.019,0.751,-0.076,3.767,0.0,-0.029,-4.092,-0.344,-0.26,-0.524,-1.805,0.0,0.0,8.427,1857.7,1859.4,14896.4,4852.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 +house010.xml,156.031,156.031,37.654,37.654,118.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.908,2.946,0.281,0.0,0.0,0.0,10.986,0.315,0.86,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.94,0.0,26.376,3.452,3.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,80.04,7.561,18.129,3.213,0.0,0.0,0.0,0.0,2413.3,2814.0,45.912,15.508,0.871,4.909,25.347,4.844,9.697,1.246,14.18,0.0,0.892,13.745,-0.363,19.56,0.0,6.4,0.0,4.978,-26.874,0.025,0.219,-0.756,-0.078,0.507,-0.073,3.72,0.0,-0.048,-3.894,-0.36,-1.029,-0.688,-0.272,0.0,0.347,10.046,2104.5,2144.0,17624.7,5341.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 +house011.xml,44.589,44.589,44.589,44.589,0.0,0.0,0.0,0.0,0.0,0.0,7.047,0.096,0.624,7.873,2.314,10.452,0.0,0.0,4.905,0.0,0.509,0.003,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.0,0.0,1.661,0.0,2.35,3.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.706,25.69,9.325,1.124,0.0,0.0,0.0,308.0,4893.3,3171.6,18.278,15.57,0.0,2.7,5.407,0.0,0.0,1.638,0.352,0.0,1.883,0.0,-0.367,1.846,0.0,5.42,0.0,3.962,-8.145,0.0,1.654,1.147,0.0,0.0,0.155,5.602,0.0,0.754,0.0,-0.366,-0.197,-0.181,-1.003,0.0,6.609,11.642,0.0,1859.4,12951.4,4219.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 +house012.xml,35.531,35.531,35.531,35.531,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.0,0.245,5.511,1.513,8.943,0.0,0.0,4.378,0.0,0.478,0.003,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.0,0.0,1.528,0.0,2.114,3.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,10.065,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.5,2478.0,11.058,10.81,0.0,2.364,4.744,0.0,0.0,0.628,0.992,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-6.815,0.0,1.715,1.082,0.0,0.0,-0.034,3.739,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,9.187,0.0,1574.7,10579.5,3728.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 +house013.xml,30.663,30.663,30.663,30.663,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.0,0.166,3.873,1.308,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.124,15.099,6.85,0.853,0.0,0.0,0.0,0.0,2660.8,2099.5,9.741,9.286,0.0,1.636,2.868,0.0,0.0,0.655,0.531,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-5.215,0.0,1.081,0.381,0.0,0.0,-0.092,4.01,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.465,8.791,1364.1,1290.1,8207.3,3131.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 +house014.xml,31.578,31.578,31.578,31.578,0.0,0.0,0.0,0.0,0.0,0.0,3.4,0.004,0.201,4.182,1.411,7.451,0.0,0.0,4.053,0.0,0.46,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.534,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2729.4,2185.8,10.982,10.107,0.0,1.705,3.7,0.0,0.0,0.584,0.615,0.0,2.211,0.0,-0.229,1.727,0.0,1.119,0.0,1.494,-5.427,0.0,1.141,0.558,0.0,0.0,-0.068,5.038,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.653,8.495,1364.1,1290.1,8207.3,3131.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 +house015.xml,30.663,30.663,30.663,30.663,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.0,0.166,3.873,1.308,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.124,15.099,6.85,0.853,0.0,0.0,0.0,0.0,2660.8,2099.5,9.741,9.286,0.0,1.636,2.868,0.0,0.0,0.655,0.531,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-5.215,0.0,1.081,0.381,0.0,0.0,-0.092,4.01,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.465,8.791,1364.1,1290.1,8207.3,3131.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 +house016.xml,59.145,59.145,39.312,39.312,0.0,0.0,19.833,0.0,0.0,0.0,7.582,0.17,0.551,3.034,1.026,0.0,0.0,0.0,8.606,0.0,0.723,0.215,0.0,0.0,0.0,2.448,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.24,0.0,13.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.405,11.971,9.378,0.0,0.0,0.0,1.0,14.0,7420.3,3510.1,42.959,18.987,0.0,4.421,10.842,0.619,5.709,0.298,-0.631,0.0,0.0,6.771,-0.02,5.733,0.0,3.859,0.0,0.0,-13.316,0.0,-0.347,-0.872,-0.023,2.902,-0.047,11.772,0.0,0.0,-8.864,-0.022,-1.374,-1.186,-1.026,0.0,0.0,11.541,1610.9,1574.7,11979.5,4221.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 +house017.xml,92.266,92.266,28.297,28.297,63.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.262,4.495,0.757,0.0,0.0,0.0,4.67,0.187,0.387,0.033,0.0,0.0,0.0,2.086,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.116,0.0,18.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,41.333,10.411,11.749,3.414,0.0,0.0,152.0,105.0,1744.9,3534.0,60.224,19.219,0.0,5.431,14.635,0.652,10.599,0.362,-2.318,0.0,0.705,4.292,0.008,19.797,0.0,1.221,0.0,0.0,-14.269,0.0,-0.179,-1.073,-0.025,4.581,-0.062,6.946,0.0,-0.003,-4.877,0.009,-2.804,-0.738,-0.261,0.0,0.0,8.943,1857.7,1859.4,14839.1,4834.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 +house018.xml,39.16,39.16,39.16,39.16,0.0,0.0,0.0,0.0,0.0,0.0,4.527,0.0,0.202,2.676,0.823,9.93,0.0,0.0,4.761,0.0,0.461,0.112,0.0,0.0,0.0,4.21,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,4.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.421,9.881,9.377,0.551,0.0,0.0,0.0,0.0,4902.2,2760.9,19.878,11.088,0.0,4.59,4.65,0.0,0.0,0.277,-0.085,0.0,2.192,0.0,-0.019,2.626,0.0,2.085,0.0,1.792,-9.794,0.0,-0.554,-0.842,0.0,0.0,-0.097,3.36,0.0,-0.039,0.0,-0.015,-0.785,-0.654,-0.76,0.0,1.313,9.185,1610.9,1574.7,11983.2,4223.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house019.xml,132.583,132.583,54.994,54.994,77.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.112,11.28,3.784,11.933,0.0,0.0,8.923,0.0,0.741,0.054,0.0,0.0,0.0,2.005,1.27,0.0,0.447,0.338,2.514,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.521,0.0,0.0,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.523,44.646,10.1,1.826,0.0,0.0,191.0,277.0,2884.1,6701.3,84.407,46.029,0.0,11.385,44.783,0.65,4.858,1.918,1.545,0.0,0.0,5.756,-0.035,8.869,0.0,1.864,0.0,0.0,-15.578,0.0,2.952,9.967,0.146,2.793,0.263,19.809,0.0,0.0,-4.378,-0.022,-0.178,-0.155,0.018,0.0,0.0,12.125,1610.9,1574.7,10370.6,3654.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 +house020.xml,114.55,114.55,56.28,56.28,0.0,0.0,58.27,0.0,0.0,0.0,0.0,0.0,0.806,13.14,2.894,0.0,0.0,0.0,12.75,0.0,0.892,0.026,0.0,0.0,0.0,3.976,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,16.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,37.71,0.0,17.491,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.736,34.408,9.377,4.22,0.0,0.0,0.0,0.0,2671.3,6550.3,30.871,32.37,0.908,11.004,10.574,1.133,9.701,0.632,-0.826,0.0,0.0,7.33,-0.033,15.231,0.0,0.836,0.0,0.0,-22.108,0.243,0.142,0.17,0.052,6.394,0.012,19.767,0.0,0.0,-6.764,-0.024,-2.717,-1.678,-0.199,0.0,0.0,19.174,1610.9,1574.7,11983.6,4223.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 +house021.xml,156.634,156.634,48.275,48.275,108.359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.977,7.824,1.571,0.0,0.0,0.0,10.64,0.244,0.771,0.071,0.0,0.0,0.0,2.448,1.472,0.0,0.528,0.39,2.899,1.661,0.0,2.35,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.34,0.0,20.019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.639,19.037,11.749,3.813,0.0,0.0,0.0,0.0,2766.4,4763.6,80.95,23.809,0.0,8.268,27.054,2.421,9.098,0.859,0.711,0.0,1.083,9.313,-0.321,26.611,0.0,2.489,0.0,6.015,-21.564,0.0,0.01,-0.877,0.004,2.203,-0.094,13.966,0.0,0.044,-6.113,-0.298,-2.444,-0.873,-0.391,0.0,1.32,12.735,1857.7,1859.4,14839.2,4834.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 +house022.xml,135.955,135.955,47.23,47.23,0.0,88.725,0.0,0.0,0.0,0.0,0.0,0.0,2.206,8.637,1.167,11.316,0.0,0.0,6.69,0.0,0.61,0.034,0.0,0.0,0.0,2.086,1.649,0.0,0.447,0.338,2.514,1.528,0.0,2.114,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.829,19.615,9.834,1.479,0.0,0.0,184.0,124.0,2873.0,5409.9,90.662,27.688,3.696,3.766,20.667,0.0,0.0,1.489,2.808,0.0,14.722,0.0,-0.288,37.698,0.0,1.154,0.0,0.0,-13.712,1.096,0.154,0.527,0.0,0.0,-0.127,11.106,0.0,1.911,0.0,-0.279,-2.739,-0.639,-0.074,0.0,0.0,8.533,1610.9,1574.7,12121.0,4271.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 +house023.xml,133.503,133.503,58.834,58.834,0.0,74.67,0.0,0.0,0.0,0.0,0.0,0.0,1.88,5.651,0.804,17.103,0.0,0.0,9.219,0.0,0.692,0.045,0.0,0.0,0.0,4.21,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,11.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.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,62.339,16.51,14.227,2.769,0.0,0.0,0.0,0.0,3862.1,4300.0,62.309,20.625,0.0,10.214,21.497,1.201,16.384,0.85,1.705,0.0,0.0,6.074,-0.031,23.712,0.0,1.639,0.0,0.0,-21.262,0.0,-0.207,-1.054,-0.016,5.953,-0.115,8.605,0.0,0.0,-6.04,-0.008,-2.694,-0.77,-0.316,0.0,0.0,13.264,1857.7,1859.4,6346.2,2067.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 +house024.xml,132.128,132.128,37.948,37.948,0.0,94.18,0.0,0.0,0.0,0.0,0.0,0.0,2.342,5.264,0.964,12.284,0.0,0.0,3.916,0.0,0.396,0.058,0.0,0.0,0.0,2.005,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,3.778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.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,77.644,15.695,10.188,2.088,0.0,0.0,0.0,0.0,2575.6,3429.7,78.782,17.849,0.0,7.199,30.093,0.0,0.0,0.683,-1.018,0.0,4.814,0.0,-0.118,32.036,0.0,1.838,0.0,12.666,-10.836,0.0,0.603,1.278,0.0,0.0,-0.038,6.294,0.0,0.601,0.0,-0.111,-1.717,-0.321,-0.188,0.0,2.734,6.621,1610.9,1574.7,9900.4,3489.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,109.166,109.166,73.066,73.066,36.1,0.0,0.0,0.0,0.0,0.0,6.343,0.0,1.09,18.685,3.345,14.465,0.0,0.0,9.263,0.0,0.783,0.0,0.0,0.0,0.0,4.105,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.946,48.554,10.555,3.831,0.0,0.0,0.0,0.0,4521.2,7088.7,37.506,33.352,0.0,3.38,17.589,0.0,0.0,2.172,1.414,0.0,6.822,0.0,-1.331,15.157,0.0,0.411,0.0,5.062,-12.791,0.0,1.081,5.659,0.0,0.0,0.438,15.28,0.0,5.576,0.0,-1.329,-0.818,-0.163,-0.004,0.0,6.233,16.882,1610.9,1574.7,4628.0,1631.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.005,58.005,24.86,24.86,33.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,0.0,0.0,0.0,6.534,0.251,0.548,0.299,0.0,0.0,0.0,1.987,0.0,0.0,0.447,0.338,2.514,1.528,0.934,2.114,7.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.007,0.0,14.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.58,0.0,8.606,2.072,0.0,0.0,0.0,0.0,1554.5,0.0,18.08,0.0,0.0,1.764,6.788,0.231,0.0,0.196,1.944,0.0,7.417,0.0,-0.062,2.889,0.0,3.124,0.0,0.0,-9.806,0.0,-0.165,-4.528,-0.155,0.0,-0.157,2.02,0.0,-2.521,0.0,-0.059,-1.937,-2.336,-2.829,0.0,0.0,12.856,1347.4,1334.1,8863.2,3123.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 +house027.xml,72.906,72.906,32.001,32.001,40.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.435,7.647,1.513,0.0,0.0,0.0,5.947,0.218,0.485,0.927,0.0,0.0,0.0,1.724,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,7.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.956,0.0,17.88,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.796,23.277,8.564,5.231,0.0,0.0,0.0,0.0,1579.0,3750.0,24.003,23.255,0.717,1.779,7.835,0.433,0.0,0.588,1.189,0.0,0.371,3.347,-0.138,1.744,0.0,10.422,0.0,2.032,-11.629,0.486,1.112,0.735,0.091,0.0,-0.107,5.336,0.0,0.112,3.831,-0.138,-0.366,-0.973,-3.484,0.0,2.721,13.836,1610.9,1574.7,10579.6,3728.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 +house028.xml,67.708,67.708,29.644,29.644,38.064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.257,7.079,1.508,0.0,0.0,0.0,6.138,0.226,0.503,0.618,0.0,0.0,0.0,2.104,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,7.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.558,0.0,18.12,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.732,22.831,10.226,3.619,0.0,0.0,0.0,0.0,1516.9,3307.5,19.979,21.233,0.767,1.659,7.019,0.34,0.0,0.428,1.687,0.0,0.233,2.471,-0.05,4.04,0.0,4.465,0.0,1.534,-11.981,0.614,1.245,-0.523,0.118,0.0,0.074,5.679,0.0,0.073,1.831,-0.051,-1.083,-1.206,-1.646,0.0,2.917,14.763,1857.7,1859.4,12951.7,4219.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 +house029.xml,78.091,78.091,30.073,30.073,48.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.647,6.206,0.924,0.0,0.0,0.0,6.543,0.274,0.569,0.76,0.0,0.0,0.0,1.981,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,6.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.353,0.0,12.596,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.015,14.034,9.614,0.0,0.0,0.0,0.0,0.0,1605.9,3008.5,28.665,14.172,0.0,3.353,14.661,0.392,0.0,0.306,0.217,0.0,7.295,0.0,-0.082,7.286,0.0,7.296,0.0,3.208,-12.076,0.0,1.121,-0.886,0.008,0.0,0.054,6.07,0.0,-0.004,0.0,-0.077,-0.819,-1.09,-1.55,0.0,1.28,10.011,1610.9,1574.7,11033.1,3888.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 +house030.xml,58.61,58.61,17.191,17.191,0.0,0.0,41.419,0.0,0.0,0.0,0.0,0.0,0.056,0.0,0.0,0.0,0.0,0.0,5.324,0.272,0.497,0.57,0.0,0.0,0.0,1.834,0.0,0.0,0.366,0.286,0.168,0.096,0.701,1.879,5.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.104,0.0,13.278,2.238,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.439,0.0,7.713,2.194,0.0,0.0,0.0,0.0,1133.9,0.0,16.227,0.0,0.0,1.661,10.169,0.487,1.098,1.042,0.949,0.0,0.0,4.255,-0.04,2.74,0.0,5.69,0.0,0.0,-10.762,0.0,-0.016,-3.301,-0.142,0.152,-0.345,1.805,0.0,0.0,-2.199,-0.036,-0.793,-2.023,-2.833,0.0,0.0,9.887,1141.1,1062.6,7141.6,2725.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house031.xml,229.031,229.031,49.316,49.316,179.714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.009,12.38,3.635,0.0,0.0,0.0,10.36,0.246,0.758,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.689,0.493,0.29,0.132,0.0,2.82,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.22,0.0,26.758,3.857,3.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,119.055,40.646,16.074,5.233,0.0,0.0,48.0,119.0,2872.0,7720.0,125.226,49.517,0.0,14.462,41.994,1.048,6.569,1.392,2.516,0.0,1.901,5.964,-0.823,56.847,0.0,0.653,0.0,9.703,-23.336,0.0,2.167,4.987,0.171,2.806,0.11,18.613,0.0,0.264,-3.676,-0.791,-2.004,-0.396,-0.012,0.0,3.131,14.835,2351.3,2428.6,16182.3,4593.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 +house032.xml,107.909,107.909,16.377,16.377,91.531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.484,0.0,0.0,0.0,0.0,0.0,5.094,0.0,0.518,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.633,0.0,21.513,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.937,0.0,12.214,4.917,0.0,0.0,152.0,0.0,1414.3,0.0,50.151,0.0,0.0,10.437,8.786,1.927,20.457,1.415,-1.413,0.0,0.0,4.453,0.02,14.989,0.0,0.626,0.0,0.0,-12.699,0.0,-1.803,-2.197,-0.45,0.473,-0.441,6.678,0.0,0.0,-4.798,0.026,-3.329,-1.472,-0.191,0.0,0.0,7.637,1857.7,1859.4,11844.0,3858.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 +house033.xml,125.38,125.38,17.732,17.732,0.0,107.648,0.0,0.0,0.0,0.0,0.0,0.0,0.311,0.0,0.0,0.0,0.0,0.0,4.888,0.0,0.528,0.0,0.0,0.0,0.0,1.294,0.0,0.0,0.0,0.39,2.899,1.661,0.0,2.35,3.412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.788,0.0,23.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,63.121,0.0,10.968,0.0,0.0,0.0,0.0,0.0,1204.0,0.0,48.454,0.0,0.0,19.167,14.584,0.0,0.0,1.001,3.214,0.0,14.741,0.0,-0.358,18.581,0.0,0.793,0.0,0.0,-8.897,0.0,-0.744,-1.507,0.0,0.0,-0.17,3.799,0.0,-2.733,0.0,-0.349,-2.097,-0.58,-0.158,0.0,0.0,4.555,1857.7,0.0,12693.2,4135.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house034.xml,153.577,153.577,43.566,43.566,0.0,0.0,110.011,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,0.0,0.0,0.0,16.498,0.341,1.204,0.0,0.0,0.0,0.0,1.909,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,15.707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.7,0.0,22.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,62.009,0.0,12.369,5.394,0.0,0.0,0.0,0.0,2971.8,0.0,85.849,0.0,0.0,8.911,27.066,0.0,2.86,1.906,-0.813,0.0,10.824,2.681,0.075,34.844,0.0,0.572,0.0,0.0,-26.762,0.0,-2.177,-8.151,0.0,-0.189,-0.537,17.503,0.0,-2.923,-3.966,0.111,-9.702,-5.569,-0.208,0.0,0.0,15.856,1857.7,1859.4,11100.4,3616.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 +house035.xml,73.573,73.573,18.701,18.701,54.872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.796,1.796,0.125,0.0,0.0,0.0,5.438,0.0,0.533,0.0,0.0,0.0,0.0,2.257,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.114,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.019,0.0,17.142,2.642,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.292,2.838,9.967,3.817,0.0,0.0,101.0,0.0,1416.4,1983.7,38.931,10.019,0.369,6.176,10.914,0.0,0.0,0.54,-1.551,0.0,7.868,0.0,0.004,13.643,0.0,0.492,0.0,0.0,-11.963,0.058,-0.607,-1.642,0.0,0.0,-0.085,6.075,0.0,-4.526,0.0,0.009,-2.775,-0.748,-0.13,0.0,0.0,7.33,1610.9,1574.7,11176.8,3938.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 +house036.xml,82.585,82.585,26.121,26.121,56.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.964,5.937,1.044,0.0,0.0,0.0,5.449,0.0,0.536,0.0,0.0,0.0,0.0,1.617,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.758,0.0,17.707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.857,15.012,8.412,5.837,0.0,0.0,102.0,126.0,1466.7,3222.0,31.784,17.347,5.544,2.267,3.994,0.0,0.0,1.83,-1.182,0.0,21.292,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-9.871,1.567,0.12,-0.032,0.0,0.0,-0.224,6.117,0.0,2.213,0.0,-0.0,-0.749,-0.417,-0.061,0.0,0.0,6.381,1364.1,1290.1,6619.3,2525.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 +house037.xml,93.269,93.269,22.744,22.744,0.0,70.525,0.0,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,0.0,0.0,0.0,6.807,0.0,0.61,0.0,0.0,0.0,0.0,2.004,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.842,0.0,20.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.973,0.0,9.51,0.0,0.0,0.0,0.0,0.0,1517.4,0.0,29.464,0.0,0.0,16.73,11.335,0.0,0.0,1.564,-3.204,0.0,6.597,0.0,-0.31,14.699,0.0,0.461,0.0,0.0,-10.835,0.0,-3.313,-3.336,0.0,0.0,-0.652,11.351,0.0,-4.638,0.0,-0.308,-4.583,-2.603,-0.204,0.0,0.0,8.875,1610.9,1574.7,11016.6,3882.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 +house038.xml,127.846,127.846,52.511,52.511,75.334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.899,13.879,2.898,0.0,0.0,0.0,6.908,0.315,0.625,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.689,0.493,3.669,1.927,0.0,2.82,6.085,0.0,0.0,0.0,9.699,0.0,0.0,0.0,0.0,49.614,0.0,25.721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.57,31.877,16.074,4.6,0.0,0.0,0.0,235.0,2508.5,5703.9,48.164,27.523,0.0,3.655,14.882,0.651,4.433,0.808,1.548,0.0,1.803,2.326,-0.044,22.416,0.0,0.593,0.0,0.0,-14.006,0.0,0.83,2.529,0.137,2.211,0.013,14.612,0.0,0.363,-0.617,-0.032,-0.641,-0.146,0.002,0.0,0.0,11.878,2351.3,2428.6,16182.3,4593.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 +house039.xml,98.532,98.532,20.911,20.911,77.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,3.759,0.0,0.0,4.411,0.239,0.418,0.0,0.0,0.0,0.0,1.763,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.553,0.0,0.0,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.589,0.0,9.905,1.135,0.0,0.0,0.0,0.0,1574.6,0.0,52.848,0.0,0.0,14.291,5.41,0.0,0.0,2.519,1.891,0.0,13.819,0.0,-0.045,16.976,0.0,0.558,0.0,0.0,-8.23,0.0,-2.215,-1.275,0.0,0.0,-0.771,7.734,0.0,-3.79,0.0,-0.033,-3.649,-1.432,-0.173,0.0,0.0,5.892,1610.9,1574.7,11659.6,4109.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,104.643,104.643,24.47,24.47,80.173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.288,0.0,0.0,0.0,0.0,0.0,7.373,0.0,0.651,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.966,0.0,20.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.493,0.0,10.233,5.494,0.0,0.0,0.0,0.0,1809.6,0.0,62.175,0.0,11.279,5.63,22.313,0.0,4.286,2.097,-0.22,0.0,2.046,3.365,-0.078,19.734,0.0,0.613,0.0,0.0,-14.999,0.116,-0.785,-5.18,0.0,-0.043,-0.605,8.061,0.0,-0.046,-3.808,-0.055,-4.228,-1.981,-0.185,0.0,0.0,8.838,1610.9,1574.7,9674.8,3409.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 +house041.xml,263.105,263.105,47.299,47.299,215.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.251,2.644,0.266,0.0,0.0,0.0,13.943,0.315,1.031,0.05,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.473,2.35,14.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189.256,0.0,26.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,178.33,4.919,15.632,5.037,0.0,0.0,135.0,0.0,3249.4,4568.2,77.766,23.812,0.0,11.226,44.587,3.435,34.913,3.015,18.258,0.0,4.27,22.006,-0.485,64.012,0.0,2.762,0.0,0.0,-31.257,0.0,0.081,-2.242,-0.119,1.5,-0.212,7.03,0.0,-0.319,-4.876,-0.483,-3.531,-1.056,-0.261,0.0,0.0,9.532,1857.7,1859.4,14896.5,4852.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 +house042.xml,233.404,233.404,40.19,40.19,193.215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.955,1.845,0.077,0.0,0.0,0.0,9.539,0.213,0.678,0.093,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,13.542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.779,0.0,24.436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.948,3.165,15.632,3.225,0.0,0.0,0.0,0.0,2766.5,3100.9,89.307,19.845,0.0,9.18,39.862,3.99,43.775,2.66,12.414,0.0,2.424,18.904,-0.372,56.22,0.0,1.75,0.0,0.0,-26.736,0.0,0.183,-1.616,-0.065,2.509,-0.161,3.914,0.0,-0.272,-4.674,-0.368,-2.883,-0.665,-0.146,0.0,0.0,7.51,1857.7,1859.4,14896.4,4852.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 +house043.xml,160.384,160.384,30.132,30.132,130.253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.505,2.056,0.122,0.0,0.0,0.0,6.562,0.213,0.514,0.093,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.353,0.0,19.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,105.112,3.155,13.085,2.206,0.0,0.0,0.0,0.0,1993.2,2795.9,55.29,13.945,0.0,3.165,23.17,2.278,33.802,5.586,11.948,0.0,0.547,12.498,-0.274,28.923,0.0,1.576,0.0,0.0,-19.498,0.0,0.028,-0.934,-0.095,1.433,-0.381,3.425,0.0,-0.071,-3.427,-0.274,-1.633,-0.55,-0.148,0.0,0.0,5.886,1610.9,1574.7,12168.1,4288.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 +house044.xml,228.458,228.458,43.631,43.631,184.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.752,2.136,0.205,0.0,0.0,0.0,12.955,0.315,0.974,0.037,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,12.956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.262,0.0,22.565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,150.758,3.937,13.085,4.45,0.0,0.0,0.0,0.0,3099.8,3551.6,81.667,19.114,4.361,6.886,36.341,9.094,19.186,2.732,5.604,0.0,12.682,18.166,-0.464,61.873,0.0,1.434,0.0,0.0,-28.254,0.233,0.434,-1.49,-0.105,1.079,-0.123,5.569,0.0,-1.165,-4.601,-0.461,-2.772,-0.503,-0.103,0.0,0.0,8.025,1610.9,1574.7,12168.2,4288.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 +house045.xml,152.166,152.166,35.221,35.221,116.945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.767,2.395,0.299,0.0,0.0,0.0,9.065,0.315,0.749,1.793,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.494,0.0,22.451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.793,4.082,13.085,4.362,0.0,0.0,0.0,0.0,2316.1,2997.7,47.111,12.915,3.563,3.071,15.121,2.27,32.708,1.138,6.202,0.636,0.086,12.52,-0.186,20.634,0.0,10.931,0.0,0.0,-21.685,-0.013,0.005,-1.097,-0.117,0.88,-0.089,5.076,0.328,-0.013,-4.089,-0.185,-1.188,-0.92,-1.263,0.0,0.0,6.867,1610.9,1574.7,12168.2,4288.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 house046.xml,24.966,24.966,24.966,24.966,0.0,0.0,0.0,0.0,0.0,0.0,5.409,0.272,0.38,3.589,1.142,4.924,0.0,0.0,1.03,0.0,0.082,0.0,0.0,0.0,0.0,1.793,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.644,2.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.979,12.719,4.305,0.617,0.0,0.0,0.0,0.0,3780.1,2265.4,16.064,12.964,0.0,2.52,3.83,0.0,0.0,0.327,0.647,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.827,-4.067,0.0,1.287,2.524,0.0,0.0,0.024,3.101,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.684,5.134,596.8,442.2,5543.5,2208.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 -house047.xml,19.923,19.923,14.488,14.488,5.436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.12,0.627,0.006,4.487,0.0,0.0,0.921,0.0,0.463,0.182,0.0,0.0,0.0,1.444,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.644,2.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.284,1.66,4.203,0.0,0.0,0.0,0.0,0.0,871.9,972.2,4.551,2.604,0.0,-0.001,0.779,0.129,0.0,0.0,1.196,0.0,0.0,0.546,-0.018,1.573,0.0,4.965,0.0,0.179,-4.083,0.0,-0.0,0.091,0.031,0.0,0.0,0.685,0.0,0.0,-0.912,-0.008,-0.24,-0.259,-1.429,0.0,-0.0,3.704,251.7,442.2,5772.6,1524.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 -house048.xml,94.421,94.421,41.498,41.498,52.922,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.339,14.24,4.297,0.0,0.0,0.0,3.691,0.085,0.498,2.899,0.0,0.0,0.0,2.421,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.35,8.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.977,0.0,12.606,0.0,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.912,52.344,7.253,2.665,0.0,0.0,0.0,0.0,1522.2,5082.6,46.091,33.572,1.017,2.621,11.971,0.0,0.0,0.804,2.395,0.0,0.056,1.685,-0.543,8.098,0.0,4.22,0.0,6.466,-8.984,1.352,1.062,9.364,0.0,0.0,0.565,7.066,0.0,0.074,10.221,-0.52,0.764,-0.442,1.845,0.0,7.493,13.698,130.3,817.7,11617.7,3495.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house049.xml,31.754,31.754,28.257,28.257,3.497,0.0,0.0,0.0,0.0,0.0,5.541,0.0,0.033,5.873,0.159,2.621,0.249,0.0,1.474,0.057,0.099,2.092,0.0,0.0,0.0,3.073,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.879,4.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.698,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.934,34.1,4.262,1.304,0.0,0.0,0.0,108.0,4403.9,2165.2,12.255,17.691,0.0,1.366,4.388,0.0,0.0,0.0,-3.637,0.0,0.0,1.191,-0.094,2.585,0.0,1.811,0.0,0.0,-2.866,0.0,1.565,6.663,0.0,0.0,0.0,18.268,0.0,0.0,3.076,-0.074,-0.325,-3.576,0.504,0.0,0.0,8.574,728.6,567.4,7484.8,928.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 -house050.xml,51.321,51.321,21.842,21.842,29.478,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.266,1.901,0.334,0.0,0.0,0.0,1.782,0.057,0.111,2.23,0.0,0.0,0.0,2.36,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.114,5.961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.562,0.0,10.847,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.201,5.2,8.573,0.0,0.0,0.0,0.0,0.0,1156.0,2580.1,11.094,15.39,0.0,4.142,6.442,0.0,0.0,2.004,1.46,0.0,4.513,0.0,-0.131,2.668,0.0,3.672,0.0,1.861,-11.506,0.0,-0.288,-0.306,0.0,0.0,-0.388,3.485,0.0,-0.901,0.0,-0.127,-0.559,-1.227,-0.763,0.0,0.571,5.813,1689.0,437.0,10675.0,2994.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 +house047.xml,20.753,20.753,14.467,14.467,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.587,0.005,4.487,0.0,0.0,0.921,0.0,0.463,0.182,0.0,0.0,0.0,1.444,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.644,2.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.111,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.3,966.0,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.175,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-4.101,0.0,-0.0,0.101,0.032,0.0,0.0,0.705,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.685,251.7,442.2,5772.6,1524.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 +house048.xml,94.857,94.857,41.464,41.464,53.393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.343,14.217,4.289,0.0,0.0,0.0,3.691,0.085,0.498,2.892,0.0,0.0,0.0,2.421,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.35,8.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.438,0.0,12.616,0.0,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.285,52.236,7.253,2.672,0.0,0.0,0.0,0.0,1520.6,5080.6,46.206,33.552,1.017,2.619,11.977,0.0,0.0,0.813,2.388,0.0,0.058,2.019,-0.532,8.103,0.0,4.231,0.0,6.496,-9.004,1.353,1.065,9.369,0.0,0.0,0.563,7.068,0.0,0.074,10.115,-0.52,0.771,-0.441,1.851,0.0,7.487,13.678,130.3,817.7,11617.7,3495.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +house049.xml,32.052,32.052,28.556,28.556,3.497,0.0,0.0,0.0,0.0,0.0,5.849,0.0,0.035,5.861,0.158,2.621,0.249,0.0,1.474,0.057,0.099,2.092,0.0,0.0,0.0,3.073,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.879,4.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.698,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.203,34.04,4.262,1.305,0.0,0.0,0.0,107.0,4425.3,2165.2,12.334,17.679,0.0,1.365,4.439,0.0,0.0,0.0,-3.667,0.0,0.0,1.448,-0.076,2.578,0.0,1.806,0.0,0.0,-2.872,0.0,1.568,6.672,0.0,0.0,0.0,18.287,0.0,0.0,2.969,-0.076,-0.317,-3.562,0.51,0.0,0.0,8.569,728.6,567.4,7485.0,928.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 +house050.xml,51.808,51.808,21.832,21.832,29.977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.275,1.887,0.33,0.0,0.0,0.0,1.782,0.057,0.111,2.23,0.0,0.0,0.0,2.36,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.114,5.961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.061,0.0,10.847,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.688,5.135,8.573,0.0,0.0,0.0,0.0,0.0,1156.7,2577.1,11.113,15.357,0.0,4.131,6.506,0.0,0.0,2.03,1.424,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.92,-11.514,0.0,-0.284,-0.31,0.0,0.0,-0.39,3.474,0.0,-0.955,0.0,-0.123,-0.557,-1.22,-0.76,0.0,0.565,5.804,1689.0,437.0,10675.0,2994.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 diff --git a/workflow/tests/base_results/results_bills.csv b/workflow/tests/base_results/results_bills.csv index 743021cfdc..f0db695740 100644 --- a/workflow/tests/base_results/results_bills.csv +++ b/workflow/tests/base_results/results_bills.csv @@ -1,24 +1,24 @@ HPXML,Bills: Total (USD),Bills: Electricity: Fixed (USD),Bills: Electricity: Marginal (USD),Bills: Electricity: Total (USD),Bills: Natural Gas: Fixed (USD),Bills: Natural Gas: Marginal (USD),Bills: Natural Gas: Total (USD),Bills: Coal: Marginal (USD),Bills: Coal: Total (USD),Bills: Fuel Oil: Marginal (USD),Bills: Fuel Oil: Total (USD),Bills: Propane: Marginal (USD),Bills: Propane: Total (USD),Bills: Wood Cord: Marginal (USD),Bills: Wood Cord: Total (USD),Bills: Electricity: PV Credit (USD),Bills: Wood Pellets: Marginal (USD),Bills: Wood Pellets: Total (USD),Net Metering w/ Wholesale Excess Rate: Total (USD),Net Metering w/ Wholesale Excess Rate: Electricity: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Electricity: Marginal (USD),Net Metering w/ Wholesale Excess Rate: Electricity: PV Credit (USD),Net Metering w/ Wholesale Excess Rate: Electricity: Total (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Fixed (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Marginal (USD),Net Metering w/ Wholesale Excess Rate: Natural Gas: Total (USD),Net Metering w/ Retail Excess Rate: Total (USD),Net Metering w/ Retail Excess Rate: Electricity: Fixed (USD),Net Metering w/ Retail Excess Rate: Electricity: Marginal (USD),Net Metering w/ Retail Excess Rate: Electricity: PV Credit (USD),Net Metering w/ Retail Excess Rate: Electricity: Total (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Fixed (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Marginal (USD),Net Metering w/ Retail Excess Rate: Natural Gas: Total (USD),Feed-In Tariff: Total (USD),Feed-In Tariff: Electricity: Fixed (USD),Feed-In Tariff: Electricity: Marginal (USD),Feed-In Tariff: Electricity: PV Credit (USD),Feed-In Tariff: Electricity: Total (USD),Feed-In Tariff: Natural Gas: Fixed (USD),Feed-In Tariff: Natural Gas: Marginal (USD),Feed-In Tariff: Natural Gas: Total (USD) -base-appliances-coal.xml,1609.52,144.0,1108.85,1252.85,144.0,139.68,283.68,72.99,72.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 -base-appliances-dehumidifier-ief-portable.xml,1369.03,144.0,1071.07,1215.07,144.0,9.96,153.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 -base-appliances-dehumidifier-ief-whole-home.xml,1370.33,144.0,1072.55,1216.55,144.0,9.78,153.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 -base-appliances-dehumidifier-multiple.xml,1367.1,144.0,1068.63,1212.63,144.0,10.47,154.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 -base-appliances-dehumidifier.xml,1368.28,144.0,1070.43,1214.43,144.0,9.85,153.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 -base-appliances-gas.xml,1571.42,144.0,1108.85,1252.85,144.0,174.57,318.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 -base-appliances-modified.xml,1657.79,144.0,1231.52,1375.52,144.0,138.27,282.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 -base-appliances-none.xml,1392.94,144.0,946.85,1090.85,144.0,158.09,302.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 +base-appliances-coal.xml,1624.02,144.0,1105.91,1249.91,144.0,157.12,301.12,72.99,72.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 +base-appliances-dehumidifier-ief-portable.xml,1370.0,144.0,1071.03,1215.03,144.0,10.97,154.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 +base-appliances-dehumidifier-ief-whole-home.xml,1371.43,144.0,1072.66,1216.66,144.0,10.77,154.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 +base-appliances-dehumidifier-multiple.xml,1367.97,144.0,1068.44,1212.44,144.0,11.53,155.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 +base-appliances-dehumidifier.xml,1369.08,144.0,1070.24,1214.24,144.0,10.84,154.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 +base-appliances-gas.xml,1585.92,144.0,1105.91,1249.91,144.0,192.01,336.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 +base-appliances-modified.xml,1672.27,144.0,1228.6,1372.6,144.0,155.67,299.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 +base-appliances-none.xml,1407.94,144.0,944.16,1088.16,144.0,175.78,319.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 base-appliances-oil-location-miami-fl.xml,1713.36,144.0,1452.09,1596.09,0,0,0,0,0,117.27,117.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 -base-appliances-oil.xml,1658.89,144.0,1108.85,1252.85,144.0,139.68,283.68,0,0,122.36,122.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 -base-appliances-propane-location-portland-or.xml,1469.23,144.0,888.99,1032.99,144.0,149.05,293.05,0,0,0,0,143.19,143.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 -base-appliances-propane.xml,1666.85,144.0,1108.85,1252.85,144.0,139.68,283.68,0,0,0,0,130.32,130.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 -base-appliances-wood.xml,1609.52,144.0,1108.85,1252.85,144.0,139.68,283.68,0,0,0,0,0,0,72.99,72.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 -base-atticroof-cathedral.xml,1653.93,144.0,1192.81,1336.81,144.0,173.12,317.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 -base-atticroof-conditioned.xml,1820.02,144.0,1359.47,1503.47,144.0,172.55,316.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 -base-atticroof-flat.xml,1585.76,144.0,1170.54,1314.54,144.0,127.22,271.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 -base-atticroof-radiant-barrier.xml,1390.4,144.0,1068.76,1212.76,144.0,33.64,177.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 -base-atticroof-unvented-insulated-roof.xml,1607.72,144.0,1175.75,1319.75,144.0,143.97,287.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 -base-atticroof-vented.xml,1618.8,144.0,1187.37,1331.37,144.0,143.43,287.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 -base-battery.xml,1631.02,144.0,1198.67,1342.67,144.0,144.35,288.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 +base-appliances-oil.xml,1673.39,144.0,1105.91,1249.91,144.0,157.12,301.12,0,0,122.36,122.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 +base-appliances-propane-location-portland-or.xml,1486.73,144.0,886.28,1030.28,144.0,169.26,313.26,0,0,0,0,143.19,143.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 +base-appliances-propane.xml,1681.35,144.0,1105.91,1249.91,144.0,157.12,301.12,0,0,0,0,130.32,130.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 +base-appliances-wood.xml,1624.02,144.0,1105.91,1249.91,144.0,157.12,301.12,0,0,0,0,0,0,72.99,72.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 +base-atticroof-cathedral.xml,1665.4,144.0,1190.39,1334.39,144.0,187.01,331.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 +base-atticroof-conditioned.xml,1833.33,144.0,1356.79,1500.79,144.0,188.54,332.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 +base-atticroof-flat.xml,1597.35,144.0,1168.14,1312.14,144.0,141.21,285.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 +base-atticroof-radiant-barrier.xml,1391.38,144.0,1068.11,1212.11,144.0,35.27,179.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 +base-atticroof-unvented-insulated-roof.xml,1619.57,144.0,1173.36,1317.36,144.0,158.21,302.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 +base-atticroof-vented.xml,1633.19,144.0,1184.68,1328.68,144.0,160.51,304.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 +base-battery.xml,1645.69,144.0,1195.81,1339.81,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-adjacent-to-multifamily-buffer-space.xml,1198.72,144.0,826.04,970.04,144.0,84.68,228.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 base-bldgtype-multifamily-adjacent-to-multiple.xml,1175.72,144.0,840.47,984.47,144.0,47.25,191.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 base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,1293.35,144.0,826.25,970.25,144.0,179.1,323.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 @@ -51,329 +51,329 @@ base-bldgtype-multifamily-shared-pv.xml,351.2,144.0,872.48,202.35,144.0,4.85,148 base-bldgtype-multifamily-shared-water-heater-recirc.xml,966.9,144.0,583.04,727.04,144.0,95.86,239.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 base-bldgtype-multifamily-shared-water-heater.xml,930.41,144.0,546.55,690.55,144.0,95.86,239.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 base-bldgtype-multifamily.xml,1165.33,144.0,872.48,1016.48,144.0,4.85,148.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 -base-bldgtype-single-family-attached-2stories.xml,1551.27,144.0,1152.99,1296.99,144.0,110.28,254.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 -base-bldgtype-single-family-attached-atticroof-cathedral.xml,1952.48,144.0,1239.63,1383.63,144.0,424.85,568.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 -base-bldgtype-single-family-attached.xml,1364.69,144.0,998.78,1142.78,144.0,77.91,221.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 -base-calctype-operational-misc-defaults.xml,1137.35,144.0,1320.45,795.12,144.0,198.23,342.23,0,0,0,0,0,0,0,0,-669.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 -base-calctype-operational-misc-loads-large-uncommon.xml,2450.27,144.0,1733.22,1877.22,144.0,279.72,423.72,0,0,0,0,69.87,69.87,79.46,79.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 -base-calctype-operational-misc-loads-large-uncommon2.xml,2231.65,144.0,1652.44,1796.44,144.0,146.15,290.15,0,0,65.6,65.6,0,0,0,0,0,79.46,79.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 -base-calctype-operational.xml,1393.69,144.0,946.27,1090.27,144.0,159.42,303.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 -base-dhw-combi-tankless-outside.xml,1211.11,144.0,713.24,857.24,144.0,209.87,353.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 -base-dhw-combi-tankless.xml,1211.11,144.0,713.24,857.24,144.0,209.87,353.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 -base-dhw-desuperheater-2-speed.xml,1221.73,144.0,1077.73,1221.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1372.18,144.0,1228.18,1372.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 -base-dhw-desuperheater-hpwh.xml,1454.63,144.0,990.07,1134.07,144.0,176.56,320.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 -base-dhw-desuperheater-tankless.xml,1270.59,144.0,1126.59,1270.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 -base-dhw-desuperheater-var-speed.xml,1191.12,144.0,1047.12,1191.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 -base-dhw-desuperheater.xml,1271.16,144.0,1127.16,1271.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-dwhr.xml,1556.44,144.0,1124.09,1268.09,144.0,144.35,288.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 +base-bldgtype-single-family-attached-2stories.xml,1560.47,144.0,1150.87,1294.87,144.0,121.6,265.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 +base-bldgtype-single-family-attached-atticroof-cathedral.xml,1960.62,144.0,1238.07,1382.07,144.0,434.55,578.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 +base-bldgtype-single-family-attached.xml,1374.86,144.0,996.13,1140.13,144.0,90.73,234.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-calctype-operational-misc-defaults.xml,1152.0,144.0,1319.53,794.2,144.0,213.8,357.8,0,0,0,0,0,0,0,0,-669.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 +base-calctype-operational-misc-loads-large-uncommon.xml,2464.6,144.0,1730.24,1874.24,144.0,297.03,441.03,0,0,0,0,69.87,69.87,79.46,79.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 +base-calctype-operational-misc-loads-large-uncommon2.xml,2245.98,144.0,1649.45,1793.45,144.0,163.47,307.47,0,0,65.6,65.6,0,0,0,0,0,79.46,79.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 +base-calctype-operational.xml,1408.68,144.0,943.59,1087.59,144.0,177.09,321.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 +base-dhw-combi-tankless-outside.xml,1226.39,144.0,713.79,857.79,144.0,224.6,368.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 +base-dhw-combi-tankless.xml,1226.39,144.0,713.79,857.79,144.0,224.6,368.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 +base-dhw-desuperheater-2-speed.xml,1220.19,144.0,1076.19,1220.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 +base-dhw-desuperheater-gshp.xml,1389.54,144.0,1245.54,1389.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 +base-dhw-desuperheater-hpwh.xml,1469.74,144.0,987.51,1131.51,144.0,194.23,338.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 +base-dhw-desuperheater-tankless.xml,1267.31,144.0,1123.31,1267.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 +base-dhw-desuperheater-var-speed.xml,1190.43,144.0,1046.43,1190.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 +base-dhw-desuperheater.xml,1267.94,144.0,1123.94,1267.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 +base-dhw-dwhr.xml,1571.11,144.0,1121.23,1265.23,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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 -base-dhw-indirect-outside.xml,1242.24,144.0,713.24,857.24,144.0,241.0,385.0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1224.76,144.0,712.81,856.81,144.0,223.95,367.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 -base-dhw-indirect-with-solar-fraction.xml,1166.45,144.0,713.11,857.11,144.0,165.34,309.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 -base-dhw-indirect.xml,1223.12,144.0,712.88,856.88,144.0,222.24,366.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 -base-dhw-jacket-electric.xml,1621.72,144.0,1187.84,1331.84,144.0,145.88,289.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1436.97,144.0,896.99,1040.99,144.0,251.98,395.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 -base-dhw-jacket-hpwh.xml,1450.29,144.0,985.68,1129.68,144.0,176.61,320.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 -base-dhw-jacket-indirect.xml,1221.72,144.0,712.93,856.93,144.0,220.79,364.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 -base-dhw-low-flow-fixtures.xml,1618.77,144.0,1186.42,1330.42,144.0,144.35,288.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 -base-dhw-multiple.xml,1221.93,144.0,777.84,921.84,144.0,156.09,300.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 -base-dhw-none.xml,1251.17,144.0,819.05,963.05,144.0,144.12,288.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 -base-dhw-recirc-demand.xml,1629.36,144.0,1197.01,1341.01,144.0,144.35,288.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 -base-dhw-recirc-manual.xml,1615.15,144.0,1182.8,1326.8,144.0,144.35,288.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 -base-dhw-recirc-nocontrol.xml,2127.19,144.0,1694.84,1838.84,144.0,144.35,288.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 -base-dhw-recirc-temperature.xml,1963.66,144.0,1531.31,1675.31,144.0,144.35,288.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 -base-dhw-recirc-timer.xml,2127.19,144.0,1694.84,1838.84,144.0,144.35,288.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 -base-dhw-solar-direct-evacuated-tube.xml,1436.17,144.0,1003.82,1147.82,144.0,144.35,288.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 -base-dhw-solar-direct-flat-plate.xml,1387.11,144.0,954.82,1098.82,144.0,144.29,288.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 -base-dhw-solar-direct-ics.xml,1438.03,144.0,1005.68,1149.68,144.0,144.35,288.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 -base-dhw-solar-fraction.xml,1433.38,144.0,999.12,1143.12,144.0,146.26,290.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 -base-dhw-solar-indirect-flat-plate.xml,1387.65,144.0,957.84,1101.84,144.0,141.81,285.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 -base-dhw-solar-thermosyphon-flat-plate.xml,1377.8,144.0,945.5,1089.5,144.0,144.3,288.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 -base-dhw-tank-coal.xml,1564.79,144.0,898.8,1042.8,144.0,145.99,289.99,232.0,232.0,0,0,0,0,0,0,0,0,0,0,0,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-detailed-setpoints.xml,1630.62,144.0,1198.32,1342.32,144.0,144.3,288.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 -base-dhw-tank-elec-uef.xml,1633.28,144.0,1201.3,1345.3,144.0,143.98,287.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 -base-dhw-tank-gas-outside.xml,1460.48,144.0,891.63,1035.63,144.0,280.85,424.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 -base-dhw-tank-gas-uef-fhr.xml,1440.33,144.0,897.53,1041.53,144.0,254.8,398.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 -base-dhw-tank-gas-uef.xml,1440.33,144.0,897.53,1041.53,144.0,254.8,398.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 -base-dhw-tank-gas.xml,1443.68,144.0,898.8,1042.8,144.0,256.88,400.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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-operating-modes.xml,1422.07,144.0,951.29,1095.29,144.0,182.78,326.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 -base-dhw-tank-heat-pump-detailed-schedules.xml,1427.59,144.0,957.09,1101.09,144.0,182.5,326.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 -base-dhw-tank-heat-pump-detailed-setpoints.xml,1427.59,144.0,957.09,1101.09,144.0,182.5,326.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 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1422.07,144.0,951.29,1095.29,144.0,182.78,326.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 -base-dhw-tank-heat-pump-outside.xml,1554.15,144.0,1118.84,1262.84,144.0,147.31,291.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 -base-dhw-tank-heat-pump-uef.xml,1422.07,144.0,951.29,1095.29,144.0,182.78,326.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 -base-dhw-tank-heat-pump-with-solar-fraction.xml,1373.24,144.0,928.04,1072.04,144.0,157.2,301.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 -base-dhw-tank-heat-pump-with-solar.xml,1386.35,144.0,948.71,1092.71,144.0,149.64,293.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 -base-dhw-tank-heat-pump.xml,1454.47,144.0,990.37,1134.37,144.0,176.1,320.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 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1626.85,144.0,1187.28,1331.28,144.0,151.57,295.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 -base-dhw-tank-model-type-stratified.xml,1617.66,144.0,1182.81,1326.81,144.0,146.85,290.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 -base-dhw-tank-oil.xml,1721.72,144.0,898.8,1042.8,144.0,145.99,289.99,0,0,388.93,388.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 -base-dhw-tank-wood.xml,1564.79,144.0,898.8,1042.8,144.0,145.99,289.99,0,0,0,0,0,0,232.0,232.0,0,0,0,0,0,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,1408.47,144.0,891.66,1035.66,144.0,228.81,372.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 -base-dhw-tankless-electric-outside.xml,1641.15,144.0,1205.84,1349.84,144.0,147.31,291.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 -base-dhw-tankless-electric-uef.xml,1637.6,144.0,1202.29,1346.29,144.0,147.31,291.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 -base-dhw-tankless-electric.xml,1641.15,144.0,1205.84,1349.84,144.0,147.31,291.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 -base-dhw-tankless-gas-uef.xml,1397.44,144.0,891.66,1035.66,144.0,217.78,361.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 -base-dhw-tankless-gas-with-solar-fraction.xml,1355.55,144.0,891.66,1035.66,144.0,175.89,319.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 -base-dhw-tankless-gas-with-solar.xml,1350.53,144.0,906.02,1050.02,144.0,156.51,300.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 -base-dhw-tankless-gas.xml,1408.64,144.0,891.66,1035.66,144.0,228.98,372.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 -base-dhw-tankless-propane.xml,1632.03,144.0,891.66,1035.66,144.0,147.31,291.31,0,0,0,0,305.06,305.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 -base-enclosure-2stories-garage.xml,1820.24,144.0,1362.23,1506.23,144.0,170.01,314.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 -base-enclosure-2stories.xml,1961.17,144.0,1472.92,1616.92,144.0,200.25,344.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 -base-enclosure-beds-1.xml,1465.88,144.0,1019.29,1163.29,144.0,158.59,302.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 -base-enclosure-beds-2.xml,1549.62,144.0,1110.17,1254.17,144.0,151.45,295.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 -base-enclosure-beds-4.xml,1711.45,144.0,1286.1,1430.1,144.0,137.35,281.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 -base-enclosure-beds-5.xml,1791.33,144.0,1372.89,1516.89,144.0,130.44,274.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 -base-enclosure-garage.xml,1598.19,144.0,1154.45,1298.45,144.0,155.74,299.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-infil-ach-house-pressure.xml,1631.02,144.0,1198.67,1342.67,144.0,144.35,288.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 -base-enclosure-infil-cfm-house-pressure.xml,1631.02,144.0,1198.67,1342.67,144.0,144.35,288.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 -base-enclosure-infil-cfm50.xml,1631.02,144.0,1198.67,1342.67,144.0,144.35,288.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 -base-enclosure-infil-flue.xml,1641.1,144.0,1198.62,1342.62,144.0,154.48,298.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 -base-enclosure-infil-natural-ach.xml,1686.0,144.0,1199.05,1343.05,144.0,198.95,342.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 -base-enclosure-orientations.xml,1631.96,144.0,1197.86,1341.86,144.0,146.1,290.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 -base-enclosure-overhangs.xml,1629.51,144.0,1193.95,1337.95,144.0,147.56,291.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 -base-enclosure-rooftypes.xml,1626.17,144.0,1193.19,1337.19,144.0,144.98,288.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 -base-enclosure-skylights-physical-properties.xml,1677.92,144.0,1235.31,1379.31,144.0,154.61,298.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 -base-enclosure-skylights-shading.xml,1655.27,144.0,1226.9,1370.9,144.0,140.37,284.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 -base-enclosure-skylights-storms.xml,1654.62,144.0,1223.87,1367.87,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,0,0,0,0,0 -base-enclosure-skylights.xml,1655.49,144.0,1227.22,1371.22,144.0,140.27,284.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 -base-enclosure-split-level.xml,1346.9,144.0,979.83,1123.83,144.0,79.07,223.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 -base-enclosure-split-surfaces.xml,1655.98,144.0,1227.89,1371.89,144.0,140.09,284.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 -base-enclosure-split-surfaces2.xml,1680.92,144.0,1231.39,1375.39,144.0,161.53,305.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 -base-enclosure-thermal-mass.xml,1628.44,144.0,1197.19,1341.19,144.0,143.25,287.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 -base-enclosure-walltypes.xml,1715.76,144.0,1159.6,1303.6,144.0,268.16,412.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 -base-enclosure-windows-natural-ventilation-availability.xml,1598.34,144.0,1165.47,1309.47,144.0,144.87,288.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 -base-enclosure-windows-none.xml,1581.02,144.0,1134.68,1278.68,144.0,158.34,302.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 -base-enclosure-windows-physical-properties.xml,1689.6,144.0,1202.28,1346.28,144.0,199.32,343.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 -base-enclosure-windows-shading.xml,1572.26,144.0,1120.15,1264.15,144.0,164.11,308.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 -base-enclosure-windows-storms.xml,1622.31,144.0,1179.36,1323.36,144.0,154.95,298.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 +base-dhw-indirect-outside.xml,1257.53,144.0,713.79,857.79,144.0,255.74,399.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-dhw-indirect-standbyloss.xml,1240.03,144.0,713.36,857.36,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 +base-dhw-indirect-with-solar-fraction.xml,1181.75,144.0,713.67,857.67,144.0,180.08,324.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,0,0,0,0,0 +base-dhw-indirect.xml,1238.4,144.0,713.43,857.43,144.0,236.97,380.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 +base-dhw-jacket-electric.xml,1636.43,144.0,1184.99,1328.99,144.0,163.44,307.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 +base-dhw-jacket-gas.xml,1451.62,144.0,894.11,1038.11,144.0,269.51,413.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 +base-dhw-jacket-hpwh.xml,1465.36,144.0,983.06,1127.06,144.0,194.3,338.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 +base-dhw-jacket-indirect.xml,1237.0,144.0,713.48,857.48,144.0,235.52,379.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 +base-dhw-low-flow-fixtures.xml,1633.46,144.0,1183.58,1327.58,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1237.3,144.0,778.42,922.42,144.0,170.88,314.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1265.86,144.0,816.2,960.2,144.0,161.66,305.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 +base-dhw-recirc-demand.xml,1644.04,144.0,1194.16,1338.16,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1629.83,144.0,1179.95,1323.95,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2141.85,144.0,1691.97,1835.97,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1978.33,144.0,1528.45,1672.45,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,2141.85,144.0,1691.97,1835.97,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1450.85,144.0,1000.97,1144.97,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1401.77,144.0,951.95,1095.95,144.0,161.82,305.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 +base-dhw-solar-direct-ics.xml,1452.74,144.0,1002.86,1146.86,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1448.11,144.0,996.28,1140.28,144.0,163.83,307.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 +base-dhw-solar-indirect-flat-plate.xml,1402.17,144.0,954.89,1098.89,144.0,159.28,303.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 +base-dhw-solar-thermosyphon-flat-plate.xml,1392.48,144.0,942.66,1086.66,144.0,161.82,305.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 +base-dhw-tank-coal.xml,1579.39,144.0,895.88,1039.88,144.0,163.46,307.46,232.05,232.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 +base-dhw-tank-detailed-setpoints.xml,1645.31,144.0,1195.48,1339.48,144.0,161.83,305.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 +base-dhw-tank-elec-uef.xml,1647.95,144.0,1198.45,1342.45,144.0,161.5,305.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 +base-dhw-tank-gas-outside.xml,1475.24,144.0,888.81,1032.81,144.0,298.43,442.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 +base-dhw-tank-gas-uef-fhr.xml,1454.96,144.0,894.64,1038.64,144.0,272.32,416.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 +base-dhw-tank-gas-uef.xml,1454.96,144.0,894.64,1038.64,144.0,272.32,416.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 +base-dhw-tank-gas.xml,1458.26,144.0,895.88,1039.88,144.0,274.38,418.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 +base-dhw-tank-heat-pump-detailed-operating-modes.xml,1437.06,144.0,948.64,1092.64,144.0,200.42,344.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 +base-dhw-tank-heat-pump-detailed-schedules.xml,1442.62,144.0,954.49,1098.49,144.0,200.13,344.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 +base-dhw-tank-heat-pump-detailed-setpoints.xml,1442.62,144.0,954.49,1098.49,144.0,200.13,344.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 +base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,1437.06,144.0,948.64,1092.64,144.0,200.42,344.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 +base-dhw-tank-heat-pump-outside.xml,1568.88,144.0,1116.0,1260.0,144.0,164.88,308.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1437.06,144.0,948.64,1092.64,144.0,200.42,344.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 +base-dhw-tank-heat-pump-with-solar-fraction.xml,1388.02,144.0,925.24,1069.24,144.0,174.78,318.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 +base-dhw-tank-heat-pump-with-solar.xml,1400.97,144.0,945.87,1089.87,144.0,167.1,311.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 +base-dhw-tank-heat-pump.xml,1469.57,144.0,987.82,1131.82,144.0,193.75,337.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 +base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,1641.5,144.0,1184.41,1328.41,144.0,169.09,313.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 +base-dhw-tank-model-type-stratified.xml,1632.38,144.0,1179.96,1323.96,144.0,164.42,308.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 +base-dhw-tank-oil.xml,1736.35,144.0,895.88,1039.88,144.0,163.46,307.46,0,0,389.01,389.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 +base-dhw-tank-wood.xml,1579.39,144.0,895.88,1039.88,144.0,163.46,307.46,0,0,0,0,0,0,232.05,232.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 +base-dhw-tankless-detailed-setpoints.xml,1423.2,144.0,888.82,1032.82,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 +base-dhw-tankless-electric-outside.xml,1655.88,144.0,1203.0,1347.0,144.0,164.88,308.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1652.33,144.0,1199.45,1343.45,144.0,164.88,308.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1655.88,144.0,1203.0,1347.0,144.0,164.88,308.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1412.18,144.0,888.82,1032.82,144.0,235.36,379.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 +base-dhw-tankless-gas-with-solar-fraction.xml,1370.28,144.0,888.82,1032.82,144.0,193.46,337.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 +base-dhw-tankless-gas-with-solar.xml,1365.15,144.0,903.13,1047.13,144.0,174.02,318.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 +base-dhw-tankless-gas.xml,1423.37,144.0,888.82,1032.82,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,0,0,0,0,0 +base-dhw-tankless-propane.xml,1646.76,144.0,888.82,1032.82,144.0,164.88,308.88,0,0,0,0,305.06,305.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 +base-enclosure-2stories-garage.xml,1829.48,144.0,1359.88,1503.88,144.0,181.6,325.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 +base-enclosure-2stories.xml,1973.65,144.0,1469.79,1613.79,144.0,215.86,359.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 +base-enclosure-beds-1.xml,1480.85,144.0,1016.6,1160.6,144.0,176.25,320.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 +base-enclosure-beds-2.xml,1564.44,144.0,1107.41,1251.41,144.0,169.03,313.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 +base-enclosure-beds-4.xml,1725.9,144.0,1283.12,1427.12,144.0,154.78,298.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 +base-enclosure-beds-5.xml,1805.61,144.0,1369.85,1513.85,144.0,147.76,291.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 +base-enclosure-garage.xml,1613.59,144.0,1151.74,1295.74,144.0,173.85,317.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 +base-enclosure-infil-ach-house-pressure.xml,1645.69,144.0,1195.81,1339.81,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,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,1645.69,144.0,1195.81,1339.81,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,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,1645.69,144.0,1195.81,1339.81,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,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,1655.84,144.0,1195.8,1339.8,144.0,172.04,316.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 +base-enclosure-infil-natural-ach.xml,1700.85,144.0,1196.34,1340.34,144.0,216.51,360.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 +base-enclosure-orientations.xml,1646.66,144.0,1195.01,1339.01,144.0,163.65,307.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 +base-enclosure-overhangs.xml,1644.28,144.0,1191.15,1335.15,144.0,165.13,309.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 +base-enclosure-rooftypes.xml,1640.92,144.0,1190.42,1334.42,144.0,162.5,306.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 +base-enclosure-skylights-physical-properties.xml,1692.0,144.0,1232.14,1376.14,144.0,171.86,315.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 +base-enclosure-skylights-shading.xml,1669.38,144.0,1223.74,1367.74,144.0,157.64,301.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 +base-enclosure-skylights-storms.xml,1668.8,144.0,1220.75,1364.75,144.0,160.05,304.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 +base-enclosure-skylights.xml,1669.59,144.0,1224.05,1368.05,144.0,157.54,301.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 +base-enclosure-split-level.xml,1348.73,144.0,979.66,1123.66,144.0,81.07,225.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 +base-enclosure-split-surfaces.xml,1670.07,144.0,1224.72,1368.72,144.0,157.35,301.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 +base-enclosure-split-surfaces2.xml,1695.25,144.0,1228.22,1372.22,144.0,179.03,323.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 +base-enclosure-thermal-mass.xml,1643.47,144.0,1194.36,1338.36,144.0,161.11,305.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 +base-enclosure-walltypes.xml,1731.81,144.0,1157.23,1301.23,144.0,286.58,430.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 +base-enclosure-windows-natural-ventilation-availability.xml,1613.63,144.0,1163.24,1307.24,144.0,162.39,306.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 +base-enclosure-windows-none.xml,1597.12,144.0,1131.98,1275.98,144.0,177.14,321.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 +base-enclosure-windows-physical-properties.xml,1704.34,144.0,1199.69,1343.69,144.0,216.65,360.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 +base-enclosure-windows-shading.xml,1588.06,144.0,1118.03,1262.03,144.0,182.03,326.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 +base-enclosure-windows-storms.xml,1637.52,144.0,1176.7,1320.7,144.0,172.82,316.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 base-foundation-ambient.xml,1419.81,144.0,1008.22,1152.22,144.0,123.59,267.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 -base-foundation-basement-garage.xml,1507.2,144.0,1088.96,1232.96,144.0,130.24,274.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 -base-foundation-complex.xml,1709.55,144.0,1231.93,1375.93,144.0,189.62,333.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 -base-foundation-conditioned-basement-slab-insulation.xml,1630.54,144.0,1204.78,1348.78,144.0,137.76,281.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 -base-foundation-conditioned-basement-wall-insulation.xml,1601.97,144.0,1180.1,1324.1,144.0,133.87,277.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 -base-foundation-conditioned-crawlspace.xml,1373.75,144.0,964.16,1108.16,144.0,121.59,265.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 -base-foundation-multiple.xml,1364.83,144.0,989.86,1133.86,144.0,86.97,230.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 -base-foundation-slab.xml,1337.33,144.0,974.94,1118.94,144.0,74.39,218.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 -base-foundation-unconditioned-basement-above-grade.xml,1378.79,144.0,993.78,1137.78,144.0,97.01,241.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 -base-foundation-unconditioned-basement-assembly-r.xml,1340.37,144.0,975.69,1119.69,144.0,76.68,220.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 -base-foundation-unconditioned-basement-wall-insulation.xml,1380.73,144.0,966.92,1110.92,144.0,125.81,269.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 -base-foundation-unconditioned-basement.xml,1366.36,144.0,991.27,1135.27,144.0,87.09,231.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 -base-foundation-unvented-crawlspace.xml,1352.17,144.0,994.63,1138.63,144.0,69.54,213.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 -base-foundation-vented-crawlspace.xml,1366.24,144.0,991.67,1135.67,144.0,86.57,230.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 -base-foundation-walkout-basement.xml,1666.1,144.0,1210.53,1354.53,144.0,167.57,311.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 -base-hvac-air-to-air-heat-pump-1-speed-backup-lockout-temperature.xml,1619.26,144.0,1475.26,1619.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 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1306.7,144.0,1162.7,1306.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 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1487.61,144.0,1343.61,1487.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 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1637.45,144.0,1493.45,1637.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,0,0 -base-hvac-air-to-air-heat-pump-1-speed.xml,1635.72,144.0,1491.72,1635.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 -base-hvac-air-to-air-heat-pump-2-speed.xml,1503.19,144.0,1359.19,1503.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 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1665.11,144.0,1277.04,1421.04,144.0,100.07,244.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 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1698.47,144.0,1389.48,1533.48,144.0,20.99,164.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 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1700.73,144.0,1392.02,1536.02,144.0,20.71,164.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 -base-hvac-air-to-air-heat-pump-var-speed.xml,1488.91,144.0,1344.91,1488.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 -base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,1326.51,144.0,1182.51,1326.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 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,1501.89,144.0,1357.89,1501.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 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,1705.73,144.0,1561.73,1705.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1648.21,144.0,1504.21,1648.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 +base-foundation-basement-garage.xml,1518.32,144.0,1086.72,1230.72,144.0,143.6,287.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 +base-foundation-complex.xml,1722.08,144.0,1229.75,1373.75,144.0,204.33,348.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,0,0,0,0,0 +base-foundation-conditioned-basement-slab-insulation.xml,1643.02,144.0,1202.65,1346.65,144.0,152.37,296.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 +base-foundation-conditioned-basement-wall-insulation.xml,1614.11,144.0,1177.56,1321.56,144.0,148.55,292.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 +base-foundation-conditioned-crawlspace.xml,1382.63,144.0,962.82,1106.82,144.0,131.81,275.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 +base-foundation-multiple.xml,1369.63,144.0,988.19,1132.19,144.0,93.44,237.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 +base-foundation-slab.xml,1339.15,144.0,974.75,1118.75,144.0,76.4,220.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 +base-foundation-unconditioned-basement-above-grade.xml,1381.99,144.0,992.98,1136.98,144.0,101.01,245.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 +base-foundation-unconditioned-basement-assembly-r.xml,1346.53,144.0,972.83,1116.83,144.0,85.7,229.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 +base-foundation-unconditioned-basement-wall-insulation.xml,1394.61,144.0,963.24,1107.24,144.0,143.37,287.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 +base-foundation-unconditioned-basement.xml,1370.94,144.0,989.15,1133.15,144.0,93.79,237.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 +base-foundation-unvented-crawlspace.xml,1357.73,144.0,992.36,1136.36,144.0,77.37,221.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 +base-foundation-vented-crawlspace.xml,1370.33,144.0,990.62,1134.62,144.0,91.71,235.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 +base-foundation-walkout-basement.xml,1677.6,144.0,1208.75,1352.75,144.0,180.85,324.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 +base-hvac-air-to-air-heat-pump-1-speed-backup-lockout-temperature.xml,1659.68,144.0,1515.68,1659.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 +base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,1302.08,144.0,1158.08,1302.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,0,0,0,0,0,0,0,0 +base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,1524.72,144.0,1380.72,1524.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 +base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,1667.18,144.0,1523.18,1667.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 +base-hvac-air-to-air-heat-pump-1-speed.xml,1665.2,144.0,1521.2,1665.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 +base-hvac-air-to-air-heat-pump-2-speed.xml,1523.7,144.0,1379.7,1523.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 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,1683.31,144.0,1289.01,1433.01,144.0,106.3,250.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 +base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,1719.09,144.0,1405.29,1549.29,144.0,25.8,169.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 +base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,1721.81,144.0,1408.4,1552.4,144.0,25.41,169.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 +base-hvac-air-to-air-heat-pump-var-speed.xml,1508.54,144.0,1364.54,1508.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 +base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,1321.57,144.0,1177.57,1321.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 +base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,1540.32,144.0,1396.32,1540.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 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,1741.85,144.0,1597.85,1741.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 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1678.41,144.0,1534.41,1678.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 base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml,1728.54,144.0,1584.54,1728.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 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1604.38,144.0,1460.38,1604.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 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,1561.37,144.0,1417.37,1561.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 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,1516.33,144.0,1372.33,1516.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,0,0,0,0,0,0,0,0 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,1485.18,144.0,1341.18,1485.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 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,1646.87,144.0,1358.19,1502.19,144.0,0.68,144.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 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,1647.11,144.0,1358.29,1502.29,144.0,0.82,144.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 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,1521.18,144.0,1377.18,1521.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 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,1492.12,144.0,1348.12,1492.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 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,1482.46,144.0,1338.46,1482.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,0,0 -base-hvac-autosize-boiler-elec-only.xml,1680.78,144.0,1536.78,1680.78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,1625.68,144.0,1217.59,1361.59,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,0,0,0,0,0 -base-hvac-autosize-boiler-gas-only.xml,1426.1,144.0,1019.41,1163.41,144.0,118.69,262.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 -base-hvac-autosize-central-ac-only-1-speed.xml,1352.27,144.0,1208.27,1352.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 -base-hvac-autosize-central-ac-only-2-speed.xml,1303.15,144.0,1159.15,1303.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-autosize-central-ac-only-var-speed.xml,1275.2,144.0,1131.2,1275.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 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,1703.79,144.0,1559.79,1703.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 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,1756.71,144.0,1391.17,1535.17,144.0,77.54,221.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 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1735.86,144.0,1375.42,1519.42,144.0,72.44,216.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 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1735.86,144.0,1375.42,1519.42,144.0,72.44,216.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 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,1529.64,144.0,1184.67,1328.67,144.0,56.97,200.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 -base-hvac-autosize-elec-resistance-only.xml,1637.81,144.0,1493.81,1637.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 -base-hvac-autosize-evap-cooler-furnace-gas.xml,1507.68,144.0,1066.06,1210.06,144.0,153.62,297.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 -base-hvac-autosize-floor-furnace-propane-only.xml,1675.54,144.0,1012.91,1156.91,0,0,0,0,0,0,0,518.63,518.63,0,0,0,0,0,0,0,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-furnace-elec-only.xml,1837.21,144.0,1693.21,1837.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 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,1615.05,144.0,1175.66,1319.66,144.0,151.39,295.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 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1586.47,144.0,1147.06,1291.06,144.0,151.41,295.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 -base-hvac-autosize-furnace-gas-only.xml,1471.03,144.0,1031.2,1175.2,144.0,151.83,295.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 -base-hvac-autosize-furnace-gas-room-ac.xml,1645.07,144.0,1203.45,1347.45,144.0,153.62,297.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 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1291.02,144.0,1147.02,1291.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 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1341.07,144.0,1197.07,1341.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 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1451.81,144.0,1307.81,1451.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 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1447.75,144.0,1303.75,1447.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 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1447.75,144.0,1303.75,1447.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 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,1246.92,144.0,1102.92,1246.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 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,1246.92,144.0,1102.92,1246.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 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,1329.87,144.0,1185.87,1329.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 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,1433.83,144.0,1289.83,1433.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 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,1406.93,144.0,1262.93,1406.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 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,1394.42,144.0,1250.42,1394.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 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,1383.39,144.0,1233.68,1377.68,0,0,0,0,0,5.71,5.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 -base-hvac-autosize-ptac-with-heating.xml,1780.31,144.0,1636.31,1780.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 -base-hvac-autosize-ptac.xml,1291.89,144.0,1147.89,1291.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 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,1501.47,144.0,1357.47,1501.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 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,1508.01,144.0,1364.01,1508.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 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,1524.4,144.0,1380.4,1524.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 -base-hvac-autosize-room-ac-only.xml,1326.29,144.0,1182.29,1326.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,0,0 -base-hvac-autosize-stove-oil-only.xml,1644.02,144.0,1015.86,1159.86,0,0,0,0,0,484.16,484.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 -base-hvac-autosize-wall-furnace-elec-only.xml,1647.61,144.0,1503.61,1647.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 -base-hvac-autosize.xml,1650.78,144.0,1211.23,1355.23,144.0,151.55,295.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 -base-hvac-boiler-coal-only.xml,1421.35,144.0,1019.97,1163.97,0,0,0,257.38,257.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 -base-hvac-boiler-elec-only.xml,1700.01,144.0,1556.01,1700.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 -base-hvac-boiler-gas-central-ac-1-speed.xml,1619.89,144.0,1206.84,1350.84,144.0,125.05,269.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 -base-hvac-boiler-gas-only.xml,1428.79,144.0,1017.2,1161.2,144.0,123.59,267.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 -base-hvac-boiler-oil-only.xml,1595.45,144.0,1019.97,1163.97,0,0,0,0,0,431.48,431.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 -base-hvac-boiler-propane-only.xml,1622.71,144.0,1016.55,1160.55,0,0,0,0,0,0,0,462.16,462.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 -base-hvac-boiler-wood-only.xml,1419.39,144.0,1016.55,1160.55,0,0,0,0,0,0,0,0,0,258.84,258.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 -base-hvac-central-ac-only-1-speed-seer2.xml,1343.31,144.0,1199.31,1343.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 -base-hvac-central-ac-only-1-speed.xml,1343.84,144.0,1199.84,1343.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 -base-hvac-central-ac-only-2-speed.xml,1296.44,144.0,1152.44,1296.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 -base-hvac-central-ac-only-var-speed.xml,1266.24,144.0,1122.24,1266.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 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1680.86,144.0,1536.86,1680.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 +base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1631.93,144.0,1487.93,1631.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 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,1589.43,144.0,1445.43,1589.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 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,1537.87,144.0,1393.87,1537.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 +base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,1504.41,144.0,1360.41,1504.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 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,1665.86,144.0,1376.69,1520.69,144.0,1.17,145.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 +base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,1666.27,144.0,1376.89,1520.89,144.0,1.38,145.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 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,1545.37,144.0,1401.37,1545.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 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,1512.16,144.0,1368.16,1512.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,1499.8,144.0,1355.8,1499.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 +base-hvac-autosize-boiler-elec-only.xml,1742.85,144.0,1598.85,1742.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 +base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,1635.85,144.0,1213.75,1357.75,144.0,134.1,278.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 +base-hvac-autosize-boiler-gas-only.xml,1441.02,144.0,1020.28,1164.28,144.0,132.74,276.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-central-ac-only-1-speed.xml,1347.31,144.0,1203.31,1347.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 +base-hvac-autosize-central-ac-only-2-speed.xml,1299.67,144.0,1155.67,1299.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 +base-hvac-autosize-central-ac-only-var-speed.xml,1272.57,144.0,1128.57,1272.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 +base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,1737.38,144.0,1593.38,1737.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 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,1778.86,144.0,1407.72,1551.72,144.0,83.14,227.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 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,1757.56,144.0,1391.81,1535.81,144.0,77.75,221.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 +base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,1757.56,144.0,1391.81,1535.81,144.0,77.75,221.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 +base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,1543.93,144.0,1194.16,1338.16,144.0,61.77,205.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 +base-hvac-autosize-elec-resistance-only.xml,1698.36,144.0,1554.36,1698.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 +base-hvac-autosize-evap-cooler-furnace-gas.xml,1527.39,144.0,1067.34,1211.34,144.0,172.05,316.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 +base-hvac-autosize-floor-furnace-propane-only.xml,1736.58,144.0,1012.95,1156.95,0,0,0,0,0,0,0,579.63,579.63,0,0,0,0,0,0,0,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-furnace-elec-only.xml,1920.09,144.0,1776.09,1920.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 +base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,1631.77,144.0,1174.15,1318.15,144.0,169.62,313.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 +base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,1603.95,144.0,1146.3,1290.3,144.0,169.65,313.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 +base-hvac-autosize-furnace-gas-only.xml,1491.79,144.0,1033.47,1177.47,144.0,170.32,314.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 +base-hvac-autosize-furnace-gas-room-ac.xml,1661.19,144.0,1201.14,1345.14,144.0,172.05,316.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 +base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,1286.27,144.0,1142.27,1286.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 +base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,1363.58,144.0,1219.58,1363.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 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,1469.97,144.0,1325.97,1469.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 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,1464.15,144.0,1320.15,1464.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,1464.15,144.0,1320.15,1464.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,1243.63,144.0,1099.63,1243.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-mini-split-heat-pump-ducted-cooling-only.xml,1243.63,144.0,1099.63,1243.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-mini-split-heat-pump-ducted-heating-only.xml,1351.81,144.0,1207.81,1351.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 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,1457.09,144.0,1313.09,1457.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 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,1426.59,144.0,1282.59,1426.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 +base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,1409.32,144.0,1265.32,1409.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 +base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,1401.63,144.0,1248.75,1392.75,0,0,0,0,0,8.88,8.88,0,0,0,0,0,0,0,0,0,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-ptac-with-heating.xml,1837.11,144.0,1693.11,1837.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,0,0 +base-hvac-autosize-ptac.xml,1288.11,144.0,1144.11,1288.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,0,0 +base-hvac-autosize-pthp-sizing-methodology-acca.xml,1525.06,144.0,1381.06,1525.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 +base-hvac-autosize-pthp-sizing-methodology-hers.xml,1528.4,144.0,1384.4,1528.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 +base-hvac-autosize-pthp-sizing-methodology-maxload.xml,1545.56,144.0,1401.56,1545.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 +base-hvac-autosize-room-ac-only.xml,1321.48,144.0,1177.48,1321.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 +base-hvac-autosize-stove-oil-only.xml,1701.36,144.0,1016.25,1160.25,0,0,0,0,0,541.11,541.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 +base-hvac-autosize-wall-furnace-elec-only.xml,1709.39,144.0,1565.39,1709.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 +base-hvac-autosize.xml,1666.58,144.0,1208.78,1352.78,144.0,169.8,313.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 +base-hvac-boiler-coal-only.xml,1453.03,144.0,1020.91,1164.91,0,0,0,288.12,288.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 +base-hvac-boiler-elec-only.xml,1764.95,144.0,1620.95,1764.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 +base-hvac-boiler-gas-central-ac-1-speed.xml,1630.56,144.0,1202.78,1346.78,144.0,139.78,283.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 +base-hvac-boiler-gas-only.xml,1444.15,144.0,1017.79,1161.79,144.0,138.36,282.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 +base-hvac-boiler-oil-only.xml,1647.93,144.0,1020.91,1164.91,0,0,0,0,0,483.02,483.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 +base-hvac-boiler-propane-only.xml,1678.42,144.0,1017.06,1161.06,0,0,0,0,0,0,0,517.36,517.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 +base-hvac-boiler-wood-only.xml,1450.82,144.0,1017.06,1161.06,0,0,0,0,0,0,0,0,0,289.76,289.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 +base-hvac-central-ac-only-1-speed-seer2.xml,1338.45,144.0,1194.45,1338.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,0,0 +base-hvac-central-ac-only-1-speed.xml,1338.96,144.0,1194.96,1338.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 +base-hvac-central-ac-only-2-speed.xml,1293.22,144.0,1149.22,1293.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 +base-hvac-central-ac-only-var-speed.xml,1263.92,144.0,1119.92,1263.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 +base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,1713.2,144.0,1569.2,1713.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 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 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml,1828.47,144.0,1684.47,1828.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 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1729.55,144.0,1370.36,1514.36,144.0,71.19,215.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 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1629.3,144.0,1268.1,1412.1,144.0,73.2,217.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 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1627.34,144.0,1267.46,1411.46,144.0,71.88,215.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1536.74,144.0,1193.44,1337.44,144.0,55.3,199.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 -base-hvac-ducts-area-fractions.xml,2154.25,144.0,1552.23,1696.23,144.0,314.02,458.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 -base-hvac-ducts-area-multipliers.xml,1622.58,144.0,1194.42,1338.42,144.0,140.16,284.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 -base-hvac-ducts-leakage-cfm50.xml,1624.28,144.0,1194.96,1338.96,144.0,141.32,285.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 -base-hvac-ducts-leakage-percent.xml,1644.32,144.0,1205.29,1349.29,144.0,151.03,295.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 -base-hvac-elec-resistance-only.xml,1637.81,144.0,1493.81,1637.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 -base-hvac-evap-cooler-furnace-gas.xml,1495.83,144.0,1059.51,1203.51,144.0,148.32,292.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 -base-hvac-evap-cooler-only-ducted.xml,1189.12,144.0,1045.12,1189.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 -base-hvac-evap-cooler-only.xml,1186.27,144.0,1042.27,1186.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 -base-hvac-fireplace-wood-only.xml,1447.38,144.0,1012.91,1156.91,0,0,0,0,0,0,0,0,0,290.47,290.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 -base-hvac-fixed-heater-gas-only.xml,1404.43,144.0,1012.88,1156.88,144.0,103.55,247.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 -base-hvac-floor-furnace-propane-only.xml,1675.54,144.0,1012.91,1156.91,0,0,0,0,0,0,0,518.63,518.63,0,0,0,0,0,0,0,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,1481.26,144.0,1030.58,1174.58,0,0,0,306.68,306.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 -base-hvac-furnace-elec-central-ac-1-speed.xml,1959.47,144.0,1815.47,1959.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 -base-hvac-furnace-elec-only.xml,1813.74,144.0,1669.74,1813.74,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-furnace-gas-central-ac-2-speed.xml,1595.48,144.0,1163.13,1307.13,144.0,144.35,288.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 -base-hvac-furnace-gas-central-ac-var-speed.xml,1566.24,144.0,1133.89,1277.89,144.0,144.35,288.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 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml,1867.71,144.0,1723.71,1867.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 +base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,1750.86,144.0,1386.41,1530.41,144.0,76.45,220.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 +base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,1645.01,144.0,1278.52,1422.52,144.0,78.49,222.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 +base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,1642.81,144.0,1277.71,1421.71,144.0,77.1,221.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 +base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,1550.06,144.0,1202.03,1346.03,144.0,60.03,204.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 +base-hvac-ducts-area-fractions.xml,2172.47,144.0,1548.94,1692.94,144.0,335.53,479.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 +base-hvac-ducts-area-multipliers.xml,1636.83,144.0,1191.61,1335.61,144.0,157.22,301.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 +base-hvac-ducts-leakage-cfm50.xml,1638.68,144.0,1192.14,1336.14,144.0,158.54,302.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 +base-hvac-ducts-leakage-percent.xml,1659.61,144.0,1202.36,1346.36,144.0,169.25,313.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 +base-hvac-elec-resistance-only.xml,1698.36,144.0,1554.36,1698.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 +base-hvac-evap-cooler-furnace-gas.xml,1515.12,144.0,1060.89,1204.89,144.0,166.23,310.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 +base-hvac-evap-cooler-only-ducted.xml,1188.37,144.0,1044.37,1188.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 +base-hvac-evap-cooler-only.xml,1185.59,144.0,1041.59,1185.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 +base-hvac-fireplace-wood-only.xml,1481.58,144.0,1012.95,1156.95,0,0,0,0,0,0,0,0,0,324.63,324.63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-fixed-heater-gas-only.xml,1417.49,144.0,1012.92,1156.92,144.0,116.57,260.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 +base-hvac-floor-furnace-propane-only.xml,1736.58,144.0,1012.95,1156.95,0,0,0,0,0,0,0,579.63,579.63,0,0,0,0,0,0,0,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,1521.05,144.0,1032.79,1176.79,0,0,0,344.26,344.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 +base-hvac-furnace-elec-central-ac-1-speed.xml,2031.49,144.0,1887.49,2031.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 +base-hvac-furnace-elec-only.xml,1894.27,144.0,1750.27,1894.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 +base-hvac-furnace-gas-central-ac-2-speed.xml,1611.28,144.0,1161.4,1305.4,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1582.81,144.0,1132.94,1276.94,144.0,161.87,305.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 base-hvac-furnace-gas-only-detailed-setpoints.xml,1336.8,144.0,1017.82,1161.82,144.0,30.98,174.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 -base-hvac-furnace-gas-only.xml,1465.17,144.0,1030.58,1174.58,144.0,146.59,290.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 -base-hvac-furnace-gas-room-ac.xml,1650.97,144.0,1214.65,1358.65,144.0,148.32,292.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 -base-hvac-furnace-oil-only.xml,1688.71,144.0,1030.58,1174.58,0,0,0,0,0,514.13,514.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 -base-hvac-furnace-propane-only.xml,1722.16,144.0,1030.58,1174.58,0,0,0,0,0,0,0,547.58,547.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 -base-hvac-furnace-wood-only.xml,1481.26,144.0,1030.58,1174.58,0,0,0,0,0,0,0,0,0,306.68,306.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 +base-hvac-furnace-gas-only.xml,1485.35,144.0,1032.79,1176.79,144.0,164.56,308.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 +base-hvac-furnace-gas-room-ac.xml,1666.05,144.0,1211.82,1355.82,144.0,166.23,310.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 +base-hvac-furnace-oil-only.xml,1753.91,144.0,1032.79,1176.79,0,0,0,0,0,577.12,577.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 +base-hvac-furnace-propane-only.xml,1791.46,144.0,1032.79,1176.79,0,0,0,0,0,0,0,614.67,614.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 +base-hvac-furnace-wood-only.xml,1521.05,144.0,1032.79,1176.79,0,0,0,0,0,0,0,0,0,344.26,344.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 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 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,1273.2,144.0,1129.2,1273.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 -base-hvac-ground-to-air-heat-pump-heating-only.xml,1337.73,144.0,1193.73,1337.73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1446.99,144.0,1302.99,1446.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 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1731.38,144.0,1587.38,1731.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 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,1580.69,144.0,1436.69,1580.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 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,1559.34,144.0,1415.34,1559.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 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1665.75,144.0,1225.74,1369.74,144.0,152.01,296.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 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1621.01,144.0,1180.97,1324.97,144.0,152.04,296.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 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1593.59,144.0,1153.55,1297.55,144.0,152.04,296.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 -base-hvac-install-quality-furnace-gas-only.xml,1470.95,144.0,1026.65,1170.65,144.0,156.3,300.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 -base-hvac-install-quality-ground-to-air-heat-pump.xml,1503.58,144.0,1359.58,1503.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 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1253.84,144.0,1109.84,1253.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 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1462.05,144.0,1318.05,1462.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 -base-hvac-mini-split-air-conditioner-only-ducted.xml,1232.51,144.0,1088.51,1232.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 -base-hvac-mini-split-air-conditioner-only-ductless.xml,1228.18,144.0,1084.18,1228.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 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1233.8,144.0,1089.8,1233.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 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1318.6,144.0,1174.6,1318.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 -base-hvac-mini-split-heat-pump-ducted.xml,1398.9,144.0,1254.9,1398.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 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1394.58,144.0,1237.97,1381.97,0,0,0,0,0,12.61,12.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 -base-hvac-mini-split-heat-pump-ductless.xml,1372.96,144.0,1228.96,1372.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 -base-hvac-multiple.xml,2144.05,144.0,1641.47,1785.47,144.0,45.9,189.9,0,0,80.75,80.75,87.93,87.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 -base-hvac-none.xml,1158.36,144.0,1014.36,1158.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 -base-hvac-portable-heater-gas-only.xml,1404.43,144.0,1012.88,1156.88,144.0,103.55,247.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 -base-hvac-ptac-with-heating.xml,1789.71,144.0,1645.71,1789.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 -base-hvac-ptac.xml,1301.0,144.0,1157.0,1301.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1518.9,144.0,1374.9,1518.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 -base-hvac-room-ac-only-33percent.xml,1221.3,144.0,1077.3,1221.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 -base-hvac-room-ac-only-ceer.xml,1338.09,144.0,1194.09,1338.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 -base-hvac-room-ac-only-detailed-setpoints.xml,1297.34,144.0,1153.34,1297.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 -base-hvac-room-ac-only.xml,1337.75,144.0,1193.75,1337.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 -base-hvac-seasons.xml,1628.32,144.0,1197.01,1341.01,144.0,143.31,287.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 -base-hvac-setpoints-daily-schedules.xml,1598.88,144.0,1179.98,1323.98,144.0,130.9,274.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 -base-hvac-setpoints-daily-setbacks.xml,1603.32,144.0,1183.98,1327.98,144.0,131.34,275.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 -base-hvac-setpoints.xml,1457.25,144.0,1140.9,1284.9,144.0,28.35,172.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 -base-hvac-stove-oil-only.xml,1643.97,144.0,1014.86,1158.86,0,0,0,0,0,485.11,485.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 -base-hvac-stove-wood-pellets-only.xml,1448.23,144.0,1014.86,1158.86,0,0,0,0,0,0,0,0,0,0,0,0,289.37,289.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 -base-hvac-undersized-allow-increased-fixed-capacities.xml,1604.93,144.0,1186.73,1330.73,144.0,130.2,274.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 -base-hvac-undersized.xml,1499.84,144.0,1103.88,1247.88,144.0,107.96,251.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 -base-hvac-wall-furnace-elec-only.xml,1647.61,144.0,1503.61,1647.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 -base-lighting-ceiling-fans.xml,1643.83,144.0,1211.63,1355.63,144.0,144.2,288.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 -base-lighting-holiday.xml,1637.65,144.0,1205.3,1349.3,144.0,144.35,288.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 -base-lighting-none.xml,1477.7,144.0,1025.5,1169.5,144.0,164.2,308.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 -base-location-AMY-2012.xml,1664.8,144.0,1162.81,1306.81,144.0,213.99,357.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 -base-location-baltimore-md.xml,1429.11,144.0,1052.73,1196.73,144.0,88.38,232.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 +base-hvac-ground-to-air-heat-pump-cooling-only.xml,1269.25,144.0,1125.25,1269.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 +base-hvac-ground-to-air-heat-pump-heating-only.xml,1359.67,144.0,1215.67,1359.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 +base-hvac-ground-to-air-heat-pump.xml,1463.31,144.0,1319.31,1463.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 +base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,1769.0,144.0,1625.0,1769.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1607.0,144.0,1463.0,1607.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1584.77,144.0,1440.77,1584.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 +base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,1680.25,144.0,1221.83,1365.83,144.0,170.42,314.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 +base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,1636.77,144.0,1178.32,1322.32,144.0,170.45,314.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 +base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,1610.13,144.0,1151.68,1295.68,144.0,170.45,314.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 +base-hvac-install-quality-furnace-gas-only.xml,1491.74,144.0,1028.37,1172.37,144.0,175.37,319.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 +base-hvac-install-quality-ground-to-air-heat-pump.xml,1524.66,144.0,1380.66,1524.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 +base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,1250.77,144.0,1106.77,1250.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 +base-hvac-install-quality-mini-split-heat-pump-ducted.xml,1484.41,144.0,1340.41,1484.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 +base-hvac-mini-split-air-conditioner-only-ducted.xml,1230.35,144.0,1086.35,1230.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 +base-hvac-mini-split-air-conditioner-only-ductless.xml,1226.16,144.0,1082.16,1226.16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,1231.59,144.0,1087.59,1231.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 +base-hvac-mini-split-heat-pump-ducted-heating-only.xml,1337.5,144.0,1193.5,1337.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 +base-hvac-mini-split-heat-pump-ducted.xml,1415.36,144.0,1271.36,1415.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 +base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,1415.3,144.0,1253.48,1397.48,0,0,0,0,0,17.82,17.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 +base-hvac-mini-split-heat-pump-ductless.xml,1387.24,144.0,1243.24,1387.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 +base-hvac-multiple.xml,2206.39,144.0,1680.24,1824.24,144.0,50.84,194.84,0,0,89.68,89.68,97.63,97.63,0,0,0,0,0,0,0,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,1959.67,144.0,1815.67,1959.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 +base-hvac-portable-heater-gas-only.xml,1417.49,144.0,1012.92,1156.92,144.0,116.57,260.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 +base-hvac-ptac-with-heating.xml,1846.14,144.0,1702.14,1846.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 +base-hvac-ptac.xml,1296.81,144.0,1152.81,1296.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 +base-hvac-pthp.xml,1539.45,144.0,1395.45,1539.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,0,0 +base-hvac-room-ac-only-33percent.xml,1219.51,144.0,1075.51,1219.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 +base-hvac-room-ac-only-ceer.xml,1332.76,144.0,1188.76,1332.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 +base-hvac-room-ac-only-detailed-setpoints.xml,1291.3,144.0,1147.3,1291.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 +base-hvac-room-ac-only.xml,1332.44,144.0,1188.44,1332.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 +base-hvac-seasons.xml,1643.03,144.0,1194.35,1338.35,144.0,160.68,304.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 +base-hvac-setpoints-daily-schedules.xml,1621.17,144.0,1175.6,1319.6,144.0,157.57,301.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 +base-hvac-setpoints-daily-setbacks.xml,1620.83,144.0,1180.65,1324.65,144.0,152.18,296.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 +base-hvac-setpoints.xml,1476.22,144.0,1135.22,1279.22,144.0,53.0,197.0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,1701.29,144.0,1015.12,1159.12,0,0,0,0,0,542.17,542.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 +base-hvac-stove-wood-pellets-only.xml,1482.53,144.0,1015.12,1159.12,0,0,0,0,0,0,0,0,0,0,0,0,323.41,323.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 +base-hvac-undersized-allow-increased-fixed-capacities.xml,1618.53,144.0,1184.35,1328.35,144.0,146.18,290.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 +base-hvac-undersized.xml,1502.81,144.0,1103.61,1247.61,144.0,111.2,255.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 +base-hvac-wall-furnace-elec-only.xml,1709.39,144.0,1565.39,1709.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 +base-lighting-ceiling-fans.xml,1658.54,144.0,1208.81,1352.81,144.0,161.73,305.73,0,0,0,0,0,0,0,0,0,0,0,0,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,1652.32,144.0,1202.44,1346.44,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,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,1492.75,144.0,1022.81,1166.81,144.0,181.94,325.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 +base-location-AMY-2012.xml,1679.7,144.0,1160.53,1304.53,144.0,231.17,375.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 +base-location-baltimore-md.xml,1438.65,144.0,1049.1,1193.1,144.0,101.55,245.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 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 -base-location-dallas-tx.xml,1350.7,144.0,1049.35,1193.35,144.0,13.35,157.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 -base-location-duluth-mn.xml,1574.83,144.0,1044.08,1188.08,144.0,242.75,386.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 -base-location-helena-mt.xml,1576.3,144.0,1017.09,1161.09,144.0,271.21,415.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 +base-location-dallas-tx.xml,1351.22,144.0,1048.55,1192.55,144.0,14.67,158.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 +base-location-duluth-mn.xml,1587.35,144.0,1042.8,1186.8,144.0,256.55,400.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 +base-location-helena-mt.xml,1593.15,144.0,1016.51,1160.51,144.0,288.64,432.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 base-location-honolulu-hi.xml,3466.02,144.0,3322.02,3466.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 base-location-miami-fl.xml,1274.75,144.0,1130.75,1274.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 -base-location-phoenix-az.xml,1577.06,144.0,1289.05,1433.05,144.0,0.01,144.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 -base-location-portland-or.xml,1185.67,144.0,822.48,966.48,144.0,75.19,219.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 -base-mechvent-balanced.xml,1832.3,144.0,1259.71,1403.71,144.0,284.59,428.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 -base-mechvent-bath-kitchen-fans.xml,1646.22,144.0,1201.74,1345.74,144.0,156.48,300.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 -base-mechvent-cfis-airflow-fraction-zero.xml,1782.68,144.0,1257.54,1401.54,144.0,237.14,381.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 +base-location-phoenix-az.xml,1576.09,144.0,1288.08,1432.08,144.0,0.01,144.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 +base-location-portland-or.xml,1189.98,144.0,821.66,965.66,144.0,80.32,224.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 +base-mechvent-balanced.xml,1847.48,144.0,1257.24,1401.24,144.0,302.24,446.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 +base-mechvent-bath-kitchen-fans.xml,1660.89,144.0,1198.89,1342.89,144.0,174.0,318.0,0,0,0,0,0,0,0,0,0,0,0,0,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,1797.15,144.0,1254.0,1398.0,144.0,255.15,399.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 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 -base-mechvent-cfis-evap-cooler-only-ducted.xml,1281.67,144.0,1137.67,1281.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 -base-mechvent-cfis-supplemental-fan-exhaust.xml,1726.03,144.0,1212.02,1356.02,144.0,226.01,370.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 -base-mechvent-cfis-supplemental-fan-supply.xml,1742.97,144.0,1212.88,1356.88,144.0,242.09,386.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 -base-mechvent-cfis.xml,1790.38,144.0,1255.23,1399.23,144.0,247.15,391.15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-mechvent-erv-atre-asre.xml,1728.69,144.0,1260.74,1404.74,144.0,179.95,323.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 -base-mechvent-erv.xml,1728.72,144.0,1260.74,1404.74,144.0,179.98,323.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 -base-mechvent-exhaust-rated-flow-rate.xml,1764.59,144.0,1226.25,1370.25,144.0,250.34,394.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 -base-mechvent-exhaust.xml,1764.59,144.0,1226.25,1370.25,144.0,250.34,394.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 -base-mechvent-hrv-asre.xml,1728.78,144.0,1260.85,1404.85,144.0,179.93,323.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 -base-mechvent-hrv.xml,1728.81,144.0,1260.85,1404.85,144.0,179.96,323.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 -base-mechvent-multiple.xml,1826.68,144.0,1251.2,1395.2,144.0,287.48,431.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 -base-mechvent-supply.xml,1756.28,144.0,1228.64,1372.64,144.0,239.64,383.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 -base-mechvent-whole-house-fan.xml,1576.89,144.0,1143.21,1287.21,144.0,145.68,289.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 -base-misc-additional-properties.xml,1631.02,144.0,1198.67,1342.67,144.0,144.35,288.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 +base-mechvent-cfis-evap-cooler-only-ducted.xml,1281.21,144.0,1137.21,1281.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 +base-mechvent-cfis-supplemental-fan-exhaust.xml,1741.69,144.0,1209.14,1353.14,144.0,244.55,388.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 +base-mechvent-cfis-supplemental-fan-supply.xml,1757.95,144.0,1210.07,1354.07,144.0,259.88,403.88,0,0,0,0,0,0,0,0,0,0,0,0,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,1803.92,144.0,1251.8,1395.8,144.0,264.12,408.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 +base-mechvent-erv-atre-asre.xml,1743.55,144.0,1258.0,1402.0,144.0,197.55,341.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 +base-mechvent-erv.xml,1743.58,144.0,1258.0,1402.0,144.0,197.58,341.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 +base-mechvent-exhaust-rated-flow-rate.xml,1779.77,144.0,1223.75,1367.75,144.0,268.02,412.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 +base-mechvent-exhaust.xml,1779.77,144.0,1223.75,1367.75,144.0,268.02,412.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 +base-mechvent-hrv-asre.xml,1743.63,144.0,1258.1,1402.1,144.0,197.53,341.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 +base-mechvent-hrv.xml,1743.66,144.0,1258.1,1402.1,144.0,197.56,341.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 +base-mechvent-multiple.xml,1844.67,144.0,1249.27,1393.27,144.0,307.4,451.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 +base-mechvent-supply.xml,1771.4,144.0,1226.09,1370.09,144.0,257.31,401.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 +base-mechvent-whole-house-fan.xml,1593.07,144.0,1141.89,1285.89,144.0,163.18,307.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 +base-misc-additional-properties.xml,1645.69,144.0,1195.81,1339.81,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,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-none.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 -base-misc-bills-pv.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,600.3,465.0,1265.9,-1484.06,246.84,132.0,221.46,353.46,70.48,465.0,1265.9,-2013.87,-282.98,132.0,221.46,353.46,-352.34,210.0,1265.9,-2181.7,-705.8,132.0,221.46,353.46 -base-misc-bills.xml,1775.36,144.0,1265.9,1409.9,144.0,221.46,365.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 -base-misc-defaults.xml,933.04,144.0,1055.01,555.88,144.0,233.16,377.16,0,0,0,0,0,0,0,0,-643.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 -base-misc-emissions.xml,746.05,144.0,1198.67,457.7,144.0,144.35,288.35,0,0,0,0,0,0,0,0,-884.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 -base-misc-generators.xml,1792.08,144.0,1198.67,1229.04,144.0,205.3,349.3,0,0,213.74,213.74,0,0,0,0,-113.63,0,0,0,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,1612.89,144.0,1196.18,1340.18,144.0,128.71,272.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 -base-misc-loads-large-uncommon.xml,3202.08,144.0,2279.68,2423.68,144.0,485.03,629.03,0,0,0,0,66.93,66.93,82.44,82.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 -base-misc-loads-large-uncommon2.xml,2721.54,144.0,2161.49,2305.49,144.0,126.77,270.77,0,0,62.84,62.84,0,0,0,0,0,82.44,82.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 -base-misc-loads-none.xml,1299.47,144.0,824.28,968.28,144.0,187.19,331.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 -base-misc-neighbor-shading.xml,1642.54,144.0,1187.63,1331.63,144.0,166.91,310.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 -base-misc-shielding-of-home.xml,1632.34,144.0,1203.42,1347.42,144.0,140.92,284.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 -base-misc-usage-multiplier.xml,2587.82,144.0,1692.44,1836.44,144.0,472.94,616.94,0,0,0,0,60.24,60.24,74.2,74.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 -base-pv-battery-ah.xml,746.05,144.0,1198.67,457.7,144.0,144.35,288.35,0,0,0,0,0,0,0,0,-884.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 -base-pv-battery-garage.xml,715.0,144.0,1154.5,415.05,144.0,155.95,299.95,0,0,0,0,0,0,0,0,-883.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 -base-pv-battery-lifetime-model.xml,747.79,144.0,1198.67,459.44,144.0,144.35,288.35,0,0,0,0,0,0,0,0,-883.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 -base-pv-battery.xml,746.05,144.0,1198.67,457.7,144.0,144.35,288.35,0,0,0,0,0,0,0,0,-884.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 -base-pv.xml,735.68,144.0,1198.67,447.33,144.0,144.35,288.35,0,0,0,0,0,0,0,0,-895.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 +base-misc-bills-pv.xml,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,626.3,465.0,1262.88,-1481.92,245.96,132.0,248.34,380.34,94.34,465.0,1262.88,-2013.87,-286.0,132.0,248.34,380.34,-328.48,210.0,1262.88,-2181.7,-708.82,132.0,248.34,380.34 +base-misc-bills.xml,1799.22,144.0,1262.88,1406.88,144.0,248.34,392.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 +base-misc-defaults.xml,949.32,144.0,1054.29,555.21,144.0,250.11,394.11,0,0,0,0,0,0,0,0,-643.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 +base-misc-emissions.xml,760.79,144.0,1195.81,454.91,144.0,161.88,305.88,0,0,0,0,0,0,0,0,-884.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 +base-misc-generators.xml,1806.74,144.0,1195.81,1226.18,144.0,222.82,366.82,0,0,213.74,213.74,0,0,0,0,-113.63,0,0,0,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,1627.07,144.0,1193.19,1337.19,144.0,145.88,289.88,0,0,0,0,0,0,0,0,0,0,0,0,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,3215.45,144.0,2276.29,2420.29,144.0,501.79,645.79,0,0,0,0,66.93,66.93,82.44,82.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 +base-misc-loads-large-uncommon2.xml,2734.91,144.0,2158.1,2302.1,144.0,143.53,287.53,0,0,62.84,62.84,0,0,0,0,0,82.44,82.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 +base-misc-loads-none.xml,1314.8,144.0,821.74,965.74,144.0,205.06,349.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 +base-misc-neighbor-shading.xml,1657.62,144.0,1184.93,1328.93,144.0,184.69,328.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 +base-misc-shielding-of-home.xml,1646.87,144.0,1200.47,1344.47,144.0,158.4,302.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 +base-misc-usage-multiplier.xml,2602.15,144.0,1689.45,1833.45,144.0,490.26,634.26,0,0,0,0,60.24,60.24,74.2,74.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 +base-pv-battery-ah.xml,760.79,144.0,1195.81,454.91,144.0,161.88,305.88,0,0,0,0,0,0,0,0,-884.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 +base-pv-battery-garage.xml,730.5,144.0,1151.79,412.43,144.0,174.07,318.07,0,0,0,0,0,0,0,0,-883.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 +base-pv-battery-lifetime-model.xml,762.55,144.0,1195.81,456.67,144.0,161.88,305.88,0,0,0,0,0,0,0,0,-883.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 +base-pv-battery.xml,760.79,144.0,1195.81,454.91,144.0,161.88,305.88,0,0,0,0,0,0,0,0,-884.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 +base-pv.xml,750.35,144.0,1195.81,444.47,144.0,161.88,305.88,0,0,0,0,0,0,0,0,-895.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 base-schedules-detailed-all-10-mins.xml,1648.45,144.0,1207.46,1351.46,144.0,152.99,296.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 -base-schedules-detailed-occupancy-smooth.xml,1631.4,144.0,1199.07,1343.07,144.0,144.33,288.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,0,0,0,0,0 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,1641.84,144.0,1204.6,1348.6,144.0,149.24,293.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 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,1494.49,144.0,1029.27,1173.27,144.0,177.22,321.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 -base-schedules-detailed-occupancy-stochastic.xml,1640.28,144.0,1203.22,1347.22,144.0,149.06,293.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 -base-schedules-detailed-setpoints-daily-schedules.xml,1598.88,144.0,1179.98,1323.98,144.0,130.9,274.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 +base-schedules-detailed-occupancy-smooth.xml,1646.06,144.0,1196.21,1340.21,144.0,161.85,305.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 +base-schedules-detailed-occupancy-stochastic-10-mins.xml,1656.49,144.0,1201.76,1345.76,144.0,166.73,310.73,0,0,0,0,0,0,0,0,0,0,0,0,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,1509.22,144.0,1026.42,1170.42,144.0,194.8,338.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 +base-schedules-detailed-occupancy-stochastic.xml,1654.92,144.0,1200.37,1344.37,144.0,166.55,310.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 +base-schedules-detailed-setpoints-daily-schedules.xml,1601.47,144.0,1179.4,1323.4,144.0,134.07,278.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 base-schedules-detailed-setpoints-daily-setbacks.xml,1603.32,144.0,1183.98,1327.98,144.0,131.34,275.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 -base-schedules-detailed-setpoints.xml,1457.25,144.0,1140.9,1284.9,144.0,28.35,172.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 -base-schedules-simple.xml,1633.18,144.0,1199.86,1343.86,144.0,145.32,289.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 -base-simcontrol-calendar-year-custom.xml,1630.06,144.0,1197.67,1341.67,144.0,144.39,288.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 -base-simcontrol-daylight-saving-custom.xml,1631.03,144.0,1198.67,1342.67,144.0,144.36,288.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 -base-simcontrol-daylight-saving-disabled.xml,1630.39,144.0,1198.13,1342.13,144.0,144.26,288.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 -base-simcontrol-runperiod-1-month.xml,164.93,12.0,105.72,117.72,12.0,35.21,47.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 -base-simcontrol-temperature-capacitance-multiplier.xml,1627.53,144.0,1195.16,1339.16,144.0,144.37,288.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 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1648.43,144.0,1207.33,1351.33,144.0,153.1,297.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 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1647.65,144.0,1207.05,1351.05,144.0,152.6,296.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 -base-simcontrol-timestep-10-mins.xml,1638.51,144.0,1202.46,1346.46,144.0,148.05,292.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 -base.xml,1631.02,144.0,1198.67,1342.67,144.0,144.35,288.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 +base-schedules-detailed-setpoints.xml,1458.54,144.0,1140.25,1284.25,144.0,30.29,174.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 +base-schedules-simple.xml,1647.85,144.0,1196.99,1340.99,144.0,162.86,306.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 +base-simcontrol-calendar-year-custom.xml,1644.8,144.0,1194.88,1338.88,144.0,161.92,305.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 +base-simcontrol-daylight-saving-custom.xml,1645.69,144.0,1195.81,1339.81,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,0,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,1645.07,144.0,1195.29,1339.29,144.0,161.78,305.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 +base-simcontrol-runperiod-1-month.xml,176.45,12.0,106.54,118.54,12.0,45.91,57.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 +base-simcontrol-temperature-capacitance-multiplier.xml,1642.2,144.0,1192.35,1336.35,144.0,161.85,305.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 +base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,1662.82,144.0,1204.45,1348.45,144.0,170.37,314.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 +base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,1662.04,144.0,1204.17,1348.17,144.0,169.87,313.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 +base-simcontrol-timestep-10-mins.xml,1652.9,144.0,1199.57,1343.57,144.0,165.33,309.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,0,0,0,0,0 +base.xml,1645.69,144.0,1195.81,1339.81,144.0,161.88,305.88,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 1138d106243e0a41f5a6fc61ee49c44ddf638e62 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Tue, 11 Oct 2022 22:12:57 +0000 Subject: [PATCH 25/27] Latest results. --- workflow/tests/base_results/results.csv | 852 ++++++++++++------------ 1 file changed, 426 insertions(+), 426 deletions(-) diff --git a/workflow/tests/base_results/results.csv b/workflow/tests/base_results/results.csv index 8308d10e58..35afba613b 100644 --- a/workflow/tests/base_results/results.csv +++ b/workflow/tests/base_results/results.csv @@ -1,426 +1,426 @@ -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 Heat Pump Backup (MBtu),End Use: Electricity: Heating 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: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (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: Hot Tub 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),Load: Heating: Delivered (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),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),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 (MBtu),Component Load: Heating: Skylights (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: 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 (MBtu),Component Load: Cooling: Skylights (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),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Total (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Total (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Heating Fans/Pumps (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Cooling (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Cooling Fans/Pumps (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Hot Water (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Lighting Interior (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Lighting Exterior (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Refrigerator (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Dishwasher (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Clothes Washer (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Clothes Dryer (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Range/Oven (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Television (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Plug Loads (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: PV (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Natural Gas: Total (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Natural Gas: Heating (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Total (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Total (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Heating Fans/Pumps (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Cooling (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Cooling Fans/Pumps (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Hot Water (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Lighting Interior (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Lighting Exterior (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Refrigerator (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Dishwasher (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Clothes Washer (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Clothes Dryer (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Range/Oven (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Television (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Plug Loads (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: PV (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Natural Gas: Total (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Natural Gas: Heating (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Total (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Total (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Heating Fans/Pumps (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Cooling (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Cooling Fans/Pumps (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Hot Water (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Lighting Interior (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Lighting Exterior (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Refrigerator (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Dishwasher (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Clothes Washer (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Clothes Dryer (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Range/Oven (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Television (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Plug Loads (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: PV (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Natural Gas: Total (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Natural Gas: Heating (lb),Emissions: SO2: eGRID RMPA: Total (lb),Emissions: SO2: eGRID RMPA: Electricity: Total (lb),Emissions: SO2: eGRID RMPA: Electricity: Heating Fans/Pumps (lb),Emissions: SO2: eGRID RMPA: Electricity: Cooling (lb),Emissions: SO2: eGRID RMPA: Electricity: Cooling Fans/Pumps (lb),Emissions: SO2: eGRID RMPA: Electricity: Hot Water (lb),Emissions: SO2: eGRID RMPA: Electricity: Lighting Interior (lb),Emissions: SO2: eGRID RMPA: Electricity: Lighting Exterior (lb),Emissions: SO2: eGRID RMPA: Electricity: Refrigerator (lb),Emissions: SO2: eGRID RMPA: Electricity: Dishwasher (lb),Emissions: SO2: eGRID RMPA: Electricity: Clothes Washer (lb),Emissions: SO2: eGRID RMPA: Electricity: Clothes Dryer (lb),Emissions: SO2: eGRID RMPA: Electricity: Range/Oven (lb),Emissions: SO2: eGRID RMPA: Electricity: Television (lb),Emissions: SO2: eGRID RMPA: Electricity: Plug Loads (lb),Emissions: SO2: eGRID RMPA: Electricity: PV (lb),Emissions: SO2: eGRID RMPA: Natural Gas: Total (lb),Emissions: SO2: eGRID RMPA: Natural Gas: Heating (lb),Emissions: NOx: eGRID RMPA: Total (lb),Emissions: NOx: eGRID RMPA: Electricity: Total (lb),Emissions: NOx: eGRID RMPA: Electricity: Heating Fans/Pumps (lb),Emissions: NOx: eGRID RMPA: Electricity: Cooling (lb),Emissions: NOx: eGRID RMPA: Electricity: Cooling Fans/Pumps (lb),Emissions: NOx: eGRID RMPA: Electricity: Hot Water (lb),Emissions: NOx: eGRID RMPA: Electricity: Lighting Interior (lb),Emissions: NOx: eGRID RMPA: Electricity: Lighting Exterior (lb),Emissions: NOx: eGRID RMPA: Electricity: Refrigerator (lb),Emissions: NOx: eGRID RMPA: Electricity: Dishwasher (lb),Emissions: NOx: eGRID RMPA: Electricity: Clothes Washer (lb),Emissions: NOx: eGRID RMPA: Electricity: Clothes Dryer (lb),Emissions: NOx: eGRID RMPA: Electricity: Range/Oven (lb),Emissions: NOx: eGRID RMPA: Electricity: Television (lb),Emissions: NOx: eGRID RMPA: Electricity: Plug Loads (lb),Emissions: NOx: eGRID RMPA: Electricity: PV (lb),Emissions: NOx: eGRID RMPA: Natural Gas: Total (lb),Emissions: NOx: eGRID RMPA: Natural Gas: Heating (lb) -base-appliances-coal.xml,59.99,59.99,33.21,33.21,21.914,0.0,0.0,0.0,0.0,4.866,0.0,0.0,0.362,4.364,0.845,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,20.522,14.338,9.234,0.614,0.0,0.0,0.0,0.0,1968.7,3140.0,22.864,18.17,0.0,3.555,3.641,0.512,7.446,0.63,-2.062,0.0,0.0,8.214,-0.065,4.984,0.0,0.487,0.0,4.764,-11.921,0.0,-0.059,-0.467,-0.052,2.692,-0.027,9.821,0.0,0.0,-6.385,-0.062,-1.215,-3.119,-0.111,0.0,3.162,10.345,1354.8,997.6,11399.6,2615.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 -base-appliances-dehumidifier-ief-portable.xml,34.548,34.548,33.229,33.229,1.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,8.784,1.873,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.622,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,1.158,30.522,6.675,0.572,0.0,0.0,0.0,0.0,2251.3,2761.9,9.474,14.235,0.0,1.762,1.644,0.0,0.0,0.39,0.124,0.0,0.0,1.306,-0.371,1.052,0.091,0.397,0.0,0.033,-5.52,0.0,0.54,-0.017,0.0,0.0,0.204,19.033,0.0,0.0,1.813,-0.366,-0.338,-1.892,-0.093,0.0,0.345,11.453,1354.8,997.6,9989.1,2461.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 -base-appliances-dehumidifier-ief-whole-home.xml,34.575,34.575,33.279,33.279,1.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,8.783,1.873,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.674,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.147,30.512,6.675,0.571,0.0,0.0,0.0,0.0,2118.7,2761.9,9.489,14.235,0.0,1.774,1.655,0.0,0.0,0.393,0.139,0.0,0.0,1.314,-0.374,1.06,0.09,0.4,0.0,0.032,-5.585,0.0,0.55,-0.007,0.0,0.0,0.207,19.045,0.0,0.0,1.819,-0.369,-0.331,-1.888,-0.09,0.0,0.345,11.41,1354.8,997.6,9989.1,2461.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 -base-appliances-dehumidifier-multiple.xml,34.536,34.536,33.148,33.148,1.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,8.771,1.87,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.558,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,0.0,1.239,30.485,6.675,0.572,0.0,0.0,0.0,0.0,2167.5,2757.4,9.55,14.236,0.0,1.77,1.649,0.0,0.0,0.388,0.018,0.0,0.0,1.319,-0.361,1.049,0.097,0.397,0.0,0.035,-5.383,0.0,0.554,-0.006,0.0,0.0,0.204,18.948,0.0,0.0,1.846,-0.356,-0.336,-1.876,-0.091,0.0,0.345,11.414,1354.8,997.6,9989.2,2461.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 -base-appliances-dehumidifier.xml,34.509,34.509,33.204,33.204,1.304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,8.775,1.871,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.608,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.166,30.477,6.675,0.572,0.0,0.0,0.0,0.0,2083.7,2761.9,9.546,14.235,0.0,1.777,1.657,0.0,0.0,0.395,0.134,0.0,0.0,1.307,-0.382,1.062,0.087,0.4,0.0,0.032,-5.552,0.0,0.558,-0.0,0.0,0.0,0.21,19.054,0.0,0.0,1.824,-0.377,-0.326,-1.889,-0.088,0.0,0.345,11.365,1354.8,997.6,9989.2,2461.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 -base-appliances-gas.xml,59.99,59.99,33.21,33.21,26.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.364,0.845,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,14.338,9.234,0.614,0.0,0.0,0.0,0.0,1968.7,3140.0,22.864,18.17,0.0,3.555,3.641,0.512,7.446,0.63,-2.062,0.0,0.0,8.214,-0.065,4.984,0.0,0.487,0.0,4.764,-11.921,0.0,-0.059,-0.467,-0.052,2.692,-0.027,9.821,0.0,0.0,-6.385,-0.062,-1.215,-3.119,-0.111,0.0,3.162,10.345,1354.8,997.6,11399.6,2615.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 -base-appliances-modified.xml,58.606,58.606,36.894,36.894,21.712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.358,4.393,0.853,9.69,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.636,0.365,1.519,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.333,14.475,9.799,0.614,0.0,0.0,0.0,0.0,2161.3,3668.6,22.863,18.085,0.0,3.555,3.639,0.512,7.448,0.63,-2.044,0.0,0.0,8.208,-0.066,5.404,0.0,0.0,0.0,4.727,-12.024,0.0,-0.066,-0.473,-0.053,2.679,-0.029,9.824,0.0,0.0,-6.412,-0.062,-1.319,-3.136,0.0,0.0,3.185,10.522,1354.8,1997.6,11399.6,2615.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 -base-appliances-none.xml,52.868,52.868,28.353,28.353,24.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.404,3.941,0.743,7.932,0.0,0.0,4.51,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.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.96,12.593,7.908,0.616,0.0,0.0,0.0,0.0,1861.5,2847.7,23.264,16.854,0.0,3.518,3.617,0.509,7.377,0.625,-2.146,0.0,0.0,8.133,-0.06,5.396,0.0,0.0,0.0,5.261,-9.594,0.0,0.005,-0.417,-0.045,2.833,-0.014,9.954,0.0,0.0,-6.15,-0.056,-1.264,-2.898,0.0,0.0,2.848,7.977,0.0,0.0,11399.6,2615.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 -base-appliances-oil-location-miami-fl.xml,50.162,50.162,45.296,45.296,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.866,4.106,4.848,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.779,4.659,0.55,0.0,0.0,0.0,0.0,0.0,3199.4,0.0,21.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,0.802,0.729,0.135,9.705,0.336,23.98,0.0,0.0,3.112,-0.01,-0.532,-2.924,-0.004,0.0,10.343,22.203,1354.8,997.6,8625.1,1979.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 -base-appliances-oil.xml,59.99,59.99,33.21,33.21,21.914,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.364,0.845,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,14.338,9.234,0.614,0.0,0.0,0.0,0.0,1968.7,3140.0,22.864,18.17,0.0,3.555,3.641,0.512,7.446,0.63,-2.062,0.0,0.0,8.214,-0.065,4.984,0.0,0.487,0.0,4.764,-11.921,0.0,-0.059,-0.467,-0.052,2.692,-0.027,9.821,0.0,0.0,-6.385,-0.062,-1.215,-3.119,-0.111,0.0,3.162,10.345,1354.8,997.6,11399.6,2615.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 -base-appliances-propane-location-portland-or.xml,54.895,54.895,29.764,29.764,20.266,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.083,2.109,0.357,8.739,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.728,5.956,8.776,0.615,0.0,0.0,0.0,0.0,1916.5,2888.1,14.03,14.932,0.0,3.151,3.299,0.464,6.932,0.646,-1.663,0.0,0.0,12.082,-0.073,4.335,0.0,0.554,0.0,4.033,-15.263,0.0,-0.131,-0.424,-0.05,1.309,-0.027,6.487,0.0,0.0,-6.132,-0.073,-0.932,-1.952,-0.123,0.0,1.133,7.005,1354.8,997.6,11239.6,2579.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-appliances-propane.xml,59.99,59.99,33.21,33.21,21.914,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.362,4.364,0.845,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,14.338,9.234,0.614,0.0,0.0,0.0,0.0,1968.7,3140.0,22.864,18.17,0.0,3.555,3.641,0.512,7.446,0.63,-2.062,0.0,0.0,8.214,-0.065,4.984,0.0,0.487,0.0,4.764,-11.921,0.0,-0.059,-0.467,-0.052,2.692,-0.027,9.821,0.0,0.0,-6.385,-0.062,-1.215,-3.119,-0.111,0.0,3.162,10.345,1354.8,997.6,11399.6,2615.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 -base-appliances-wood.xml,59.99,59.99,33.21,33.21,21.914,0.0,0.0,4.866,0.0,0.0,0.0,0.0,0.362,4.364,0.845,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,14.338,9.234,0.614,0.0,0.0,0.0,0.0,1968.7,3140.0,22.864,18.17,0.0,3.555,3.641,0.512,7.446,0.63,-2.062,0.0,0.0,8.214,-0.065,4.984,0.0,0.487,0.0,4.764,-11.921,0.0,-0.059,-0.467,-0.052,2.692,-0.027,9.821,0.0,0.0,-6.385,-0.062,-1.215,-3.119,-0.111,0.0,3.162,10.345,1354.8,997.6,11399.6,2615.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 -base-atticroof-cathedral.xml,61.83,61.83,35.747,35.747,26.083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.43,4.093,0.782,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.407,13.108,9.234,0.616,0.0,0.0,0.0,0.0,2144.3,2990.5,22.625,15.234,6.75,0.0,4.216,0.511,7.391,0.63,-2.182,0.0,0.0,8.229,-0.087,9.303,0.0,0.728,0.0,0.0,-11.441,0.142,0.0,-0.505,-0.048,2.776,-0.018,13.695,0.0,0.0,-6.341,-0.061,-2.088,-3.876,-0.158,0.0,0.0,9.848,1354.8,997.6,11399.6,2615.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 -base-atticroof-conditioned.xml,67.04,67.04,40.744,40.744,26.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.434,4.892,0.976,9.068,0.0,0.0,5.751,0.0,0.398,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.629,16.415,9.18,0.614,0.0,0.0,0.0,0.0,2408.2,3713.7,26.435,20.713,4.552,1.164,5.544,0.518,7.587,0.635,-1.631,0.0,0.0,8.449,-0.08,7.083,0.0,0.73,0.0,3.086,-13.413,0.003,0.02,-0.569,-0.054,2.695,-0.03,14.682,0.0,0.0,-6.37,-0.074,-1.693,-4.162,-0.166,0.0,0.936,11.502,1354.8,997.6,11399.6,2521.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 -base-atticroof-flat.xml,54.773,54.773,35.078,35.078,19.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.325,3.635,0.678,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43,11.336,9.234,0.615,0.0,0.0,0.0,0.0,2122.2,2674.8,17.557,11.949,6.032,0.0,3.61,0.508,7.358,0.623,-2.155,0.0,0.0,8.088,-0.075,4.798,0.0,0.727,0.0,0.0,-11.408,0.302,0.0,-0.449,-0.05,2.746,-0.023,9.859,0.0,0.0,-6.294,-0.049,-1.155,-3.035,-0.163,0.0,0.0,9.88,1354.8,997.6,11399.6,2615.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 -base-atticroof-radiant-barrier.xml,37.382,37.382,33.138,33.138,4.244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018,9.213,1.955,6.821,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.919,31.804,6.675,0.58,0.0,0.0,0.0,0.0,1664.4,3196.0,13.585,18.095,0.0,6.142,1.58,0.0,0.0,0.332,-1.427,0.0,0.0,0.826,-0.349,0.992,0.0,0.4,0.0,0.105,-4.898,0.0,2.51,0.164,0.0,0.0,0.205,18.196,0.0,0.0,2.097,-0.341,-0.274,-1.702,-0.047,0.0,0.367,10.913,1354.8,997.6,9989.1,2461.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 -base-atticroof-unvented-insulated-roof.xml,57.301,57.301,35.235,35.235,22.065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.364,3.734,0.696,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.65,11.613,9.234,0.615,0.0,0.0,0.0,0.0,2128.5,2936.3,19.16,13.167,0.0,5.433,3.618,0.509,7.381,0.625,-2.136,0.0,0.0,8.161,-0.06,4.801,0.0,0.728,0.0,2.685,-11.414,0.0,-1.43,-0.416,-0.045,2.853,-0.015,9.959,0.0,0.0,-6.112,-0.051,-1.132,-2.89,-0.161,0.0,1.402,9.875,1354.8,997.6,11399.6,2615.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 -base-atticroof-vented.xml,57.961,57.961,35.575,35.575,22.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.369,3.862,0.728,9.34,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.962,12.247,9.234,0.803,0.0,0.0,0.0,0.0,2133.8,3226.3,21.434,14.315,0.0,3.889,3.63,0.511,7.414,0.628,-2.104,0.0,0.0,8.18,-0.061,4.803,0.0,0.728,0.0,4.117,-11.086,0.0,-0.518,-0.44,-0.048,2.77,-0.02,9.891,0.0,0.0,-6.26,-0.057,-1.152,-2.995,-0.163,0.0,1.888,9.587,1354.8,997.6,11399.5,2615.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 -base-battery.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-bldgtype-multifamily-adjacent-to-multifamily-buffer-space.xml,36.616,36.616,24.806,24.806,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.087,1.6,0.205,9.832,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.949,3.054,9.539,0.73,0.0,0.0,0.0,0.0,1572.3,1915.2,7.667,5.81,0.0,2.94,3.649,0.0,0.0,0.582,-0.166,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-5.435,0.0,-0.922,-0.231,0.0,0.0,-0.054,1.071,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.558,4.263,1354.8,997.6,11399.5,3156.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 -base-bldgtype-multifamily-adjacent-to-multiple.xml,31.829,31.829,25.239,25.239,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.048,2.08,0.311,9.717,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.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,6.113,4.964,9.539,0.61,0.0,0.0,0.0,0.0,1569.8,2359.3,9.397,10.56,0.0,-0.004,3.294,0.0,0.0,1.383,-0.201,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-7.438,0.0,0.0,-0.445,0.0,0.0,-0.418,3.387,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.48,6.588,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-adjacent-to-non-freezing-space.xml,49.791,49.791,24.812,24.812,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.183,1.46,0.171,9.916,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.163,2.502,9.539,0.818,0.0,0.0,0.0,0.0,1579.7,2245.3,11.078,8.42,0.0,5.364,4.204,0.0,0.0,0.788,-0.296,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-5.734,0.0,-1.186,-0.054,0.0,0.0,-0.054,1.066,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.527,3.965,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-adjacent-to-other-heated-space.xml,26.032,26.032,24.669,24.669,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,1.624,0.211,9.743,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.261,3.156,9.539,0.636,0.0,0.0,0.0,0.0,1563.0,1883.9,3.416,5.811,0.0,0.353,3.152,0.0,0.0,0.376,-0.007,0.0,0.375,0.0,-0.006,1.698,0.0,0.0,0.0,0.387,-5.135,0.0,-0.831,-0.466,0.0,0.0,-0.076,1.051,0.0,-0.847,0.0,-0.002,-0.394,-0.388,0.0,0.0,0.576,4.564,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-adjacent-to-other-housing-unit.xml,26.329,26.329,25.213,25.213,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008,2.098,0.33,9.695,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.034,5.133,9.539,0.587,0.0,0.0,0.0,0.0,1556.3,1840.5,3.707,4.326,0.0,-0.003,3.197,0.0,0.0,0.368,0.126,0.0,-0.002,0.0,-0.063,1.761,0.0,0.0,0.0,0.321,-4.714,0.0,-0.001,-0.556,0.0,0.0,-0.044,0.987,0.0,-0.0,0.0,-0.059,-0.532,-0.512,0.0,0.0,0.913,4.984,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-calctype-operational.xml,19.885,19.885,18.582,18.582,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,2.353,0.391,4.595,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.169,0.22,0.912,1.184,0.0,1.505,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.205,6.696,4.213,0.586,0.0,0.0,0.0,0.0,1077.5,1601.3,3.915,6.507,0.0,-0.014,2.619,0.0,0.0,0.418,1.132,0.0,-0.012,0.0,-0.305,1.3,0.0,0.75,0.0,0.0,-4.763,0.0,-0.01,-0.765,0.0,0.0,-0.014,3.847,0.0,-0.007,0.0,-0.297,-0.396,-1.194,-0.273,0.0,0.0,5.892,817.2,530.6,4779.7,1341.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 -base-bldgtype-multifamily-shared-boiler-chiller-baseboard.xml,27.336,27.336,26.637,26.637,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.034,3.026,0.81,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.625,8.678,9.539,0.577,0.0,0.0,0.0,0.0,1573.4,2070.5,3.451,6.929,0.0,-0.013,2.524,0.0,0.0,0.42,1.418,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-5.46,0.0,-0.008,-1.03,0.0,0.0,-0.043,3.873,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,8.534,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.116,28.116,27.371,27.371,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.059,3.63,0.914,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.663,9.807,9.539,0.577,0.0,0.0,0.0,1.0,1581.8,2296.5,3.602,8.022,0.0,-0.013,2.521,0.0,0.0,0.419,1.408,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.038,-5.445,0.0,-0.008,-1.032,0.0,0.0,-0.044,3.862,0.0,-0.003,0.0,-0.332,-0.505,-1.332,-0.376,0.0,1.138,8.548,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-boiler-chiller-fan-coil.xml,27.616,27.616,26.953,26.953,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.079,3.297,0.81,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.625,8.678,9.539,0.577,0.0,0.0,0.0,0.0,1595.2,2140.8,3.454,6.929,0.0,-0.013,2.524,0.0,0.0,0.42,1.418,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-5.46,0.0,-0.008,-1.03,0.0,0.0,-0.043,3.873,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,8.534,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,32.747,32.747,32.203,32.203,0.544,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.034,8.453,0.914,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.638,9.807,9.539,0.577,0.0,0.0,0.0,1.0,1588.1,3611.8,3.535,8.022,0.0,-0.013,2.522,0.0,0.0,0.419,1.408,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-5.445,0.0,-0.008,-1.032,0.0,0.0,-0.044,3.862,0.0,-0.003,0.0,-0.332,-0.505,-1.332,-0.376,0.0,1.138,8.548,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.735,27.735,27.191,27.191,0.544,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.034,3.441,0.914,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.638,9.807,9.539,0.577,0.0,0.0,0.0,1.0,1588.1,2245.0,3.535,8.022,0.0,-0.013,2.522,0.0,0.0,0.419,1.408,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-5.445,0.0,-0.008,-1.032,0.0,0.0,-0.044,3.862,0.0,-0.003,0.0,-0.332,-0.505,-1.332,-0.376,0.0,1.138,8.548,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-boiler-only-baseboard.xml,23.295,23.295,22.713,22.713,0.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,9.539,0.49,0.0,0.0,0.0,0.0,1523.3,0.0,3.451,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,0.992,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-7.194,0.0,0.0,-1.535,0.0,0.0,-0.241,1.244,0.0,0.0,0.0,-0.0,-0.695,-4.751,-0.469,0.0,0.0,6.714,1354.8,997.6,11399.7,3156.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 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.355,23.355,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,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,0.552,0.0,9.539,0.49,0.0,0.0,0.0,0.0,1531.6,0.0,3.603,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,0.992,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-7.194,0.0,0.0,-1.535,0.0,0.0,-0.241,1.244,0.0,0.0,0.0,-0.0,-0.695,-4.751,-0.469,0.0,-0.0,6.714,1354.8,997.6,11399.7,3156.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 -base-bldgtype-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.748,22.748,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,9.539,0.49,0.0,0.0,0.0,0.0,1543.4,0.0,3.455,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,0.992,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-7.194,0.0,0.0,-1.535,0.0,0.0,-0.241,1.244,0.0,0.0,0.0,-0.0,-0.695,-4.751,-0.469,0.0,0.0,6.714,1354.8,997.6,11399.7,3156.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 -base-bldgtype-multifamily-shared-boiler-only-fan-coil.xml,23.302,23.302,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,9.539,0.49,0.0,0.0,0.0,0.0,1545.4,0.0,3.455,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,0.992,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-7.194,0.0,0.0,-1.535,0.0,0.0,-0.241,1.244,0.0,0.0,0.0,-0.0,-0.695,-4.751,-0.469,0.0,0.0,6.714,1354.8,997.6,11399.7,3156.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 -base-bldgtype-multifamily-shared-boiler-only-water-loop-heat-pump.xml,23.195,23.195,22.742,22.742,0.453,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.028,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.532,0.0,9.539,0.49,0.0,0.0,0.0,0.0,1538.1,0.0,3.536,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,0.992,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-7.194,0.0,0.0,-1.535,0.0,0.0,-0.241,1.244,0.0,0.0,0.0,-0.0,-0.695,-4.751,-0.469,0.0,0.0,6.714,1354.8,997.6,11399.7,3156.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 -base-bldgtype-multifamily-shared-chiller-only-baseboard.xml,26.589,26.589,26.589,26.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.01,0.804,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.602,9.539,0.586,0.0,0.0,0.0,0.0,0.0,1968.7,0.0,6.929,0.0,-0.012,2.414,0.0,0.0,0.391,1.119,0.0,-0.009,0.0,-0.311,1.194,0.0,0.661,0.0,0.0,-5.569,0.0,-0.007,-0.991,0.0,0.0,-0.045,3.8,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,8.433,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.294,27.294,27.294,27.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.611,0.907,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.727,9.539,0.586,0.0,0.0,0.0,1.0,0.0,2145.4,0.0,8.022,0.0,-0.012,2.411,0.0,0.0,0.39,1.105,0.0,-0.008,0.0,-0.309,1.19,0.0,0.659,0.0,-0.0,-5.546,0.0,-0.006,-0.995,0.0,0.0,-0.046,3.785,0.0,-0.002,0.0,-0.299,-0.498,-1.33,-0.364,0.0,1.134,8.457,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-chiller-only-fan-coil.xml,26.858,26.858,26.858,26.858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.279,0.804,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.602,9.539,0.586,0.0,0.0,0.0,0.0,0.0,2029.8,0.0,6.929,0.0,-0.012,2.414,0.0,0.0,0.391,1.119,0.0,-0.009,0.0,-0.311,1.194,0.0,0.661,0.0,0.0,-5.569,0.0,-0.007,-0.991,0.0,0.0,-0.045,3.8,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,8.433,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.085,32.085,32.085,32.085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.402,0.907,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.727,9.539,0.586,0.0,0.0,0.0,1.0,0.0,3443.8,0.0,8.022,0.0,-0.012,2.411,0.0,0.0,0.39,1.105,0.0,-0.008,0.0,-0.309,1.19,0.0,0.659,0.0,-0.0,-5.546,0.0,-0.006,-0.995,0.0,0.0,-0.046,3.785,0.0,-0.002,0.0,-0.299,-0.498,-1.33,-0.364,0.0,1.134,8.457,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.106,27.106,27.106,27.106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.423,0.907,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.727,9.539,0.586,0.0,0.0,0.0,1.0,0.0,2101.7,0.0,8.022,0.0,-0.012,2.411,0.0,0.0,0.39,1.105,0.0,-0.008,0.0,-0.309,1.19,0.0,0.659,0.0,-0.0,-5.546,0.0,-0.006,-0.995,0.0,0.0,-0.046,3.785,0.0,-0.002,0.0,-0.299,-0.498,-1.33,-0.364,0.0,1.134,8.457,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-generator.xml,41.043,38.199,26.2,23.357,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.0,0.005,2.899,0.529,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.843,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.624,8.678,9.539,0.577,0.0,0.0,0.0,0.0,1562.0,2038.4,3.453,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,1.418,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-5.458,0.0,-0.008,-1.031,0.0,0.0,-0.043,3.873,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,8.535,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.931,27.931,27.931,27.931,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.0,0.357,1.813,2.81,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,8.676,9.539,0.577,0.0,0.0,0.0,0.0,1731.9,1814.9,3.453,7.017,0.0,-0.014,2.532,0.0,0.0,0.423,1.443,0.0,-0.01,0.0,-0.347,1.29,0.0,0.695,0.0,0.0,-5.507,0.0,-0.009,-1.021,0.0,0.0,-0.04,3.898,0.0,-0.005,0.0,-0.337,-0.495,-1.325,-0.369,0.0,0.0,8.487,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.811,31.811,16.583,16.583,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004,2.953,0.544,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.613,0.0,14.614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.566,8.962,9.539,2.265,0.0,0.0,0.0,0.0,880.5,1469.5,3.501,7.039,0.0,-0.014,2.492,0.0,0.0,0.42,1.472,0.0,-0.01,0.0,-0.361,2.037,0.0,0.0,0.0,0.0,-5.583,0.0,-0.009,-1.073,0.0,0.0,-0.045,3.908,0.0,-0.005,0.0,-0.351,-0.912,-1.343,0.0,0.0,0.0,8.899,1354.8,997.6,11399.9,3156.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 -base-bldgtype-multifamily-shared-laundry-room.xml,29.707,29.707,16.395,16.395,13.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,2.803,0.504,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.798,0.0,12.515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.737,8.26,9.539,0.569,0.0,0.0,0.0,0.0,880.9,1458.2,3.659,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,1.369,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-5.386,0.0,-0.01,-0.98,0.0,0.0,-0.036,3.876,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,8.003,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-mechvent-multiple.xml,50.28,50.28,30.013,30.013,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.059,2.016,0.292,9.724,0.0,0.0,2.026,0.0,0.206,3.725,0.949,0.167,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.094,0.0,0.0,0.0,0.0,12.173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.499,4.803,9.539,0.617,0.0,0.0,0.0,0.0,1800.9,2248.4,7.585,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,0.226,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-7.929,0.0,-0.012,-0.117,0.0,0.0,0.061,3.687,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.129,0.0,0.0,6.105,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-mechvent-preconditioning.xml,32.687,32.687,27.32,27.32,5.367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,2.557,0.434,9.696,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.045,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.407,0.0,0.0,0.0,0.0,3.959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.302,7.061,9.539,0.588,0.0,0.0,0.0,0.0,1613.4,2093.3,4.166,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,1.125,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-6.367,0.0,-0.009,-0.693,0.0,0.0,-0.005,3.856,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,7.638,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-mechvent.xml,31.013,31.013,27.201,27.201,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.028,2.478,0.412,9.706,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.53,6.838,9.539,0.598,0.0,0.0,0.0,0.0,1610.1,2093.8,5.994,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,0.549,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-6.912,0.0,-0.008,-0.511,0.0,0.0,-0.01,3.532,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,7.103,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-pv.xml,26.876,2.428,26.2,1.752,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,2.899,0.529,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,8.678,9.539,0.577,0.0,0.0,0.0,0.0,1562.0,2038.4,3.453,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,1.418,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-5.458,0.0,-0.008,-1.031,0.0,0.0,-0.043,3.873,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,8.535,1354.8,997.6,11399.6,3156.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 -base-bldgtype-multifamily-shared-water-heater-recirc.xml,30.878,30.878,17.508,17.508,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,2.817,0.507,0.0,1.096,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.85,0.0,12.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.786,8.35,9.539,0.57,0.0,0.0,0.0,0.0,933.9,1519.0,3.654,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,1.364,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-5.596,0.0,-0.01,-0.966,0.0,0.0,-0.034,3.877,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,8.191,1354.8,997.6,11399.7,3156.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 -base-bldgtype-multifamily-shared-water-heater.xml,29.782,29.782,16.412,16.412,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,2.817,0.507,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.85,0.0,12.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.786,8.35,9.539,0.57,0.0,0.0,0.0,0.0,881.2,1466.3,3.654,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,1.364,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-5.596,0.0,-0.01,-0.966,0.0,0.0,-0.034,3.877,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,8.191,1354.8,997.6,11399.7,3156.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 -base-bldgtype-multifamily.xml,26.876,26.876,26.2,26.2,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,2.899,0.529,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,8.678,9.539,0.577,0.0,0.0,0.0,0.0,1562.0,2038.4,3.453,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,1.418,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-5.458,0.0,-0.008,-1.031,0.0,0.0,-0.043,3.873,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,8.535,1354.8,997.6,11399.6,3156.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 -base-bldgtype-single-family-attached-2stories.xml,51.52,51.52,34.56,34.56,16.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.221,3.255,0.58,9.228,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,15.817,9.721,9.269,0.614,0.0,0.0,0.0,0.0,2112.3,3013.6,17.827,14.18,0.0,2.425,5.051,0.296,4.334,0.636,-0.809,0.0,0.0,4.958,-0.068,7.092,0.0,0.728,0.0,2.34,-11.4,0.0,0.006,-0.65,-0.026,1.618,-0.018,6.174,0.0,0.0,-3.987,-0.063,-1.694,-2.545,-0.162,0.0,1.306,9.887,1354.8,997.6,11399.6,2678.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 -base-bldgtype-single-family-attached-atticroof-cathedral.xml,97.785,97.785,37.178,37.178,60.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.79,4.935,0.941,9.236,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.514,15.57,9.269,0.623,0.0,0.0,0.0,0.0,2161.1,4374.3,36.355,27.56,49.488,0.0,2.936,0.288,3.614,0.667,-0.101,0.0,0.0,3.324,-0.84,7.548,0.0,0.773,0.0,0.0,-12.354,8.563,0.0,-0.155,0.004,1.536,0.12,4.579,0.0,0.0,-4.289,-0.8,-0.851,-1.174,-0.093,0.0,0.0,8.942,1354.8,997.6,11399.6,2678.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 -base-bldgtype-single-family-attached.xml,42.567,42.567,29.913,29.913,12.654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.093,2.733,0.467,9.441,0.0,0.0,3.268,0.0,0.27,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.734,7.788,9.387,0.614,0.0,0.0,0.0,0.0,1823.2,2595.0,13.124,9.976,0.0,2.343,2.365,0.292,4.201,0.623,-0.412,0.0,0.0,4.62,-0.043,3.033,0.0,0.726,0.0,3.213,-9.37,0.0,0.024,-0.286,-0.027,1.565,-0.023,3.006,0.0,0.0,-4.096,-0.041,-0.77,-1.22,-0.166,0.0,1.589,8.289,1354.8,997.6,11399.6,2887.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 -base-calctype-operational-misc-defaults.xml,69.443,49.344,39.625,19.525,29.819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.492,2.304,0.347,7.15,0.0,0.326,4.51,0.0,0.334,1.118,0.0,0.0,1.098,2.36,0.0,0.0,0.769,0.544,4.047,2.057,0.745,3.051,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-20.099,0.0,29.819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.911,5.633,18.469,0.643,0.0,11.971,0.0,0.0,3201.7,3057.8,25.511,14.606,0.0,3.789,3.683,0.518,7.429,0.643,-2.003,0.0,0.0,8.272,-0.076,1.525,0.0,14.991,0.0,2.587,-13.72,0.0,0.225,-0.16,-0.009,3.422,0.051,10.679,0.0,0.0,-5.258,-0.072,-0.213,0.0,-3.573,-11.344,0.461,12.442,2592.2,2706.6,21154.0,5664.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-calctype-operational-misc-loads-large-uncommon.xml,101.291,101.291,51.958,51.958,41.427,0.0,2.609,5.297,0.0,0.0,0.0,0.0,0.35,4.468,0.873,3.939,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,3.032,2.994,0.0,0.0,21.205,0.0,0.0,0.0,0.0,0.0,18.628,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,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.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.858,15.008,3.621,0.613,0.0,0.0,0.0,0.0,2605.1,4107.0,22.884,18.539,0.0,3.571,3.652,0.514,7.487,0.632,-2.011,0.0,0.0,8.266,-0.066,4.81,0.0,0.728,0.0,4.631,-12.696,0.0,-0.086,-0.49,-0.056,2.637,-0.033,9.773,0.0,0.0,-6.479,-0.063,-1.19,-3.189,-0.169,0.0,3.273,11.26,777.8,496.4,4294.1,850.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 -base-calctype-operational-misc-loads-large-uncommon2.xml,80.237,80.237,49.532,49.532,22.799,2.609,0.0,0.0,5.297,0.0,0.0,0.0,0.35,4.468,0.873,3.939,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,0.606,2.994,0.0,0.0,21.205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.858,15.008,3.621,0.613,0.0,0.0,0.0,0.0,2406.7,3920.8,22.884,18.539,0.0,3.571,3.652,0.514,7.487,0.632,-2.011,0.0,0.0,8.266,-0.066,4.81,0.0,0.728,0.0,4.631,-12.696,0.0,-0.086,-0.49,-0.056,2.637,-0.033,9.773,0.0,0.0,-6.479,-0.063,-1.19,-3.189,-0.169,0.0,3.273,11.26,777.8,496.4,4294.1,850.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 -base-calctype-operational.xml,53.033,53.033,28.335,28.335,24.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.407,3.949,0.745,3.942,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.131,12.786,3.621,0.615,0.0,0.0,0.0,0.0,1659.2,3131.2,23.529,17.294,0.0,3.522,3.624,0.51,7.396,0.627,-2.118,0.0,0.0,8.168,-0.062,4.801,0.0,0.725,0.0,5.31,-9.692,0.0,-0.005,-0.424,-0.046,2.821,-0.015,9.944,0.0,0.0,-6.179,-0.058,-1.133,-2.898,-0.16,0.0,2.907,8.203,777.8,496.4,4294.0,850.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 -base-dhw-combi-tankless-outside.xml,52.76,52.76,21.435,21.435,31.326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.859,0.0,10.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,0.0,0.0,0.0,0.0,0.0,0.0,17.618,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1376.9,0.0,16.995,0.0,0.0,3.734,3.632,0.511,7.4,0.628,-2.089,0.0,0.0,8.027,-0.066,5.886,0.0,0.727,0.0,0.0,-11.085,0.0,-0.441,-0.972,-0.125,1.231,-0.155,8.265,0.0,0.0,-8.427,-0.062,-1.962,-6.027,-0.268,0.0,0.0,9.588,1068.6,776.0,8563.5,1965.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-combi-tankless.xml,52.76,52.76,21.435,21.435,31.326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.859,0.0,10.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,0.0,0.0,0.0,0.0,0.0,0.0,17.618,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1376.9,0.0,16.995,0.0,0.0,3.734,3.632,0.511,7.4,0.628,-2.089,0.0,0.0,8.027,-0.066,5.886,0.0,0.727,0.0,0.0,-11.085,0.0,-0.441,-0.972,-0.125,1.231,-0.155,8.265,0.0,0.0,-8.427,-0.062,-1.962,-6.027,-0.268,0.0,0.0,9.588,1068.6,776.0,8563.5,1965.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-desuperheater-2-speed.xml,32.317,32.317,32.317,32.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.387,0.791,6.863,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.92,9.232,0.662,2.959,0.0,0.0,0.0,0.0,2740.8,0.0,18.834,0.0,2.642,2.5,0.349,4.179,0.341,-5.425,0.0,0.0,2.767,-0.137,3.049,0.0,0.518,0.0,0.0,-11.135,0.0,-0.087,-0.461,-0.051,2.712,-0.03,9.933,0.0,0.0,-6.912,-0.064,-1.188,-3.012,-0.166,0.0,3.752,10.67,1354.8,997.6,11412.6,2618.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 -base-dhw-desuperheater-gshp.xml,37.403,37.403,37.403,37.403,0.0,0.0,0.0,0.0,0.0,0.0,5.362,0.0,0.444,2.586,1.046,6.688,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,13.388,9.232,0.613,2.93,0.0,0.0,0.0,3224.0,2111.7,21.195,15.076,0.0,3.592,3.632,0.511,7.424,0.628,-2.088,0.0,0.0,8.184,-0.062,4.802,0.0,0.728,0.0,3.481,-11.089,0.0,0.008,-0.456,-0.051,2.727,-0.024,9.853,0.0,0.0,-6.334,-0.058,-1.166,-3.093,-0.165,0.0,1.853,10.498,1354.8,997.6,11412.7,2618.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 -base-dhw-desuperheater-hpwh.xml,56.744,56.744,29.654,29.654,27.089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.447,4.379,0.85,2.703,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.369,14.462,9.245,1.809,3.004,0.0,0.0,0.0,1878.6,3057.3,23.4,18.492,0.0,3.514,3.628,0.51,7.412,0.625,-2.169,0.0,0.0,8.223,-0.05,4.794,0.0,0.726,0.0,5.711,-7.909,0.0,-0.007,-0.41,-0.044,2.872,-0.014,9.928,0.0,0.0,-6.091,-0.046,-1.115,-2.915,-0.155,0.0,3.15,9.604,1354.7,997.5,11376.8,2610.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 -base-dhw-desuperheater-tankless.xml,33.732,33.732,33.732,33.732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.379,1.179,6.898,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.168,9.238,0.0,2.932,0.0,0.0,0.0,0.0,3165.4,0.0,18.086,0.0,2.62,2.477,0.346,4.102,0.335,-5.497,0.0,0.0,2.651,-0.138,3.016,0.0,0.513,0.0,0.0,-10.763,0.0,-0.059,-0.455,-0.05,2.728,-0.028,9.95,0.0,0.0,-6.903,-0.064,-1.182,-2.982,-0.164,0.0,3.18,10.385,1354.8,997.6,11361.0,2607.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,31.424,31.424,31.424,31.424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.924,0.333,6.89,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.627,9.232,0.663,2.921,0.0,0.0,0.0,0.0,2479.6,0.0,18.766,0.0,2.642,2.5,0.349,4.179,0.341,-5.425,0.0,0.0,2.767,-0.137,3.049,0.0,0.518,0.0,0.0,-11.135,0.0,-0.125,-0.461,-0.051,2.713,-0.03,9.933,0.0,0.0,-6.91,-0.064,-1.188,-3.015,-0.166,0.0,4.514,10.66,1354.8,997.6,11410.8,2618.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 -base-dhw-desuperheater.xml,33.751,33.751,33.751,33.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.433,1.197,6.845,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.397,9.232,0.662,2.987,0.0,0.0,0.0,0.0,3178.5,0.0,18.194,0.0,2.642,2.501,0.349,4.179,0.341,-5.425,0.0,0.0,2.767,-0.137,3.049,0.0,0.518,0.0,0.0,-11.135,0.0,-0.065,-0.461,-0.051,2.712,-0.03,9.932,0.0,0.0,-6.913,-0.064,-1.188,-3.013,-0.166,0.0,3.218,10.677,1354.8,997.6,11413.5,2619.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.247,56.247,33.67,33.67,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,6.924,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,6.826,0.614,0.0,0.0,0.0,0.0,2106.3,3288.3,22.927,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,10264.9,2355.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 -base-dhw-indirect-dse.xml,59.375,59.375,21.461,21.461,37.914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.184,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.319,0.0,13.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.402,0.0,9.26,2.272,0.0,0.0,0.0,0.0,1376.0,0.0,16.705,0.0,0.0,3.737,3.636,0.512,7.411,0.629,-2.065,0.0,0.0,8.015,-0.068,5.892,0.0,0.728,0.0,0.0,-12.357,0.0,-0.484,-1.017,-0.132,1.089,-0.167,8.138,0.0,0.0,-8.625,-0.064,-2.023,-6.313,-0.277,0.0,0.0,10.589,1138.7,826.6,9544.7,2190.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 -base-dhw-indirect-outside.xml,57.103,57.103,21.435,21.435,35.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.859,0.0,14.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.618,0.0,9.263,3.3,0.0,0.0,0.0,0.0,1376.9,0.0,16.995,0.0,0.0,3.734,3.632,0.511,7.4,0.628,-2.089,0.0,0.0,8.027,-0.066,5.886,0.0,0.727,0.0,0.0,-11.085,0.0,-0.441,-0.972,-0.125,1.231,-0.155,8.265,0.0,0.0,-8.427,-0.062,-1.962,-6.027,-0.268,0.0,0.0,9.588,1120.1,811.3,9405.5,2158.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 -base-dhw-indirect-standbyloss.xml,54.709,54.709,21.422,21.422,33.287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.195,0.0,14.092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,9.262,2.696,0.0,0.0,0.0,0.0,1375.8,0.0,16.632,0.0,0.0,3.735,3.635,0.512,7.412,0.629,-2.052,0.0,0.0,8.007,-0.069,5.892,0.0,0.728,0.0,0.0,-12.589,0.0,-0.494,-1.027,-0.133,1.062,-0.169,8.122,0.0,0.0,-8.668,-0.066,-2.036,-6.368,-0.279,0.0,0.0,10.781,1124.5,813.7,9457.2,2170.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-indirect-with-solar-fraction.xml,46.546,46.546,21.431,21.431,25.115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.155,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.371,0.0,4.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.194,0.0,9.24,0.786,0.0,6.006,0.0,0.0,1376.6,0.0,16.874,0.0,0.0,3.736,3.634,0.511,7.404,0.629,-2.087,0.0,0.0,8.023,-0.065,5.888,0.0,0.728,0.0,0.0,-11.525,0.0,-0.454,-0.987,-0.127,1.182,-0.159,8.216,0.0,0.0,-8.494,-0.061,-1.983,-6.123,-0.271,0.0,0.0,9.934,403.8,298.0,3325.1,763.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,54.474,54.474,21.424,21.424,33.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.455,0.0,13.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.402,0.0,9.26,2.272,0.0,0.0,0.0,0.0,1376.0,0.0,16.705,0.0,0.0,3.737,3.636,0.512,7.411,0.629,-2.065,0.0,0.0,8.015,-0.068,5.892,0.0,0.728,0.0,0.0,-12.357,0.0,-0.484,-1.017,-0.132,1.089,-0.167,8.138,0.0,0.0,-8.625,-0.064,-2.023,-6.313,-0.277,0.0,0.0,10.589,1138.7,826.6,9544.7,2190.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 -base-dhw-jacket-electric.xml,58.379,58.379,35.584,35.584,22.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.376,4.248,0.817,8.867,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.347,13.873,9.234,0.295,0.0,0.0,0.0,0.0,2130.4,3612.9,22.98,17.807,0.0,3.543,3.633,0.511,7.427,0.628,-2.085,0.0,0.0,8.19,-0.062,4.803,0.0,0.728,0.0,4.932,-11.232,0.0,-0.043,-0.455,-0.051,2.729,-0.024,9.856,0.0,0.0,-6.328,-0.059,-1.165,-3.057,-0.165,0.0,3.078,9.737,1354.8,997.6,11399.6,2615.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 -base-dhw-jacket-gas.xml,64.438,64.438,26.849,26.849,37.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.383,4.349,0.841,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.199,0.0,14.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,21.725,14.292,9.234,2.726,0.0,0.0,0.0,0.0,1464.3,3028.6,23.48,18.282,0.0,3.54,3.634,0.511,7.43,0.628,-2.083,0.0,0.0,8.195,-0.062,5.888,0.0,0.727,0.0,5.018,-12.039,0.0,-0.049,-0.458,-0.051,2.723,-0.025,9.847,0.0,0.0,-6.336,-0.058,-1.446,-3.082,-0.165,0.0,3.16,10.412,1354.8,997.6,11399.8,2615.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 -base-dhw-jacket-hpwh.xml,56.62,56.62,29.521,29.521,27.099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.447,3.802,0.71,3.285,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,0.0,0.0,25.379,12.093,9.287,1.309,0.0,0.0,0.0,0.0,1896.4,2942.9,23.492,17.688,0.0,3.511,3.625,0.51,7.411,0.626,-2.171,0.0,0.0,8.224,-0.047,4.794,0.0,0.726,0.0,5.713,-7.886,0.0,0.017,-0.404,-0.043,2.895,-0.012,9.951,0.0,0.0,-6.055,-0.043,-1.109,-2.793,-0.153,0.0,2.749,7.414,1354.8,997.6,10993.4,2522.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 -base-dhw-jacket-indirect.xml,54.273,54.273,21.425,21.425,32.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.676,0.0,13.172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.593,0.0,9.259,1.914,0.0,0.0,0.0,0.0,1376.2,0.0,16.753,0.0,0.0,3.737,3.636,0.512,7.409,0.629,-2.076,0.0,0.0,8.019,-0.066,5.89,0.0,0.728,0.0,0.0,-12.155,0.0,-0.476,-1.009,-0.131,1.113,-0.165,8.151,0.0,0.0,-8.593,-0.062,-2.014,-6.27,-0.275,0.0,0.0,10.432,1145.5,830.8,9598.0,2202.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 -base-dhw-low-flow-fixtures.xml,58.119,58.119,35.542,35.542,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,8.796,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,8.838,0.614,0.0,0.0,0.0,0.0,2111.8,3471.1,22.926,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,10829.7,2485.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-multiple.xml,47.208,47.208,23.375,23.375,23.833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,1.948,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.888,0.0,3.945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.78,0.0,9.225,2.819,0.0,5.996,0.0,0.0,2111.7,0.0,18.71,0.0,0.0,3.736,3.634,0.511,7.407,0.629,-2.07,0.0,0.0,8.019,-0.067,5.889,0.0,0.728,0.0,0.0,-11.968,0.0,-0.469,-1.002,-0.13,1.137,-0.163,8.184,0.0,0.0,-8.558,-0.063,-2.004,-6.208,-0.274,0.0,0.0,10.3,472.0,347.5,3998.6,917.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 -base-dhw-none.xml,47.056,47.056,24.51,24.51,22.546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.242,0.817,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.115,13.943,0.0,0.0,0.0,0.0,0.0,0.0,1360.7,2885.1,22.966,17.822,0.0,3.546,3.636,0.512,7.433,0.629,-2.077,0.0,0.0,8.2,-0.063,5.402,0.0,0.0,0.0,4.886,-11.32,0.0,-0.047,-0.459,-0.051,2.716,-0.025,9.845,0.0,0.0,-6.347,-0.059,-1.303,-3.073,0.0,0.0,3.078,9.851,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.437,58.437,35.86,35.86,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.088,0.026,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.174,0.614,0.0,0.0,0.0,0.0,2126.1,3620.1,22.926,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2510.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 -base-dhw-recirc-manual.xml,58.01,58.01,35.433,35.433,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,8.67,0.017,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.174,0.614,0.0,0.0,0.0,0.0,2110.8,3605.5,22.926,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2510.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 -base-dhw-recirc-nocontrol.xml,73.386,73.386,50.809,50.809,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,22.569,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.268,0.614,0.0,0.0,0.0,0.0,3075.5,4169.0,22.928,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2676.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 -base-dhw-recirc-temperature.xml,68.475,68.475,45.898,45.898,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,18.904,0.249,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.268,0.614,0.0,0.0,0.0,0.0,2757.2,3949.6,22.928,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2676.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 -base-dhw-recirc-timer.xml,73.386,73.386,50.809,50.809,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,22.569,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.268,0.614,0.0,0.0,0.0,0.0,3075.5,4169.0,22.928,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2676.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 -base-dhw-solar-direct-evacuated-tube.xml,52.635,52.635,30.059,30.059,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.277,0.824,2.985,0.0,0.324,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,14.0,9.255,0.628,0.0,6.676,0.0,0.0,2091.3,3016.8,22.925,17.877,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.073,-0.165,0.0,3.098,9.895,1354.7,997.5,11208.1,2571.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 -base-dhw-solar-direct-flat-plate.xml,51.155,51.155,28.586,28.586,22.569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.289,0.827,1.511,0.0,0.31,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.135,14.051,9.362,0.693,0.0,8.432,0.0,0.0,2025.5,3020.0,22.927,17.904,0.0,3.545,3.634,0.511,7.428,0.629,-2.081,0.0,0.0,8.191,-0.063,4.805,0.0,0.728,0.0,4.888,-11.413,0.0,-0.047,-0.458,-0.051,2.719,-0.025,9.848,0.0,0.0,-6.342,-0.06,-1.168,-3.079,-0.165,0.0,3.106,9.953,1354.4,997.2,10425.4,2392.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 -base-dhw-solar-direct-ics.xml,52.692,52.692,30.115,30.115,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.282,0.826,3.03,0.0,0.329,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,14.022,9.29,0.649,0.0,6.685,0.0,0.0,2125.4,3018.7,22.928,17.893,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.34,-0.059,-1.168,-3.074,-0.165,0.0,3.102,9.917,1354.7,997.6,10951.6,2513.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-fraction.xml,52.767,52.767,29.918,29.918,22.849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.377,4.241,0.816,3.208,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.398,13.845,9.234,0.215,0.0,6.002,0.0,0.0,1765.2,3294.5,22.994,17.794,0.0,3.543,3.634,0.511,7.428,0.628,-2.092,0.0,0.0,8.193,-0.061,4.803,0.0,0.728,0.0,4.942,-11.191,0.0,-0.041,-0.453,-0.05,2.733,-0.024,9.851,0.0,0.0,-6.322,-0.057,-1.164,-3.053,-0.164,0.0,3.073,9.698,474.2,349.2,3989.9,915.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 -base-dhw-solar-indirect-flat-plate.xml,50.889,50.889,28.675,28.675,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.366,4.392,0.853,1.482,0.0,0.306,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.803,14.492,9.342,0.681,0.0,8.431,0.0,0.0,2108.2,3053.8,22.962,18.202,0.0,3.55,3.637,0.512,7.435,0.629,-2.079,0.0,0.0,8.194,-0.062,4.806,0.0,0.729,0.0,4.82,-11.709,0.0,-0.056,-0.464,-0.052,2.701,-0.027,9.824,0.0,0.0,-6.371,-0.058,-1.177,-3.128,-0.166,0.0,3.181,10.468,1354.2,997.1,10550.8,2421.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-solar-thermosyphon-flat-plate.xml,50.877,50.877,28.307,28.307,22.569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.288,0.827,1.544,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.136,14.047,9.355,0.689,0.0,8.386,0.0,0.0,2092.4,2987.7,22.928,17.901,0.0,3.545,3.634,0.511,7.428,0.629,-2.081,0.0,0.0,8.191,-0.063,4.805,0.0,0.728,0.0,4.888,-11.413,0.0,-0.047,-0.458,-0.051,2.719,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.078,-0.165,0.0,3.106,9.949,1354.4,997.2,10471.1,2402.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 -base-dhw-tank-coal.xml,65.17,65.17,26.903,26.903,22.798,0.0,0.0,0.0,0.0,15.47,0.0,0.0,0.376,4.397,0.853,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.35,14.5,9.234,3.623,0.0,0.0,0.0,0.0,1463.8,3039.9,23.376,18.378,0.0,3.545,3.636,0.512,7.433,0.629,-2.079,0.0,0.0,8.196,-0.062,5.89,0.0,0.728,0.0,4.941,-12.359,0.0,-0.054,-0.461,-0.052,2.709,-0.026,9.834,0.0,0.0,-6.356,-0.058,-1.453,-3.111,-0.166,0.0,3.193,10.682,1354.8,997.6,11399.9,2615.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 -base-dhw-tank-detailed-setpoints.xml,58.47,58.47,35.899,35.899,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.153,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.137,13.988,9.207,0.623,0.0,0.0,0.0,0.0,2481.4,3304.6,22.903,17.855,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.888,-11.409,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.34,-0.059,-1.168,-3.073,-0.165,0.0,3.096,9.887,1354.8,997.6,11442.3,2625.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 -base-dhw-tank-elec-uef.xml,58.513,58.513,35.989,35.989,22.524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.28,0.825,9.236,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.094,14.012,9.234,0.691,0.0,0.0,0.0,0.0,2133.6,3467.4,22.915,17.872,0.0,3.545,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.191,-0.063,4.805,0.0,0.728,0.0,4.88,-11.448,0.0,-0.046,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.06,-1.168,-3.076,-0.165,0.0,3.1,9.917,1354.8,997.6,11399.5,2615.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 -base-dhw-tank-gas-outside.xml,68.313,68.313,26.69,26.69,41.623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.403,4.205,0.806,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.415,0.0,17.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.865,13.673,9.234,5.067,0.0,0.0,0.0,0.0,1465.9,2993.9,23.767,17.99,0.0,3.532,3.632,0.511,7.423,0.628,-2.101,0.0,0.0,8.2,-0.06,5.884,0.0,0.727,0.0,5.252,-11.084,0.0,-0.031,-0.443,-0.049,2.767,-0.021,9.879,0.0,0.0,-6.266,-0.056,-1.424,-2.997,-0.162,0.0,3.06,9.589,1354.8,997.6,11399.7,2615.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 -base-dhw-tank-gas-uef-fhr.xml,64.846,64.846,26.865,26.865,37.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.381,4.363,0.845,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.076,0.0,14.904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.61,14.354,9.234,2.979,0.0,0.0,0.0,0.0,1464.2,3032.1,23.446,18.308,0.0,3.542,3.635,0.511,7.431,0.629,-2.081,0.0,0.0,8.195,-0.062,5.888,0.0,0.728,0.0,4.995,-12.137,0.0,-0.051,-0.459,-0.051,2.719,-0.025,9.844,0.0,0.0,-6.342,-0.058,-1.448,-3.091,-0.165,0.0,3.17,10.493,1354.8,997.6,11399.8,2615.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 -base-dhw-tank-gas-uef.xml,64.846,64.846,26.865,26.865,37.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.381,4.363,0.845,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.076,0.0,14.904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.61,14.354,9.234,2.979,0.0,0.0,0.0,0.0,1464.2,3032.1,23.446,18.308,0.0,3.542,3.635,0.511,7.431,0.629,-2.081,0.0,0.0,8.195,-0.062,5.888,0.0,0.728,0.0,4.995,-12.137,0.0,-0.051,-0.459,-0.051,2.719,-0.025,9.844,0.0,0.0,-6.342,-0.058,-1.448,-3.091,-0.165,0.0,3.17,10.493,1354.8,997.6,11399.8,2615.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 -base-dhw-tank-gas.xml,65.17,65.17,26.903,26.903,38.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.376,4.397,0.853,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.798,0.0,15.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,21.35,14.5,9.234,3.623,0.0,0.0,0.0,0.0,1463.8,3039.9,23.376,18.378,0.0,3.545,3.636,0.512,7.433,0.629,-2.079,0.0,0.0,8.196,-0.062,5.89,0.0,0.728,0.0,4.941,-12.359,0.0,-0.054,-0.461,-0.052,2.709,-0.026,9.834,0.0,0.0,-6.356,-0.058,-1.453,-3.111,-0.166,0.0,3.193,10.682,1354.8,997.6,11399.9,2615.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 -base-dhw-tank-heat-pump-detailed-operating-modes.xml,56.439,56.439,28.487,28.487,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.461,3.721,0.69,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.164,11.747,9.291,1.307,0.0,0.0,0.0,0.0,1859.9,3302.0,25.373,17.801,0.0,3.507,3.629,0.51,7.421,0.625,-2.178,0.0,0.0,8.249,-0.039,4.795,0.0,0.726,0.0,5.864,-7.287,0.0,0.031,-0.389,-0.041,2.942,-0.009,9.981,0.0,0.0,-5.982,-0.035,-1.092,-2.73,-0.151,0.0,2.677,7.034,1354.8,997.6,10960.9,2515.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 -base-dhw-tank-heat-pump-detailed-schedules.xml,56.575,56.575,28.663,28.663,27.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.46,3.734,0.694,2.497,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,26.136,11.802,9.374,1.415,0.0,0.0,0.0,0.0,1846.9,2939.8,26.588,17.604,0.0,3.497,3.625,0.51,7.413,0.626,-2.129,0.0,0.0,8.226,-0.057,4.797,0.0,0.726,0.0,5.869,-7.317,0.0,0.033,-0.387,-0.041,2.935,-0.007,10.049,0.0,0.0,-5.977,-0.053,-1.08,-2.689,-0.153,0.0,2.669,7.028,1354.8,997.6,10201.5,2340.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 -base-dhw-tank-heat-pump-detailed-setpoints.xml,56.575,56.575,28.663,28.663,27.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.46,3.734,0.694,2.497,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,26.136,11.802,9.374,1.415,0.0,0.0,0.0,0.0,1846.9,2939.8,26.588,17.604,0.0,3.497,3.625,0.51,7.413,0.626,-2.129,0.0,0.0,8.226,-0.057,4.797,0.0,0.726,0.0,5.869,-7.317,0.0,0.033,-0.387,-0.041,2.935,-0.007,10.049,0.0,0.0,-5.977,-0.053,-1.08,-2.689,-0.153,0.0,2.669,7.028,1354.8,997.6,10201.5,2340.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 -base-dhw-tank-heat-pump-operating-mode-heat-pump-only.xml,56.439,56.439,28.487,28.487,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.461,3.721,0.69,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.164,11.747,9.291,1.307,0.0,0.0,0.0,0.0,1859.9,3302.0,25.373,17.801,0.0,3.507,3.629,0.51,7.421,0.625,-2.178,0.0,0.0,8.249,-0.039,4.795,0.0,0.726,0.0,5.864,-7.287,0.0,0.031,-0.389,-0.041,2.942,-0.009,9.981,0.0,0.0,-5.982,-0.035,-1.092,-2.73,-0.151,0.0,2.677,7.034,1354.8,997.6,10960.9,2515.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 -base-dhw-tank-heat-pump-outside.xml,56.508,56.508,33.513,33.513,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,6.822,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.255,2.524,0.0,0.0,0.0,0.0,3063.5,3167.6,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11245.9,2580.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 -base-dhw-tank-heat-pump-uef.xml,56.439,56.439,28.487,28.487,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.461,3.721,0.69,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.164,11.747,9.291,1.307,0.0,0.0,0.0,0.0,1859.9,3302.0,25.373,17.801,0.0,3.507,3.629,0.51,7.421,0.625,-2.178,0.0,0.0,8.249,-0.039,4.795,0.0,0.726,0.0,5.864,-7.287,0.0,0.031,-0.389,-0.041,2.942,-0.009,9.981,0.0,0.0,-5.982,-0.035,-1.092,-2.73,-0.151,0.0,2.677,7.034,1354.8,997.6,10960.9,2515.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 -base-dhw-tank-heat-pump-with-solar-fraction.xml,52.162,52.162,27.784,27.784,24.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.402,4.079,0.776,1.251,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.829,13.194,9.267,0.602,0.0,6.023,0.0,0.0,1901.7,2982.6,25.913,17.83,0.0,3.532,3.63,0.511,7.418,0.627,-2.123,0.0,0.0,8.195,-0.055,4.798,0.0,0.727,0.0,5.222,-9.997,0.0,-0.018,-0.436,-0.048,2.787,-0.02,9.886,0.0,0.0,-6.232,-0.051,-1.145,-2.951,-0.161,0.0,2.95,8.87,474.2,349.2,3898.0,894.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 -base-dhw-tank-heat-pump-with-solar.xml,51.709,51.709,28.404,28.404,23.305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.384,4.424,0.861,1.129,0.0,0.329,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,21.823,14.639,9.18,1.965,0.0,8.141,0.0,0.0,1894.1,3070.3,23.278,18.324,0.0,3.541,3.635,0.512,7.439,0.628,-2.085,0.0,0.0,8.2,-0.058,4.804,0.0,0.728,0.0,5.018,-10.881,0.0,-0.055,-0.461,-0.051,2.717,-0.026,9.832,0.0,0.0,-6.341,-0.055,-1.174,-3.124,-0.166,0.0,3.202,10.558,1354.4,997.3,11918.1,2734.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 -base-dhw-tank-heat-pump.xml,56.686,56.686,29.663,29.663,27.023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.446,3.806,0.711,3.424,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.303,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.6,3189.9,23.349,17.972,0.0,3.514,3.627,0.51,7.409,0.626,-2.15,0.0,0.0,8.222,-0.054,4.797,0.0,0.726,0.0,5.699,-7.978,0.0,0.017,-0.406,-0.044,2.884,-0.012,9.964,0.0,0.0,-6.067,-0.051,-1.108,-2.798,-0.153,0.0,2.733,7.488,1354.8,997.6,11052.5,2536.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 -base-dhw-tank-model-type-stratified-detailed-occupancy-stochastic.xml,59.15,59.15,35.567,35.567,23.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.389,4.328,0.836,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.083,14.175,9.275,0.094,0.0,0.0,0.0,0.0,5197.3,5530.9,30.876,19.181,0.0,3.539,3.634,0.511,7.429,0.629,-2.079,0.0,0.0,8.191,-0.062,5.262,0.0,0.776,0.0,5.078,-11.151,0.0,-0.043,-0.452,-0.05,2.737,-0.023,9.869,0.0,0.0,-6.316,-0.058,-1.263,-3.036,-0.185,0.0,3.131,10.077,1354.7,998.0,11011.7,2526.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 -base-dhw-tank-model-type-stratified.xml,58.365,58.365,35.434,35.434,22.932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.378,4.231,0.813,8.734,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.476,13.803,9.282,0.094,0.0,0.0,0.0,0.0,1994.9,3331.3,23.013,17.774,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.803,0.0,0.728,0.0,4.958,-11.125,0.0,-0.04,-0.453,-0.05,2.736,-0.024,9.854,0.0,0.0,-6.318,-0.057,-1.163,-3.047,-0.164,0.0,3.066,9.643,1354.8,997.6,10995.3,2523.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tank-oil.xml,65.17,65.17,26.903,26.903,22.798,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.376,4.397,0.853,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.35,14.5,9.234,3.623,0.0,0.0,0.0,0.0,1463.8,3039.9,23.376,18.378,0.0,3.545,3.636,0.512,7.433,0.629,-2.079,0.0,0.0,8.196,-0.062,5.89,0.0,0.728,0.0,4.941,-12.359,0.0,-0.054,-0.461,-0.052,2.709,-0.026,9.834,0.0,0.0,-6.356,-0.058,-1.453,-3.111,-0.166,0.0,3.193,10.682,1354.8,997.6,11399.9,2615.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 -base-dhw-tank-wood.xml,65.17,65.17,26.903,26.903,22.798,0.0,0.0,15.47,0.0,0.0,0.0,0.0,0.376,4.397,0.853,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.35,14.5,9.234,3.623,0.0,0.0,0.0,0.0,1463.8,3039.9,23.376,18.378,0.0,3.545,3.636,0.512,7.433,0.629,-2.079,0.0,0.0,8.196,-0.062,5.89,0.0,0.728,0.0,4.941,-12.359,0.0,-0.054,-0.461,-0.052,2.709,-0.026,9.834,0.0,0.0,-6.356,-0.058,-1.453,-3.111,-0.166,0.0,3.193,10.682,1354.8,997.6,11399.9,2615.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 -base-dhw-tankless-detailed-setpoints.xml,61.053,61.053,26.691,26.691,34.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,11.367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.214,0.0,0.0,0.0,0.0,0.0,1462.5,2970.8,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11575.1,2656.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-dhw-tankless-electric-outside.xml,59.121,59.121,36.125,36.125,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,9.435,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,2022.0,3356.0,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.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 -base-dhw-tankless-electric-uef.xml,59.014,59.014,36.019,36.019,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,9.328,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,2015.6,3351.5,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.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 -base-dhw-tankless-electric.xml,59.121,59.121,36.125,36.125,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,9.435,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,2022.0,3356.0,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.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 -base-dhw-tankless-gas-uef.xml,59.516,59.516,26.691,26.691,32.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,9.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,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,1462.5,2970.8,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.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 -base-dhw-tankless-gas-with-solar-fraction.xml,53.673,53.673,26.691,26.691,26.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,3.987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.234,0.0,0.0,6.002,0.0,0.0,1462.5,2970.8,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,474.2,349.2,3988.9,915.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 -base-dhw-tankless-gas-with-solar.xml,51.39,51.39,27.12,27.12,24.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.373,4.33,0.837,0.0,0.0,0.304,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.632,0.0,1.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.195,14.224,9.416,0.0,0.0,8.084,0.0,0.0,1462.3,3037.1,23.062,18.054,0.0,3.545,3.635,0.512,7.43,0.629,-2.078,0.0,0.0,8.193,-0.064,4.806,0.0,0.728,0.0,4.901,-11.379,0.0,-0.049,-0.459,-0.051,2.715,-0.025,9.844,0.0,0.0,-6.347,-0.06,-1.17,-3.094,-0.165,0.0,3.138,10.131,1345.1,989.5,10036.9,2303.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 -base-dhw-tankless-gas.xml,61.077,61.077,26.691,26.691,34.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,11.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,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,1462.5,2970.8,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.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 -base-dhw-tankless-propane.xml,61.077,61.077,26.691,26.691,22.996,0.0,11.39,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,1462.5,2970.8,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.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 -base-enclosure-2stories-garage.xml,66.165,66.165,40.836,40.836,25.328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33,6.201,1.263,9.12,0.0,0.0,5.268,0.142,0.373,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,10.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.62,21.423,9.211,0.61,0.0,0.0,0.0,0.0,2307.2,4366.6,30.589,26.13,0.0,3.842,7.531,1.087,5.823,0.682,-3.635,0.0,0.84,6.66,-0.144,8.947,0.0,0.76,0.0,3.37,-12.699,0.0,-0.096,-1.018,-0.106,1.886,-0.026,20.76,0.0,-0.122,-4.735,-0.135,-1.943,-6.055,-0.161,0.0,2.802,10.802,1354.8,997.6,11399.6,2576.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 -base-enclosure-2stories.xml,74.243,74.243,44.137,44.137,30.106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.392,6.083,1.235,9.005,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.078,20.927,9.146,0.612,0.0,0.0,0.0,0.0,2538.9,4783.7,33.85,26.238,0.0,3.755,7.843,1.066,7.816,0.663,-3.733,0.0,0.0,8.918,-0.137,11.123,0.0,0.744,0.0,3.954,-14.49,0.0,-0.065,-1.03,-0.099,2.684,-0.021,20.33,0.0,0.0,-6.443,-0.127,-2.472,-6.216,-0.162,0.0,2.725,12.238,1354.8,997.6,11399.5,2460.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-enclosure-beds-1.xml,55.11,55.11,30.528,30.528,24.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.406,3.967,0.749,5.557,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.203,0.253,1.049,1.262,0.0,1.644,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.022,12.854,5.356,0.615,0.0,0.0,0.0,0.0,1847.3,3140.7,23.521,17.347,0.0,3.523,3.625,0.51,7.399,0.627,-2.115,0.0,0.0,8.173,-0.063,4.802,0.0,0.726,0.0,5.288,-9.794,0.0,-0.008,-0.426,-0.046,2.816,-0.016,9.938,0.0,0.0,-6.187,-0.059,-1.134,-2.906,-0.16,0.0,2.92,8.293,939.7,637.0,6287.7,1631.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.83,56.83,33.255,33.255,23.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.389,4.118,0.786,7.399,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.261,0.309,1.281,1.395,0.0,1.879,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.078,13.414,7.337,0.615,0.0,0.0,0.0,0.0,2054.2,3221.7,23.224,17.602,0.0,3.535,3.63,0.511,7.415,0.628,-2.106,0.0,0.0,8.183,-0.061,4.803,0.0,0.727,0.0,5.089,-10.602,0.0,-0.025,-0.441,-0.049,2.77,-0.02,9.887,0.0,0.0,-6.261,-0.057,-1.151,-2.989,-0.162,0.0,3.008,9.085,1147.2,817.3,8843.7,2197.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 -base-enclosure-beds-4.xml,60.118,60.118,38.531,38.531,21.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.356,4.433,0.863,10.889,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.376,0.421,1.744,1.661,0.0,2.35,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.215,14.569,11.089,0.613,0.0,0.0,0.0,0.0,2192.2,3454.2,22.629,18.187,0.0,3.558,3.64,0.512,7.447,0.629,-2.076,0.0,0.0,8.204,-0.059,4.805,0.0,0.73,0.0,4.692,-12.208,0.0,-0.063,-0.471,-0.053,2.677,-0.029,9.795,0.0,0.0,-6.408,-0.055,-1.185,-3.156,-0.167,0.0,3.184,10.68,1562.4,1177.9,13955.5,2960.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 -base-enclosure-beds-5.xml,61.744,61.744,41.136,41.136,20.608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34,4.598,0.903,12.592,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.434,0.477,1.976,1.794,0.0,2.585,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.298,15.167,12.918,0.613,0.0,0.0,0.0,0.0,2536.3,3777.6,22.332,18.512,0.0,3.569,3.645,0.513,7.464,0.63,-2.044,0.0,0.0,8.22,-0.064,4.81,0.0,0.731,0.0,4.495,-13.016,0.0,-0.082,-0.486,-0.055,2.631,-0.033,9.767,0.0,0.0,-6.476,-0.06,-1.199,-3.237,-0.169,0.0,3.273,11.473,1770.0,1358.2,16511.4,3258.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 -base-enclosure-garage.xml,58.833,58.833,34.586,34.586,24.247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4,2.98,0.522,9.266,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,8.712,9.234,0.724,0.0,0.0,0.0,0.0,2135.2,2485.8,17.961,10.733,0.0,3.525,3.783,0.502,5.781,0.613,1.964,0.0,0.0,6.474,-0.041,5.37,0.0,0.0,0.0,3.809,-9.273,0.0,0.11,-0.275,-0.035,2.457,0.001,6.648,0.0,0.0,-5.651,-0.038,-1.218,-2.077,0.0,0.0,1.266,7.682,1354.8,997.6,11399.6,2615.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 -base-enclosure-infil-ach-house-pressure.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-enclosure-infil-cfm-house-pressure.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-enclosure-infil-cfm50.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-enclosure-infil-flue.xml,59.904,59.904,35.909,35.909,23.995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.396,4.255,0.818,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.471,13.886,9.234,0.615,0.0,0.0,0.0,0.0,2112.0,3382.3,23.664,18.091,0.0,3.534,3.633,0.511,7.425,0.628,-2.093,0.0,0.0,8.196,-0.061,5.885,0.0,0.727,0.0,5.171,-11.413,0.0,-0.038,-0.449,-0.05,2.751,-0.022,9.87,0.0,0.0,-6.292,-0.057,-1.432,-3.026,-0.163,0.0,3.094,9.875,1354.8,997.6,11399.6,2615.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 -base-enclosure-infil-natural-ach.xml,66.123,66.123,35.925,35.925,30.197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.498,4.186,0.799,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.281,13.535,9.234,0.616,0.0,0.0,0.0,0.0,2132.4,3415.0,27.943,18.938,0.0,3.491,3.631,0.511,7.418,0.629,-2.101,0.0,0.0,8.23,-0.061,10.538,0.0,0.725,0.0,6.401,-11.445,0.0,-0.003,-0.414,-0.045,2.856,-0.012,9.975,0.0,0.0,-6.111,-0.058,-2.415,-2.873,-0.157,0.0,3.083,9.845,1354.8,997.6,11399.6,2615.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 -base-enclosure-orientations.xml,58.71,58.71,35.885,35.885,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.377,4.251,0.818,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.376,13.891,9.234,0.614,0.0,0.0,0.0,0.0,2110.0,3285.2,22.939,17.823,0.0,3.54,3.63,0.511,7.42,0.862,-2.093,0.0,0.0,8.178,-0.062,4.802,0.0,0.728,0.0,4.935,-11.406,0.0,-0.042,-0.454,-0.051,2.729,-0.154,9.858,0.0,0.0,-6.325,-0.058,-1.165,-3.058,-0.165,0.0,3.074,9.882,1354.8,997.6,11399.6,2615.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 -base-enclosure-overhangs.xml,58.801,58.801,35.769,35.769,23.031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38,4.154,0.795,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.569,13.489,9.234,0.615,0.0,0.0,0.0,0.0,2131.9,3351.7,22.929,17.703,0.0,3.538,3.631,0.511,7.415,0.627,-1.684,0.0,0.0,8.171,-0.06,4.802,0.0,0.728,0.0,4.971,-11.412,0.0,-0.027,-0.445,-0.049,2.751,-0.022,9.271,0.0,0.0,-6.29,-0.056,-1.161,-3.024,-0.163,0.0,2.995,9.876,1354.8,997.6,11399.6,2615.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 -base-enclosure-rooftypes.xml,58.412,58.412,35.748,35.748,22.664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.374,4.141,0.793,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.224,13.441,9.234,0.614,0.0,0.0,0.0,0.0,2110.0,3163.7,22.753,16.831,0.0,3.658,3.633,0.511,7.423,0.628,-2.096,0.0,0.0,8.184,-0.059,4.803,0.0,0.728,0.0,4.893,-11.408,0.0,-0.295,-0.451,-0.05,2.736,-0.024,9.856,0.0,0.0,-6.315,-0.056,-1.165,-3.054,-0.164,0.0,2.747,9.88,1354.8,997.6,11399.6,2615.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 -base-enclosure-skylights-physical-properties.xml,60.97,60.97,37.0,37.0,23.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.395,5.138,1.028,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.447,17.524,9.234,0.613,0.0,0.0,0.0,0.0,2115.3,3639.8,24.645,21.303,0.0,3.541,3.65,0.514,7.481,0.632,-1.991,0.538,0.0,8.339,-0.066,4.813,0.0,0.73,0.0,5.197,-11.383,0.0,-0.136,-0.51,-0.059,2.611,-0.038,9.693,3.684,0.0,-6.622,-0.062,-1.186,-3.225,-0.17,0.0,3.899,9.904,1354.8,997.6,11399.6,2615.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 -base-enclosure-skylights-shading.xml,58.734,58.734,36.748,36.748,21.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.363,4.96,0.987,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,20.588,16.826,9.234,0.612,0.0,0.0,0.0,0.0,2109.6,3598.0,23.428,20.663,0.0,3.562,3.656,0.515,7.492,0.633,-1.982,-0.875,0.0,8.333,-0.065,4.814,0.0,0.73,0.0,4.791,-11.379,0.0,-0.13,-0.513,-0.059,2.594,-0.039,9.685,3.196,0.0,-6.629,-0.061,-1.199,-3.257,-0.171,0.0,3.701,9.907,1354.8,997.6,11399.6,2615.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 -base-enclosure-skylights-storms.xml,58.981,58.981,36.658,36.658,22.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.368,4.883,0.969,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,16.497,9.234,0.613,0.0,0.0,0.0,0.0,2133.4,3594.8,23.511,20.574,0.0,3.556,3.652,0.514,7.48,0.632,-2.001,-0.553,0.0,8.309,-0.065,4.813,0.0,0.73,0.0,4.856,-11.385,0.0,-0.119,-0.504,-0.058,2.614,-0.036,9.708,2.793,0.0,-6.583,-0.061,-1.192,-3.228,-0.17,0.0,3.638,9.901,1354.8,997.6,11399.6,2615.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 -base-enclosure-skylights.xml,58.73,58.73,36.757,36.757,21.972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.968,0.989,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.576,16.859,9.234,0.612,0.0,0.0,0.0,0.0,2109.6,3598.0,23.427,20.671,0.0,3.562,3.656,0.515,7.493,0.633,-1.981,-0.889,0.0,8.334,-0.065,4.814,0.0,0.73,0.0,4.788,-11.379,0.0,-0.131,-0.513,-0.059,2.592,-0.039,9.683,3.234,0.0,-6.632,-0.061,-1.199,-3.259,-0.171,0.0,3.708,9.907,1354.8,997.6,11399.6,2615.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 -base-enclosure-split-level.xml,40.726,40.726,29.418,29.418,11.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.187,3.818,0.719,9.565,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.582,11.956,9.458,0.607,0.0,0.0,0.0,0.0,1709.7,2429.5,13.185,12.044,0.0,3.938,3.832,0.0,0.0,0.682,-1.698,0.0,0.0,8.03,-0.118,2.648,0.0,0.774,0.0,0.304,-8.296,0.0,-0.075,-0.587,0.0,0.0,-0.025,10.734,0.0,0.0,-1.546,-0.115,-0.592,-2.999,-0.166,0.0,0.077,7.541,1354.8,997.6,11399.6,3013.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-surfaces.xml,58.723,58.723,36.777,36.777,21.946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.984,0.993,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.551,16.928,9.234,0.612,0.0,0.0,0.0,0.0,2109.6,3598.0,23.428,20.686,0.0,3.563,3.657,0.513,7.493,0.627,-1.979,-0.907,0.0,8.335,-0.066,4.814,0.0,0.731,0.0,4.783,-11.379,0.0,-0.132,-0.515,-0.059,2.588,-0.039,9.679,3.299,0.0,-6.636,-0.062,-1.2,-3.252,-0.171,0.0,3.721,9.907,1354.8,997.6,11399.6,2615.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 -base-enclosure-split-surfaces2.xml,61.852,61.852,36.883,36.883,24.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.412,5.029,1.002,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.385,17.079,9.234,0.613,0.0,0.0,0.0,0.0,2115.6,3664.4,24.707,20.939,0.0,3.384,3.625,0.509,7.467,0.618,0.349,-0.742,0.0,8.303,-0.062,4.804,0.0,0.728,0.0,5.36,-11.385,0.0,-0.033,-0.496,-0.056,2.622,-0.036,9.505,3.223,0.0,-6.595,-0.058,-1.176,-3.162,-0.168,0.0,3.836,9.902,1354.8,997.6,11399.6,2615.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 -base-enclosure-thermal-mass.xml,58.336,58.336,35.866,35.866,22.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.371,4.239,0.817,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.043,13.869,9.234,0.614,0.0,0.0,0.0,0.0,2131.8,3340.5,22.815,17.552,0.0,3.546,3.633,0.511,7.418,0.627,-2.072,0.0,0.0,8.169,-0.095,4.799,0.0,0.727,0.0,4.853,-11.406,0.0,-0.038,-0.452,-0.05,2.732,-0.024,9.823,0.0,0.0,-6.32,-0.09,-1.171,-3.106,-0.165,0.0,3.034,9.882,1354.8,997.6,11399.6,2615.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 -base-enclosure-walltypes.xml,74.72,74.72,34.751,34.751,39.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.659,3.091,0.553,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.419,9.19,9.234,0.621,0.0,0.0,0.0,0.0,2129.3,2972.5,25.707,12.733,0.0,3.338,16.908,0.471,7.063,0.833,-0.384,0.0,0.0,7.301,-0.038,4.821,0.0,0.73,0.0,7.749,-11.693,0.0,0.273,-0.7,-0.011,3.409,-0.089,1.503,0.0,0.0,-4.959,-0.033,-0.979,-0.38,-0.126,0.0,1.804,9.602,1354.8,997.6,11399.6,2615.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 -base-enclosure-windows-natural-ventilation-availability.xml,57.58,57.58,34.931,34.931,22.648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.374,3.491,0.625,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.21,10.478,9.234,0.617,0.0,0.0,0.0,0.0,2131.8,3247.6,22.926,17.491,0.0,3.544,3.633,0.511,7.436,0.628,-2.084,0.0,0.0,8.237,-0.06,4.804,0.0,0.728,0.0,4.905,-11.406,0.0,0.022,-0.405,-0.043,2.897,-0.012,10.01,0.0,0.0,-6.085,-0.056,-1.108,-6.92,-0.156,0.0,2.655,9.884,1354.8,997.6,11399.6,2615.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 -base-enclosure-windows-none.xml,58.698,58.698,33.993,33.993,24.706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.408,2.677,0.464,9.169,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,23.128,7.544,9.234,0.619,0.0,0.0,0.0,0.0,2115.7,2533.8,17.171,8.377,0.0,3.469,5.155,0.5,7.156,0.6,0.0,0.0,0.0,7.427,-0.044,4.781,0.0,0.723,0.0,4.848,-11.559,0.0,0.205,-0.377,-0.023,3.207,0.013,0.0,0.0,0.0,-5.213,-0.041,-1.104,0.0,-0.145,0.0,1.315,9.733,1354.8,997.6,11399.6,2615.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 -base-enclosure-windows-physical-properties.xml,66.242,66.242,36.026,36.026,30.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.498,4.27,0.816,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.299,13.823,9.234,0.616,0.0,0.0,0.0,0.0,2129.4,3597.9,27.633,20.655,0.0,3.482,3.624,0.51,7.387,0.628,3.269,0.0,0.0,8.281,-0.072,4.824,0.0,0.731,0.0,6.424,-11.477,0.0,0.023,-0.385,-0.041,2.869,-0.005,8.863,0.0,0.0,-6.152,-0.066,-1.08,-2.822,-0.154,0.0,3.201,9.812,1354.8,997.6,11399.6,2615.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 -base-enclosure-windows-shading.xml,58.962,58.962,33.574,33.574,25.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.419,2.34,0.368,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,0.0,23.777,6.129,9.234,0.622,0.0,0.0,0.0,0.0,2109.7,2535.8,22.973,11.187,0.0,3.548,3.66,0.514,7.436,0.632,0.017,0.0,0.0,8.375,-0.042,4.86,0.0,0.738,0.0,5.397,-11.695,0.0,0.35,-0.114,-0.002,3.579,0.055,-0.72,0.0,0.0,-4.607,-0.038,-0.917,-2.173,-0.119,0.0,1.411,9.6,1354.8,997.6,11399.6,2615.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 -base-enclosure-windows-storms.xml,59.439,59.439,35.336,35.336,24.104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.398,3.788,0.708,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.574,11.992,9.234,0.616,0.0,0.0,0.0,0.0,2131.7,3065.6,22.39,15.895,0.0,3.505,3.6,0.506,7.33,0.621,-0.378,0.0,0.0,7.934,-0.059,4.792,0.0,0.725,0.0,5.145,-11.433,0.0,0.027,-0.403,-0.043,2.859,-0.011,7.49,0.0,0.0,-6.044,-0.055,-1.137,-2.882,-0.159,0.0,2.67,9.856,1354.8,997.6,11399.6,2615.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 -base-foundation-ambient.xml,47.513,47.513,30.276,30.276,17.237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.284,4.61,0.898,9.353,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.147,15.206,9.342,0.606,0.0,0.0,0.0,2.0,1739.3,3397.3,20.36,21.102,0.0,3.835,3.82,0.0,0.0,0.743,-0.631,0.0,9.918,0.0,-0.403,2.064,0.0,0.788,0.0,3.878,-8.221,0.0,-0.044,-0.503,0.0,0.0,0.04,11.695,0.0,-3.613,0.0,-0.397,-0.407,-2.432,-0.157,0.0,3.599,7.616,1354.8,997.6,11399.6,2808.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 -base-foundation-basement-garage.xml,52.661,52.661,32.634,32.634,20.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33,4.297,0.828,9.402,0.0,0.0,3.406,0.142,0.277,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.755,14.046,9.365,0.613,0.0,0.0,0.0,0.0,1892.1,3252.9,21.311,18.501,0.0,3.646,4.699,0.512,5.434,0.696,-2.286,0.0,0.815,6.049,-0.038,3.246,0.0,0.734,0.0,4.494,-9.585,0.0,-0.032,-0.631,-0.056,1.94,-0.042,10.006,0.0,-0.117,-4.606,-0.034,-0.789,-2.992,-0.167,0.0,3.267,8.476,1354.8,997.6,11399.6,2849.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 -base-foundation-complex.xml,65.426,65.426,36.929,36.929,28.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.47,5.014,1.005,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.689,17.128,9.234,0.614,0.0,0.0,0.0,0.0,2144.8,3597.8,26.339,20.734,0.0,3.474,3.602,0.507,10.852,0.62,-2.234,0.0,0.0,9.357,-0.056,4.805,0.0,0.727,0.0,6.057,-11.412,0.0,-0.085,-0.472,-0.053,3.692,-0.029,9.831,0.0,0.0,-4.57,-0.051,-1.15,-3.164,-0.163,0.0,3.64,9.876,1354.8,997.6,11399.6,2615.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 -base-foundation-conditioned-basement-slab-insulation.xml,57.367,57.367,36.115,36.115,21.252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.351,4.457,0.868,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.901,14.758,9.234,0.613,0.0,0.0,0.0,0.0,2106.2,3390.0,22.652,18.717,0.0,3.571,3.653,0.514,7.734,0.632,-2.023,0.0,0.0,6.757,-0.06,4.811,0.0,0.729,0.0,4.637,-11.389,0.0,-0.071,-0.477,-0.054,2.527,-0.03,9.797,0.0,0.0,-5.343,-0.055,-1.18,-3.151,-0.167,0.0,3.234,9.898,1354.8,997.6,11399.6,2615.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 -base-foundation-conditioned-basement-wall-insulation.xml,56.08,56.08,35.361,35.361,20.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.342,3.859,0.721,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.402,12.193,9.234,0.614,0.0,0.0,0.0,0.0,2127.1,3204.7,22.433,17.162,0.0,3.585,3.664,0.516,5.126,0.635,-2.012,0.0,0.0,8.909,-0.062,4.821,0.0,0.732,0.0,4.542,-11.401,0.0,0.004,-0.421,-0.046,0.989,-0.017,9.936,0.0,0.0,-6.52,-0.057,-1.148,-2.901,-0.162,0.0,2.831,9.886,1354.8,997.6,11399.6,2615.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 -base-foundation-conditioned-crawlspace.xml,47.296,47.296,28.913,28.913,18.383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.303,3.477,0.64,9.362,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.203,10.691,9.342,0.615,0.0,0.0,0.0,0.0,1731.8,2628.7,15.843,10.853,0.0,3.697,3.592,0.505,5.089,0.619,-2.383,0.0,0.0,9.952,-0.04,3.486,0.0,0.73,0.0,0.0,-8.362,0.0,0.028,-0.47,-0.053,1.787,-0.028,9.996,0.0,0.0,-3.858,-0.036,-0.834,-2.93,-0.163,0.0,0.0,7.484,1354.8,997.6,11399.5,2808.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 -base-foundation-multiple.xml,42.707,42.707,29.675,29.675,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.215,4.193,0.806,9.33,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.199,13.442,9.285,0.693,0.0,0.0,0.0,0.0,1720.9,2656.1,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,-0.388,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-6.065,0.0,-0.098,-0.674,0.0,0.0,-0.018,11.518,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.648,5.447,1354.8,997.6,11399.5,2706.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 -base-foundation-slab.xml,39.927,39.927,29.271,29.271,10.656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.176,3.878,0.734,9.353,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.972,12.217,9.342,0.606,0.0,0.0,0.0,0.0,1712.9,2442.6,12.704,12.011,0.0,3.925,3.798,0.0,0.0,0.682,-1.657,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-8.264,0.0,-0.063,-0.572,0.0,0.0,-0.03,10.711,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.079,7.573,1354.8,997.6,11399.6,2808.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 -base-foundation-unconditioned-basement-above-grade.xml,43.907,43.907,29.819,29.819,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.232,4.281,0.826,9.348,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.189,13.831,9.285,0.712,0.0,0.0,0.0,0.0,1727.8,2758.5,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,-0.369,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-6.089,0.0,-0.081,-0.658,0.0,0.0,-0.013,11.49,0.0,-0.505,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.927,5.424,1354.8,997.6,11399.5,2706.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 -base-foundation-unconditioned-basement-assembly-r.xml,41.166,41.166,29.213,29.213,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.197,3.823,0.716,9.346,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.865,9.285,0.71,0.0,0.0,0.0,0.0,1718.9,2538.1,14.652,12.883,0.0,3.994,3.856,0.0,0.0,0.759,-0.27,0.0,4.456,0.0,-0.343,2.583,0.0,0.0,0.0,1.82,-6.035,0.0,-0.074,-0.626,0.0,0.0,0.009,11.654,0.0,-2.012,0.0,-0.339,-0.564,-2.512,0.0,0.0,1.122,5.478,1354.8,997.6,11399.6,2706.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 -base-foundation-unconditioned-basement-wall-insulation.xml,48.922,48.922,28.926,28.926,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33,3.537,0.647,9.28,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.715,10.743,9.285,0.64,0.0,0.0,0.0,0.0,1729.5,2469.6,16.597,11.56,0.0,3.723,3.619,0.0,0.0,0.633,-2.639,0.0,14.374,0.0,-0.047,2.46,0.0,0.0,0.0,2.599,-6.259,0.0,0.063,-0.441,0.0,0.0,-0.015,10.518,0.0,-2.768,0.0,-0.045,-0.521,-2.405,0.0,0.0,1.301,5.253,1354.8,997.6,11399.6,2706.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 -base-foundation-unconditioned-basement.xml,42.785,42.785,29.704,29.704,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.216,4.208,0.809,9.34,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.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,12.245,13.511,9.285,0.703,0.0,0.0,0.0,0.0,1723.7,2674.7,15.45,14.319,0.0,3.994,3.853,0.0,0.0,0.749,-0.43,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-6.063,0.0,-0.077,-0.629,0.0,0.0,-0.0,11.494,0.0,-0.672,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.722,5.45,1354.8,997.6,11399.6,2706.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 -base-foundation-unvented-crawlspace.xml,40.591,40.591,29.8,29.8,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.178,4.225,0.816,9.45,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.103,13.591,9.342,0.708,0.0,0.0,0.0,0.0,1707.3,2944.0,14.33,13.655,0.0,3.97,3.827,0.0,0.0,0.771,0.151,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-7.628,0.0,-0.196,-0.756,0.0,0.0,-0.002,11.776,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.27,7.603,1354.8,997.6,11399.6,2808.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 -base-foundation-vented-crawlspace.xml,42.539,42.539,29.748,29.748,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.211,4.099,0.783,9.523,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.975,12.966,9.342,0.786,0.0,0.0,0.0,0.0,1723.5,2655.0,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,-0.322,0.0,6.778,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-7.801,0.0,-0.068,-0.628,0.0,0.0,0.007,11.623,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.298,7.43,1354.8,997.6,11399.6,2808.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 -base-foundation-walkout-basement.xml,61.522,61.522,36.298,36.298,25.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.416,4.552,0.889,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.622,15.098,9.234,0.614,0.0,0.0,0.0,0.0,2141.7,3490.2,25.105,19.615,0.0,3.555,3.687,0.512,4.633,0.63,-1.592,0.0,0.0,10.509,-0.063,6.636,0.0,0.729,0.0,5.447,-11.405,0.0,-0.122,-0.526,-0.053,1.621,-0.028,9.958,0.0,0.0,-3.533,-0.059,-1.574,-3.433,-0.165,0.0,3.31,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-1-speed-backup-lockout-temperature.xml,45.515,45.515,45.515,45.515,0.0,0.0,0.0,0.0,0.0,0.0,9.249,0.585,0.931,3.303,1.008,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,12.58,9.234,0.613,0.0,0.0,145.0,0.0,10089.3,3135.0,37.461,15.129,0.0,3.61,3.669,0.515,7.689,0.622,-2.271,0.0,0.0,8.986,0.065,4.748,0.0,0.762,0.0,4.539,-11.407,0.0,0.014,-0.443,-0.05,2.793,-0.034,9.616,0.0,0.0,-6.37,0.055,-1.188,-3.298,-0.162,0.0,1.956,9.88,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-1-speed-cooling-only.xml,34.776,34.776,34.776,34.776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.288,1.003,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.523,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3242.9,0.0,14.995,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.013,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.191,-2.984,-0.166,0.0,1.946,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-1-speed-heating-only.xml,41.462,41.462,41.462,41.462,0.0,0.0,0.0,0.0,0.0,0.0,9.081,0.232,1.731,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.283,0.0,9.234,0.59,0.0,0.0,0.0,0.0,6170.7,0.0,25.169,0.0,0.0,3.495,3.637,0.512,7.414,0.629,-2.071,0.0,0.0,8.028,-0.067,4.806,0.0,0.728,0.0,6.225,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-1-speed-seer2-hspf2.xml,45.74,45.74,45.74,45.74,0.0,0.0,0.0,0.0,0.0,0.0,9.677,0.222,1.0,3.368,1.033,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.654,12.906,9.234,0.614,0.0,0.0,0.0,0.0,5856.4,3144.6,24.12,15.265,0.0,3.523,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.805,0.0,0.728,0.0,5.415,-11.406,0.0,0.001,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,1.996,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-1-speed.xml,45.681,45.681,45.681,45.681,0.0,0.0,0.0,0.0,0.0,0.0,9.602,0.222,1.0,3.383,1.033,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.654,12.906,9.234,0.614,0.0,0.0,0.0,0.0,5838.7,3151.3,24.12,15.265,0.0,3.523,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.805,0.0,0.728,0.0,5.415,-11.406,0.0,0.001,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,1.996,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-2-speed.xml,41.431,41.431,41.431,41.431,0.0,0.0,0.0,0.0,0.0,0.0,7.062,0.219,0.592,2.444,0.674,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.717,13.246,9.234,0.614,0.0,0.0,0.0,0.0,5173.5,2729.1,24.111,16.233,0.0,3.481,3.635,0.511,7.43,0.629,-2.08,0.0,0.0,8.195,-0.063,4.805,0.0,0.728,0.0,6.51,-11.406,0.0,-0.013,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,2.34,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler-switchover-temperature.xml,53.534,53.534,38.708,38.708,14.826,0.0,0.0,0.0,0.0,0.0,4.634,0.0,0.569,2.543,0.521,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.744,15.918,9.234,0.615,0.0,0.0,0.0,34.0,3367.3,2869.9,23.258,16.461,0.0,3.293,3.636,0.512,7.433,0.629,-2.101,0.0,0.0,8.214,-0.059,5.886,0.0,0.727,0.0,11.622,-11.419,0.0,-0.133,-0.447,-0.05,2.752,-0.022,9.855,0.0,0.0,-6.286,-0.055,-1.432,-3.037,-0.163,0.0,5.213,9.869,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-var-speed-backup-boiler.xml,45.798,45.798,42.2,42.2,3.598,0.0,0.0,0.0,0.0,0.0,7.636,0.0,1.06,2.543,0.521,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.927,15.917,9.234,0.615,0.0,0.0,0.0,34.0,3401.4,2869.9,24.382,16.461,0.0,3.242,3.637,0.512,7.435,0.629,-2.1,0.0,0.0,8.217,-0.059,5.887,0.0,0.727,0.0,12.844,-11.419,0.0,-0.133,-0.447,-0.05,2.752,-0.022,9.855,0.0,0.0,-6.286,-0.055,-1.432,-3.037,-0.163,0.0,5.212,9.869,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-var-speed-backup-furnace.xml,45.837,45.837,42.293,42.293,3.544,0.0,0.0,0.0,0.0,0.0,7.636,0.0,1.153,2.543,0.521,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.314,15.918,9.234,0.615,0.0,0.0,0.0,34.0,3411.3,2869.9,27.084,16.461,0.0,3.226,3.637,0.512,7.435,0.629,-2.1,0.0,0.0,8.218,-0.059,5.887,0.0,0.727,0.0,13.243,-11.419,0.0,-0.133,-0.447,-0.05,2.752,-0.022,9.855,0.0,0.0,-6.286,-0.055,-1.432,-3.037,-0.163,0.0,5.213,9.869,1354.8,997.6,11399.6,2615.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 -base-hvac-air-to-air-heat-pump-var-speed.xml,40.976,40.976,40.976,40.976,0.0,0.0,0.0,0.0,0.0,0.0,7.106,0.104,0.776,2.335,0.216,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.289,14.489,9.234,0.614,0.0,0.0,0.0,0.0,5180.2,2604.8,24.465,17.315,0.0,3.381,3.635,0.512,7.434,0.629,-2.078,0.0,0.0,8.2,-0.063,4.805,0.0,0.728,0.0,9.156,-11.406,0.0,-0.067,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.337,-0.059,-1.168,-3.072,-0.165,0.0,3.627,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-1-speed-cooling-only.xml,35.362,35.362,35.362,35.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.72,1.156,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.554,9.234,0.663,0.0,0.0,0.0,9.0,0.0,3452.9,0.0,17.182,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.102,-0.463,-0.051,2.705,-0.03,9.926,0.0,0.0,-6.914,-0.064,-1.191,-2.988,-0.166,0.0,4.017,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-1-speed-heating-only.xml,41.931,41.931,41.931,41.931,0.0,0.0,0.0,0.0,0.0,0.0,9.316,0.393,1.804,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.328,0.0,9.234,0.59,0.0,0.0,0.0,0.0,6382.7,0.0,25.456,0.0,0.0,3.456,3.638,0.512,7.415,0.629,-2.071,0.0,0.0,8.03,-0.067,4.806,0.0,0.728,0.0,7.297,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.982,47.982,47.982,47.982,0.0,0.0,0.0,0.0,0.0,0.0,9.672,1.952,1.068,3.705,1.146,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.192,14.403,9.234,0.614,0.0,0.0,0.0,0.0,6930.5,3469.0,25.173,18.407,0.0,3.386,3.635,0.512,7.433,0.629,-2.078,0.0,0.0,8.199,-0.063,4.805,0.0,0.728,0.0,9.052,-11.406,0.0,-0.063,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.338,-0.059,-1.168,-3.073,-0.165,0.0,3.519,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.077,46.077,46.077,46.077,0.0,0.0,0.0,0.0,0.0,0.0,9.78,0.283,1.093,3.432,1.049,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.432,13.128,9.234,0.614,0.0,0.0,0.0,0.0,5917.8,3211.0,24.274,15.803,0.0,3.493,3.635,0.511,7.43,0.629,-2.08,0.0,0.0,8.194,-0.063,4.805,0.0,0.728,0.0,6.215,-11.406,0.0,-0.009,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.071,-0.165,0.0,2.223,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml,49.428,49.428,49.428,49.428,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,17.836,5.462,4.848,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66.662,4.659,0.55,0.0,0.0,0.0,0.0,0.0,3523.8,0.0,21.456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.82,0.735,0.136,9.723,0.337,23.998,0.0,0.0,3.137,-0.01,-0.524,-2.899,-0.006,0.0,10.092,21.224,1354.8,997.6,8625.1,1979.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 -base-hvac-autosize-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.682,44.682,44.682,44.682,0.0,0.0,0.0,0.0,0.0,0.0,9.154,0.0,0.915,3.202,0.972,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.451,12.094,9.234,0.614,0.0,0.0,0.0,0.0,4985.2,2937.3,22.468,13.378,0.0,3.603,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.188,-0.063,4.805,0.0,0.728,0.0,3.149,-11.406,0.0,0.031,-0.458,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.342,-0.059,-1.168,-3.068,-0.165,0.0,1.169,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,43.405,43.405,43.405,43.405,0.0,0.0,0.0,0.0,0.0,0.0,6.87,1.952,0.749,2.645,0.75,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.106,14.756,9.234,0.614,0.0,0.0,0.0,0.0,6559.9,3080.0,25.033,18.874,0.0,3.349,3.636,0.512,7.435,0.629,-2.077,0.0,0.0,8.201,-0.063,4.805,0.0,0.728,0.0,9.997,-11.406,0.0,-0.077,-0.457,-0.051,2.722,-0.024,9.851,0.0,0.0,-6.337,-0.059,-1.168,-3.073,-0.165,0.0,3.874,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.857,41.857,41.857,41.857,0.0,0.0,0.0,0.0,0.0,0.0,7.103,0.432,0.721,2.476,0.686,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.891,13.486,9.234,0.614,0.0,0.0,0.0,0.0,5525.2,2778.2,24.251,16.866,0.0,3.436,3.635,0.512,7.432,0.629,-2.079,0.0,0.0,8.197,-0.063,4.805,0.0,0.728,0.0,7.718,-11.406,0.0,-0.023,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.07,-0.165,0.0,2.584,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.852,40.852,40.852,40.852,0.0,0.0,0.0,0.0,0.0,0.0,6.872,0.0,0.629,2.29,0.621,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.297,12.139,9.234,0.614,0.0,0.0,0.0,0.0,4412.1,2518.1,23.304,13.535,0.0,3.571,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.805,0.0,0.728,0.0,4.022,-11.406,0.0,0.03,-0.458,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.067,-0.165,0.0,1.213,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-boiler.xml,41.504,41.504,41.341,41.341,0.163,0.0,0.0,0.0,0.0,0.0,7.495,0.0,0.858,2.327,0.221,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.225,14.549,9.234,0.615,0.0,0.0,0.0,0.0,4479.4,2705.3,24.702,17.74,0.0,3.348,3.635,0.512,7.432,0.629,-2.094,0.0,0.0,8.21,-0.06,5.886,0.0,0.727,0.0,10.066,-11.417,0.0,-0.064,-0.447,-0.05,2.753,-0.022,9.865,0.0,0.0,-6.286,-0.056,-1.431,-3.027,-0.163,0.0,3.789,9.871,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-var-speed-backup-furnace.xml,41.539,41.539,41.347,41.347,0.192,0.0,0.0,0.0,0.0,0.0,7.496,0.0,0.863,2.327,0.221,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.263,14.548,9.234,0.615,0.0,0.0,0.0,0.0,4483.6,2705.4,27.146,17.742,0.0,3.346,3.635,0.511,7.432,0.629,-2.095,0.0,0.0,8.21,-0.06,5.886,0.0,0.727,0.0,10.107,-11.415,0.0,-0.065,-0.448,-0.05,2.753,-0.022,9.865,0.0,0.0,-6.287,-0.056,-1.432,-3.027,-0.163,0.0,3.788,9.873,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,42.082,42.082,42.082,42.082,0.0,0.0,0.0,0.0,0.0,0.0,7.414,0.615,0.905,2.401,0.308,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.273,15.297,9.234,0.614,0.0,0.0,0.0,0.0,6052.4,2887.0,25.147,18.56,0.0,3.305,3.637,0.512,7.436,0.629,-2.083,0.0,0.0,8.205,-0.062,4.805,0.0,0.728,0.0,11.199,-11.408,0.0,-0.106,-0.456,-0.051,2.724,-0.024,9.845,0.0,0.0,-6.333,-0.058,-1.167,-3.076,-0.165,0.0,4.459,9.88,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.085,41.085,41.085,41.085,0.0,0.0,0.0,0.0,0.0,0.0,7.175,0.101,0.815,2.334,0.221,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.89,14.652,9.234,0.614,0.0,0.0,0.0,0.0,5130.7,2640.4,24.601,17.576,0.0,3.359,3.636,0.512,7.435,0.629,-2.083,0.0,0.0,8.204,-0.062,4.805,0.0,0.728,0.0,9.775,-11.408,0.0,-0.073,-0.456,-0.051,2.723,-0.024,9.845,0.0,0.0,-6.334,-0.058,-1.167,-3.073,-0.165,0.0,3.794,9.88,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.714,40.714,40.714,40.714,0.0,0.0,0.0,0.0,0.0,0.0,7.007,0.0,0.733,2.337,0.196,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.942,13.648,9.234,0.614,0.0,0.0,0.0,0.0,4175.3,2563.1,23.752,16.302,0.0,3.433,3.635,0.512,7.432,0.629,-2.079,0.0,0.0,8.198,-0.063,4.805,0.0,0.728,0.0,7.771,-11.406,0.0,-0.029,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.07,-0.165,0.0,2.765,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-boiler-elec-only.xml,48.012,48.012,48.012,48.012,0.0,0.0,0.0,0.0,0.0,0.0,17.407,0.0,0.188,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,5872.6,0.0,16.351,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-boiler-gas-central-ac-1-speed.xml,55.151,55.151,36.448,36.448,18.703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.223,4.552,1.233,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.414,15.027,9.234,0.614,0.0,0.0,0.0,11.0,2094.0,3362.3,16.351,17.185,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,-0.094,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.34,-0.059,-1.168,-3.075,-0.165,0.0,4.16,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-boiler-gas-only.xml,49.151,49.151,30.638,30.638,18.513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.221,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2057.4,0.0,16.351,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-central-ac-only-1-speed.xml,36.135,36.135,36.135,36.135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.451,1.199,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.599,9.234,0.663,0.0,0.0,0.0,9.0,0.0,3452.9,0.0,17.174,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.105,-0.463,-0.051,2.705,-0.03,9.925,0.0,0.0,-6.914,-0.064,-1.191,-2.989,-0.166,0.0,4.065,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-central-ac-only-2-speed.xml,34.704,34.704,34.704,34.704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.432,0.787,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,9.234,0.663,0.0,0.0,0.0,4.0,0.0,3143.8,0.0,17.669,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.123,-0.463,-0.051,2.707,-0.03,9.927,0.0,0.0,-6.912,-0.064,-1.191,-2.988,-0.166,0.0,4.497,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-central-ac-only-var-speed.xml,33.89,33.89,33.89,33.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.939,0.466,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.506,9.234,0.663,0.0,0.0,0.0,9.0,0.0,2828.8,0.0,17.099,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.152,-0.463,-0.051,2.706,-0.03,9.926,0.0,0.0,-6.913,-0.064,-1.191,-2.993,-0.166,0.0,5.019,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-central-ac-plus-air-to-air-heat-pump-heating.xml,47.848,47.848,47.848,47.848,0.0,0.0,0.0,0.0,0.0,0.0,9.406,0.395,1.822,4.552,1.233,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.56,15.028,9.234,0.614,0.0,0.0,0.0,11.0,6432.7,3362.3,25.456,17.185,0.0,3.45,3.635,0.511,7.431,0.629,-2.08,0.0,0.0,8.196,-0.063,4.805,0.0,0.728,0.0,7.364,-11.406,0.0,-0.093,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.075,-0.165,0.0,4.16,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,53.869,53.869,42.273,42.273,11.596,0.0,0.0,0.0,0.0,0.0,5.844,0.0,1.137,3.705,1.146,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.527,14.403,9.234,0.614,0.0,0.0,8.0,0.0,3648.4,3469.0,25.176,18.407,0.0,3.369,3.635,0.512,7.433,0.629,-2.079,0.0,0.0,8.198,-0.063,4.804,0.0,0.728,0.0,9.41,-11.406,0.0,-0.063,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.338,-0.059,-1.168,-3.073,-0.165,0.0,3.519,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,52.638,52.638,41.795,41.795,10.843,0.0,0.0,0.0,0.0,0.0,5.474,0.0,1.4,3.432,1.049,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.559,13.128,9.234,0.614,0.0,0.0,0.0,0.0,3630.6,3211.0,24.267,15.803,0.0,3.442,3.635,0.512,7.432,0.629,-2.079,0.0,0.0,8.196,-0.063,4.805,0.0,0.728,0.0,7.383,-11.406,0.0,-0.009,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.071,-0.165,0.0,2.223,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,52.638,52.638,41.795,41.795,10.843,0.0,0.0,0.0,0.0,0.0,5.474,0.0,1.4,3.432,1.049,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.559,13.128,9.234,0.614,0.0,0.0,0.0,0.0,3630.6,3211.0,24.267,15.803,0.0,3.442,3.635,0.512,7.432,0.629,-2.079,0.0,0.0,8.196,-0.063,4.805,0.0,0.728,0.0,7.383,-11.406,0.0,-0.009,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.071,-0.165,0.0,2.223,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-dual-fuel-mini-split-heat-pump-ducted.xml,44.475,44.475,35.86,35.86,8.615,0.0,0.0,0.0,0.0,0.0,2.696,0.0,0.523,2.12,0.081,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.826,12.207,9.234,0.614,0.0,0.0,0.0,0.0,2789.4,2186.1,19.333,13.314,0.0,3.592,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.189,-0.063,4.805,0.0,0.728,0.0,3.538,-11.406,0.0,0.028,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.069,-0.165,0.0,1.295,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-elec-resistance-only.xml,46.676,46.676,46.676,46.676,0.0,0.0,0.0,0.0,0.0,0.0,16.259,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,5891.9,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-evap-cooler-furnace-gas.xml,56.047,56.047,32.051,32.051,23.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,0.988,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,10.933,9.234,0.614,0.0,0.0,0.0,0.0,2115.0,1920.4,24.945,11.042,0.0,3.488,3.634,0.511,7.43,0.629,-2.081,0.0,0.0,8.193,-0.063,4.804,0.0,0.728,0.0,6.485,-11.406,0.0,0.044,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.167,-3.062,-0.165,0.0,-0.001,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-floor-furnace-propane-only.xml,52.06,52.06,30.418,30.418,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2021.1,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-furnace-elec-only.xml,53.335,53.335,53.335,53.335,0.0,0.0,0.0,0.0,0.0,0.0,22.3,0.0,0.617,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.473,0.0,9.234,0.59,0.0,0.0,0.0,0.0,8554.1,0.0,24.945,0.0,0.0,3.493,3.637,0.512,7.414,0.629,-2.072,0.0,0.0,8.027,-0.067,4.806,0.0,0.728,0.0,6.423,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-furnace-gas-central-ac-2-speed.xml,58.916,58.916,35.259,35.259,23.657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.505,3.506,0.809,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,22.271,15.452,9.234,0.614,0.0,0.0,0.0,6.0,2138.1,2998.5,24.407,17.69,0.0,3.504,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,6.049,-11.406,0.0,-0.111,-0.457,-0.051,2.723,-0.024,9.851,0.0,0.0,-6.337,-0.059,-1.168,-3.075,-0.165,0.0,4.59,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-furnace-gas-central-ac-var-speed.xml,58.084,58.084,34.423,34.423,23.661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.506,2.994,0.483,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.276,15.921,9.234,0.614,0.0,0.0,0.0,10.0,2138.4,2777.5,24.414,17.126,0.0,3.503,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,6.054,-11.406,0.0,-0.14,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.338,-0.059,-1.168,-3.08,-0.165,0.0,5.104,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-furnace-gas-only.xml,54.789,54.789,31.035,31.035,23.754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.617,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.473,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2121.4,0.0,24.945,0.0,0.0,3.493,3.637,0.512,7.414,0.629,-2.072,0.0,0.0,8.027,-0.067,4.806,0.0,0.728,0.0,6.423,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-furnace-gas-room-ac.xml,60.065,60.065,36.069,36.069,23.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,5.006,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,10.932,9.234,0.614,0.0,0.0,0.0,0.0,2115.0,2940.3,24.945,10.57,0.0,3.488,3.634,0.511,7.43,0.629,-2.081,0.0,0.0,8.193,-0.063,4.804,0.0,0.728,0.0,6.485,-11.406,0.0,0.044,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,-0.001,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-ground-to-air-heat-pump-cooling-only.xml,34.302,34.302,34.302,34.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.984,0.833,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.068,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3045.2,0.0,18.266,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.081,-0.463,-0.051,2.706,-0.03,9.926,0.0,0.0,-6.913,-0.064,-1.191,-2.988,-0.166,0.0,3.524,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-ground-to-air-heat-pump-heating-only.xml,36.623,36.623,36.623,36.623,0.0,0.0,0.0,0.0,0.0,0.0,5.422,0.0,0.784,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.817,0.0,9.234,0.59,0.0,0.0,0.0,0.0,3394.5,0.0,23.38,0.0,0.0,3.554,3.637,0.512,7.412,0.629,-2.073,0.0,0.0,8.024,-0.067,4.806,0.0,0.728,0.0,4.718,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.818,39.818,39.818,39.818,0.0,0.0,0.0,0.0,0.0,0.0,5.416,0.0,0.67,2.534,0.758,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.733,13.374,9.234,0.614,0.0,0.0,0.0,0.0,3349.9,2536.9,22.974,15.784,0.0,3.56,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.466,-11.406,0.0,-0.02,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.072,-0.165,0.0,2.48,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.643,39.643,39.643,39.643,0.0,0.0,0.0,0.0,0.0,0.0,5.278,0.0,0.439,2.479,1.008,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.03,12.885,9.234,0.614,0.0,0.0,0.0,0.0,3237.5,2586.9,21.613,15.092,0.0,3.584,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.189,-0.063,4.804,0.0,0.728,0.0,3.746,-11.406,0.0,0.003,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.168,-3.069,-0.165,0.0,1.969,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.643,39.643,39.643,39.643,0.0,0.0,0.0,0.0,0.0,0.0,5.278,0.0,0.439,2.479,1.008,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.03,12.885,9.234,0.614,0.0,0.0,0.0,0.0,3237.5,2586.9,21.613,15.092,0.0,3.584,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.189,-0.063,4.804,0.0,0.728,0.0,3.746,-11.406,0.0,0.003,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.168,-3.069,-0.165,0.0,1.969,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-mini-split-air-conditioner-only-ducted.xml,33.021,33.021,33.021,33.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.422,0.114,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.55,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2838.4,0.0,13.544,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.017,-0.463,-0.051,2.704,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.191,-2.986,-0.166,0.0,1.999,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-mini-split-heat-pump-ducted-cooling-only.xml,33.021,33.021,33.021,33.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.422,0.114,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.55,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2838.4,0.0,13.544,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.017,-0.463,-0.051,2.704,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.191,-2.986,-0.166,0.0,1.999,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-mini-split-heat-pump-ducted-heating-only.xml,36.27,36.27,36.27,36.27,0.0,0.0,0.0,0.0,0.0,0.0,5.263,0.241,0.349,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.609,0.0,9.234,0.59,0.0,0.0,0.0,0.0,4591.8,0.0,19.395,0.0,0.0,3.597,3.637,0.512,7.411,0.629,-2.074,0.0,0.0,8.022,-0.067,4.806,0.0,0.728,0.0,3.482,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.431,39.431,39.431,39.431,0.0,0.0,0.0,0.0,0.0,0.0,5.537,0.828,0.347,2.188,0.092,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.355,12.628,9.234,0.614,0.0,0.0,0.0,0.0,5261.0,2297.8,19.593,13.538,0.0,3.575,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.081,-11.406,0.0,0.011,-0.458,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.168,-3.071,-0.165,0.0,1.73,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.515,38.515,38.515,38.515,0.0,0.0,0.0,0.0,0.0,0.0,5.313,0.249,0.312,2.12,0.081,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.754,12.207,9.234,0.614,0.0,0.0,0.0,0.0,4586.5,2186.1,19.334,13.314,0.0,3.595,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.189,-0.063,4.805,0.0,0.728,0.0,3.463,-11.406,0.0,0.028,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.069,-0.165,0.0,1.295,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,37.997,37.997,37.997,37.997,0.0,0.0,0.0,0.0,0.0,0.0,4.997,0.0,0.293,2.191,0.077,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.74,11.555,9.234,0.614,0.0,0.0,0.0,0.0,3551.4,2217.3,18.951,12.193,0.0,3.628,3.634,0.511,7.426,0.628,-2.083,0.0,0.0,8.187,-0.063,4.805,0.0,0.728,0.0,2.422,-11.406,0.0,0.043,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.342,-0.059,-1.167,-3.066,-0.165,0.0,0.628,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-mini-split-heat-pump-ductless-backup-stove.xml,37.852,37.852,37.499,37.499,0.0,0.353,0.0,0.0,0.0,0.0,4.899,0.0,0.114,2.018,0.028,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.468,10.835,9.234,0.615,0.0,0.0,0.0,0.0,3293.5,2166.0,16.914,11.202,0.0,3.733,3.631,0.511,7.42,0.628,-2.098,0.0,0.0,8.187,-0.061,5.885,0.0,0.727,0.0,0.0,-11.413,0.0,0.051,-0.449,-0.05,2.75,-0.022,9.869,0.0,0.0,-6.294,-0.057,-1.432,-3.016,-0.163,0.0,0.0,9.875,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-ptac-with-heating.xml,50.843,50.843,50.843,50.843,0.0,0.0,0.0,0.0,0.0,0.0,16.426,0.0,0.0,3.977,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.413,10.931,9.234,0.614,0.0,0.0,0.0,0.0,5891.9,2658.6,16.358,10.57,0.0,3.733,3.631,0.511,7.422,0.628,-2.08,0.0,0.0,8.179,-0.064,4.804,0.0,0.728,0.0,0.0,-11.404,0.0,0.041,-0.458,-0.051,2.719,-0.025,9.856,0.0,0.0,-6.344,-0.061,-1.168,-3.062,-0.165,0.0,0.0,9.884,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-ptac.xml,34.357,34.357,34.357,34.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.872,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.595,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2836.5,0.0,10.548,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-pthp-sizing-methodology-acca.xml,41.472,41.472,41.472,41.472,0.0,0.0,0.0,0.0,0.0,0.0,6.237,0.991,0.0,3.804,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.414,10.933,9.234,0.614,0.0,0.0,0.0,0.0,4747.5,2618.2,16.358,11.04,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,0.042,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,0.0,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-pthp-sizing-methodology-hers.xml,41.573,41.573,41.573,41.573,0.0,0.0,0.0,0.0,0.0,0.0,7.013,0.122,0.0,3.998,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.414,10.933,9.234,0.614,0.0,0.0,0.0,0.0,4041.3,2700.3,16.358,11.04,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,0.042,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,0.0,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-pthp-sizing-methodology-maxload.xml,42.088,42.088,42.088,42.088,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.0,0.0,4.154,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.414,10.933,9.234,0.614,0.0,0.0,0.0,0.0,4007.8,2796.7,16.358,11.04,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,0.042,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,0.0,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-room-ac-only.xml,35.359,35.359,35.359,35.359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.874,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.595,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3160.1,0.0,10.548,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-stove-oil-only.xml,52.035,52.035,30.517,30.517,0.0,21.518,0.0,0.0,0.0,0.0,0.0,0.0,0.099,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2037.2,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize-wall-furnace-elec-only.xml,47.008,47.008,47.008,47.008,0.0,0.0,0.0,0.0,0.0,0.0,16.59,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,5985.7,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.015,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-autosize.xml,59.981,59.981,36.299,36.299,23.682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.513,4.469,0.877,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.302,14.946,9.234,0.614,0.0,0.0,0.0,7.0,2140.0,3227.7,24.447,17.376,0.0,3.503,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,6.081,-11.406,0.0,-0.089,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.338,-0.059,-1.168,-3.075,-0.165,0.0,4.077,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-boiler-coal-only.xml,49.865,49.865,30.657,30.657,0.0,0.0,0.0,0.0,0.0,19.208,0.0,0.0,0.24,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2060.4,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-boiler-elec-only.xml,48.676,48.676,48.676,48.676,0.0,0.0,0.0,0.0,0.0,0.0,18.134,0.0,0.124,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,6009.4,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-boiler-gas-central-ac-1-speed.xml,55.614,55.614,36.119,36.119,19.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.148,4.359,1.172,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,16.414,14.073,9.234,0.614,0.0,0.0,0.0,0.0,2084.4,3471.5,16.366,18.051,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,-0.051,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.183,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-boiler-gas-only.xml,49.86,49.86,30.563,30.563,19.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.146,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2045.1,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-boiler-oil-only.xml,49.865,49.865,30.657,30.657,0.0,19.208,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2060.4,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-boiler-propane-only.xml,49.859,49.859,30.542,30.542,0.0,0.0,19.317,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2041.5,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-boiler-wood-only.xml,49.859,49.859,30.542,30.542,0.0,0.0,0.0,19.317,0.0,0.0,0.0,0.0,0.124,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2041.5,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-central-ac-only-1-speed-seer2.xml,35.868,35.868,35.868,35.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.245,1.139,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.662,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3481.2,0.0,17.736,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.062,-0.463,-0.051,2.705,-0.03,9.926,0.0,0.0,-6.914,-0.064,-1.191,-2.986,-0.166,0.0,3.107,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-central-ac-only-1-speed.xml,35.884,35.884,35.884,35.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.26,1.139,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.662,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3487.7,0.0,17.736,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.062,-0.463,-0.051,2.705,-0.03,9.926,0.0,0.0,-6.914,-0.064,-1.191,-2.986,-0.166,0.0,3.107,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-central-ac-only-2-speed.xml,34.51,34.51,34.51,34.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.272,0.754,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3008.8,0.0,18.498,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.084,-0.463,-0.051,2.706,-0.03,9.926,0.0,0.0,-6.913,-0.064,-1.19,-2.986,-0.166,0.0,3.641,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-central-ac-only-var-speed.xml,33.631,33.631,33.631,33.631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.836,0.31,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.949,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2786.6,0.0,18.401,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.124,-0.463,-0.051,2.707,-0.03,9.927,0.0,0.0,-6.912,-0.064,-1.191,-2.989,-0.166,0.0,4.446,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-central-ac-plus-air-to-air-heat-pump-heating.xml,47.122,47.122,47.122,47.122,0.0,0.0,0.0,0.0,0.0,0.0,9.17,0.233,1.748,4.36,1.172,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.506,14.073,9.234,0.614,0.0,0.0,0.0,0.0,6220.7,3471.5,25.169,18.052,0.0,3.49,3.635,0.511,7.43,0.629,-2.08,0.0,0.0,8.194,-0.063,4.805,0.0,0.728,0.0,6.282,-11.406,0.0,-0.049,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.073,-0.165,0.0,3.183,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-dse.xml,58.712,58.712,36.787,36.787,21.925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,5.051,0.934,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,16.413,10.933,9.234,0.614,0.0,0.0,0.0,0.0,2102.4,2602.0,16.358,11.04,0.0,3.733,3.631,0.511,7.422,0.628,-2.08,0.0,0.0,8.179,-0.064,4.804,0.0,0.728,0.0,0.0,-11.404,0.0,0.041,-0.458,-0.051,2.72,-0.025,9.856,0.0,0.0,-6.344,-0.061,-1.168,-3.062,-0.165,0.0,0.0,9.884,1354.8,997.6,11399.6,2615.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 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed-electric.xml,51.762,51.762,51.762,51.762,0.0,0.0,0.0,0.0,0.0,0.0,5.359,10.129,1.418,3.383,1.033,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.054,12.907,9.234,0.614,0.0,0.0,0.0,0.0,8215.5,3151.3,24.108,15.265,0.0,3.461,3.635,0.511,7.431,0.629,-2.08,0.0,0.0,8.196,-0.063,4.805,0.0,0.728,0.0,6.863,-11.406,0.0,0.001,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,1.996,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-dual-fuel-air-to-air-heat-pump-1-speed.xml,52.295,52.295,41.633,41.633,10.662,0.0,0.0,0.0,0.0,0.0,5.359,0.0,1.418,3.383,1.033,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.054,12.907,9.234,0.614,0.0,0.0,0.0,0.0,3608.4,3151.3,24.108,15.265,0.0,3.461,3.635,0.511,7.431,0.629,-2.08,0.0,0.0,8.196,-0.063,4.805,0.0,0.728,0.0,6.863,-11.406,0.0,0.001,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,1.996,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-dual-fuel-air-to-air-heat-pump-2-speed.xml,49.34,49.34,38.393,38.393,10.947,0.0,0.0,0.0,0.0,0.0,3.866,0.0,0.969,2.444,0.674,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.585,13.246,9.234,0.614,0.0,0.0,0.0,0.0,3011.3,2729.1,24.107,16.233,0.0,3.441,3.635,0.512,7.432,0.629,-2.079,0.0,0.0,8.197,-0.063,4.805,0.0,0.728,0.0,7.411,-11.406,0.0,-0.013,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,2.34,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-dual-fuel-air-to-air-heat-pump-var-speed.xml,49.123,49.123,38.369,38.369,10.754,0.0,0.0,0.0,0.0,0.0,3.856,0.0,1.522,2.336,0.216,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.72,14.49,9.234,0.614,0.0,0.0,0.0,0.0,3001.4,2604.8,24.46,17.315,0.0,3.362,3.636,0.512,7.435,0.629,-2.077,0.0,0.0,8.201,-0.063,4.805,0.0,0.728,0.0,9.602,-11.406,0.0,-0.067,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.337,-0.059,-1.168,-3.072,-0.165,0.0,3.629,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-dual-fuel-mini-split-heat-pump-ducted.xml,44.469,44.469,36.096,36.096,8.373,0.0,0.0,0.0,0.0,0.0,2.735,0.0,0.684,2.158,0.079,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.483,11.843,9.234,0.614,0.0,0.0,0.0,0.0,2659.9,2203.3,19.151,12.77,0.0,3.603,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.188,-0.063,4.805,0.0,0.728,0.0,3.187,-11.406,0.0,0.038,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.067,-0.165,0.0,0.922,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-ducts-area-fractions.xml,93.311,93.311,46.514,46.514,46.797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.61,7.833,1.643,9.005,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.682,28.472,9.146,0.612,0.0,0.0,5.0,44.0,2577.6,5002.0,48.978,34.996,0.0,3.195,7.86,1.068,7.829,0.664,-3.777,0.0,0.0,8.936,-0.117,11.128,0.0,0.745,0.0,20.087,-14.504,0.0,-0.363,-1.017,-0.098,2.689,-0.02,20.274,0.0,0.0,-6.437,-0.105,-2.467,-6.252,-0.161,0.0,10.597,12.224,1354.8,997.6,11399.6,2460.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-hvac-ducts-area-multipliers.xml,57.712,57.712,35.783,35.783,21.928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.181,0.801,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.541,13.657,9.234,0.614,0.0,0.0,0.0,0.0,2108.4,3225.2,22.252,17.336,0.0,3.567,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.268,-11.406,0.0,-0.031,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.071,-0.165,0.0,2.755,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-ducts-leakage-cfm50.xml,57.91,57.91,35.799,35.799,22.111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.365,4.191,0.803,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.721,13.798,9.234,0.614,0.0,0.0,0.0,0.0,2108.7,3270.0,22.339,17.768,0.0,3.556,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.191,-0.063,4.805,0.0,0.728,0.0,4.474,-11.406,0.0,-0.035,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.071,-0.165,0.0,2.953,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-ducts-leakage-percent.xml,59.711,59.711,36.106,36.106,23.605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.389,4.42,0.857,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.112,14.632,9.234,0.614,0.0,0.0,0.0,0.0,2111.8,3467.9,24.142,19.48,0.0,3.509,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.891,-11.406,0.0,-0.074,-0.457,-0.051,2.722,-0.025,9.851,0.0,0.0,-6.338,-0.059,-1.168,-3.074,-0.165,0.0,3.765,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-elec-resistance-only.xml,46.676,46.676,46.676,46.676,0.0,0.0,0.0,0.0,0.0,0.0,16.259,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,5891.9,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-evap-cooler-furnace-gas.xml,55.042,55.042,31.858,31.858,23.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.815,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.932,10.933,9.234,0.614,0.0,0.0,0.0,0.0,2110.3,1858.6,23.937,11.049,0.0,3.517,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.695,-11.406,0.0,0.044,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.167,-3.062,-0.165,0.0,-0.001,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-evap-cooler-only-ducted.xml,31.362,31.362,31.362,31.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.876,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.52,9.234,0.663,0.0,0.0,0.0,0.0,0.0,1963.0,0.0,14.956,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.815,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.022,-0.464,-0.051,2.703,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.19,-2.98,-0.166,0.0,0.911,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-evap-cooler-only.xml,31.278,31.278,31.278,31.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,1891.1,0.0,10.847,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-fireplace-wood-only.xml,52.06,52.06,30.418,30.418,0.0,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2021.1,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.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 -base-hvac-fixed-heater-gas-only.xml,46.676,46.676,30.417,30.417,16.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2021.1,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.015,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-floor-furnace-propane-only.xml,52.06,52.06,30.418,30.418,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2021.1,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-coal-only.xml,53.964,53.964,31.014,31.014,0.0,0.0,0.0,0.0,0.0,22.951,0.0,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2118.3,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-elec-central-ac-1-speed.xml,56.68,56.68,56.68,56.68,0.0,0.0,0.0,0.0,0.0,0.0,20.771,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,7868.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-elec-only.xml,52.559,52.559,52.559,52.559,0.0,0.0,0.0,0.0,0.0,0.0,21.545,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,8252.1,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-gas-central-ac-2-speed.xml,57.453,57.453,34.876,34.876,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,3.326,0.738,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,14.546,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3038.5,22.926,18.736,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.069,-0.457,-0.051,2.722,-0.024,9.851,0.0,0.0,-6.338,-0.059,-1.168,-3.072,-0.165,0.0,3.661,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-gas-central-ac-var-speed.xml,56.598,56.598,34.022,34.022,22.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,2.888,0.321,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.143,15.355,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,2776.5,22.926,18.649,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.111,-0.457,-0.051,2.723,-0.024,9.851,0.0,0.0,-6.337,-0.059,-1.168,-3.076,-0.165,0.0,4.519,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-gas-only-detailed-setpoints.xml,34.885,34.885,30.564,30.564,4.321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.112,0.0,0.0,9.176,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,4.079,0.0,9.234,0.627,0.0,0.0,0.0,0.0,2067.9,0.0,16.734,0.0,0.0,2.942,2.865,0.402,4.919,0.433,-4.314,0.0,0.0,2.716,-0.177,3.564,0.0,0.584,0.0,1.089,-11.277,0.0,-0.408,-0.928,-0.118,1.472,-0.149,8.489,0.0,0.0,-8.011,-0.056,-1.549,-7.65,-0.26,0.0,0.0,10.023,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-gas-only.xml,53.964,53.964,31.014,31.014,22.951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2118.3,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-gas-room-ac.xml,59.574,59.574,36.39,36.39,23.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.603,5.348,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.932,10.934,9.234,0.614,0.0,0.0,0.0,0.0,2110.3,3192.3,23.937,11.04,0.0,3.517,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.695,-11.406,0.0,0.044,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.167,-3.062,-0.165,0.0,-0.001,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-oil-only.xml,53.964,53.964,31.014,31.014,0.0,22.951,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2118.3,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-propane-only.xml,53.964,53.964,31.014,31.014,0.0,0.0,22.951,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2118.3,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-wood-only.xml,53.964,53.964,31.014,31.014,0.0,0.0,0.0,22.951,0.0,0.0,0.0,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2118.3,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-furnace-x3-dse.xml,58.709,58.709,36.817,36.817,21.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.392,5.051,0.934,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.413,10.933,9.234,0.614,0.0,0.0,0.0,0.0,2105.4,2602.0,16.358,11.04,0.0,3.733,3.631,0.511,7.422,0.628,-2.08,0.0,0.0,8.179,-0.064,4.804,0.0,0.728,0.0,0.0,-11.404,0.0,0.041,-0.458,-0.051,2.72,-0.025,9.856,0.0,0.0,-6.344,-0.061,-1.168,-3.062,-0.165,0.0,0.0,9.884,1354.8,997.6,11399.6,2615.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 -base-hvac-ground-to-air-heat-pump-cooling-only.xml,33.791,33.791,33.791,33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.578,0.727,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.647,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2653.6,0.0,14.847,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.02,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.915,-0.064,-1.191,-2.985,-0.166,0.0,2.078,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-ground-to-air-heat-pump-heating-only.xml,36.506,36.506,36.506,36.506,0.0,0.0,0.0,0.0,0.0,0.0,5.335,0.0,0.754,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.11,0.0,9.234,0.59,0.0,0.0,0.0,0.0,3347.0,0.0,22.147,0.0,0.0,3.579,3.637,0.512,7.412,0.629,-2.073,0.0,0.0,8.023,-0.067,4.806,0.0,0.728,0.0,3.992,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-ground-to-air-heat-pump.xml,39.618,39.618,39.618,39.618,0.0,0.0,0.0,0.0,0.0,0.0,5.271,0.0,0.437,2.476,0.994,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.721,12.71,9.234,0.614,0.0,0.0,0.0,0.0,3227.0,2570.9,21.085,14.694,0.0,3.595,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.189,-0.063,4.804,0.0,0.728,0.0,3.429,-11.406,0.0,0.009,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.168,-3.069,-0.165,0.0,1.791,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-air-to-air-heat-pump-1-speed.xml,48.798,48.798,48.798,48.798,0.0,0.0,0.0,0.0,0.0,0.0,12.317,0.522,0.7,4.126,0.693,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.1,13.44,9.234,0.614,0.0,0.0,0.0,0.0,6598.8,3396.2,24.63,16.348,0.0,3.468,3.635,0.511,7.431,0.629,-2.08,0.0,0.0,8.195,-0.063,4.805,0.0,0.728,0.0,6.901,-11.406,0.0,-0.023,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.072,-0.165,0.0,2.545,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-air-to-air-heat-pump-2-speed.xml,43.933,43.933,43.933,43.933,0.0,0.0,0.0,0.0,0.0,0.0,8.849,0.478,0.582,2.979,0.605,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.387,13.863,9.234,0.614,0.0,0.0,0.0,0.0,5871.9,3044.3,24.626,17.672,0.0,3.417,3.635,0.512,7.433,0.629,-2.079,0.0,0.0,8.198,-0.063,4.805,0.0,0.728,0.0,8.228,-11.406,0.0,-0.038,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,2.972,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-air-to-air-heat-pump-var-speed.xml,43.265,43.265,43.265,43.265,0.0,0.0,0.0,0.0,0.0,0.0,8.753,0.276,0.734,2.842,0.221,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.508,15.053,9.234,0.614,0.0,0.0,0.0,0.0,5843.0,2905.6,24.947,18.005,0.0,3.335,3.637,0.512,7.436,0.629,-2.083,0.0,0.0,8.204,-0.062,4.805,0.0,0.728,0.0,10.411,-11.408,0.0,-0.094,-0.456,-0.051,2.723,-0.024,9.845,0.0,0.0,-6.333,-0.058,-1.167,-3.075,-0.165,0.0,4.213,9.88,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-furnace-gas-central-ac-1-speed.xml,60.459,60.459,36.691,36.691,23.768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.285,5.202,0.764,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.15,14.884,9.234,0.614,0.0,0.0,0.0,2.0,2098.7,3477.3,23.965,18.153,0.0,3.509,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.928,-11.406,0.0,-0.087,-0.457,-0.051,2.722,-0.025,9.851,0.0,0.0,-6.338,-0.059,-1.168,-3.075,-0.165,0.0,4.017,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-furnace-gas-central-ac-2-speed.xml,59.157,59.157,35.384,35.384,23.773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.286,3.978,0.68,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.155,15.423,9.234,0.614,0.0,0.0,0.0,2.0,2098.8,3160.0,23.971,18.409,0.0,3.509,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.934,-11.406,0.0,-0.11,-0.457,-0.051,2.723,-0.024,9.851,0.0,0.0,-6.337,-0.059,-1.168,-3.075,-0.165,0.0,4.563,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-furnace-gas-central-ac-var-speed.xml,58.357,58.357,34.584,34.584,23.773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.286,3.455,0.403,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.155,16.03,9.234,0.614,0.0,0.0,0.0,5.0,2098.8,2960.2,23.971,17.791,0.0,3.509,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.934,-11.406,0.0,-0.145,-0.457,-0.051,2.723,-0.024,9.851,0.0,0.0,-6.336,-0.059,-1.168,-3.08,-0.165,0.0,5.217,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-furnace-gas-only.xml,55.34,55.34,30.881,30.881,24.459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.464,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.963,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2096.2,0.0,25.245,0.0,0.0,3.475,3.637,0.512,7.414,0.629,-2.072,0.0,0.0,8.028,-0.067,4.806,0.0,0.728,0.0,6.93,-11.406,0.0,-0.465,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-ground-to-air-heat-pump.xml,41.46,41.46,41.46,41.46,0.0,0.0,0.0,0.0,0.0,0.0,6.71,0.0,0.445,2.934,0.931,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.67,13.182,9.234,0.614,0.0,0.0,0.0,0.0,3457.2,2720.4,22.045,15.716,0.0,3.562,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.189,-0.063,4.804,0.0,0.728,0.0,4.405,-11.406,0.0,-0.011,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,2.275,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-mini-split-air-conditioner-only-ducted.xml,33.235,33.235,33.235,33.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.585,0.165,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.286,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2599.0,0.0,13.362,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.004,-0.463,-0.051,2.704,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.191,-2.985,-0.166,0.0,1.724,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-install-quality-mini-split-heat-pump-ducted.xml,40.252,40.252,40.252,40.252,0.0,0.0,0.0,0.0,0.0,0.0,6.511,0.029,0.506,2.614,0.152,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.581,12.116,9.234,0.614,0.0,0.0,0.0,0.0,4280.5,2331.3,19.311,13.289,0.0,3.6,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.188,-0.063,4.805,0.0,0.728,0.0,3.286,-11.406,0.0,0.03,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.069,-0.165,0.0,1.203,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-mini-split-air-conditioner-only-ducted.xml,32.622,32.622,32.622,32.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.057,0.08,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.947,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2279.6,0.0,13.15,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.009,-0.464,-0.051,2.703,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.191,-2.983,-0.166,0.0,1.373,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-mini-split-air-conditioner-only-ductless.xml,32.497,32.497,32.497,32.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.984,0.027,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2155.7,0.0,10.838,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.66,32.66,32.66,32.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.098,0.076,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.485,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2252.5,0.0,12.537,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.023,-0.464,-0.051,2.703,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.19,-2.981,-0.166,0.0,0.898,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-mini-split-heat-pump-ducted-heating-only.xml,35.84,35.84,35.84,35.84,0.0,0.0,0.0,0.0,0.0,0.0,5.119,0.008,0.296,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.984,0.0,9.234,0.59,0.0,0.0,0.0,0.0,3748.9,0.0,19.215,0.0,0.0,3.618,3.636,0.512,7.411,0.629,-2.074,0.0,0.0,8.022,-0.067,4.806,0.0,0.728,0.0,2.84,-11.406,0.0,-0.466,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-mini-split-heat-pump-ducted.xml,38.178,38.178,38.178,38.178,0.0,0.0,0.0,0.0,0.0,0.0,5.202,0.009,0.291,2.158,0.079,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.346,11.843,9.234,0.614,0.0,0.0,0.0,0.0,3731.2,2203.3,19.153,12.77,0.0,3.608,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.188,-0.063,4.805,0.0,0.728,0.0,3.044,-11.406,0.0,0.038,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.067,-0.165,0.0,0.922,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-mini-split-heat-pump-ductless-backup-stove.xml,38.35,38.35,37.641,37.641,0.0,0.709,0.0,0.0,0.0,0.0,5.087,0.0,0.114,1.972,0.029,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.468,10.835,9.234,0.615,0.0,0.0,0.0,0.0,3135.3,2250.3,16.914,11.203,0.0,3.733,3.631,0.511,7.42,0.628,-2.098,0.0,0.0,8.187,-0.061,5.885,0.0,0.727,0.0,0.0,-11.413,0.0,0.051,-0.449,-0.05,2.75,-0.022,9.869,0.0,0.0,-6.294,-0.057,-1.432,-3.016,-0.163,0.0,0.0,9.875,1354.8,997.6,11399.6,2615.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 -base-hvac-mini-split-heat-pump-ductless.xml,37.334,37.334,37.334,37.334,0.0,0.0,0.0,0.0,0.0,0.0,4.621,0.0,0.096,2.148,0.028,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.415,10.933,9.234,0.614,0.0,0.0,0.0,0.0,3441.7,2165.1,16.357,11.04,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,0.042,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,0.0,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-multiple.xml,64.759,64.759,50.456,50.456,7.091,3.566,3.645,0.0,0.0,0.0,12.806,0.191,0.86,5.615,0.544,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.394,19.142,9.234,0.615,0.0,0.0,0.0,4.0,6399.6,4121.3,37.654,22.678,0.0,3.42,3.635,0.511,7.429,0.629,-2.104,0.0,0.0,8.207,-0.059,5.886,0.0,0.727,0.0,15.179,-11.419,0.0,-0.127,-0.447,-0.05,2.753,-0.022,9.857,0.0,0.0,-6.285,-0.055,-1.432,-3.056,-0.163,0.0,8.416,9.869,1354.8,997.6,11399.6,2615.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 -base-hvac-none.xml,19.737,19.737,19.737,19.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.607,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.484,-4.279,0.0,0.0,-0.959,11.061,0.0,0.0,-8.682,-0.056,-2.251,-4.738,-1.085,0.0,0.0,15.558,1354.8,997.6,8540.7,2104.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 -base-hvac-portable-heater-gas-only.xml,46.676,46.676,30.417,30.417,16.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2021.1,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.015,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-hvac-ptac-with-heating.xml,51.114,51.114,51.114,51.114,0.0,0.0,0.0,0.0,0.0,0.0,16.426,0.0,0.0,4.248,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.413,10.933,9.234,0.614,0.0,0.0,0.0,0.0,5891.9,2789.4,16.358,11.04,0.0,3.733,3.631,0.511,7.422,0.628,-2.08,0.0,0.0,8.179,-0.064,4.804,0.0,0.728,0.0,0.0,-11.404,0.0,0.041,-0.458,-0.051,2.72,-0.025,9.856,0.0,0.0,-6.344,-0.061,-1.168,-3.062,-0.165,0.0,0.0,9.884,1354.8,997.6,11399.6,2615.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 -base-hvac-ptac.xml,34.618,34.618,34.618,34.618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.133,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2959.7,0.0,10.838,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-pthp.xml,41.904,41.904,41.904,41.904,0.0,0.0,0.0,0.0,0.0,0.0,7.359,0.001,0.0,4.105,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.414,10.933,9.234,0.614,0.0,0.0,0.0,0.0,3931.4,2765.9,16.358,11.04,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,0.042,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,0.0,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-room-ac-only-33percent.xml,32.297,32.297,32.297,32.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.812,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2193.9,0.0,10.838,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-room-ac-only-ceer.xml,35.698,35.698,35.698,35.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.213,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3318.5,0.0,10.838,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-room-ac-only-detailed-setpoints.xml,34.453,34.453,34.453,34.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.975,0.0,9.202,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.824,9.234,0.655,0.0,0.0,0.0,0.0,0.0,3002.0,0.0,9.795,0.0,2.657,2.516,0.351,4.215,0.345,-5.376,0.0,0.0,2.771,-0.138,3.071,0.0,0.521,0.0,0.0,-11.292,0.0,-0.136,-0.639,-0.076,2.224,-0.074,9.392,0.0,0.0,-7.648,-0.066,-1.333,-3.356,-0.199,0.0,0.0,10.036,1354.8,997.6,11399.5,2615.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 -base-hvac-room-ac-only.xml,35.688,35.688,35.688,35.688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.203,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3315.2,0.0,10.838,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.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 -base-hvac-seasons.xml,58.275,58.275,35.866,35.866,22.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.37,4.241,0.815,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.987,13.839,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3364.9,22.926,17.854,0.0,3.504,3.596,0.506,7.43,0.614,-2.146,0.0,0.0,8.12,-0.033,4.751,0.0,0.721,0.0,4.858,-11.267,0.0,-0.086,-0.493,-0.056,2.729,-0.038,9.793,0.0,0.0,-6.401,-0.03,-1.218,-3.085,-0.172,0.0,3.067,10.021,1354.8,997.6,11399.6,2615.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 -base-hvac-setpoints-daily-schedules.xml,57.278,57.278,35.302,35.302,21.976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.363,3.777,0.722,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.203,11.997,9.234,0.615,0.0,0.0,103.0,51.0,2147.7,3586.5,34.942,20.092,0.0,3.505,3.568,0.501,7.424,0.605,-2.357,0.0,0.0,8.552,0.008,4.647,0.0,0.726,0.0,4.547,-11.357,0.0,-0.062,-0.493,-0.056,2.658,-0.041,9.671,0.0,0.0,-6.651,-0.001,-1.219,-3.37,-0.173,0.0,2.387,9.932,1354.8,997.6,11399.6,2615.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 -base-hvac-setpoints-daily-setbacks.xml,56.678,56.678,35.454,35.454,21.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35,3.913,0.75,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.786,12.612,9.234,0.616,0.0,0.0,0.0,8.0,2114.7,3597.9,25.225,20.656,0.0,3.496,3.55,0.499,7.26,0.602,-2.442,0.0,0.0,8.073,-0.022,4.635,0.0,0.723,0.0,4.44,-11.385,0.0,-0.046,-0.489,-0.056,2.612,-0.038,9.647,0.0,0.0,-6.632,-0.023,-1.201,-3.32,-0.176,0.0,2.533,9.905,1354.8,997.6,11399.6,2615.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 -base-hvac-setpoints.xml,41.483,41.483,34.09,34.09,7.393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.122,2.987,0.511,9.194,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.918,8.766,9.234,0.646,0.0,0.0,0.0,0.0,2091.3,3151.2,17.325,15.092,0.0,2.829,2.763,0.386,5.247,0.406,-4.647,0.0,0.0,5.334,-0.06,3.457,0.0,0.568,0.0,1.58,-11.281,0.0,-0.112,-0.563,-0.066,2.409,-0.056,9.616,0.0,0.0,-7.562,-0.06,-1.257,-5.076,-0.187,0.0,2.03,10.039,1354.8,997.6,11399.6,2615.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 -base-hvac-stove-oil-only.xml,52.044,52.044,30.484,30.484,0.0,21.56,0.0,0.0,0.0,0.0,0.0,0.0,0.065,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2031.7,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.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 -base-hvac-stove-wood-pellets-only.xml,52.044,52.044,30.484,30.484,0.0,0.0,0.0,0.0,21.56,0.0,0.0,0.0,0.065,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2031.7,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.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 -base-hvac-undersized-allow-increased-fixed-capacities.xml,55.953,55.953,35.565,35.565,20.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,3.954,0.757,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,0.0,19.169,12.825,9.234,0.614,0.0,0.0,0.0,0.0,2117.5,2940.2,20.336,15.047,0.0,3.612,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.188,-0.063,4.804,0.0,0.728,0.0,2.868,-11.406,0.0,0.006,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.168,-3.068,-0.165,0.0,1.933,9.882,1354.8,997.6,11399.6,2615.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 -base-hvac-undersized.xml,48.65,48.65,33.141,33.141,15.509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25,2.08,0.355,9.179,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,6.322,9.234,0.63,0.0,0.0,3728.0,2596.0,2090.1,1934.4,3.827,2.687,0.0,2.674,2.903,0.406,5.274,0.445,-4.418,0.0,0.0,4.612,-0.122,3.599,0.0,0.597,0.0,9.659,-11.529,0.0,-0.362,-0.8,-0.1,1.647,-0.113,8.68,0.0,0.0,-8.056,-0.065,-1.417,-5.004,-0.234,0.0,2.665,9.775,1354.8,997.6,11399.6,2615.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 -base-hvac-wall-furnace-elec-only.xml,47.008,47.008,47.008,47.008,0.0,0.0,0.0,0.0,0.0,0.0,16.59,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,5985.7,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.015,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.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 -base-lighting-ceiling-fans.xml,58.856,58.856,36.3,36.3,22.556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.168,0.797,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.124,13.606,9.234,0.612,0.0,0.0,0.0,0.0,2109.3,3329.5,22.926,17.652,0.0,3.545,3.634,0.511,7.427,0.629,-2.081,0.0,0.0,8.176,-0.064,4.805,0.0,0.728,0.0,4.885,-11.406,0.0,-0.085,-0.504,-0.058,2.595,-0.036,9.707,0.0,0.0,-6.535,-0.06,-1.203,-3.236,-0.173,0.0,2.98,10.404,1354.8,997.6,11399.6,2615.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 -base-lighting-holiday.xml,58.685,58.685,36.109,36.109,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.533,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2397.0,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-lighting-none.xml,56.089,56.089,30.714,30.714,25.375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.419,3.953,0.745,9.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.765,12.614,9.234,0.616,0.0,0.0,0.0,0.0,1751.5,3063.3,23.302,17.127,0.0,3.501,3.606,0.507,7.343,0.623,-2.183,0.0,0.0,8.084,-0.058,4.798,0.0,0.727,0.0,5.425,-8.931,0.0,0.013,-0.407,-0.044,2.862,-0.012,9.988,0.0,0.0,-6.1,-0.054,-1.128,-2.875,-0.158,0.0,2.863,7.849,1354.8,997.6,11399.6,2615.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 -base-location-AMY-2012.xml,67.091,67.091,34.85,34.85,32.241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.524,2.916,0.487,9.58,0.0,0.0,4.524,0.0,0.335,0.0,0.0,0.0,0.0,2.225,0.0,0.0,0.32,0.366,1.517,1.533,0.0,2.121,8.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.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,30.189,8.534,9.676,0.619,0.0,0.0,0.0,0.0,2146.2,2730.0,23.365,14.839,0.0,4.249,4.367,0.62,9.729,0.801,-0.861,0.0,0.0,10.857,-0.074,5.179,0.0,0.772,0.0,7.122,-13.027,0.0,-0.015,-0.352,-0.043,1.643,-0.049,8.043,0.0,0.0,-7.443,-0.065,-0.895,-2.447,-0.098,0.0,2.075,8.329,1358.5,1000.6,11587.9,2659.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-baltimore-md.xml,39.241,39.241,29.871,29.871,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.039,5.013,1.028,8.661,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.656,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1685.2,2497.1,13.734,13.552,0.0,3.506,3.362,0.0,0.0,0.715,0.644,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-7.221,0.0,-0.093,-0.582,0.0,0.0,-0.007,11.358,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,8.01,1354.8,997.6,11036.0,2719.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 -base-location-capetown-zaf.xml,27.702,27.702,27.5,27.5,0.202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,3.827,0.913,7.629,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.187,14.577,7.422,0.693,0.0,0.0,0.0,0.0,1232.5,2220.9,4.635,11.44,0.0,1.698,1.431,0.0,0.0,0.571,-1.372,0.0,2.773,0.0,-0.881,0.769,0.0,0.34,0.0,0.03,-5.343,0.0,-0.685,-1.438,0.0,0.0,-0.436,14.386,0.0,-3.963,0.0,-0.88,-0.584,-1.952,-0.385,0.0,0.923,9.888,1354.8,997.6,10580.5,2607.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -base-location-dallas-tx.xml,34.297,34.297,32.531,32.531,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008,8.722,1.857,6.815,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,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,1.629,30.194,6.675,0.573,0.0,0.0,0.0,0.0,1662.1,2763.3,9.704,14.234,0.0,1.739,1.617,0.0,0.0,0.364,-0.299,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-4.416,0.0,0.559,0.0,0.0,0.0,0.189,18.747,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.344,11.388,1354.8,997.6,9989.1,2461.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 -base-location-duluth-mn.xml,70.947,70.947,29.773,29.773,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.438,2.254,0.326,11.624,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.316,5.224,11.597,0.833,0.0,0.0,0.0,0.0,1752.2,2394.7,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,6.72,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-8.223,0.0,-0.435,-0.782,0.0,0.0,-0.099,6.493,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.335,3.29,1354.8,997.6,12167.9,2889.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 -base-location-helena-mt.xml,77.807,77.807,35.297,35.297,42.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.042,2.297,0.35,10.333,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.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,40.151,5.896,10.479,0.625,0.0,0.0,0.0,0.0,2237.1,2944.6,30.202,14.109,0.0,5.353,5.46,0.773,11.386,1.047,0.435,0.0,0.0,13.753,-0.184,7.808,0.0,1.207,0.0,8.247,-15.573,0.0,0.013,-0.249,-0.027,1.322,0.009,7.312,0.0,0.0,-6.005,-0.178,-0.675,-2.363,-0.121,0.0,1.246,5.726,1354.8,997.6,11852.0,2719.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 -base-location-honolulu-hi.xml,36.112,36.112,36.112,36.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.148,3.017,4.815,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,0.0,2301.6,0.0,13.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,1.228,0.744,0.0,0.0,0.3,26.44,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,15.781,1354.8,997.6,8540.5,2104.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 -base-location-miami-fl.xml,35.272,35.272,35.272,35.272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.381,2.813,4.948,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.971,4.712,0.551,0.0,0.0,0.0,0.0,0.0,2503.2,0.0,13.564,0.0,0.0,0.0,0.0,0.0,0.0,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.006,0.575,0.0,0.0,0.304,24.828,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,15.782,1354.8,997.6,8625.3,2125.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 -base-location-phoenix-az.xml,38.372,38.372,38.371,38.371,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.98,3.08,5.181,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,51.764,4.955,0.556,0.0,0.0,0.0,0.0,1117.5,3312.6,0.594,17.637,0.0,0.71,0.522,0.0,0.0,0.205,0.389,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.908,0.0,1.784,1.422,0.0,0.0,0.805,29.748,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,13.879,1354.8,997.6,8429.2,2077.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,37.21,37.21,27.593,27.593,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,2.812,0.53,9.081,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.884,8.569,8.879,0.78,0.0,0.0,0.0,0.0,1686.5,2608.8,8.464,13.423,0.0,3.447,3.289,0.0,0.0,0.744,0.651,0.0,6.241,0.0,-0.412,1.469,0.0,0.813,0.0,1.647,-9.196,0.0,-0.3,-0.767,0.0,0.0,-0.009,9.028,0.0,-2.904,0.0,-0.409,-0.361,-1.829,-0.252,0.0,0.543,6.035,1354.8,997.6,11239.5,2769.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 -base-mechvent-balanced.xml,79.907,79.907,37.754,37.754,42.153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.695,4.06,0.759,9.17,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.48,12.824,9.234,0.62,0.0,0.0,0.0,0.0,2216.0,3658.0,32.281,20.83,0.0,3.499,3.712,0.522,7.357,0.653,-1.953,0.0,0.0,8.047,-0.112,5.502,0.0,15.078,0.0,8.631,-11.75,0.0,0.161,-0.248,-0.021,3.037,0.034,10.388,0.0,0.0,-5.944,-0.108,-1.012,-2.523,-3.525,0.0,3.118,9.543,1354.8,997.6,11399.6,2615.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 -base-mechvent-bath-kitchen-fans.xml,60.27,60.27,36.002,36.002,24.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4,4.236,0.813,9.164,0.0,0.0,4.51,0.0,0.334,0.112,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.726,13.798,9.234,0.615,0.0,0.0,0.0,0.0,2162.6,3503.0,24.803,19.466,0.0,3.537,3.633,0.511,7.427,0.628,-2.099,0.0,0.0,8.204,-0.058,4.319,0.0,2.471,0.0,5.225,-11.412,0.0,-0.031,-0.444,-0.049,2.764,-0.021,9.878,0.0,0.0,-6.264,-0.054,-1.043,-3.004,-0.684,0.0,3.077,9.876,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-airflow-fraction-zero.xml,73.243,73.243,37.657,37.657,35.586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.587,4.149,0.784,9.167,0.0,0.0,4.51,0.0,0.334,1.693,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.33,13.259,9.234,0.618,0.0,0.0,0.0,0.0,2173.8,3591.3,29.284,20.518,0.0,3.476,3.651,0.514,7.409,0.635,-2.072,0.0,0.0,8.222,-0.07,1.506,0.0,13.864,0.0,7.421,-11.525,0.0,0.048,-0.359,-0.037,2.953,0.003,10.117,0.0,0.0,-5.969,-0.066,-0.255,-2.72,-3.256,0.0,3.143,9.766,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-dse.xml,73.349,73.349,38.597,38.597,34.752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.573,4.855,0.875,9.167,0.0,0.0,4.51,0.0,0.334,1.85,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,26.018,10.195,9.234,0.618,0.0,0.0,0.0,0.0,2173.0,2701.0,21.16,12.567,0.0,3.75,3.646,0.513,7.401,0.634,-2.067,0.0,0.0,8.206,-0.073,1.506,0.0,13.738,0.0,0.0,-11.521,0.0,0.135,-0.361,-0.037,2.951,0.003,10.127,0.0,0.0,-5.973,-0.069,-0.255,-2.711,-3.224,0.0,0.0,9.771,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-evap-cooler-only-ducted.xml,34.15,34.15,34.15,34.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.887,9.233,0.0,0.0,4.51,0.0,0.334,2.754,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,9.234,0.688,0.0,0.0,0.0,0.0,0.0,1981.3,0.0,17.21,0.0,2.133,2.057,0.285,2.751,0.229,-6.785,0.0,0.0,0.639,-0.161,0.676,0.0,7.483,0.0,1.841,-11.313,0.0,0.155,-0.351,-0.035,3.023,-0.002,10.273,0.0,0.0,-6.571,-0.058,-0.256,-2.55,-3.076,0.0,0.63,10.049,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-supplemental-fan-exhaust.xml,70.417,70.417,36.31,36.31,34.108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.563,4.059,0.763,9.169,0.0,0.0,4.51,0.0,0.334,0.479,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.944,12.9,9.234,0.619,0.0,0.0,0.0,0.0,2138.5,3872.8,29.286,20.457,0.0,3.509,3.672,0.517,7.389,0.641,-2.032,0.0,0.0,8.16,-0.083,1.927,0.0,12.428,0.0,7.139,-11.617,0.0,0.102,-0.305,-0.029,3.021,0.017,10.256,0.0,0.0,-5.905,-0.079,-0.253,-2.587,-3.991,0.0,3.065,9.675,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis-supplemental-fan-supply.xml,72.582,72.582,36.337,36.337,36.245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.598,4.067,0.764,9.168,0.0,0.0,4.51,0.0,0.334,0.465,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.947,12.904,9.234,0.619,0.0,0.0,0.0,0.0,2161.9,3586.3,29.285,20.473,0.0,3.484,3.661,0.515,7.398,0.638,-2.054,0.0,0.0,8.191,-0.077,1.509,0.0,14.418,0.0,7.534,-11.568,0.0,0.079,-0.329,-0.033,2.993,0.011,10.195,0.0,0.0,-5.923,-0.073,-0.245,-2.629,-3.863,0.0,3.09,9.725,1354.8,997.6,11399.6,2615.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 -base-mechvent-cfis.xml,74.428,74.428,37.591,37.591,36.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.608,4.097,0.77,9.169,0.0,0.0,4.51,0.0,0.334,1.671,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.502,13.016,9.234,0.619,0.0,0.0,0.0,0.0,2170.8,3582.9,29.283,20.443,0.0,3.486,3.698,0.52,7.38,0.65,-1.946,0.0,0.0,8.108,-0.113,1.521,0.0,14.061,0.0,8.521,-11.658,0.0,0.156,-0.294,-0.028,2.971,0.022,10.297,0.0,0.0,-6.003,-0.109,-0.233,-2.637,-3.021,0.0,2.402,9.634,1354.8,997.6,11399.6,2615.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 -base-mechvent-erv-atre-asre.xml,65.33,65.33,37.777,37.777,27.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.455,4.269,0.819,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.804,13.875,9.234,0.616,0.0,0.0,0.0,0.0,2205.2,3608.0,25.243,19.125,0.0,3.509,3.63,0.511,7.422,0.628,-2.109,0.0,0.0,8.229,-0.06,5.397,0.0,3.902,0.0,5.868,-11.436,0.0,-0.019,-0.426,-0.047,2.83,-0.016,9.933,0.0,0.0,-6.158,-0.056,-1.253,-2.921,-0.848,0.0,3.153,9.853,1354.8,997.6,11399.6,2615.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 -base-mechvent-erv.xml,65.334,65.334,37.777,37.777,27.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.455,4.268,0.819,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.808,13.874,9.234,0.616,0.0,0.0,0.0,0.0,2205.2,3608.3,25.245,19.126,0.0,3.509,3.63,0.511,7.422,0.628,-2.109,0.0,0.0,8.229,-0.06,5.397,0.0,3.905,0.0,5.869,-11.436,0.0,-0.019,-0.426,-0.047,2.83,-0.016,9.933,0.0,0.0,-6.158,-0.056,-1.253,-2.921,-0.849,0.0,3.153,9.853,1354.8,997.6,11399.6,2615.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 -base-mechvent-exhaust-rated-flow-rate.xml,74.129,74.129,36.748,36.748,37.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.617,4.034,0.755,9.169,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.011,12.756,9.234,0.619,0.0,0.0,0.0,0.0,2171.4,3922.0,29.335,20.61,0.0,3.491,3.674,0.517,7.39,0.642,-2.045,0.0,0.0,8.163,-0.079,1.463,0.0,15.39,0.0,7.732,-11.622,0.0,0.105,-0.303,-0.029,3.024,0.018,10.243,0.0,0.0,-5.9,-0.075,-0.231,-2.578,-4.177,0.0,3.076,9.671,1354.8,997.6,11399.5,2615.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 -base-mechvent-exhaust.xml,74.129,74.129,36.748,36.748,37.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.617,4.034,0.755,9.169,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.011,12.756,9.234,0.619,0.0,0.0,0.0,0.0,2171.4,3922.0,29.335,20.61,0.0,3.491,3.674,0.517,7.39,0.642,-2.045,0.0,0.0,8.163,-0.079,1.463,0.0,15.39,0.0,7.732,-11.622,0.0,0.105,-0.303,-0.029,3.024,0.018,10.243,0.0,0.0,-5.9,-0.075,-0.231,-2.578,-4.177,0.0,3.076,9.671,1354.8,997.6,11399.5,2615.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 -base-mechvent-hrv-asre.xml,65.33,65.33,37.78,37.78,27.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.454,4.271,0.819,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,25.802,13.876,9.234,0.616,0.0,0.0,0.0,0.0,2205.1,3609.6,25.242,19.128,0.0,3.509,3.63,0.511,7.422,0.628,-2.109,0.0,0.0,8.229,-0.06,5.397,0.0,3.9,0.0,5.868,-11.436,0.0,-0.019,-0.426,-0.047,2.829,-0.016,9.932,0.0,0.0,-6.158,-0.056,-1.253,-2.921,-0.847,0.0,3.154,9.853,1354.8,997.6,11399.6,2615.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 -base-mechvent-hrv.xml,65.334,65.334,37.78,37.78,27.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.455,4.271,0.819,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.805,13.876,9.234,0.616,0.0,0.0,0.0,0.0,2205.2,3610.0,25.244,19.129,0.0,3.509,3.63,0.511,7.422,0.628,-2.109,0.0,0.0,8.229,-0.06,5.397,0.0,3.903,0.0,5.869,-11.436,0.0,-0.019,-0.426,-0.047,2.83,-0.016,9.933,0.0,0.0,-6.158,-0.056,-1.253,-2.921,-0.848,0.0,3.154,9.853,1354.8,997.6,11399.6,2615.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 -base-mechvent-multiple.xml,80.388,80.388,37.515,37.515,42.873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.705,3.719,0.667,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.402,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.156,11.264,9.234,0.622,0.0,0.0,0.0,16.0,2221.7,3782.1,35.787,22.623,0.0,3.173,3.702,0.521,7.392,0.651,-1.936,0.0,0.0,8.166,-0.112,3.863,0.0,9.543,0.0,16.52,-11.648,0.0,0.066,-0.205,-0.015,3.226,0.044,10.564,0.0,0.0,-5.619,-0.107,-0.607,0.0,-2.134,-8.05,4.582,9.648,1354.8,997.6,11399.6,2615.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 -base-mechvent-supply.xml,72.707,72.707,36.819,36.819,35.888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.592,4.111,0.774,9.168,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.612,13.087,9.234,0.619,0.0,0.0,0.0,0.0,2191.2,3628.1,29.15,20.593,0.0,3.486,3.661,0.515,7.398,0.638,-2.053,0.0,0.0,8.191,-0.077,1.509,0.0,14.148,0.0,7.467,-11.568,0.0,0.078,-0.33,-0.033,2.991,0.011,10.194,0.0,0.0,-5.927,-0.073,-0.245,-2.633,-3.702,0.0,3.127,9.725,1354.8,997.6,11399.6,2615.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 -base-mechvent-whole-house-fan.xml,57.049,57.049,34.29,34.29,22.758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.375,2.432,0.376,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.659,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.313,6.234,9.234,0.622,0.0,0.0,0.0,0.0,2132.0,2962.3,22.926,14.965,0.0,3.542,3.632,0.511,7.445,0.628,-2.088,0.0,0.0,8.312,-0.057,4.803,0.0,0.728,0.0,4.928,-11.406,0.0,0.096,-0.26,-0.023,3.297,0.023,10.437,0.0,0.0,-5.409,-0.053,-0.99,0.0,-0.134,-11.518,1.713,9.89,1354.8,997.6,11399.6,2615.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 -base-misc-additional-properties.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-misc-bills-none.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-misc-bills-pv.xml,58.486,1.223,35.909,-21.354,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-57.264,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-misc-bills.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-misc-defaults.xml,66.542,47.231,31.66,12.348,34.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.707,2.145,0.442,2.598,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.073,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.745,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-19.311,0.0,34.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.272,5.328,10.574,1.4,0.0,9.377,0.0,0.0,2463.7,2840.6,26.064,14.414,0.0,3.485,3.68,0.517,7.375,1.118,-1.974,0.0,0.0,8.151,-0.095,2.105,0.0,15.07,0.0,2.799,-12.229,0.0,0.697,-0.089,0.002,3.464,-0.193,10.812,0.0,0.0,-5.234,-0.091,-0.283,0.0,-3.403,-10.767,0.438,10.895,1610.3,1574.0,10914.3,3846.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 -base-misc-emissions.xml,58.486,31.913,35.909,9.336,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.573,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,5022.53,1696.97,65.68,708.51,135.3,1590.65,790.52,60.7,392.41,55.6,62.16,257.77,261.29,375.64,1467.15,-4526.42,3325.56,3325.56,4466.97,1141.41,43.23,405.63,75.88,943.89,474.09,37.41,232.37,33.15,36.24,150.75,155.82,224.9,888.52,-2560.47,3325.56,3325.56,5693.89,2368.33,94.47,1084.07,208.91,2324.46,1143.92,84.66,563.04,80.8,92.67,383.71,387.61,536.3,2124.29,-6740.57,3325.56,3325.56,1.06,1.05,0.04,0.48,0.09,1.03,0.51,0.04,0.25,0.04,0.04,0.17,0.17,0.24,0.94,-2.99,0.01,0.01,3.91,1.83,0.07,0.84,0.16,1.8,0.89,0.07,0.44,0.06,0.07,0.3,0.3,0.42,1.64,-5.22,2.08,2.08 -base-misc-generators.xml,75.486,72.074,35.909,32.497,31.077,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.412,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-misc-ground-conductivity.xml,56.176,56.176,35.831,35.831,20.345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.336,4.241,0.815,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.052,13.836,9.234,0.613,0.0,0.0,0.0,0.0,2105.3,3299.4,22.044,17.914,0.0,3.581,3.656,0.515,7.215,0.633,-2.001,0.0,0.0,6.57,-0.062,4.81,0.0,0.729,0.0,4.457,-11.387,0.0,-0.054,-0.467,-0.052,2.423,-0.028,9.838,0.0,0.0,-6.132,-0.058,-1.178,-3.087,-0.167,0.0,3.08,9.9,1354.8,997.6,11399.6,2615.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 -base-misc-loads-large-uncommon.xml,146.336,146.336,68.356,68.356,69.985,0.0,2.499,5.496,0.0,0.0,0.0,0.0,0.284,5.259,1.069,9.16,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,4.437,3.415,0.0,0.0,17.22,0.0,0.0,0.0,0.0,0.0,49.967,0.0,0.0,2.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,2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.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,16.125,18.25,9.234,0.61,0.0,0.0,0.0,0.0,3243.4,5123.7,21.843,20.061,0.0,3.623,3.68,0.518,7.612,0.637,-1.881,0.0,0.0,8.411,-0.066,4.826,0.0,0.732,0.0,3.827,-16.165,0.0,-0.189,-0.572,-0.067,2.439,-0.055,9.573,0.0,0.0,-6.792,-0.063,-1.268,-3.548,-0.181,0.0,3.763,15.377,1354.8,997.6,11399.6,2615.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 -base-misc-loads-large-uncommon2.xml,92.82,92.82,64.806,64.806,20.019,2.499,0.0,0.0,5.496,0.0,0.0,0.0,0.284,5.259,1.069,9.16,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,0.887,3.415,0.0,0.0,17.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,5.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,18.25,9.234,0.61,0.0,0.0,0.0,0.0,3183.7,4721.2,21.843,20.061,0.0,3.623,3.68,0.518,7.612,0.637,-1.881,0.0,0.0,8.411,-0.066,4.826,0.0,0.732,0.0,3.827,-16.165,0.0,-0.189,-0.572,-0.067,2.439,-0.055,9.573,0.0,0.0,-6.792,-0.063,-1.268,-3.548,-0.181,0.0,3.763,15.377,1354.8,997.6,11399.6,2615.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 -base-misc-loads-none.xml,53.277,53.277,24.676,24.676,28.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.472,3.592,0.657,9.168,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,26.787,11.118,9.234,0.618,0.0,0.0,0.0,0.0,1524.2,2936.5,24.16,16.09,0.0,3.467,3.592,0.505,7.307,0.62,-2.252,0.0,0.0,8.059,-0.05,4.795,0.0,0.726,0.0,6.032,-6.317,0.0,0.071,-0.358,-0.037,3.016,0.001,10.096,0.0,0.0,-5.856,-0.045,-1.08,-2.666,-0.15,0.0,2.599,5.7,1354.8,997.6,11399.6,2615.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 -base-misc-neighbor-shading.xml,61.342,61.342,35.583,35.583,25.759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.425,3.966,0.75,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.124,12.705,9.234,0.616,0.0,0.0,0.0,0.0,2116.4,3190.8,23.172,17.026,0.0,3.509,3.809,0.561,7.326,0.827,0.3,0.0,0.0,7.961,-0.06,4.794,0.0,0.725,0.0,5.484,-11.431,0.0,-0.005,-0.536,-0.07,2.82,-0.082,8.518,0.0,0.0,-6.16,-0.056,-1.14,-2.934,-0.16,0.0,2.833,9.858,1354.8,997.6,11399.6,2615.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 -base-misc-shielding-of-home.xml,58.141,58.141,36.049,36.049,22.092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.364,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.689,14.514,9.234,0.613,0.0,0.0,0.0,0.0,2131.5,3288.0,22.906,17.823,0.0,3.55,3.636,0.512,7.432,0.629,-2.074,0.0,0.0,8.187,-0.065,4.423,0.0,0.729,0.0,4.797,-11.406,0.0,-0.059,-0.469,-0.053,2.685,-0.027,9.815,0.0,0.0,-6.396,-0.061,-1.061,-2.583,-0.167,0.0,3.166,9.881,1354.8,997.6,11399.6,2615.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 -base-misc-usage-multiplier.xml,126.305,126.305,50.733,50.733,68.377,0.0,2.249,4.947,0.0,0.0,0.0,0.0,0.345,4.543,0.89,8.303,0.0,0.0,4.059,0.0,0.3,0.0,0.0,0.0,0.0,1.998,2.151,0.0,0.287,0.329,1.361,1.375,0.0,1.903,7.537,0.0,0.0,0.0,8.286,3.993,3.073,0.0,0.0,20.888,0.0,0.0,0.0,0.0,0.0,44.97,0.0,0.0,2.518,0.0,0.0,0.0,0.0,0.0,0.0,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.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.561,15.127,8.31,0.613,0.0,0.0,0.0,0.0,2739.2,4277.6,22.627,18.484,0.0,3.569,3.647,0.513,7.473,0.631,-2.028,0.0,0.0,8.236,-0.065,4.86,0.0,0.657,0.0,4.558,-12.834,0.0,-0.085,-0.489,-0.056,2.631,-0.033,9.771,0.0,0.0,-6.482,-0.062,-1.208,-3.219,-0.153,0.0,3.275,11.416,1219.3,897.9,10259.7,2354.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 -base-pv-battery-ah.xml,58.486,31.913,35.909,9.336,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.573,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-pv-battery-garage.xml,58.865,32.338,34.588,8.061,24.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4,2.98,0.522,9.268,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.527,0.0,24.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,22.729,8.71,9.234,0.726,0.0,0.0,0.0,0.0,2135.4,2485.0,17.963,10.726,0.0,3.532,3.792,0.502,5.781,0.613,1.964,0.0,0.0,6.474,-0.041,5.37,0.0,0.0,0.0,3.82,-9.273,0.0,0.108,-0.277,-0.035,2.457,0.001,6.648,0.0,0.0,-5.65,-0.038,-1.218,-2.076,0.0,0.0,1.263,7.682,1354.8,997.6,11399.5,2615.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 -base-pv-battery-lifetime-model.xml,58.486,31.966,35.909,9.389,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.52,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-pv-battery.xml,58.486,31.913,35.909,9.336,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.573,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-pv.xml,58.486,31.6,35.909,9.023,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-schedules-detailed-all-10-mins.xml,57.597,57.597,36.259,36.259,21.338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.352,4.565,0.888,9.168,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.981,15.03,9.21,0.638,0.0,0.0,0.333,1.0,9357.0,10868.4,37.3,21.892,0.0,3.628,3.674,0.518,7.2,0.644,-1.857,0.0,0.0,6.642,-0.115,5.309,0.0,0.775,0.0,4.691,-11.428,0.0,-0.185,-0.496,-0.057,2.785,-0.035,9.799,0.0,0.0,-5.852,-0.057,-1.288,-3.02,-0.179,0.0,3.402,10.355,1354.7,998.0,11489.6,2636.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 -base-schedules-detailed-occupancy-smooth.xml,58.495,58.495,35.921,35.921,22.574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.275,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.14,13.992,9.234,0.614,0.0,0.0,0.0,0.0,2134.8,3282.7,22.933,17.829,0.0,3.545,3.634,0.511,7.429,0.629,-2.082,0.0,0.0,8.191,-0.063,4.804,0.0,0.728,0.0,4.889,-11.41,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.07,-0.165,0.0,3.098,9.885,1354.7,998.0,11399.6,2615.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 -base-schedules-detailed-occupancy-stochastic-10-mins.xml,59.342,59.342,36.088,36.088,23.254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.384,4.381,0.849,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.116,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,14.396,9.148,0.616,0.0,0.0,0.0,0.0,9193.5,7394.4,31.482,20.749,0.0,3.546,3.638,0.512,7.434,0.63,-2.07,0.0,0.0,8.199,-0.063,5.32,0.0,0.763,0.0,5.011,-11.459,0.0,-0.043,-0.452,-0.05,2.729,-0.023,9.866,0.0,0.0,-6.322,-0.059,-1.28,-3.051,-0.188,0.0,3.17,10.372,1002.6,945.2,11591.5,2659.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 -base-schedules-detailed-occupancy-stochastic-vacancy.xml,57.991,57.991,30.823,30.823,27.169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.448,4.37,0.847,7.488,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.705,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.443,14.356,7.433,0.615,0.0,0.0,0.0,0.0,5308.9,5555.4,30.918,19.271,0.0,3.494,3.612,0.508,7.356,0.623,-2.145,0.0,0.0,8.033,-0.063,5.303,0.0,0.513,0.0,5.765,-7.872,0.0,-0.048,-0.456,-0.051,2.723,-0.024,9.853,0.0,0.0,-6.34,-0.058,-1.271,-3.06,-0.185,0.0,3.16,10.328,1141.2,883.5,9305.3,2135.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 -base-schedules-detailed-occupancy-stochastic.xml,59.275,59.275,36.046,36.046,23.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.383,4.37,0.847,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.751,14.359,9.229,0.615,0.0,0.0,0.0,0.0,5308.8,5555.7,30.793,19.273,0.0,3.542,3.635,0.511,7.431,0.629,-2.08,0.0,0.0,8.188,-0.062,5.262,0.0,0.776,0.0,5.01,-11.421,0.0,-0.048,-0.457,-0.051,2.723,-0.024,9.853,0.0,0.0,-6.337,-0.058,-1.271,-3.06,-0.185,0.0,3.16,10.328,1354.7,998.0,11396.7,2615.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 -base-schedules-detailed-setpoints-daily-schedules.xml,54.115,54.115,35.417,35.417,18.699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.308,3.913,0.755,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.182,12.566,9.234,0.614,0.0,0.0,95.0,52.0,2137.8,3586.5,34.216,20.184,0.0,3.558,3.601,0.507,7.028,0.615,-2.228,0.0,0.0,6.344,-0.071,4.674,0.0,0.729,0.0,3.915,-11.35,0.0,-0.089,-0.517,-0.06,2.708,-0.046,9.615,0.0,0.0,-5.983,-0.007,-1.237,-3.459,-0.176,0.0,2.486,9.938,1354.8,997.6,11399.6,2615.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 -base-schedules-detailed-setpoints-daily-setbacks.xml,53.872,53.872,35.554,35.554,18.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.302,4.032,0.779,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.072,13.122,9.234,0.615,0.0,0.0,0.0,9.0,2110.4,3597.8,24.379,20.734,0.0,3.531,3.57,0.502,6.897,0.608,-2.355,0.0,0.0,6.19,-0.088,4.643,0.0,0.724,0.0,3.872,-11.368,0.0,-0.07,-0.51,-0.059,2.656,-0.044,9.601,0.0,0.0,-6.075,-0.025,-1.217,-3.394,-0.179,0.0,2.615,9.921,1354.8,997.6,11399.6,2615.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 -base-schedules-detailed-setpoints.xml,38.465,38.465,34.241,34.241,4.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,3.154,0.551,9.19,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.949,9.456,9.234,0.642,0.0,0.0,0.0,0.0,2077.9,3367.6,16.021,15.639,0.0,2.943,2.86,0.401,4.917,0.432,-4.329,0.0,0.0,2.777,-0.176,3.559,0.0,0.583,0.0,0.937,-11.278,0.0,-0.153,-0.599,-0.071,2.468,-0.065,9.508,0.0,0.0,-6.682,-0.056,-1.283,-5.24,-0.192,0.0,2.159,10.038,1354.8,997.6,11399.6,2615.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 -base-schedules-simple.xml,58.66,58.66,35.945,35.945,22.715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.375,4.302,0.83,9.164,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.272,14.104,9.234,0.614,0.0,0.0,0.0,0.0,2010.6,3313.3,22.96,17.938,0.0,3.543,3.632,0.511,7.423,0.628,-2.087,0.0,0.0,8.181,-0.063,4.804,0.0,0.728,0.0,4.916,-11.275,0.0,-0.049,-0.459,-0.051,2.716,-0.025,9.844,0.0,0.0,-6.346,-0.059,-1.168,-3.08,-0.165,0.0,3.117,10.011,1354.8,997.6,11399.6,2615.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 -base-simcontrol-calendar-year-custom.xml,58.465,58.465,35.881,35.881,22.584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.373,4.25,0.818,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.149,13.891,9.234,0.614,0.0,0.0,0.0,0.0,2131.7,3333.9,22.926,17.908,0.0,3.545,3.634,0.511,7.429,0.629,-2.082,0.0,0.0,8.194,-0.063,4.804,0.0,0.728,0.0,4.891,-11.406,0.0,-0.04,-0.453,-0.05,2.743,-0.023,9.864,0.0,0.0,-6.317,-0.059,-1.162,-3.215,-0.164,0.0,3.061,9.882,1354.8,997.6,11399.6,2615.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 -base-simcontrol-daylight-saving-custom.xml,58.487,58.487,35.909,35.909,22.578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.144,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.429,0.629,-2.082,0.0,0.0,8.191,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -base-simcontrol-daylight-saving-disabled.xml,58.457,58.457,35.894,35.894,22.563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.26,0.821,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.13,13.929,9.234,0.614,0.0,0.0,0.0,0.0,2131.7,3204.2,22.926,17.481,0.0,3.544,3.633,0.511,7.43,0.628,-2.093,0.0,0.0,8.188,-0.059,4.802,0.0,0.725,0.0,4.886,-11.399,0.0,-0.045,-0.458,-0.051,2.721,-0.025,9.841,0.0,0.0,-6.337,-0.055,-1.172,-3.098,-0.163,0.0,3.072,9.889,1354.8,997.6,11399.6,2615.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 -base-simcontrol-runperiod-1-month.xml,9.6018,9.6018,3.1992,3.1992,6.4026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1056,0.1119,0.0,0.9158,0.0,0.0,0.4474,0.0,0.0354,0.0,0.0,0.0,0.0,0.1577,0.0,0.0,0.0297,0.0314,0.1285,0.1424,0.0,0.2049,0.8885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9894,0.0,0.9282,0.0566,0.0,0.0,0.0,0.0,2109.17,0.0,20.563,0.0,0.0,0.7031,0.6916,0.0981,1.9171,0.106,-0.1994,0.0,0.0,2.202,-0.001,0.9325,0.0,0.1372,0.0,1.3794,-2.0328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.32,92.97,1019.66,233.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 -base-simcontrol-temperature-capacitance-multiplier.xml,58.379,58.379,35.805,35.805,22.574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.189,0.804,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.14,13.643,9.234,0.614,0.0,0.0,0.0,0.0,2109.4,3373.7,22.867,17.765,0.0,3.613,3.631,0.511,7.426,0.626,-2.114,0.0,0.0,8.169,-0.053,4.801,0.0,0.727,0.0,4.883,-11.396,0.0,-0.213,-0.454,-0.051,2.728,-0.025,9.834,0.0,0.0,-6.334,-0.05,-1.175,-3.142,-0.164,0.0,2.942,9.892,1354.8,997.6,11399.6,2615.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 -base-simcontrol-timestep-10-mins-occupancy-stochastic-10-mins.xml,59.931,59.931,36.169,36.169,23.762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.392,4.461,0.863,9.167,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.251,14.588,9.232,0.617,0.0,0.0,0.333,1.0,9432.3,8358.5,37.386,21.878,0.0,3.594,3.658,0.515,7.494,0.64,-1.919,0.0,0.0,8.207,-0.062,5.304,0.0,0.776,0.0,5.177,-11.434,0.0,-0.166,-0.481,-0.055,2.745,-0.03,9.844,0.0,0.0,-6.312,-0.058,-1.274,-2.961,-0.176,0.0,3.327,10.329,1354.7,998.0,11410.5,2618.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 -base-simcontrol-timestep-10-mins-occupancy-stochastic-60-mins.xml,59.852,59.852,36.16,36.16,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.391,4.46,0.862,9.161,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,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,22.186,14.582,9.229,0.614,0.0,0.0,0.0,0.167,6213.5,7477.9,35.248,21.263,0.0,3.595,3.658,0.515,7.492,0.64,-1.925,0.0,0.0,8.204,-0.061,5.251,0.0,0.77,0.0,5.166,-11.422,0.0,-0.166,-0.481,-0.055,2.744,-0.031,9.838,0.0,0.0,-6.315,-0.056,-1.26,-2.963,-0.185,0.0,3.325,10.326,1354.7,998.0,11396.7,2615.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 -base-simcontrol-timestep-10-mins.xml,59.081,59.081,36.022,36.022,23.059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38,4.361,0.839,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.593,14.205,9.234,0.614,0.0,0.0,0.0,0.0,3548.1,4934.4,23.213,17.88,0.0,3.6,3.659,0.515,7.492,0.64,-1.93,0.0,0.0,8.209,-0.059,4.789,0.0,0.734,0.0,5.049,-11.406,0.0,-0.162,-0.48,-0.055,2.747,-0.03,9.835,0.0,0.0,-6.307,-0.055,-1.152,-2.969,-0.171,0.0,3.26,9.881,1354.8,997.6,11399.7,2615.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 -base.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.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 -house001.xml,87.655,87.655,47.054,47.054,40.601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.265,15.761,4.415,0.0,0.0,0.0,7.38,0.315,0.652,0.448,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,3.284,1.794,0.0,2.585,6.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.565,0.0,17.036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.109,50.172,10.416,2.673,0.0,0.0,0.0,0.0,1857.1,6429.7,40.431,40.682,0.489,1.963,7.184,0.418,0.0,0.959,2.625,0.0,0.436,1.218,-0.267,5.165,0.0,5.156,0.0,3.357,-9.733,0.579,2.038,3.842,0.309,0.0,0.263,11.904,0.0,0.575,6.824,-0.253,-0.453,-1.389,-0.722,0.0,10.829,15.998,2104.5,2144.0,14468.8,4385.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house002.xml,67.981,67.981,39.858,39.858,28.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.164,13.753,3.414,0.0,0.0,0.0,6.381,0.315,0.594,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,5.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.642,0.0,13.481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.871,39.441,7.526,2.888,0.0,0.0,0.0,0.0,1556.6,4944.7,25.364,28.55,0.0,2.516,5.041,0.0,0.0,0.847,1.932,0.0,0.0,1.731,-0.146,2.166,0.0,3.786,0.0,1.436,-7.591,0.0,3.121,2.799,0.0,0.0,0.406,8.133,0.0,0.0,8.491,-0.14,-0.234,-1.035,-0.619,0.0,5.901,12.792,1610.9,1574.7,9989.5,3520.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 -house003.xml,69.561,69.561,40.145,40.145,29.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.182,12.795,3.557,0.0,0.0,0.0,6.875,0.315,0.623,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,13.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.116,40.969,7.526,2.686,0.0,0.0,0.0,0.0,1635.5,5175.2,28.303,31.648,0.645,2.766,4.648,0.0,0.0,0.979,2.732,0.0,0.0,1.039,-0.168,2.708,0.0,3.936,0.0,1.7,-8.021,0.813,3.105,2.639,0.0,0.0,0.645,9.662,0.0,0.0,6.546,-0.161,-0.273,-1.076,-0.609,0.0,6.519,13.336,1610.9,1574.7,9989.4,3520.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 -house004.xml,139.222,139.222,75.872,75.872,63.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.419,29.4,9.578,0.0,0.0,0.0,11.562,0.315,0.893,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,1.633,2.35,11.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.21,0.0,16.141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.176,107.87,8.985,3.505,0.0,0.0,0.0,139.0,2440.4,7373.0,58.904,50.183,0.128,5.532,11.447,0.0,0.0,1.26,8.001,0.0,0.0,3.191,-0.724,6.625,0.0,6.327,0.0,7.461,-11.388,0.203,6.842,11.784,0.0,0.0,0.534,22.891,0.0,0.0,18.901,-0.711,1.532,0.0,1.911,0.0,21.709,22.531,1857.7,1859.3,12229.1,3983.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 -house005.xml,96.573,96.573,53.429,53.429,43.144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.314,18.378,5.178,0.0,0.0,0.0,9.155,0.315,0.754,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,8.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.951,0.0,15.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.667,59.898,8.985,2.724,0.0,0.0,0.0,0.0,2080.4,7521.3,49.166,51.179,0.0,2.996,8.095,0.266,0.0,1.337,3.365,0.0,0.369,1.211,-0.334,6.048,0.0,5.084,0.0,4.583,-10.548,0.0,3.064,4.412,0.216,0.0,0.306,15.748,0.0,0.449,7.545,-0.317,-0.524,-1.738,-0.699,0.0,14.646,16.992,1857.7,1859.4,12229.0,3983.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 -house006.xml,141.931,141.931,31.872,31.872,110.059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.932,2.982,0.346,0.0,0.0,0.0,8.687,0.29,0.705,3.138,0.0,0.0,0.0,1.707,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.114,8.883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.212,0.0,20.136,2.642,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.073,8.004,13.085,3.278,0.0,0.0,0.0,0.0,1992.7,2444.3,41.243,14.855,0.0,4.246,22.224,1.986,37.024,1.862,8.433,0.0,0.0,11.927,-0.318,9.522,0.0,4.368,0.0,0.0,-21.017,0.0,0.177,-0.798,-0.045,2.683,-0.086,3.391,0.0,0.0,-3.57,-0.318,-0.515,-0.62,-0.075,0.0,0.0,7.886,1610.9,1574.7,12168.2,4288.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 -house007.xml,141.369,141.369,34.029,34.029,107.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.685,2.589,0.408,0.0,0.0,0.0,10.299,0.315,0.82,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.674,0.0,23.28,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.135,6.014,15.632,3.268,0.0,0.0,0.0,0.0,2196.8,2569.2,40.428,13.43,0.0,4.694,23.596,4.394,10.052,1.495,9.576,0.0,0.076,14.159,-0.347,6.117,0.0,20.824,0.0,2.956,-24.981,0.0,0.202,-0.72,-0.043,0.525,-0.048,4.006,0.0,-0.009,-3.734,-0.342,-0.193,-0.596,-1.902,0.0,0.107,8.858,1857.7,1859.4,14896.4,4852.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 -house008.xml,185.445,185.445,39.257,39.257,146.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.532,3.619,0.543,0.0,0.0,0.0,11.006,0.315,0.861,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.752,0.0,26.376,3.452,3.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,106.243,10.35,18.129,3.214,0.0,0.0,0.0,0.0,2477.3,3293.3,55.348,19.539,0.0,7.201,27.357,4.679,24.256,1.177,14.499,0.0,1.222,19.564,-0.367,18.319,0.0,6.384,0.0,7.941,-26.834,0.0,0.305,-1.142,-0.066,1.602,-0.088,3.989,0.0,-0.105,-2.376,-0.367,-0.993,-0.692,-0.286,0.0,0.546,10.125,2104.5,2144.0,17624.7,5341.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 -house009.xml,153.687,153.687,33.974,33.974,119.713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.022,2.379,0.287,0.0,0.0,0.0,10.271,0.315,0.819,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.037,0.0,23.29,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.839,5.257,15.632,3.276,0.0,0.0,0.0,0.0,2225.7,2598.6,43.986,13.891,0.0,5.085,28.326,4.268,12.943,2.25,11.316,0.0,0.265,15.408,-0.347,8.73,0.0,21.435,0.0,0.0,-25.365,0.0,0.243,-0.7,-0.019,0.751,-0.076,3.767,0.0,-0.029,-4.092,-0.344,-0.26,-0.524,-1.805,0.0,0.0,8.427,1857.7,1859.4,14896.4,4852.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 -house010.xml,156.031,156.031,37.654,37.654,118.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.908,2.946,0.281,0.0,0.0,0.0,10.986,0.315,0.86,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.94,0.0,26.376,3.452,3.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,80.04,7.561,18.129,3.213,0.0,0.0,0.0,0.0,2413.3,2814.0,45.912,15.508,0.871,4.909,25.347,4.844,9.697,1.246,14.18,0.0,0.892,13.745,-0.363,19.56,0.0,6.4,0.0,4.978,-26.874,0.025,0.219,-0.756,-0.078,0.507,-0.073,3.72,0.0,-0.048,-3.894,-0.36,-1.029,-0.688,-0.272,0.0,0.347,10.046,2104.5,2144.0,17624.7,5341.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 -house011.xml,44.589,44.589,44.589,44.589,0.0,0.0,0.0,0.0,0.0,0.0,7.047,0.096,0.624,7.873,2.314,10.452,0.0,0.0,4.905,0.0,0.509,0.003,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.0,0.0,1.661,0.0,2.35,3.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.706,25.69,9.325,1.124,0.0,0.0,0.0,308.0,4893.3,3171.6,18.278,15.57,0.0,2.7,5.407,0.0,0.0,1.638,0.352,0.0,1.883,0.0,-0.367,1.846,0.0,5.42,0.0,3.962,-8.145,0.0,1.654,1.147,0.0,0.0,0.155,5.602,0.0,0.754,0.0,-0.366,-0.197,-0.181,-1.003,0.0,6.609,11.642,0.0,1859.4,12951.4,4219.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 -house012.xml,35.531,35.531,35.531,35.531,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.0,0.245,5.511,1.513,8.943,0.0,0.0,4.378,0.0,0.478,0.003,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.0,0.0,1.528,0.0,2.114,3.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,10.065,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.5,2478.0,11.058,10.81,0.0,2.364,4.744,0.0,0.0,0.628,0.992,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-6.815,0.0,1.715,1.082,0.0,0.0,-0.034,3.739,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,9.187,0.0,1574.7,10579.5,3728.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 -house013.xml,30.663,30.663,30.663,30.663,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.0,0.166,3.873,1.308,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.124,15.099,6.85,0.853,0.0,0.0,0.0,0.0,2660.8,2099.5,9.741,9.286,0.0,1.636,2.868,0.0,0.0,0.655,0.531,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-5.215,0.0,1.081,0.381,0.0,0.0,-0.092,4.01,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.465,8.791,1364.1,1290.1,8207.3,3131.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 -house014.xml,31.578,31.578,31.578,31.578,0.0,0.0,0.0,0.0,0.0,0.0,3.4,0.004,0.201,4.182,1.411,7.451,0.0,0.0,4.053,0.0,0.46,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.534,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2729.4,2185.8,10.982,10.107,0.0,1.705,3.7,0.0,0.0,0.584,0.615,0.0,2.211,0.0,-0.229,1.727,0.0,1.119,0.0,1.494,-5.427,0.0,1.141,0.558,0.0,0.0,-0.068,5.038,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.653,8.495,1364.1,1290.1,8207.3,3131.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 -house015.xml,30.663,30.663,30.663,30.663,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.0,0.166,3.873,1.308,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.124,15.099,6.85,0.853,0.0,0.0,0.0,0.0,2660.8,2099.5,9.741,9.286,0.0,1.636,2.868,0.0,0.0,0.655,0.531,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-5.215,0.0,1.081,0.381,0.0,0.0,-0.092,4.01,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.465,8.791,1364.1,1290.1,8207.3,3131.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 -house016.xml,59.145,59.145,39.312,39.312,0.0,0.0,19.833,0.0,0.0,0.0,7.582,0.17,0.551,3.034,1.026,0.0,0.0,0.0,8.606,0.0,0.723,0.215,0.0,0.0,0.0,2.448,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.24,0.0,13.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.405,11.971,9.378,0.0,0.0,0.0,1.0,14.0,7420.3,3510.1,42.959,18.987,0.0,4.421,10.842,0.619,5.709,0.298,-0.631,0.0,0.0,6.771,-0.02,5.733,0.0,3.859,0.0,0.0,-13.316,0.0,-0.347,-0.872,-0.023,2.902,-0.047,11.772,0.0,0.0,-8.864,-0.022,-1.374,-1.186,-1.026,0.0,0.0,11.541,1610.9,1574.7,11979.5,4221.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 -house017.xml,92.266,92.266,28.297,28.297,63.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.262,4.495,0.757,0.0,0.0,0.0,4.67,0.187,0.387,0.033,0.0,0.0,0.0,2.086,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.116,0.0,18.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,41.333,10.411,11.749,3.414,0.0,0.0,152.0,105.0,1744.9,3534.0,60.224,19.219,0.0,5.431,14.635,0.652,10.599,0.362,-2.318,0.0,0.705,4.292,0.008,19.797,0.0,1.221,0.0,0.0,-14.269,0.0,-0.179,-1.073,-0.025,4.581,-0.062,6.946,0.0,-0.003,-4.877,0.009,-2.804,-0.738,-0.261,0.0,0.0,8.943,1857.7,1859.4,14839.1,4834.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 -house018.xml,39.16,39.16,39.16,39.16,0.0,0.0,0.0,0.0,0.0,0.0,4.527,0.0,0.202,2.676,0.823,9.93,0.0,0.0,4.761,0.0,0.461,0.112,0.0,0.0,0.0,4.21,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,4.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.421,9.881,9.377,0.551,0.0,0.0,0.0,0.0,4902.2,2760.9,19.878,11.088,0.0,4.59,4.65,0.0,0.0,0.277,-0.085,0.0,2.192,0.0,-0.019,2.626,0.0,2.085,0.0,1.792,-9.794,0.0,-0.554,-0.842,0.0,0.0,-0.097,3.36,0.0,-0.039,0.0,-0.015,-0.785,-0.654,-0.76,0.0,1.313,9.185,1610.9,1574.7,11983.2,4223.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house019.xml,132.583,132.583,54.994,54.994,77.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.112,11.28,3.784,11.933,0.0,0.0,8.923,0.0,0.741,0.054,0.0,0.0,0.0,2.005,1.27,0.0,0.447,0.338,2.514,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.521,0.0,0.0,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.523,44.646,10.1,1.826,0.0,0.0,191.0,277.0,2884.1,6701.3,84.407,46.029,0.0,11.385,44.783,0.65,4.858,1.918,1.545,0.0,0.0,5.756,-0.035,8.869,0.0,1.864,0.0,0.0,-15.578,0.0,2.952,9.967,0.146,2.793,0.263,19.809,0.0,0.0,-4.378,-0.022,-0.178,-0.155,0.018,0.0,0.0,12.125,1610.9,1574.7,10370.6,3654.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 -house020.xml,114.55,114.55,56.28,56.28,0.0,0.0,58.27,0.0,0.0,0.0,0.0,0.0,0.806,13.14,2.894,0.0,0.0,0.0,12.75,0.0,0.892,0.026,0.0,0.0,0.0,3.976,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,16.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,37.71,0.0,17.491,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.736,34.408,9.377,4.22,0.0,0.0,0.0,0.0,2671.3,6550.3,30.871,32.37,0.908,11.004,10.574,1.133,9.701,0.632,-0.826,0.0,0.0,7.33,-0.033,15.231,0.0,0.836,0.0,0.0,-22.108,0.243,0.142,0.17,0.052,6.394,0.012,19.767,0.0,0.0,-6.764,-0.024,-2.717,-1.678,-0.199,0.0,0.0,19.174,1610.9,1574.7,11983.6,4223.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 -house021.xml,156.634,156.634,48.275,48.275,108.359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.977,7.824,1.571,0.0,0.0,0.0,10.64,0.244,0.771,0.071,0.0,0.0,0.0,2.448,1.472,0.0,0.528,0.39,2.899,1.661,0.0,2.35,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.34,0.0,20.019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.639,19.037,11.749,3.813,0.0,0.0,0.0,0.0,2766.4,4763.6,80.95,23.809,0.0,8.268,27.054,2.421,9.098,0.859,0.711,0.0,1.083,9.313,-0.321,26.611,0.0,2.489,0.0,6.015,-21.564,0.0,0.01,-0.877,0.004,2.203,-0.094,13.966,0.0,0.044,-6.113,-0.298,-2.444,-0.873,-0.391,0.0,1.32,12.735,1857.7,1859.4,14839.2,4834.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 -house022.xml,135.955,135.955,47.23,47.23,0.0,88.725,0.0,0.0,0.0,0.0,0.0,0.0,2.206,8.637,1.167,11.316,0.0,0.0,6.69,0.0,0.61,0.034,0.0,0.0,0.0,2.086,1.649,0.0,0.447,0.338,2.514,1.528,0.0,2.114,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.829,19.615,9.834,1.479,0.0,0.0,184.0,124.0,2873.0,5409.9,90.662,27.688,3.696,3.766,20.667,0.0,0.0,1.489,2.808,0.0,14.722,0.0,-0.288,37.698,0.0,1.154,0.0,0.0,-13.712,1.096,0.154,0.527,0.0,0.0,-0.127,11.106,0.0,1.911,0.0,-0.279,-2.739,-0.639,-0.074,0.0,0.0,8.533,1610.9,1574.7,12121.0,4271.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 -house023.xml,133.503,133.503,58.834,58.834,0.0,74.67,0.0,0.0,0.0,0.0,0.0,0.0,1.88,5.651,0.804,17.103,0.0,0.0,9.219,0.0,0.692,0.045,0.0,0.0,0.0,4.21,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,11.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.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,62.339,16.51,14.227,2.769,0.0,0.0,0.0,0.0,3862.1,4300.0,62.309,20.625,0.0,10.214,21.497,1.201,16.384,0.85,1.705,0.0,0.0,6.074,-0.031,23.712,0.0,1.639,0.0,0.0,-21.262,0.0,-0.207,-1.054,-0.016,5.953,-0.115,8.605,0.0,0.0,-6.04,-0.008,-2.694,-0.77,-0.316,0.0,0.0,13.264,1857.7,1859.4,6346.2,2067.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 -house024.xml,132.128,132.128,37.948,37.948,0.0,94.18,0.0,0.0,0.0,0.0,0.0,0.0,2.342,5.264,0.964,12.284,0.0,0.0,3.916,0.0,0.396,0.058,0.0,0.0,0.0,2.005,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,3.778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.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,77.644,15.695,10.188,2.088,0.0,0.0,0.0,0.0,2575.6,3429.7,78.782,17.849,0.0,7.199,30.093,0.0,0.0,0.683,-1.018,0.0,4.814,0.0,-0.118,32.036,0.0,1.838,0.0,12.666,-10.836,0.0,0.603,1.278,0.0,0.0,-0.038,6.294,0.0,0.601,0.0,-0.111,-1.717,-0.321,-0.188,0.0,2.734,6.621,1610.9,1574.7,9900.4,3489.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,109.166,109.166,73.066,73.066,36.1,0.0,0.0,0.0,0.0,0.0,6.343,0.0,1.09,18.685,3.345,14.465,0.0,0.0,9.263,0.0,0.783,0.0,0.0,0.0,0.0,4.105,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.946,48.554,10.555,3.831,0.0,0.0,0.0,0.0,4521.2,7088.7,37.506,33.352,0.0,3.38,17.589,0.0,0.0,2.172,1.414,0.0,6.822,0.0,-1.331,15.157,0.0,0.411,0.0,5.062,-12.791,0.0,1.081,5.659,0.0,0.0,0.438,15.28,0.0,5.576,0.0,-1.329,-0.818,-0.163,-0.004,0.0,6.233,16.882,1610.9,1574.7,4628.0,1631.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.005,58.005,24.86,24.86,33.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,0.0,0.0,0.0,6.534,0.251,0.548,0.299,0.0,0.0,0.0,1.987,0.0,0.0,0.447,0.338,2.514,1.528,0.934,2.114,7.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.007,0.0,14.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.58,0.0,8.606,2.072,0.0,0.0,0.0,0.0,1554.5,0.0,18.08,0.0,0.0,1.764,6.788,0.231,0.0,0.196,1.944,0.0,7.417,0.0,-0.062,2.889,0.0,3.124,0.0,0.0,-9.806,0.0,-0.165,-4.528,-0.155,0.0,-0.157,2.02,0.0,-2.521,0.0,-0.059,-1.937,-2.336,-2.829,0.0,0.0,12.856,1347.4,1334.1,8863.2,3123.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 -house027.xml,72.906,72.906,32.001,32.001,40.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.435,7.647,1.513,0.0,0.0,0.0,5.947,0.218,0.485,0.927,0.0,0.0,0.0,1.724,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,7.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.956,0.0,17.88,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.796,23.277,8.564,5.231,0.0,0.0,0.0,0.0,1579.0,3750.0,24.003,23.255,0.717,1.779,7.835,0.433,0.0,0.588,1.189,0.0,0.371,3.347,-0.138,1.744,0.0,10.422,0.0,2.032,-11.629,0.486,1.112,0.735,0.091,0.0,-0.107,5.336,0.0,0.112,3.831,-0.138,-0.366,-0.973,-3.484,0.0,2.721,13.836,1610.9,1574.7,10579.6,3728.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 -house028.xml,67.708,67.708,29.644,29.644,38.064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.257,7.079,1.508,0.0,0.0,0.0,6.138,0.226,0.503,0.618,0.0,0.0,0.0,2.104,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,7.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.558,0.0,18.12,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.732,22.831,10.226,3.619,0.0,0.0,0.0,0.0,1516.9,3307.5,19.979,21.233,0.767,1.659,7.019,0.34,0.0,0.428,1.687,0.0,0.233,2.471,-0.05,4.04,0.0,4.465,0.0,1.534,-11.981,0.614,1.245,-0.523,0.118,0.0,0.074,5.679,0.0,0.073,1.831,-0.051,-1.083,-1.206,-1.646,0.0,2.917,14.763,1857.7,1859.4,12951.7,4219.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 -house029.xml,78.091,78.091,30.073,30.073,48.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.647,6.206,0.924,0.0,0.0,0.0,6.543,0.274,0.569,0.76,0.0,0.0,0.0,1.981,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,6.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.353,0.0,12.596,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.015,14.034,9.614,0.0,0.0,0.0,0.0,0.0,1605.9,3008.5,28.665,14.172,0.0,3.353,14.661,0.392,0.0,0.306,0.217,0.0,7.295,0.0,-0.082,7.286,0.0,7.296,0.0,3.208,-12.076,0.0,1.121,-0.886,0.008,0.0,0.054,6.07,0.0,-0.004,0.0,-0.077,-0.819,-1.09,-1.55,0.0,1.28,10.011,1610.9,1574.7,11033.1,3888.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 -house030.xml,58.61,58.61,17.191,17.191,0.0,0.0,41.419,0.0,0.0,0.0,0.0,0.0,0.056,0.0,0.0,0.0,0.0,0.0,5.324,0.272,0.497,0.57,0.0,0.0,0.0,1.834,0.0,0.0,0.366,0.286,0.168,0.096,0.701,1.879,5.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.104,0.0,13.278,2.238,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.439,0.0,7.713,2.194,0.0,0.0,0.0,0.0,1133.9,0.0,16.227,0.0,0.0,1.661,10.169,0.487,1.098,1.042,0.949,0.0,0.0,4.255,-0.04,2.74,0.0,5.69,0.0,0.0,-10.762,0.0,-0.016,-3.301,-0.142,0.152,-0.345,1.805,0.0,0.0,-2.199,-0.036,-0.793,-2.023,-2.833,0.0,0.0,9.887,1141.1,1062.6,7141.6,2725.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house031.xml,229.031,229.031,49.316,49.316,179.714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.009,12.38,3.635,0.0,0.0,0.0,10.36,0.246,0.758,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.689,0.493,0.29,0.132,0.0,2.82,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.22,0.0,26.758,3.857,3.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,119.055,40.646,16.074,5.233,0.0,0.0,48.0,119.0,2872.0,7720.0,125.226,49.517,0.0,14.462,41.994,1.048,6.569,1.392,2.516,0.0,1.901,5.964,-0.823,56.847,0.0,0.653,0.0,9.703,-23.336,0.0,2.167,4.987,0.171,2.806,0.11,18.613,0.0,0.264,-3.676,-0.791,-2.004,-0.396,-0.012,0.0,3.131,14.835,2351.3,2428.6,16182.3,4593.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 -house032.xml,107.909,107.909,16.377,16.377,91.531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.484,0.0,0.0,0.0,0.0,0.0,5.094,0.0,0.518,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.633,0.0,21.513,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.937,0.0,12.214,4.917,0.0,0.0,152.0,0.0,1414.3,0.0,50.151,0.0,0.0,10.437,8.786,1.927,20.457,1.415,-1.413,0.0,0.0,4.453,0.02,14.989,0.0,0.626,0.0,0.0,-12.699,0.0,-1.803,-2.197,-0.45,0.473,-0.441,6.678,0.0,0.0,-4.798,0.026,-3.329,-1.472,-0.191,0.0,0.0,7.637,1857.7,1859.4,11844.0,3858.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 -house033.xml,125.38,125.38,17.732,17.732,0.0,107.648,0.0,0.0,0.0,0.0,0.0,0.0,0.311,0.0,0.0,0.0,0.0,0.0,4.888,0.0,0.528,0.0,0.0,0.0,0.0,1.294,0.0,0.0,0.0,0.39,2.899,1.661,0.0,2.35,3.412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.788,0.0,23.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,63.121,0.0,10.968,0.0,0.0,0.0,0.0,0.0,1204.0,0.0,48.454,0.0,0.0,19.167,14.584,0.0,0.0,1.001,3.214,0.0,14.741,0.0,-0.358,18.581,0.0,0.793,0.0,0.0,-8.897,0.0,-0.744,-1.507,0.0,0.0,-0.17,3.799,0.0,-2.733,0.0,-0.349,-2.097,-0.58,-0.158,0.0,0.0,4.555,1857.7,0.0,12693.2,4135.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house034.xml,153.577,153.577,43.566,43.566,0.0,0.0,110.011,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,0.0,0.0,0.0,16.498,0.341,1.204,0.0,0.0,0.0,0.0,1.909,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,15.707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.7,0.0,22.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,62.009,0.0,12.369,5.394,0.0,0.0,0.0,0.0,2971.8,0.0,85.849,0.0,0.0,8.911,27.066,0.0,2.86,1.906,-0.813,0.0,10.824,2.681,0.075,34.844,0.0,0.572,0.0,0.0,-26.762,0.0,-2.177,-8.151,0.0,-0.189,-0.537,17.503,0.0,-2.923,-3.966,0.111,-9.702,-5.569,-0.208,0.0,0.0,15.856,1857.7,1859.4,11100.4,3616.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 -house035.xml,73.573,73.573,18.701,18.701,54.872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.796,1.796,0.125,0.0,0.0,0.0,5.438,0.0,0.533,0.0,0.0,0.0,0.0,2.257,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.114,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.019,0.0,17.142,2.642,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.292,2.838,9.967,3.817,0.0,0.0,101.0,0.0,1416.4,1983.7,38.931,10.019,0.369,6.176,10.914,0.0,0.0,0.54,-1.551,0.0,7.868,0.0,0.004,13.643,0.0,0.492,0.0,0.0,-11.963,0.058,-0.607,-1.642,0.0,0.0,-0.085,6.075,0.0,-4.526,0.0,0.009,-2.775,-0.748,-0.13,0.0,0.0,7.33,1610.9,1574.7,11176.8,3938.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 -house036.xml,82.585,82.585,26.121,26.121,56.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.964,5.937,1.044,0.0,0.0,0.0,5.449,0.0,0.536,0.0,0.0,0.0,0.0,1.617,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.758,0.0,17.707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.857,15.012,8.412,5.837,0.0,0.0,102.0,126.0,1466.7,3222.0,31.784,17.347,5.544,2.267,3.994,0.0,0.0,1.83,-1.182,0.0,21.292,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-9.871,1.567,0.12,-0.032,0.0,0.0,-0.224,6.117,0.0,2.213,0.0,-0.0,-0.749,-0.417,-0.061,0.0,0.0,6.381,1364.1,1290.1,6619.3,2525.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 -house037.xml,93.269,93.269,22.744,22.744,0.0,70.525,0.0,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,0.0,0.0,0.0,6.807,0.0,0.61,0.0,0.0,0.0,0.0,2.004,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.842,0.0,20.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.973,0.0,9.51,0.0,0.0,0.0,0.0,0.0,1517.4,0.0,29.464,0.0,0.0,16.73,11.335,0.0,0.0,1.564,-3.204,0.0,6.597,0.0,-0.31,14.699,0.0,0.461,0.0,0.0,-10.835,0.0,-3.313,-3.336,0.0,0.0,-0.652,11.351,0.0,-4.638,0.0,-0.308,-4.583,-2.603,-0.204,0.0,0.0,8.875,1610.9,1574.7,11016.6,3882.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 -house038.xml,127.846,127.846,52.511,52.511,75.334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.899,13.879,2.898,0.0,0.0,0.0,6.908,0.315,0.625,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.689,0.493,3.669,1.927,0.0,2.82,6.085,0.0,0.0,0.0,9.699,0.0,0.0,0.0,0.0,49.614,0.0,25.721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.57,31.877,16.074,4.6,0.0,0.0,0.0,235.0,2508.5,5703.9,48.164,27.523,0.0,3.655,14.882,0.651,4.433,0.808,1.548,0.0,1.803,2.326,-0.044,22.416,0.0,0.593,0.0,0.0,-14.006,0.0,0.83,2.529,0.137,2.211,0.013,14.612,0.0,0.363,-0.617,-0.032,-0.641,-0.146,0.002,0.0,0.0,11.878,2351.3,2428.6,16182.3,4593.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 -house039.xml,98.532,98.532,20.911,20.911,77.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,3.759,0.0,0.0,4.411,0.239,0.418,0.0,0.0,0.0,0.0,1.763,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.553,0.0,0.0,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.589,0.0,9.905,1.135,0.0,0.0,0.0,0.0,1574.6,0.0,52.848,0.0,0.0,14.291,5.41,0.0,0.0,2.519,1.891,0.0,13.819,0.0,-0.045,16.976,0.0,0.558,0.0,0.0,-8.23,0.0,-2.215,-1.275,0.0,0.0,-0.771,7.734,0.0,-3.79,0.0,-0.033,-3.649,-1.432,-0.173,0.0,0.0,5.892,1610.9,1574.7,11659.6,4109.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,104.643,104.643,24.47,24.47,80.173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.288,0.0,0.0,0.0,0.0,0.0,7.373,0.0,0.651,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.966,0.0,20.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.493,0.0,10.233,5.494,0.0,0.0,0.0,0.0,1809.6,0.0,62.175,0.0,11.279,5.63,22.313,0.0,4.286,2.097,-0.22,0.0,2.046,3.365,-0.078,19.734,0.0,0.613,0.0,0.0,-14.999,0.116,-0.785,-5.18,0.0,-0.043,-0.605,8.061,0.0,-0.046,-3.808,-0.055,-4.228,-1.981,-0.185,0.0,0.0,8.838,1610.9,1574.7,9674.8,3409.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 -house041.xml,263.105,263.105,47.299,47.299,215.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.251,2.644,0.266,0.0,0.0,0.0,13.943,0.315,1.031,0.05,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.473,2.35,14.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189.256,0.0,26.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,178.33,4.919,15.632,5.037,0.0,0.0,135.0,0.0,3249.4,4568.2,77.766,23.812,0.0,11.226,44.587,3.435,34.913,3.015,18.258,0.0,4.27,22.006,-0.485,64.012,0.0,2.762,0.0,0.0,-31.257,0.0,0.081,-2.242,-0.119,1.5,-0.212,7.03,0.0,-0.319,-4.876,-0.483,-3.531,-1.056,-0.261,0.0,0.0,9.532,1857.7,1859.4,14896.5,4852.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 -house042.xml,233.404,233.404,40.19,40.19,193.215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.955,1.845,0.077,0.0,0.0,0.0,9.539,0.213,0.678,0.093,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,13.542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.779,0.0,24.436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.948,3.165,15.632,3.225,0.0,0.0,0.0,0.0,2766.5,3100.9,89.307,19.845,0.0,9.18,39.862,3.99,43.775,2.66,12.414,0.0,2.424,18.904,-0.372,56.22,0.0,1.75,0.0,0.0,-26.736,0.0,0.183,-1.616,-0.065,2.509,-0.161,3.914,0.0,-0.272,-4.674,-0.368,-2.883,-0.665,-0.146,0.0,0.0,7.51,1857.7,1859.4,14896.4,4852.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 -house043.xml,160.384,160.384,30.132,30.132,130.253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.505,2.056,0.122,0.0,0.0,0.0,6.562,0.213,0.514,0.093,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.353,0.0,19.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,105.112,3.155,13.085,2.206,0.0,0.0,0.0,0.0,1993.2,2795.9,55.29,13.945,0.0,3.165,23.17,2.278,33.802,5.586,11.948,0.0,0.547,12.498,-0.274,28.923,0.0,1.576,0.0,0.0,-19.498,0.0,0.028,-0.934,-0.095,1.433,-0.381,3.425,0.0,-0.071,-3.427,-0.274,-1.633,-0.55,-0.148,0.0,0.0,5.886,1610.9,1574.7,12168.1,4288.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 -house044.xml,228.458,228.458,43.631,43.631,184.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.752,2.136,0.205,0.0,0.0,0.0,12.955,0.315,0.974,0.037,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,12.956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.262,0.0,22.565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,150.758,3.937,13.085,4.45,0.0,0.0,0.0,0.0,3099.8,3551.6,81.667,19.114,4.361,6.886,36.341,9.094,19.186,2.732,5.604,0.0,12.682,18.166,-0.464,61.873,0.0,1.434,0.0,0.0,-28.254,0.233,0.434,-1.49,-0.105,1.079,-0.123,5.569,0.0,-1.165,-4.601,-0.461,-2.772,-0.503,-0.103,0.0,0.0,8.025,1610.9,1574.7,12168.2,4288.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 -house045.xml,152.166,152.166,35.221,35.221,116.945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.767,2.395,0.299,0.0,0.0,0.0,9.065,0.315,0.749,1.793,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.494,0.0,22.451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.793,4.082,13.085,4.362,0.0,0.0,0.0,0.0,2316.1,2997.7,47.111,12.915,3.563,3.071,15.121,2.27,32.708,1.138,6.202,0.636,0.086,12.52,-0.186,20.634,0.0,10.931,0.0,0.0,-21.685,-0.013,0.005,-1.097,-0.117,0.88,-0.089,5.076,0.328,-0.013,-4.089,-0.185,-1.188,-0.92,-1.263,0.0,0.0,6.867,1610.9,1574.7,12168.2,4288.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 -house046.xml,24.966,24.966,24.966,24.966,0.0,0.0,0.0,0.0,0.0,0.0,5.409,0.272,0.38,3.589,1.142,4.924,0.0,0.0,1.03,0.0,0.082,0.0,0.0,0.0,0.0,1.793,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.644,2.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.979,12.719,4.305,0.617,0.0,0.0,0.0,0.0,3780.1,2265.4,16.064,12.964,0.0,2.52,3.83,0.0,0.0,0.327,0.647,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.827,-4.067,0.0,1.287,2.524,0.0,0.0,0.024,3.101,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.684,5.134,596.8,442.2,5543.5,2208.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 -house047.xml,20.753,20.753,14.467,14.467,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.587,0.005,4.487,0.0,0.0,0.921,0.0,0.463,0.182,0.0,0.0,0.0,1.444,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.644,2.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.111,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.3,966.0,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.175,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-4.101,0.0,-0.0,0.101,0.032,0.0,0.0,0.705,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.685,251.7,442.2,5772.6,1524.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 -house048.xml,94.857,94.857,41.464,41.464,53.393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.343,14.217,4.289,0.0,0.0,0.0,3.691,0.085,0.498,2.892,0.0,0.0,0.0,2.421,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.35,8.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.438,0.0,12.616,0.0,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.285,52.236,7.253,2.672,0.0,0.0,0.0,0.0,1520.6,5080.6,46.206,33.552,1.017,2.619,11.977,0.0,0.0,0.813,2.388,0.0,0.058,2.019,-0.532,8.103,0.0,4.231,0.0,6.496,-9.004,1.353,1.065,9.369,0.0,0.0,0.563,7.068,0.0,0.074,10.115,-0.52,0.771,-0.441,1.851,0.0,7.487,13.678,130.3,817.7,11617.7,3495.1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 -house049.xml,32.052,32.052,28.556,28.556,3.497,0.0,0.0,0.0,0.0,0.0,5.849,0.0,0.035,5.861,0.158,2.621,0.249,0.0,1.474,0.057,0.099,2.092,0.0,0.0,0.0,3.073,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.879,4.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.698,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.203,34.04,4.262,1.305,0.0,0.0,0.0,107.0,4425.3,2165.2,12.334,17.679,0.0,1.365,4.439,0.0,0.0,0.0,-3.667,0.0,0.0,1.448,-0.076,2.578,0.0,1.806,0.0,0.0,-2.872,0.0,1.568,6.672,0.0,0.0,0.0,18.287,0.0,0.0,2.969,-0.076,-0.317,-3.562,0.51,0.0,0.0,8.569,728.6,567.4,7485.0,928.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 -house050.xml,51.808,51.808,21.832,21.832,29.977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.275,1.887,0.33,0.0,0.0,0.0,1.782,0.057,0.111,2.23,0.0,0.0,0.0,2.36,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.114,5.961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.061,0.0,10.847,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.688,5.135,8.573,0.0,0.0,0.0,0.0,0.0,1156.7,2577.1,11.113,15.357,0.0,4.131,6.506,0.0,0.0,2.03,1.424,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.92,-11.514,0.0,-0.284,-0.31,0.0,0.0,-0.39,3.474,0.0,-0.955,0.0,-0.123,-0.557,-1.22,-0.76,0.0,0.565,5.804,1689.0,437.0,10675.0,2994.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 +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 Heat Pump Backup (MBtu),End Use: Electricity: Heating 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: Hot Tub Heater (MBtu),End Use: Electricity: Hot Tub Pump (MBtu),End Use: Electricity: PV (MBtu),End Use: Electricity: Generator (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: Hot Tub 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),Load: Heating: Delivered (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),Unmet Hours: Heating (hr),Unmet Hours: Cooling (hr),Peak Electricity: Winter Total (W),Peak Electricity: Summer Total (W),Peak Load: Heating: Delivered (kBtu/hr),Peak Load: Cooling: Delivered (kBtu/hr),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 (MBtu),Component Load: Heating: Skylights (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: 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 (MBtu),Component Load: Cooling: Skylights (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),Hot Water: Clothes Washer (gal),Hot Water: Dishwasher (gal),Hot Water: Fixtures (gal),Hot Water: Distribution Waste (gal),HVAC Capacity: Heating (Btu/h),HVAC Capacity: Cooling (Btu/h),HVAC Capacity: Heat Pump Backup (Btu/h),HVAC Design Temperature: Heating (F),HVAC Design Temperature: Cooling (F),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),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Total (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Total (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Heating Fans/Pumps (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Cooling (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Cooling Fans/Pumps (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Hot Water (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Lighting Interior (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Lighting Exterior (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Refrigerator (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Dishwasher (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Clothes Washer (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Clothes Dryer (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Range/Oven (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Television (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: Plug Loads (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Electricity: PV (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Natural Gas: Total (lb),Emissions: CO2e: Cambium Hourly MidCase LRMER RMPA: Natural Gas: Heating (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Total (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Total (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Heating Fans/Pumps (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Cooling (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Cooling Fans/Pumps (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Hot Water (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Lighting Interior (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Lighting Exterior (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Refrigerator (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Dishwasher (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Clothes Washer (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Clothes Dryer (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Range/Oven (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Television (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: Plug Loads (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Electricity: PV (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Natural Gas: Total (lb),Emissions: CO2e: Cambium Hourly LowRECosts LRMER RMPA: Natural Gas: Heating (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Total (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Total (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Heating Fans/Pumps (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Cooling (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Cooling Fans/Pumps (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Hot Water (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Lighting Interior (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Lighting Exterior (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Refrigerator (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Dishwasher (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Clothes Washer (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Clothes Dryer (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Range/Oven (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Television (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: Plug Loads (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Electricity: PV (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Natural Gas: Total (lb),Emissions: CO2e: Cambium Annual MidCase AER National: Natural Gas: Heating (lb),Emissions: SO2: eGRID RMPA: Total (lb),Emissions: SO2: eGRID RMPA: Electricity: Total (lb),Emissions: SO2: eGRID RMPA: Electricity: Heating Fans/Pumps (lb),Emissions: SO2: eGRID RMPA: Electricity: Cooling (lb),Emissions: SO2: eGRID RMPA: Electricity: Cooling Fans/Pumps (lb),Emissions: SO2: eGRID RMPA: Electricity: Hot Water (lb),Emissions: SO2: eGRID RMPA: Electricity: Lighting Interior (lb),Emissions: SO2: eGRID RMPA: Electricity: Lighting Exterior (lb),Emissions: SO2: eGRID RMPA: Electricity: Refrigerator (lb),Emissions: SO2: eGRID RMPA: Electricity: Dishwasher (lb),Emissions: SO2: eGRID RMPA: Electricity: Clothes Washer (lb),Emissions: SO2: eGRID RMPA: Electricity: Clothes Dryer (lb),Emissions: SO2: eGRID RMPA: Electricity: Range/Oven (lb),Emissions: SO2: eGRID RMPA: Electricity: Television (lb),Emissions: SO2: eGRID RMPA: Electricity: Plug Loads (lb),Emissions: SO2: eGRID RMPA: Electricity: PV (lb),Emissions: SO2: eGRID RMPA: Natural Gas: Total (lb),Emissions: SO2: eGRID RMPA: Natural Gas: Heating (lb),Emissions: NOx: eGRID RMPA: Total (lb),Emissions: NOx: eGRID RMPA: Electricity: Total (lb),Emissions: NOx: eGRID RMPA: Electricity: Heating Fans/Pumps (lb),Emissions: NOx: eGRID RMPA: Electricity: Cooling (lb),Emissions: NOx: eGRID RMPA: Electricity: Cooling Fans/Pumps (lb),Emissions: NOx: eGRID RMPA: Electricity: Hot Water (lb),Emissions: NOx: eGRID RMPA: Electricity: Lighting Interior (lb),Emissions: NOx: eGRID RMPA: Electricity: Lighting Exterior (lb),Emissions: NOx: eGRID RMPA: Electricity: Refrigerator (lb),Emissions: NOx: eGRID RMPA: Electricity: Dishwasher (lb),Emissions: NOx: eGRID RMPA: Electricity: Clothes Washer (lb),Emissions: NOx: eGRID RMPA: Electricity: Clothes Dryer (lb),Emissions: NOx: eGRID RMPA: Electricity: Range/Oven (lb),Emissions: NOx: eGRID RMPA: Electricity: Television (lb),Emissions: NOx: eGRID RMPA: Electricity: Plug Loads (lb),Emissions: NOx: eGRID RMPA: Electricity: PV (lb),Emissions: NOx: eGRID RMPA: Natural Gas: Total (lb),Emissions: NOx: eGRID RMPA: Natural Gas: Heating (lb) +base-appliances-coal.xml,59.99,59.99,33.21,33.21,21.914,0.0,0.0,0.0,0.0,4.866,0.0,0.0,0.362,4.364,0.845,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,20.522,14.338,9.234,0.614,0.0,0.0,0.0,0.0,1968.7,3140.0,22.864,18.17,0.0,3.555,3.641,0.512,7.446,0.63,-2.062,0.0,0.0,8.214,-0.065,4.984,0.0,0.487,0.0,4.764,-11.921,0.0,-0.059,-0.467,-0.052,2.692,-0.027,9.821,0.0,0.0,-6.385,-0.062,-1.215,-3.119,-0.111,0.0,3.162,10.345,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-portable.xml,34.548,34.548,33.229,33.229,1.32,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,8.784,1.873,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.622,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,1.158,30.522,6.675,0.572,0.0,0.0,0.0,0.0,2251.3,2761.9,9.474,14.235,0.0,1.762,1.644,0.0,0.0,0.39,0.124,0.0,0.0,1.306,-0.371,1.052,0.091,0.397,0.0,0.033,-5.52,0.0,0.54,-0.017,0.0,0.0,0.204,19.033,0.0,0.0,1.813,-0.366,-0.338,-1.892,-0.093,0.0,0.345,11.453,1354.8,997.6,9989.1,2461.3,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,14675.0,163.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,2520.0,1416.0,325.0,291.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.575,34.575,33.279,33.279,1.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,8.783,1.873,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.674,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.147,30.512,6.675,0.571,0.0,0.0,0.0,0.0,2118.7,2761.9,9.489,14.235,0.0,1.774,1.655,0.0,0.0,0.393,0.139,0.0,0.0,1.314,-0.374,1.06,0.09,0.4,0.0,0.032,-5.585,0.0,0.55,-0.007,0.0,0.0,0.207,19.045,0.0,0.0,1.819,-0.369,-0.331,-1.888,-0.09,0.0,0.345,11.41,1354.8,997.6,9989.1,2461.3,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,14675.0,163.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,2520.0,1416.0,325.0,291.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.536,34.536,33.148,33.148,1.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,8.771,1.87,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.558,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.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,0.0,1.239,30.485,6.675,0.572,0.0,0.0,0.0,0.0,2167.5,2757.4,9.55,14.236,0.0,1.77,1.649,0.0,0.0,0.388,0.018,0.0,0.0,1.319,-0.361,1.049,0.097,0.397,0.0,0.035,-5.383,0.0,0.554,-0.006,0.0,0.0,0.204,18.948,0.0,0.0,1.846,-0.356,-0.336,-1.876,-0.091,0.0,0.345,11.414,1354.8,997.6,9989.2,2461.4,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,14675.0,163.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,2520.0,1416.0,325.0,291.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.509,34.509,33.204,33.204,1.304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,8.775,1.871,6.813,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.608,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.304,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.166,30.477,6.675,0.572,0.0,0.0,0.0,0.0,2083.7,2761.9,9.546,14.235,0.0,1.777,1.657,0.0,0.0,0.395,0.134,0.0,0.0,1.307,-0.382,1.062,0.087,0.4,0.0,0.032,-5.552,0.0,0.558,-0.0,0.0,0.0,0.21,19.054,0.0,0.0,1.824,-0.377,-0.326,-1.889,-0.088,0.0,0.345,11.365,1354.8,997.6,9989.2,2461.4,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,14675.0,163.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,2520.0,1416.0,325.0,291.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.99,59.99,33.21,33.21,26.78,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.364,0.845,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,0.0,0.0,1.797,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,14.338,9.234,0.614,0.0,0.0,0.0,0.0,1968.7,3140.0,22.864,18.17,0.0,3.555,3.641,0.512,7.446,0.63,-2.062,0.0,0.0,8.214,-0.065,4.984,0.0,0.487,0.0,4.764,-11.921,0.0,-0.059,-0.467,-0.052,2.692,-0.027,9.821,0.0,0.0,-6.385,-0.062,-1.215,-3.119,-0.111,0.0,3.162,10.345,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.606,58.606,36.894,36.894,21.712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.358,4.393,0.853,9.69,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.636,0.365,1.519,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.712,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.333,14.475,9.799,0.614,0.0,0.0,0.0,0.0,2161.3,3668.6,22.863,18.085,0.0,3.555,3.639,0.512,7.448,0.63,-2.044,0.0,0.0,8.208,-0.066,5.404,0.0,0.0,0.0,4.727,-12.024,0.0,-0.066,-0.473,-0.053,2.679,-0.029,9.824,0.0,0.0,-6.412,-0.062,-1.319,-3.136,0.0,0.0,3.185,10.522,1354.8,1997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,52.868,52.868,28.353,28.353,24.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.404,3.941,0.743,7.932,0.0,0.0,4.51,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.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.96,12.593,7.908,0.616,0.0,0.0,0.0,0.0,1861.5,2847.7,23.264,16.854,0.0,3.518,3.617,0.509,7.377,0.625,-2.146,0.0,0.0,8.133,-0.06,5.396,0.0,0.0,0.0,5.261,-9.594,0.0,0.005,-0.417,-0.045,2.833,-0.014,9.954,0.0,0.0,-6.15,-0.056,-1.264,-2.898,0.0,0.0,2.848,7.977,0.0,0.0,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-location-miami-fl.xml,50.162,50.162,45.296,45.296,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.866,4.106,4.848,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.779,4.659,0.55,0.0,0.0,0.0,0.0,0.0,3199.4,0.0,21.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,0.802,0.729,0.135,9.705,0.336,23.98,0.0,0.0,3.112,-0.01,-0.532,-2.924,-0.004,0.0,10.343,22.203,1354.8,997.6,8625.1,1979.2,12000.0,24000.0,0.0,51.62,90.68,12397.0,5549.0,2184.0,0.0,167.0,1864.0,0.0,0.0,711.0,631.0,1291.0,20738.0,7582.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,2520.0,2991.0,842.0,1349.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.99,59.99,33.21,33.21,21.914,4.866,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.364,0.845,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,14.338,9.234,0.614,0.0,0.0,0.0,0.0,1968.7,3140.0,22.864,18.17,0.0,3.555,3.641,0.512,7.446,0.63,-2.062,0.0,0.0,8.214,-0.065,4.984,0.0,0.487,0.0,4.764,-11.921,0.0,-0.059,-0.467,-0.052,2.692,-0.027,9.821,0.0,0.0,-6.385,-0.062,-1.215,-3.119,-0.111,0.0,3.162,10.345,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-location-portland-or.xml,54.895,54.895,29.764,29.764,20.266,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.083,2.109,0.357,8.739,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.266,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.728,5.956,8.776,0.615,0.0,0.0,0.0,0.0,1916.5,2888.1,14.03,14.932,0.0,3.151,3.299,0.464,6.932,0.646,-1.663,0.0,0.0,12.082,-0.073,4.335,0.0,0.554,0.0,4.033,-15.263,0.0,-0.131,-0.424,-0.05,1.309,-0.027,6.487,0.0,0.0,-6.132,-0.073,-0.932,-1.952,-0.123,0.0,1.133,7.005,1354.8,997.6,11239.6,2579.1,24000.0,24000.0,0.0,28.58,87.08,23400.0,7561.0,4921.0,0.0,377.0,4200.0,0.0,0.0,1603.0,1423.0,3315.0,18327.0,6166.0,6621.0,0.0,210.0,278.0,0.0,0.0,0.0,2032.0,500.0,2520.0,599.0,0.0,-201.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.99,59.99,33.21,33.21,21.914,0.0,4.866,0.0,0.0,0.0,0.0,0.0,0.362,4.364,0.845,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,14.338,9.234,0.614,0.0,0.0,0.0,0.0,1968.7,3140.0,22.864,18.17,0.0,3.555,3.641,0.512,7.446,0.63,-2.062,0.0,0.0,8.214,-0.065,4.984,0.0,0.487,0.0,4.764,-11.921,0.0,-0.059,-0.467,-0.052,2.692,-0.027,9.821,0.0,0.0,-6.385,-0.062,-1.215,-3.119,-0.111,0.0,3.162,10.345,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.99,59.99,33.21,33.21,21.914,0.0,0.0,4.866,0.0,0.0,0.0,0.0,0.362,4.364,0.845,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,0.135,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,14.338,9.234,0.614,0.0,0.0,0.0,0.0,1968.7,3140.0,22.864,18.17,0.0,3.555,3.641,0.512,7.446,0.63,-2.062,0.0,0.0,8.214,-0.065,4.984,0.0,0.487,0.0,4.764,-11.921,0.0,-0.059,-0.467,-0.052,2.692,-0.027,9.821,0.0,0.0,-6.385,-0.062,-1.215,-3.119,-0.111,0.0,3.162,10.345,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,61.83,61.83,35.747,35.747,26.083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.43,4.093,0.782,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.083,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.407,13.108,9.234,0.616,0.0,0.0,0.0,0.0,2144.3,2990.5,22.625,15.234,6.75,0.0,4.216,0.511,7.391,0.63,-2.182,0.0,0.0,8.229,-0.087,9.303,0.0,0.728,0.0,0.0,-11.441,0.142,0.0,-0.505,-0.048,2.776,-0.018,13.695,0.0,0.0,-6.341,-0.061,-2.088,-3.876,-0.158,0.0,0.0,9.848,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,29887.0,0.0,9510.0,0.0,575.0,6763.0,3697.0,0.0,2446.0,0.0,6896.0,15154.0,0.0,10222.0,0.0,207.0,302.0,975.0,0.0,0.0,0.0,929.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,67.04,67.04,40.744,40.744,26.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.434,4.892,0.976,9.068,0.0,0.0,5.751,0.0,0.398,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,11.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.296,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.629,16.415,9.18,0.614,0.0,0.0,0.0,0.0,2408.2,3713.7,26.435,20.713,4.552,1.164,5.544,0.518,7.587,0.635,-1.631,0.0,0.0,8.449,-0.08,7.083,0.0,0.73,0.0,3.086,-13.413,0.003,0.02,-0.569,-0.054,2.695,-0.03,14.682,0.0,0.0,-6.37,-0.074,-1.693,-4.162,-0.166,0.0,0.936,11.502,1354.8,997.6,11399.6,2521.8,36000.0,24000.0,0.0,6.8,91.76,38250.0,7495.0,10436.0,0.0,575.0,7551.0,2464.0,0.0,2446.0,724.0,6561.0,18739.0,0.0,12709.0,0.0,207.0,1098.0,650.0,0.0,0.0,670.0,886.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,54.773,54.773,35.078,35.078,19.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.325,3.635,0.678,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.695,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.43,11.336,9.234,0.615,0.0,0.0,0.0,0.0,2122.2,2674.8,17.557,11.949,6.032,0.0,3.61,0.508,7.358,0.623,-2.155,0.0,0.0,8.088,-0.075,4.798,0.0,0.727,0.0,0.0,-11.408,0.302,0.0,-0.449,-0.05,2.746,-0.023,9.859,0.0,0.0,-6.294,-0.049,-1.155,-3.035,-0.163,0.0,0.0,9.88,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,24841.0,0.0,7508.0,0.0,575.0,6409.0,3307.0,0.0,2446.0,0.0,4597.0,11610.0,0.0,7127.0,0.0,207.0,265.0,872.0,0.0,0.0,0.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.382,37.382,33.138,33.138,4.244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.018,9.213,1.955,6.821,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.244,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.919,31.804,6.675,0.58,0.0,0.0,0.0,0.0,1664.4,3196.0,13.585,18.095,0.0,6.142,1.58,0.0,0.0,0.332,-1.427,0.0,0.0,0.826,-0.349,0.992,0.0,0.4,0.0,0.105,-4.898,0.0,2.51,0.164,0.0,0.0,0.205,18.196,0.0,0.0,2.097,-0.341,-0.274,-1.702,-0.047,0.0,0.367,10.913,1354.8,997.6,9989.1,2461.3,24000.0,24000.0,0.0,25.88,98.42,25739.0,1416.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,6846.0,1760.0,21453.0,156.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,9596.0,568.0,2520.0,1416.0,325.0,291.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,57.301,57.301,35.235,35.235,22.065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.364,3.734,0.696,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.065,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.65,11.613,9.234,0.615,0.0,0.0,0.0,0.0,2128.5,2936.3,19.16,13.167,0.0,5.433,3.618,0.509,7.381,0.625,-2.136,0.0,0.0,8.161,-0.06,4.801,0.0,0.728,0.0,2.685,-11.414,0.0,-1.43,-0.416,-0.045,2.853,-0.015,9.959,0.0,0.0,-6.112,-0.051,-1.132,-2.89,-0.161,0.0,1.402,9.875,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,30549.0,4825.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,4190.0,4597.0,18589.0,1653.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,6198.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,57.961,57.961,35.575,35.575,22.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.369,3.862,0.728,9.34,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.962,12.247,9.234,0.803,0.0,0.0,0.0,0.0,2133.8,3226.3,21.434,14.315,0.0,3.889,3.63,0.511,7.414,0.628,-2.104,0.0,0.0,8.18,-0.061,4.803,0.0,0.728,0.0,4.117,-11.086,0.0,-0.518,-0.44,-0.048,2.77,-0.02,9.891,0.0,0.0,-6.26,-0.057,-1.152,-2.995,-0.163,0.0,1.888,9.587,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,15605.0,3604.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,1263.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-adjacent-to-multifamily-buffer-space.xml,36.616,36.616,24.806,24.806,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.087,1.6,0.205,9.832,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.811,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.949,3.054,9.539,0.73,0.0,0.0,0.0,0.0,1572.3,1915.2,7.667,5.81,0.0,2.94,3.649,0.0,0.0,0.582,-0.166,0.0,2.975,0.0,-0.035,1.668,0.0,0.0,0.0,4.733,-5.435,0.0,-0.922,-0.231,0.0,0.0,-0.054,1.071,0.0,-0.935,0.0,-0.032,-0.285,-0.349,0.0,0.0,0.558,4.263,1354.8,997.6,11399.5,3156.5,12000.0,12000.0,0.0,6.8,91.76,12347.0,5659.0,903.0,0.0,378.0,1949.0,0.0,963.0,0.0,963.0,1532.0,7440.0,2262.0,1223.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-adjacent-to-multiple.xml,31.829,31.829,25.239,25.239,6.59,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.048,2.08,0.311,9.717,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.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,6.113,4.964,9.539,0.61,0.0,0.0,0.0,0.0,1569.8,2359.3,9.397,10.56,0.0,-0.004,3.294,0.0,0.0,1.383,-0.201,0.0,4.543,0.0,-0.057,1.248,0.0,0.79,0.0,2.45,-7.438,0.0,0.0,-0.445,0.0,0.0,-0.418,3.387,0.0,-3.023,0.0,-0.051,-0.247,-1.106,-0.13,0.0,0.48,6.588,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,12328.0,5014.0,2576.0,0.0,296.0,1671.0,0.0,1239.0,0.0,0.0,1532.0,9379.0,1558.0,3495.0,0.0,142.0,277.0,0.0,1181.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-adjacent-to-non-freezing-space.xml,49.791,49.791,24.812,24.812,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.183,1.46,0.171,9.916,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.979,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.163,2.502,9.539,0.818,0.0,0.0,0.0,0.0,1579.7,2245.3,11.078,8.42,0.0,5.364,4.204,0.0,0.0,0.788,-0.296,0.0,5.416,0.0,-0.06,1.701,0.0,0.0,0.0,11.752,-5.734,0.0,-1.186,-0.054,0.0,0.0,-0.054,1.066,0.0,-1.192,0.0,-0.056,-0.191,-0.277,0.0,0.0,0.527,3.965,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,14594.0,6779.0,903.0,0.0,424.0,2068.0,0.0,1444.0,0.0,1444.0,1532.0,9351.0,3229.0,1223.0,0.0,180.0,380.0,0.0,807.0,0.0,807.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-adjacent-to-other-heated-space.xml,26.032,26.032,24.669,24.669,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,1.624,0.211,9.743,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.261,3.156,9.539,0.636,0.0,0.0,0.0,0.0,1563.0,1883.9,3.416,5.811,0.0,0.353,3.152,0.0,0.0,0.376,-0.007,0.0,0.375,0.0,-0.006,1.698,0.0,0.0,0.0,0.387,-5.135,0.0,-0.831,-0.466,0.0,0.0,-0.076,1.051,0.0,-0.847,0.0,-0.002,-0.394,-0.388,0.0,0.0,0.576,4.564,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,8333.0,3674.0,903.0,0.0,296.0,1735.0,0.0,96.0,0.0,96.0,1532.0,7440.0,2262.0,1223.0,0.0,142.0,280.0,0.0,403.0,0.0,403.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-adjacent-to-other-housing-unit.xml,26.329,26.329,25.213,25.213,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008,2.098,0.33,9.695,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.116,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.034,5.133,9.539,0.587,0.0,0.0,0.0,0.0,1556.3,1840.5,3.707,4.326,0.0,-0.003,3.197,0.0,0.0,0.368,0.126,0.0,-0.002,0.0,-0.063,1.761,0.0,0.0,0.0,0.321,-4.714,0.0,-0.001,-0.556,0.0,0.0,-0.044,0.987,0.0,-0.0,0.0,-0.059,-0.532,-0.512,0.0,0.0,0.913,4.984,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,7888.0,3455.0,903.0,0.0,287.0,1711.0,0.0,0.0,0.0,0.0,1532.0,5543.0,1310.0,1223.0,0.0,103.0,180.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-calctype-operational.xml,19.885,19.885,18.582,18.582,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,2.353,0.391,4.595,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.169,0.22,0.912,1.184,0.0,1.505,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.303,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.205,6.696,4.213,0.586,0.0,0.0,0.0,0.0,1077.5,1601.3,3.915,6.507,0.0,-0.014,2.619,0.0,0.0,0.418,1.132,0.0,-0.012,0.0,-0.305,1.3,0.0,0.75,0.0,0.0,-4.763,0.0,-0.01,-0.765,0.0,0.0,-0.014,3.847,0.0,-0.007,0.0,-0.297,-0.396,-1.194,-0.273,0.0,0.0,5.892,817.2,530.6,4779.7,1341.4,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-boiler-chiller-baseboard.xml,27.336,27.336,26.637,26.637,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.034,3.026,0.81,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.625,8.678,9.539,0.577,0.0,0.0,0.0,0.0,1573.4,2070.5,3.451,6.929,0.0,-0.013,2.524,0.0,0.0,0.42,1.418,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-5.46,0.0,-0.008,-1.03,0.0,0.0,-0.043,3.873,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,8.534,1354.8,997.6,11399.6,3156.5,0.0,8340.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-boiler-chiller-fan-coil-ducted.xml,28.116,28.116,27.371,27.371,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.059,3.63,0.914,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.746,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.663,9.807,9.539,0.577,0.0,0.0,0.0,1.0,1581.8,2296.5,3.602,8.022,0.0,-0.013,2.521,0.0,0.0,0.419,1.408,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.038,-5.445,0.0,-0.008,-1.032,0.0,0.0,-0.044,3.862,0.0,-0.003,0.0,-0.332,-0.505,-1.332,-0.376,0.0,1.138,8.548,1354.8,997.6,11399.6,3156.5,0.0,9375.0,0.0,6.8,91.76,8647.0,2761.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-boiler-chiller-fan-coil.xml,27.616,27.616,26.953,26.953,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.079,3.297,0.81,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.625,8.678,9.539,0.577,0.0,0.0,0.0,0.0,1595.2,2140.8,3.454,6.929,0.0,-0.013,2.524,0.0,0.0,0.42,1.418,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-5.46,0.0,-0.008,-1.03,0.0,0.0,-0.043,3.873,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,8.534,1354.8,997.6,11399.6,3156.5,0.0,8340.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-boiler-chiller-water-loop-heat-pump.xml,32.747,32.747,32.203,32.203,0.544,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.034,8.453,0.914,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.638,9.807,9.539,0.577,0.0,0.0,0.0,1.0,1588.1,3611.8,3.535,8.022,0.0,-0.013,2.522,0.0,0.0,0.419,1.408,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-5.445,0.0,-0.008,-1.032,0.0,0.0,-0.044,3.862,0.0,-0.003,0.0,-0.332,-0.505,-1.332,-0.376,0.0,1.138,8.548,1354.8,997.6,11399.6,3156.5,24000.0,9375.0,0.0,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-boiler-cooling-tower-water-loop-heat-pump.xml,27.735,27.735,27.191,27.191,0.544,0.0,0.0,0.0,0.0,0.0,0.034,0.0,0.034,3.441,0.914,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.638,9.807,9.539,0.577,0.0,0.0,0.0,1.0,1588.1,2245.0,3.535,8.022,0.0,-0.013,2.522,0.0,0.0,0.419,1.408,0.0,-0.008,0.0,-0.342,1.279,0.0,0.688,0.0,0.015,-5.445,0.0,-0.008,-1.032,0.0,0.0,-0.044,3.862,0.0,-0.003,0.0,-0.332,-0.505,-1.332,-0.376,0.0,1.138,8.548,1354.8,997.6,11399.6,3156.5,24000.0,9375.0,0.0,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-boiler-only-baseboard.xml,23.295,23.295,22.713,22.713,0.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,9.539,0.49,0.0,0.0,0.0,0.0,1523.3,0.0,3.451,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,0.992,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-7.194,0.0,0.0,-1.535,0.0,0.0,-0.241,1.244,0.0,0.0,0.0,-0.0,-0.695,-4.751,-0.469,0.0,0.0,6.714,1354.8,997.6,11399.7,3156.5,0.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-boiler-only-fan-coil-ducted.xml,23.355,23.355,22.734,22.734,0.621,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.049,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,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,0.552,0.0,9.539,0.49,0.0,0.0,0.0,0.0,1531.6,0.0,3.603,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,0.992,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.032,-7.194,0.0,0.0,-1.535,0.0,0.0,-0.241,1.244,0.0,0.0,0.0,-0.0,-0.695,-4.751,-0.469,0.0,-0.0,6.714,1354.8,997.6,11399.7,3156.5,0.0,0.0,0.0,6.8,91.76,8647.0,2761.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-boiler-only-fan-coil-eae.xml,23.302,23.302,22.748,22.748,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.064,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,9.539,0.49,0.0,0.0,0.0,0.0,1543.4,0.0,3.455,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,0.992,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-7.194,0.0,0.0,-1.535,0.0,0.0,-0.241,1.244,0.0,0.0,0.0,-0.0,-0.695,-4.751,-0.469,0.0,0.0,6.714,1354.8,997.6,11399.7,3156.5,0.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-boiler-only-fan-coil.xml,23.302,23.302,22.751,22.751,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.066,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.552,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.52,0.0,9.539,0.49,0.0,0.0,0.0,0.0,1545.4,0.0,3.455,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,0.992,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.0,-7.194,0.0,0.0,-1.535,0.0,0.0,-0.241,1.244,0.0,0.0,0.0,-0.0,-0.695,-4.751,-0.469,0.0,0.0,6.714,1354.8,997.6,11399.7,3156.5,0.0,0.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-boiler-only-water-loop-heat-pump.xml,23.195,23.195,22.742,22.742,0.453,0.0,0.0,0.0,0.0,0.0,0.028,0.0,0.028,0.0,0.0,9.603,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.532,0.0,9.539,0.49,0.0,0.0,0.0,0.0,1538.1,0.0,3.536,0.0,0.0,-0.003,3.438,0.0,0.0,0.487,0.992,0.0,-0.003,0.0,-0.008,1.655,0.0,0.962,0.0,0.013,-7.194,0.0,0.0,-1.535,0.0,0.0,-0.241,1.244,0.0,0.0,0.0,-0.0,-0.695,-4.751,-0.469,0.0,0.0,6.714,1354.8,997.6,11399.7,3156.5,24000.0,0.0,0.0,6.8,91.76,6770.0,884.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-chiller-only-baseboard.xml,26.589,26.589,26.589,26.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.01,0.804,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.602,9.539,0.586,0.0,0.0,0.0,0.0,0.0,1968.7,0.0,6.929,0.0,-0.012,2.414,0.0,0.0,0.391,1.119,0.0,-0.009,0.0,-0.311,1.194,0.0,0.661,0.0,0.0,-5.569,0.0,-0.007,-0.991,0.0,0.0,-0.045,3.8,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,8.433,1354.8,997.6,11399.6,3156.5,0.0,8340.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-chiller-only-fan-coil-ducted.xml,27.294,27.294,27.294,27.294,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.611,0.907,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.727,9.539,0.586,0.0,0.0,0.0,1.0,0.0,2145.4,0.0,8.022,0.0,-0.012,2.411,0.0,0.0,0.39,1.105,0.0,-0.008,0.0,-0.309,1.19,0.0,0.659,0.0,-0.0,-5.546,0.0,-0.006,-0.995,0.0,0.0,-0.046,3.785,0.0,-0.002,0.0,-0.299,-0.498,-1.33,-0.364,0.0,1.134,8.457,1354.8,997.6,11399.6,3156.5,0.0,9375.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-chiller-only-fan-coil.xml,26.858,26.858,26.858,26.858,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.279,0.804,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.602,9.539,0.586,0.0,0.0,0.0,0.0,0.0,2029.8,0.0,6.929,0.0,-0.012,2.414,0.0,0.0,0.391,1.119,0.0,-0.009,0.0,-0.311,1.194,0.0,0.661,0.0,0.0,-5.569,0.0,-0.007,-0.991,0.0,0.0,-0.045,3.8,0.0,-0.003,0.0,-0.301,-0.494,-1.323,-0.361,0.0,0.0,8.433,1354.8,997.6,11399.6,3156.5,0.0,8340.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-chiller-only-water-loop-heat-pump.xml,32.085,32.085,32.085,32.085,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.402,0.907,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.727,9.539,0.586,0.0,0.0,0.0,1.0,0.0,3443.8,0.0,8.022,0.0,-0.012,2.411,0.0,0.0,0.39,1.105,0.0,-0.008,0.0,-0.309,1.19,0.0,0.659,0.0,-0.0,-5.546,0.0,-0.006,-0.995,0.0,0.0,-0.046,3.785,0.0,-0.002,0.0,-0.299,-0.498,-1.33,-0.364,0.0,1.134,8.457,1354.8,997.6,11399.6,3156.5,0.0,9375.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-cooling-tower-only-water-loop-heat-pump.xml,27.106,27.106,27.106,27.106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.423,0.907,9.694,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.727,9.539,0.586,0.0,0.0,0.0,1.0,0.0,2101.7,0.0,8.022,0.0,-0.012,2.411,0.0,0.0,0.39,1.105,0.0,-0.008,0.0,-0.309,1.19,0.0,0.659,0.0,-0.0,-5.546,0.0,-0.006,-0.995,0.0,0.0,-0.046,3.785,0.0,-0.002,0.0,-0.299,-0.498,-1.33,-0.364,0.0,1.134,8.457,1354.8,997.6,11399.6,3156.5,0.0,9375.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,7342.0,861.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-generator.xml,41.043,38.199,26.2,23.357,0.676,0.0,14.167,0.0,0.0,0.0,0.0,0.0,0.005,2.899,0.529,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-2.843,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,0.624,8.678,9.539,0.577,0.0,0.0,0.0,0.0,1562.0,2038.4,3.453,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,1.418,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-5.458,0.0,-0.008,-1.031,0.0,0.0,-0.043,3.873,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,8.535,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-ground-loop-ground-to-air-heat-pump.xml,27.931,27.931,27.931,27.931,0.0,0.0,0.0,0.0,0.0,0.0,0.185,0.0,0.357,1.813,2.81,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,8.676,9.539,0.577,0.0,0.0,0.0,0.0,1731.9,1814.9,3.453,7.017,0.0,-0.014,2.532,0.0,0.0,0.423,1.443,0.0,-0.01,0.0,-0.347,1.29,0.0,0.695,0.0,0.0,-5.507,0.0,-0.009,-1.021,0.0,0.0,-0.04,3.898,0.0,-0.005,0.0,-0.337,-0.495,-1.325,-0.369,0.0,0.0,8.487,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,12000.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-laundry-room-multiple-water-heaters.xml,31.811,31.811,16.583,16.583,15.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.004,2.953,0.544,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.613,0.0,14.614,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.566,8.962,9.539,2.265,0.0,0.0,0.0,0.0,880.5,1469.5,3.501,7.039,0.0,-0.014,2.492,0.0,0.0,0.42,1.472,0.0,-0.01,0.0,-0.361,2.037,0.0,0.0,0.0,0.0,-5.583,0.0,-0.009,-1.073,0.0,0.0,-0.045,3.908,0.0,-0.005,0.0,-0.351,-0.912,-1.343,0.0,0.0,0.0,8.899,1354.8,997.6,11399.9,3156.6,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-laundry-room.xml,29.707,29.707,16.395,16.395,13.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,2.803,0.504,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.798,0.0,12.515,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.737,8.26,9.539,0.569,0.0,0.0,0.0,0.0,880.9,1458.2,3.659,6.923,0.0,-0.015,2.54,0.0,0.0,0.421,1.369,0.0,-0.011,0.0,-0.347,2.07,0.0,0.0,0.0,0.0,-5.386,0.0,-0.01,-0.98,0.0,0.0,-0.036,3.876,0.0,-0.006,0.0,-0.337,-0.835,-1.304,0.0,0.0,0.0,8.003,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-mechvent-multiple.xml,50.28,50.28,30.013,30.013,20.267,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.059,2.016,0.292,9.724,0.0,0.0,2.026,0.0,0.206,3.725,0.949,0.167,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.094,0.0,0.0,0.0,0.0,12.173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.499,4.803,9.539,0.617,0.0,0.0,0.0,0.0,1800.9,2248.4,7.585,8.287,0.0,-0.016,2.789,0.0,0.0,0.404,0.226,0.0,-0.019,0.0,-0.243,0.076,0.0,12.281,0.0,0.0,-7.929,0.0,-0.012,-0.117,0.0,0.0,0.061,3.687,0.0,-0.015,0.0,-0.238,-0.006,-0.685,-4.129,0.0,0.0,6.105,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,8872.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,4518.0,7402.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,1127.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-mechvent-preconditioning.xml,32.687,32.687,27.32,27.32,5.367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.01,2.557,0.434,9.696,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.045,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.407,0.0,0.0,0.0,0.0,3.959,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.302,7.061,9.539,0.588,0.0,0.0,0.0,0.0,1613.4,2093.3,4.166,7.187,0.0,-0.014,2.686,0.0,0.0,0.425,1.125,0.0,-0.012,0.0,-0.298,1.779,0.0,1.923,0.0,0.0,-6.367,0.0,-0.009,-0.693,0.0,0.0,-0.005,3.856,0.0,-0.007,0.0,-0.29,-0.508,-1.14,-1.743,0.0,0.0,7.638,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,6182.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1828.0,6515.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,239.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-mechvent.xml,31.013,31.013,27.201,27.201,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.028,2.478,0.412,9.706,0.0,0.0,2.026,0.0,0.206,1.495,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.812,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.53,6.838,9.539,0.598,0.0,0.0,0.0,0.0,1610.1,2093.8,5.994,7.808,0.0,-0.012,2.709,0.0,0.0,0.39,0.549,0.0,-0.013,0.0,-0.198,1.733,0.0,5.303,0.0,0.0,-6.912,0.0,-0.008,-0.511,0.0,0.0,-0.01,3.532,0.0,-0.009,0.0,-0.191,-0.429,-1.139,-1.476,0.0,0.0,7.103,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,7785.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,3431.0,7001.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,725.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-pv.xml,26.876,2.428,26.2,1.752,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,2.899,0.529,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,-24.448,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,8.678,9.539,0.577,0.0,0.0,0.0,0.0,1562.0,2038.4,3.453,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,1.418,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-5.458,0.0,-0.008,-1.031,0.0,0.0,-0.043,3.873,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,8.535,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-water-heater-recirc.xml,30.878,30.878,17.508,17.508,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,2.817,0.507,0.0,1.096,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.85,0.0,12.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.786,8.35,9.539,0.57,0.0,0.0,0.0,0.0,933.9,1519.0,3.654,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,1.364,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-5.596,0.0,-0.01,-0.966,0.0,0.0,-0.034,3.877,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,8.191,1354.8,997.6,11399.7,3156.6,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily-shared-water-heater.xml,29.782,29.782,16.412,16.412,13.369,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.006,2.817,0.507,0.0,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.85,0.0,12.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.786,8.35,9.539,0.57,0.0,0.0,0.0,0.0,881.2,1466.3,3.654,7.037,0.0,-0.015,2.551,0.0,0.0,0.422,1.364,0.0,-0.013,0.0,-0.342,1.614,0.0,0.707,0.0,0.0,-5.596,0.0,-0.01,-0.966,0.0,0.0,-0.034,3.877,0.0,-0.008,0.0,-0.333,-0.604,-1.306,-0.345,0.0,0.0,8.191,1354.8,997.6,11399.7,3156.6,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-multifamily.xml,26.876,26.876,26.2,26.2,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.005,2.899,0.529,9.685,0.0,0.0,2.026,0.0,0.206,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,2.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.676,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,8.678,9.539,0.577,0.0,0.0,0.0,0.0,1562.0,2038.4,3.453,7.015,0.0,-0.013,2.523,0.0,0.0,0.42,1.418,0.0,-0.009,0.0,-0.344,1.282,0.0,0.689,0.0,0.0,-5.458,0.0,-0.008,-1.031,0.0,0.0,-0.043,3.873,0.0,-0.004,0.0,-0.334,-0.502,-1.325,-0.374,0.0,0.0,8.535,1354.8,997.6,11399.6,3156.5,12000.0,12000.0,0.0,6.8,91.76,5886.0,0.0,2576.0,0.0,287.0,1490.0,0.0,0.0,0.0,0.0,1532.0,6482.0,0.0,3495.0,0.0,103.0,157.0,0.0,0.0,0.0,0.0,206.0,2520.0,458.0,0.0,-342.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-single-family-attached-2stories.xml,51.52,51.52,34.56,34.56,16.96,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.221,3.255,0.58,9.228,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.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,15.817,9.721,9.269,0.614,0.0,0.0,0.0,0.0,2112.3,3013.6,17.827,14.18,0.0,2.425,5.051,0.296,4.334,0.636,-0.809,0.0,0.0,4.958,-0.068,7.092,0.0,0.728,0.0,2.34,-11.4,0.0,0.006,-0.65,-0.026,1.618,-0.018,6.174,0.0,0.0,-3.987,-0.063,-1.694,-2.545,-0.162,0.0,1.306,9.887,1354.8,997.6,11399.6,2678.3,48000.0,36000.0,0.0,6.8,91.76,27861.0,7450.0,5147.0,0.0,575.0,5388.0,0.0,0.0,1913.0,1447.0,5942.0,16506.0,4315.0,6988.0,0.0,207.0,333.0,0.0,0.0,0.0,1340.0,803.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-single-family-attached-atticroof-cathedral.xml,97.785,97.785,37.178,37.178,60.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.79,4.935,0.941,9.236,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.607,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.514,15.57,9.269,0.623,0.0,0.0,0.0,0.0,2161.1,4374.3,36.355,27.56,49.488,0.0,2.936,0.288,3.614,0.667,-0.101,0.0,0.0,3.324,-0.84,7.548,0.0,0.773,0.0,0.0,-12.354,8.563,0.0,-0.155,0.004,1.536,0.12,4.579,0.0,0.0,-4.289,-0.8,-0.851,-1.174,-0.093,0.0,0.0,8.942,1354.8,997.6,11399.6,2678.3,48000.0,36000.0,0.0,6.8,91.76,43510.0,0.0,3210.0,0.0,575.0,4222.0,27649.0,0.0,1913.0,0.0,5942.0,23553.0,0.0,5262.0,0.0,207.0,210.0,14551.0,0.0,0.0,0.0,803.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-single-family-attached.xml,42.567,42.567,29.913,29.913,12.654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.093,2.733,0.467,9.441,0.0,0.0,3.268,0.0,0.27,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.654,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.734,7.788,9.387,0.614,0.0,0.0,0.0,0.0,1823.2,2595.0,13.124,9.976,0.0,2.343,2.365,0.292,4.201,0.623,-0.412,0.0,0.0,4.62,-0.043,3.033,0.0,0.726,0.0,3.213,-9.37,0.0,0.024,-0.286,-0.027,1.565,-0.023,3.006,0.0,0.0,-4.096,-0.041,-0.77,-1.22,-0.166,0.0,1.589,8.289,1354.8,997.6,11399.6,2887.5,24000.0,24000.0,0.0,6.8,91.76,21565.0,8148.0,2576.0,0.0,575.0,3842.0,0.0,0.0,1913.0,1447.0,3065.0,13226.0,5081.0,3495.0,0.0,207.0,170.0,0.0,0.0,0.0,1340.0,413.0,2520.0,117.0,0.0,-683.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-calctype-operational-misc-defaults.xml,69.443,49.344,39.625,19.525,29.819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.492,2.304,0.347,7.15,0.0,0.326,4.51,0.0,0.334,1.118,0.0,0.0,1.098,2.36,0.0,0.0,0.769,0.544,4.047,2.057,0.745,3.051,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-20.099,0.0,29.819,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.911,5.633,18.469,0.643,0.0,11.971,0.0,0.0,3201.7,3057.8,25.511,14.606,0.0,3.789,3.683,0.518,7.429,0.643,-2.003,0.0,0.0,8.272,-0.076,1.525,0.0,14.991,0.0,2.587,-13.72,0.0,0.225,-0.16,-0.009,3.422,0.051,10.679,0.0,0.0,-5.258,-0.072,-0.213,0.0,-3.573,-11.344,0.461,12.442,2592.2,2706.6,21154.0,5664.1,36000.0,24000.0,0.0,6.8,91.76,31061.0,4629.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7324.0,14665.0,902.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-calctype-operational-misc-loads-large-uncommon.xml,101.291,101.291,51.958,51.958,41.427,0.0,2.609,5.297,0.0,0.0,0.0,0.0,0.35,4.468,0.873,3.939,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,3.032,2.994,0.0,0.0,21.205,0.0,0.0,0.0,0.0,0.0,18.628,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,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.609,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.858,15.008,3.621,0.613,0.0,0.0,0.0,0.0,2605.1,4107.0,22.884,18.539,0.0,3.571,3.652,0.514,7.487,0.632,-2.011,0.0,0.0,8.266,-0.066,4.81,0.0,0.728,0.0,4.631,-12.696,0.0,-0.086,-0.49,-0.056,2.637,-0.033,9.773,0.0,0.0,-6.479,-0.063,-1.19,-3.189,-0.169,0.0,3.273,11.26,777.8,496.4,4294.1,850.6,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-calctype-operational-misc-loads-large-uncommon2.xml,80.237,80.237,49.532,49.532,22.799,2.609,0.0,0.0,5.297,0.0,0.0,0.0,0.35,4.468,0.873,3.939,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,4.61,1.024,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,5.687,1.186,0.0,6.721,0.606,2.994,0.0,0.0,21.205,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.594,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,5.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.858,15.008,3.621,0.613,0.0,0.0,0.0,0.0,2406.7,3920.8,22.884,18.539,0.0,3.571,3.652,0.514,7.487,0.632,-2.011,0.0,0.0,8.266,-0.066,4.81,0.0,0.728,0.0,4.631,-12.696,0.0,-0.086,-0.49,-0.056,2.637,-0.033,9.773,0.0,0.0,-6.479,-0.063,-1.19,-3.189,-0.169,0.0,3.273,11.26,777.8,496.4,4294.1,850.6,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-calctype-operational.xml,53.033,53.033,28.335,28.335,24.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.407,3.949,0.745,3.942,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.158,0.21,0.868,1.158,0.0,1.46,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.131,12.786,3.621,0.615,0.0,0.0,0.0,0.0,1659.2,3131.2,23.529,17.294,0.0,3.522,3.624,0.51,7.396,0.627,-2.118,0.0,0.0,8.168,-0.062,4.801,0.0,0.725,0.0,5.31,-9.692,0.0,-0.005,-0.424,-0.046,2.821,-0.015,9.944,0.0,0.0,-6.179,-0.058,-1.133,-2.898,-0.16,0.0,2.907,8.203,777.8,496.4,4294.0,850.5,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.76,52.76,21.435,21.435,31.326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.859,0.0,10.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,0.0,0.0,0.0,0.0,0.0,0.0,17.618,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1376.9,0.0,16.995,0.0,0.0,3.734,3.632,0.511,7.4,0.628,-2.089,0.0,0.0,8.027,-0.066,5.886,0.0,0.727,0.0,0.0,-11.085,0.0,-0.441,-0.972,-0.125,1.231,-0.155,8.265,0.0,0.0,-8.427,-0.062,-1.962,-6.027,-0.268,0.0,0.0,9.588,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,52.76,52.76,21.435,21.435,31.326,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.859,0.0,10.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,0.0,0.0,0.0,0.0,0.0,0.0,17.618,0.0,9.337,0.0,0.0,0.0,0.0,0.0,1376.9,0.0,16.995,0.0,0.0,3.734,3.632,0.511,7.4,0.628,-2.089,0.0,0.0,8.027,-0.066,5.886,0.0,0.727,0.0,0.0,-11.085,0.0,-0.441,-0.972,-0.125,1.231,-0.155,8.265,0.0,0.0,-8.427,-0.062,-1.962,-6.027,-0.268,0.0,0.0,9.588,1068.6,776.0,8563.5,1965.1,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,32.317,32.317,32.317,32.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.387,0.791,6.863,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.92,9.232,0.662,2.959,0.0,0.0,0.0,0.0,2740.8,0.0,18.834,0.0,2.642,2.5,0.349,4.179,0.341,-5.425,0.0,0.0,2.767,-0.137,3.049,0.0,0.518,0.0,0.0,-11.135,0.0,-0.087,-0.461,-0.051,2.712,-0.03,9.933,0.0,0.0,-6.912,-0.064,-1.188,-3.012,-0.166,0.0,3.752,10.67,1354.8,997.6,11412.6,2618.8,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,37.403,37.403,37.403,37.403,0.0,0.0,0.0,0.0,0.0,0.0,5.362,0.0,0.444,2.586,1.046,6.688,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.064,13.388,9.232,0.613,2.93,0.0,0.0,0.0,3224.0,2111.7,21.195,15.076,0.0,3.592,3.632,0.511,7.424,0.628,-2.088,0.0,0.0,8.184,-0.062,4.802,0.0,0.728,0.0,3.481,-11.089,0.0,0.008,-0.456,-0.051,2.727,-0.024,9.853,0.0,0.0,-6.334,-0.058,-1.166,-3.093,-0.165,0.0,1.853,10.498,1354.8,997.6,11412.7,2618.9,36000.0,36000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.744,56.744,29.654,29.654,27.089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.447,4.379,0.85,2.703,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.089,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.369,14.462,9.245,1.809,3.004,0.0,0.0,0.0,1878.6,3057.3,23.4,18.492,0.0,3.514,3.628,0.51,7.412,0.625,-2.169,0.0,0.0,8.223,-0.05,4.794,0.0,0.726,0.0,5.711,-7.909,0.0,-0.007,-0.41,-0.044,2.872,-0.014,9.928,0.0,0.0,-6.091,-0.046,-1.115,-2.915,-0.155,0.0,3.15,9.604,1354.7,997.5,11376.8,2610.6,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.732,33.732,33.732,33.732,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.379,1.179,6.898,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.168,9.238,0.0,2.932,0.0,0.0,0.0,0.0,3165.4,0.0,18.086,0.0,2.62,2.477,0.346,4.102,0.335,-5.497,0.0,0.0,2.651,-0.138,3.016,0.0,0.513,0.0,0.0,-10.763,0.0,-0.059,-0.455,-0.05,2.728,-0.028,9.95,0.0,0.0,-6.903,-0.064,-1.182,-2.982,-0.164,0.0,3.18,10.385,1354.8,997.6,11361.0,2607.0,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,31.424,31.424,31.424,31.424,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.924,0.333,6.89,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.627,9.232,0.663,2.921,0.0,0.0,0.0,0.0,2479.6,0.0,18.766,0.0,2.642,2.5,0.349,4.179,0.341,-5.425,0.0,0.0,2.767,-0.137,3.049,0.0,0.518,0.0,0.0,-11.135,0.0,-0.125,-0.461,-0.051,2.713,-0.03,9.933,0.0,0.0,-6.91,-0.064,-1.188,-3.015,-0.166,0.0,4.514,10.66,1354.8,997.6,11410.8,2618.4,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.751,33.751,33.751,33.751,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.433,1.197,6.845,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.397,9.232,0.662,2.987,0.0,0.0,0.0,0.0,3178.5,0.0,18.194,0.0,2.642,2.501,0.349,4.179,0.341,-5.425,0.0,0.0,2.767,-0.137,3.049,0.0,0.518,0.0,0.0,-11.135,0.0,-0.065,-0.461,-0.051,2.712,-0.03,9.932,0.0,0.0,-6.913,-0.064,-1.188,-3.013,-0.166,0.0,3.218,10.677,1354.8,997.6,11413.5,2619.0,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.247,56.247,33.67,33.67,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,6.924,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,6.826,0.614,0.0,0.0,0.0,0.0,2106.3,3288.3,22.927,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,10264.9,2355.5,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.375,59.375,21.461,21.461,37.914,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.184,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.319,0.0,13.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.402,0.0,9.26,2.272,0.0,0.0,0.0,0.0,1376.0,0.0,16.705,0.0,0.0,3.737,3.636,0.512,7.411,0.629,-2.065,0.0,0.0,8.015,-0.068,5.892,0.0,0.728,0.0,0.0,-12.357,0.0,-0.484,-1.017,-0.132,1.089,-0.167,8.138,0.0,0.0,-8.625,-0.064,-2.023,-6.313,-0.277,0.0,0.0,10.589,1138.7,826.6,9544.7,2190.2,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,57.103,57.103,21.435,21.435,35.668,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.158,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.859,0.0,14.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.618,0.0,9.263,3.3,0.0,0.0,0.0,0.0,1376.9,0.0,16.995,0.0,0.0,3.734,3.632,0.511,7.4,0.628,-2.089,0.0,0.0,8.027,-0.066,5.886,0.0,0.727,0.0,0.0,-11.085,0.0,-0.441,-0.972,-0.125,1.231,-0.155,8.265,0.0,0.0,-8.427,-0.062,-1.962,-6.027,-0.268,0.0,0.0,9.588,1120.1,811.3,9405.5,2158.3,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,54.709,54.709,21.422,21.422,33.287,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.145,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.195,0.0,14.092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,9.262,2.696,0.0,0.0,0.0,0.0,1375.8,0.0,16.632,0.0,0.0,3.735,3.635,0.512,7.412,0.629,-2.052,0.0,0.0,8.007,-0.069,5.892,0.0,0.728,0.0,0.0,-12.589,0.0,-0.494,-1.027,-0.133,1.062,-0.169,8.122,0.0,0.0,-8.668,-0.066,-2.036,-6.368,-0.279,0.0,0.0,10.781,1124.5,813.7,9457.2,2170.1,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,46.546,46.546,21.431,21.431,25.115,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.155,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.371,0.0,4.745,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.194,0.0,9.24,0.786,0.0,6.006,0.0,0.0,1376.6,0.0,16.874,0.0,0.0,3.736,3.634,0.511,7.404,0.629,-2.087,0.0,0.0,8.023,-0.065,5.888,0.0,0.728,0.0,0.0,-11.525,0.0,-0.454,-0.987,-0.127,1.182,-0.159,8.216,0.0,0.0,-8.494,-0.061,-1.983,-6.123,-0.271,0.0,0.0,9.934,403.8,298.0,3325.1,763.0,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,54.474,54.474,21.424,21.424,33.05,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.147,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.455,0.0,13.595,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.402,0.0,9.26,2.272,0.0,0.0,0.0,0.0,1376.0,0.0,16.705,0.0,0.0,3.737,3.636,0.512,7.411,0.629,-2.065,0.0,0.0,8.015,-0.068,5.892,0.0,0.728,0.0,0.0,-12.357,0.0,-0.484,-1.017,-0.132,1.089,-0.167,8.138,0.0,0.0,-8.625,-0.064,-2.023,-6.313,-0.277,0.0,0.0,10.589,1138.7,826.6,9544.7,2190.2,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.379,58.379,35.584,35.584,22.795,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.376,4.248,0.817,8.867,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.347,13.873,9.234,0.295,0.0,0.0,0.0,0.0,2130.4,3612.9,22.98,17.807,0.0,3.543,3.633,0.511,7.427,0.628,-2.085,0.0,0.0,8.19,-0.062,4.803,0.0,0.728,0.0,4.932,-11.232,0.0,-0.043,-0.455,-0.051,2.729,-0.024,9.856,0.0,0.0,-6.328,-0.059,-1.165,-3.057,-0.165,0.0,3.078,9.737,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.438,64.438,26.849,26.849,37.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.383,4.349,0.841,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.199,0.0,14.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,21.725,14.292,9.234,2.726,0.0,0.0,0.0,0.0,1464.3,3028.6,23.48,18.282,0.0,3.54,3.634,0.511,7.43,0.628,-2.083,0.0,0.0,8.195,-0.062,5.888,0.0,0.727,0.0,5.018,-12.039,0.0,-0.049,-0.458,-0.051,2.723,-0.025,9.847,0.0,0.0,-6.336,-0.058,-1.446,-3.082,-0.165,0.0,3.16,10.412,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.62,56.62,29.521,29.521,27.099,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.447,3.802,0.71,3.285,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,0.0,0.0,25.379,12.093,9.287,1.309,0.0,0.0,0.0,0.0,1896.4,2942.9,23.492,17.688,0.0,3.511,3.625,0.51,7.411,0.626,-2.171,0.0,0.0,8.224,-0.047,4.794,0.0,0.726,0.0,5.713,-7.886,0.0,0.017,-0.404,-0.043,2.895,-0.012,9.951,0.0,0.0,-6.055,-0.043,-1.109,-2.793,-0.153,0.0,2.749,7.414,1354.8,997.6,10993.4,2522.7,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.273,54.273,21.425,21.425,32.848,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.149,0.0,0.0,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.676,0.0,13.172,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.593,0.0,9.259,1.914,0.0,0.0,0.0,0.0,1376.2,0.0,16.753,0.0,0.0,3.737,3.636,0.512,7.409,0.629,-2.076,0.0,0.0,8.019,-0.066,5.89,0.0,0.728,0.0,0.0,-12.155,0.0,-0.476,-1.009,-0.131,1.113,-0.165,8.151,0.0,0.0,-8.593,-0.062,-2.014,-6.27,-0.275,0.0,0.0,10.432,1145.5,830.8,9598.0,2202.5,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.119,58.119,35.542,35.542,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,8.796,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,8.838,0.614,0.0,0.0,0.0,0.0,2111.8,3471.1,22.926,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,10829.7,2485.1,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.208,47.208,23.375,23.375,23.833,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,1.948,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.888,0.0,3.945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.78,0.0,9.225,2.819,0.0,5.996,0.0,0.0,2111.7,0.0,18.71,0.0,0.0,3.736,3.634,0.511,7.407,0.629,-2.07,0.0,0.0,8.019,-0.067,5.889,0.0,0.728,0.0,0.0,-11.968,0.0,-0.469,-1.002,-0.13,1.137,-0.163,8.184,0.0,0.0,-8.558,-0.063,-2.004,-6.208,-0.274,0.0,0.0,10.3,472.0,347.5,3998.6,917.5,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,47.056,47.056,24.51,24.51,22.546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.242,0.817,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.0,0.0,0.0,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.546,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.115,13.943,0.0,0.0,0.0,0.0,0.0,0.0,1360.7,2885.1,22.966,17.822,0.0,3.546,3.636,0.512,7.433,0.629,-2.077,0.0,0.0,8.2,-0.063,5.402,0.0,0.0,0.0,4.886,-11.32,0.0,-0.047,-0.459,-0.051,2.716,-0.025,9.845,0.0,0.0,-6.347,-0.059,-1.303,-3.073,0.0,0.0,3.078,9.851,0.0,0.0,0.0,0.0,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.437,58.437,35.86,35.86,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.088,0.026,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.174,0.614,0.0,0.0,0.0,0.0,2126.1,3620.1,22.926,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2510.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.01,58.01,35.433,35.433,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,8.67,0.017,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.174,0.614,0.0,0.0,0.0,0.0,2110.8,3605.5,22.926,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2510.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.386,73.386,50.809,50.809,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,22.569,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.268,0.614,0.0,0.0,0.0,0.0,3075.5,4169.0,22.928,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2676.6,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.475,68.475,45.898,45.898,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,18.904,0.249,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.268,0.614,0.0,0.0,0.0,0.0,2757.2,3949.6,22.928,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2676.6,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.386,73.386,50.809,50.809,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,22.569,1.495,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.268,0.614,0.0,0.0,0.0,0.0,3075.5,4169.0,22.928,17.859,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2676.6,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,52.635,52.635,30.059,30.059,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.277,0.824,2.985,0.0,0.324,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,14.0,9.255,0.628,0.0,6.676,0.0,0.0,2091.3,3016.8,22.925,17.877,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.073,-0.165,0.0,3.098,9.895,1354.7,997.5,11208.1,2571.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.155,51.155,28.586,28.586,22.569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.289,0.827,1.511,0.0,0.31,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.135,14.051,9.362,0.693,0.0,8.432,0.0,0.0,2025.5,3020.0,22.927,17.904,0.0,3.545,3.634,0.511,7.428,0.629,-2.081,0.0,0.0,8.191,-0.063,4.805,0.0,0.728,0.0,4.888,-11.413,0.0,-0.047,-0.458,-0.051,2.719,-0.025,9.848,0.0,0.0,-6.342,-0.06,-1.168,-3.079,-0.165,0.0,3.106,9.953,1354.4,997.2,10425.4,2392.3,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,52.692,52.692,30.115,30.115,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.282,0.826,3.03,0.0,0.329,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,14.022,9.29,0.649,0.0,6.685,0.0,0.0,2125.4,3018.7,22.928,17.893,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.34,-0.059,-1.168,-3.074,-0.165,0.0,3.102,9.917,1354.7,997.6,10951.6,2513.1,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,52.767,52.767,29.918,29.918,22.849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.377,4.241,0.816,3.208,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.849,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.398,13.845,9.234,0.215,0.0,6.002,0.0,0.0,1765.2,3294.5,22.994,17.794,0.0,3.543,3.634,0.511,7.428,0.628,-2.092,0.0,0.0,8.193,-0.061,4.803,0.0,0.728,0.0,4.942,-11.191,0.0,-0.041,-0.453,-0.05,2.733,-0.024,9.851,0.0,0.0,-6.322,-0.057,-1.164,-3.053,-0.164,0.0,3.073,9.698,474.2,349.2,3989.9,915.6,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,50.889,50.889,28.675,28.675,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.366,4.392,0.853,1.482,0.0,0.306,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.214,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.803,14.492,9.342,0.681,0.0,8.431,0.0,0.0,2108.2,3053.8,22.962,18.202,0.0,3.55,3.637,0.512,7.435,0.629,-2.079,0.0,0.0,8.194,-0.062,4.806,0.0,0.729,0.0,4.82,-11.709,0.0,-0.056,-0.464,-0.052,2.701,-0.027,9.824,0.0,0.0,-6.371,-0.058,-1.177,-3.128,-0.166,0.0,3.181,10.468,1354.2,997.1,10550.8,2421.1,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,50.877,50.877,28.307,28.307,22.569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.288,0.827,1.544,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.569,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.136,14.047,9.355,0.689,0.0,8.386,0.0,0.0,2092.4,2987.7,22.928,17.901,0.0,3.545,3.634,0.511,7.428,0.629,-2.081,0.0,0.0,8.191,-0.063,4.805,0.0,0.728,0.0,4.888,-11.413,0.0,-0.047,-0.458,-0.051,2.719,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.078,-0.165,0.0,3.106,9.949,1354.4,997.2,10471.1,2402.8,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.17,65.17,26.903,26.903,22.798,0.0,0.0,0.0,0.0,15.47,0.0,0.0,0.376,4.397,0.853,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.35,14.5,9.234,3.623,0.0,0.0,0.0,0.0,1463.8,3039.9,23.376,18.378,0.0,3.545,3.636,0.512,7.433,0.629,-2.079,0.0,0.0,8.196,-0.062,5.89,0.0,0.728,0.0,4.941,-12.359,0.0,-0.054,-0.461,-0.052,2.709,-0.026,9.834,0.0,0.0,-6.356,-0.058,-1.453,-3.111,-0.166,0.0,3.193,10.682,1354.8,997.6,11399.9,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-detailed-setpoints.xml,58.47,58.47,35.899,35.899,22.57,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.153,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.137,13.988,9.207,0.623,0.0,0.0,0.0,0.0,2481.4,3304.6,22.903,17.855,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.888,-11.409,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.34,-0.059,-1.168,-3.073,-0.165,0.0,3.096,9.887,1354.8,997.6,11442.3,2625.7,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.513,58.513,35.989,35.989,22.524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.28,0.825,9.236,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.524,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.094,14.012,9.234,0.691,0.0,0.0,0.0,0.0,2133.6,3467.4,22.915,17.872,0.0,3.545,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.191,-0.063,4.805,0.0,0.728,0.0,4.88,-11.448,0.0,-0.046,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.06,-1.168,-3.076,-0.165,0.0,3.1,9.917,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,68.313,68.313,26.69,26.69,41.623,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.403,4.205,0.806,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.415,0.0,17.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.865,13.673,9.234,5.067,0.0,0.0,0.0,0.0,1465.9,2993.9,23.767,17.99,0.0,3.532,3.632,0.511,7.423,0.628,-2.101,0.0,0.0,8.2,-0.06,5.884,0.0,0.727,0.0,5.252,-11.084,0.0,-0.031,-0.443,-0.049,2.767,-0.021,9.879,0.0,0.0,-6.266,-0.056,-1.424,-2.997,-0.162,0.0,3.06,9.589,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,64.846,64.846,26.865,26.865,37.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.381,4.363,0.845,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.076,0.0,14.904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.61,14.354,9.234,2.979,0.0,0.0,0.0,0.0,1464.2,3032.1,23.446,18.308,0.0,3.542,3.635,0.511,7.431,0.629,-2.081,0.0,0.0,8.195,-0.062,5.888,0.0,0.728,0.0,4.995,-12.137,0.0,-0.051,-0.459,-0.051,2.719,-0.025,9.844,0.0,0.0,-6.342,-0.058,-1.448,-3.091,-0.165,0.0,3.17,10.493,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,64.846,64.846,26.865,26.865,37.98,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.381,4.363,0.845,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.076,0.0,14.904,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.61,14.354,9.234,2.979,0.0,0.0,0.0,0.0,1464.2,3032.1,23.446,18.308,0.0,3.542,3.635,0.511,7.431,0.629,-2.081,0.0,0.0,8.195,-0.062,5.888,0.0,0.728,0.0,4.995,-12.137,0.0,-0.051,-0.459,-0.051,2.719,-0.025,9.844,0.0,0.0,-6.342,-0.058,-1.448,-3.091,-0.165,0.0,3.17,10.493,1354.8,997.6,11399.8,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.17,65.17,26.903,26.903,38.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.376,4.397,0.853,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.798,0.0,15.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,21.35,14.5,9.234,3.623,0.0,0.0,0.0,0.0,1463.8,3039.9,23.376,18.378,0.0,3.545,3.636,0.512,7.433,0.629,-2.079,0.0,0.0,8.196,-0.062,5.89,0.0,0.728,0.0,4.941,-12.359,0.0,-0.054,-0.461,-0.052,2.709,-0.026,9.834,0.0,0.0,-6.356,-0.058,-1.453,-3.111,-0.166,0.0,3.193,10.682,1354.8,997.6,11399.9,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-operating-modes.xml,56.439,56.439,28.487,28.487,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.461,3.721,0.69,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.164,11.747,9.291,1.307,0.0,0.0,0.0,0.0,1859.9,3302.0,25.373,17.801,0.0,3.507,3.629,0.51,7.421,0.625,-2.178,0.0,0.0,8.249,-0.039,4.795,0.0,0.726,0.0,5.864,-7.287,0.0,0.031,-0.389,-0.041,2.942,-0.009,9.981,0.0,0.0,-5.982,-0.035,-1.092,-2.73,-0.151,0.0,2.677,7.034,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.575,56.575,28.663,28.663,27.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.46,3.734,0.694,2.497,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,26.136,11.802,9.374,1.415,0.0,0.0,0.0,0.0,1846.9,2939.8,26.588,17.604,0.0,3.497,3.625,0.51,7.413,0.626,-2.129,0.0,0.0,8.226,-0.057,4.797,0.0,0.726,0.0,5.869,-7.317,0.0,0.033,-0.387,-0.041,2.935,-0.007,10.049,0.0,0.0,-5.977,-0.053,-1.08,-2.689,-0.153,0.0,2.669,7.028,1354.8,997.6,10201.5,2340.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-setpoints.xml,56.575,56.575,28.663,28.663,27.912,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.46,3.734,0.694,2.497,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,26.136,11.802,9.374,1.415,0.0,0.0,0.0,0.0,1846.9,2939.8,26.588,17.604,0.0,3.497,3.625,0.51,7.413,0.626,-2.129,0.0,0.0,8.226,-0.057,4.797,0.0,0.726,0.0,5.869,-7.317,0.0,0.033,-0.387,-0.041,2.935,-0.007,10.049,0.0,0.0,-5.977,-0.053,-1.08,-2.689,-0.153,0.0,2.669,7.028,1354.8,997.6,10201.5,2340.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.439,56.439,28.487,28.487,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.461,3.721,0.69,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.164,11.747,9.291,1.307,0.0,0.0,0.0,0.0,1859.9,3302.0,25.373,17.801,0.0,3.507,3.629,0.51,7.421,0.625,-2.178,0.0,0.0,8.249,-0.039,4.795,0.0,0.726,0.0,5.864,-7.287,0.0,0.031,-0.389,-0.041,2.942,-0.009,9.981,0.0,0.0,-5.982,-0.035,-1.092,-2.73,-0.151,0.0,2.677,7.034,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.508,56.508,33.513,33.513,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,6.822,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.255,2.524,0.0,0.0,0.0,0.0,3063.5,3167.6,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11245.9,2580.6,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.439,56.439,28.487,28.487,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.461,3.721,0.69,2.339,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.952,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.164,11.747,9.291,1.307,0.0,0.0,0.0,0.0,1859.9,3302.0,25.373,17.801,0.0,3.507,3.629,0.51,7.421,0.625,-2.178,0.0,0.0,8.249,-0.039,4.795,0.0,0.726,0.0,5.864,-7.287,0.0,0.031,-0.389,-0.041,2.942,-0.009,9.981,0.0,0.0,-5.982,-0.035,-1.092,-2.73,-0.151,0.0,2.677,7.034,1354.8,997.6,10960.9,2515.2,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.162,52.162,27.784,27.784,24.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.402,4.079,0.776,1.251,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.829,13.194,9.267,0.602,0.0,6.023,0.0,0.0,1901.7,2982.6,25.913,17.83,0.0,3.532,3.63,0.511,7.418,0.627,-2.123,0.0,0.0,8.195,-0.055,4.798,0.0,0.727,0.0,5.222,-9.997,0.0,-0.018,-0.436,-0.048,2.787,-0.02,9.886,0.0,0.0,-6.232,-0.051,-1.145,-2.951,-0.161,0.0,2.95,8.87,474.2,349.2,3898.0,894.5,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,51.709,51.709,28.404,28.404,23.305,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.384,4.424,0.861,1.129,0.0,0.329,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,21.823,14.639,9.18,1.965,0.0,8.141,0.0,0.0,1894.1,3070.3,23.278,18.324,0.0,3.541,3.635,0.512,7.439,0.628,-2.085,0.0,0.0,8.2,-0.058,4.804,0.0,0.728,0.0,5.018,-10.881,0.0,-0.055,-0.461,-0.051,2.717,-0.026,9.832,0.0,0.0,-6.341,-0.055,-1.174,-3.124,-0.166,0.0,3.202,10.558,1354.4,997.3,11918.1,2734.8,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.686,56.686,29.663,29.663,27.023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.446,3.806,0.711,3.424,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.023,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.303,12.12,9.279,1.72,0.0,0.0,0.0,0.0,1871.6,3189.9,23.349,17.972,0.0,3.514,3.627,0.51,7.409,0.626,-2.15,0.0,0.0,8.222,-0.054,4.797,0.0,0.726,0.0,5.699,-7.978,0.0,0.017,-0.406,-0.044,2.884,-0.012,9.964,0.0,0.0,-6.067,-0.051,-1.108,-2.798,-0.153,0.0,2.733,7.488,1354.8,997.6,11052.5,2536.2,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.15,59.15,35.567,35.567,23.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.389,4.328,0.836,8.728,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.583,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.083,14.175,9.275,0.094,0.0,0.0,0.0,0.0,5197.3,5530.9,30.876,19.181,0.0,3.539,3.634,0.511,7.429,0.629,-2.079,0.0,0.0,8.191,-0.062,5.262,0.0,0.776,0.0,5.078,-11.151,0.0,-0.043,-0.452,-0.05,2.737,-0.023,9.869,0.0,0.0,-6.316,-0.058,-1.263,-3.036,-0.185,0.0,3.131,10.077,1354.7,998.0,11011.7,2526.8,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.365,58.365,35.434,35.434,22.932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.378,4.231,0.813,8.734,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.932,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.476,13.803,9.282,0.094,0.0,0.0,0.0,0.0,1994.9,3331.3,23.013,17.774,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.803,0.0,0.728,0.0,4.958,-11.125,0.0,-0.04,-0.453,-0.05,2.736,-0.024,9.854,0.0,0.0,-6.318,-0.057,-1.163,-3.047,-0.164,0.0,3.066,9.643,1354.8,997.6,10995.3,2523.1,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.17,65.17,26.903,26.903,22.798,15.47,0.0,0.0,0.0,0.0,0.0,0.0,0.376,4.397,0.853,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.35,14.5,9.234,3.623,0.0,0.0,0.0,0.0,1463.8,3039.9,23.376,18.378,0.0,3.545,3.636,0.512,7.433,0.629,-2.079,0.0,0.0,8.196,-0.062,5.89,0.0,0.728,0.0,4.941,-12.359,0.0,-0.054,-0.461,-0.052,2.709,-0.026,9.834,0.0,0.0,-6.356,-0.058,-1.453,-3.111,-0.166,0.0,3.193,10.682,1354.8,997.6,11399.9,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.17,65.17,26.903,26.903,22.798,0.0,0.0,15.47,0.0,0.0,0.0,0.0,0.376,4.397,0.853,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,15.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,21.35,14.5,9.234,3.623,0.0,0.0,0.0,0.0,1463.8,3039.9,23.376,18.378,0.0,3.545,3.636,0.512,7.433,0.629,-2.079,0.0,0.0,8.196,-0.062,5.89,0.0,0.728,0.0,4.941,-12.359,0.0,-0.054,-0.461,-0.052,2.709,-0.026,9.834,0.0,0.0,-6.356,-0.058,-1.453,-3.111,-0.166,0.0,3.193,10.682,1354.8,997.6,11399.9,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.053,61.053,26.691,26.691,34.363,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,11.367,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.214,0.0,0.0,0.0,0.0,0.0,1462.5,2970.8,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11575.1,2656.1,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.121,59.121,36.125,36.125,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,9.435,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,2022.0,3356.0,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.3,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.014,59.014,36.019,36.019,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,9.328,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,2015.6,3351.5,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.3,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.121,59.121,36.125,36.125,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,9.435,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,2022.0,3356.0,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.3,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.516,59.516,26.691,26.691,32.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,9.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,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,1462.5,2970.8,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.3,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,53.673,53.673,26.691,26.691,26.982,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,3.987,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.536,13.77,9.234,0.0,0.0,6.002,0.0,0.0,1462.5,2970.8,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,474.2,349.2,3988.9,915.3,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,51.39,51.39,27.12,27.12,24.27,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.373,4.33,0.837,0.0,0.0,0.304,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.632,0.0,1.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.195,14.224,9.416,0.0,0.0,8.084,0.0,0.0,1462.3,3037.1,23.062,18.054,0.0,3.545,3.635,0.512,7.43,0.629,-2.078,0.0,0.0,8.193,-0.064,4.806,0.0,0.728,0.0,4.901,-11.379,0.0,-0.049,-0.459,-0.051,2.715,-0.025,9.844,0.0,0.0,-6.347,-0.06,-1.17,-3.094,-0.165,0.0,3.138,10.131,1345.1,989.5,10036.9,2303.2,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.077,61.077,26.691,26.691,34.386,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,11.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,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,1462.5,2970.8,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.3,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.077,61.077,26.691,26.691,22.996,0.0,11.39,0.0,0.0,0.0,0.0,0.0,0.379,4.224,0.811,0.0,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.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,21.536,13.77,9.234,0.0,0.0,0.0,0.0,0.0,1462.5,2970.8,23.029,17.758,0.0,3.542,3.634,0.511,7.427,0.628,-2.094,0.0,0.0,8.192,-0.06,4.802,0.0,0.728,0.0,4.971,-11.073,0.0,-0.039,-0.452,-0.05,2.738,-0.024,9.855,0.0,0.0,-6.315,-0.056,-1.162,-3.042,-0.164,0.0,3.061,9.6,1354.8,997.6,11397.0,2615.3,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,66.165,66.165,40.836,40.836,25.328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33,6.201,1.263,9.12,0.0,0.0,5.268,0.142,0.373,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,10.08,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.62,21.423,9.211,0.61,0.0,0.0,0.0,0.0,2307.2,4366.6,30.589,26.13,0.0,3.842,7.531,1.087,5.823,0.682,-3.635,0.0,0.84,6.66,-0.144,8.947,0.0,0.76,0.0,3.37,-12.699,0.0,-0.096,-1.018,-0.106,1.886,-0.026,20.76,0.0,-0.122,-4.735,-0.135,-1.943,-6.055,-0.161,0.0,2.802,10.802,1354.8,997.6,11399.6,2576.4,48000.0,36000.0,0.0,6.8,91.76,43722.0,7646.0,15016.0,0.0,575.0,8855.0,0.0,511.0,1797.0,2171.0,7152.0,25185.0,4350.0,14254.0,0.0,207.0,696.0,0.0,181.0,0.0,2010.0,966.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,74.243,74.243,44.137,44.137,30.106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.392,6.083,1.235,9.005,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.106,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.078,20.927,9.146,0.612,0.0,0.0,0.0,0.0,2538.9,4783.7,33.85,26.238,0.0,3.755,7.843,1.066,7.816,0.663,-3.733,0.0,0.0,8.918,-0.137,11.123,0.0,0.744,0.0,3.954,-14.49,0.0,-0.065,-1.03,-0.099,2.684,-0.021,20.33,0.0,0.0,-6.443,-0.127,-2.472,-6.216,-0.162,0.0,2.725,12.238,1354.8,997.6,11399.5,2460.1,48000.0,36000.0,0.0,6.8,91.76,45827.0,7671.0,15016.0,0.0,575.0,9035.0,0.0,0.0,2446.0,2171.0,8913.0,25086.0,4349.0,14254.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.11,55.11,30.528,30.528,24.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.406,3.967,0.749,5.557,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.203,0.253,1.049,1.262,0.0,1.644,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.582,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.022,12.854,5.356,0.615,0.0,0.0,0.0,0.0,1847.3,3140.7,23.521,17.347,0.0,3.523,3.625,0.51,7.399,0.627,-2.115,0.0,0.0,8.173,-0.063,4.802,0.0,0.726,0.0,5.288,-9.794,0.0,-0.008,-0.426,-0.046,2.816,-0.016,9.938,0.0,0.0,-6.187,-0.059,-1.134,-2.906,-0.16,0.0,2.92,8.293,939.7,637.0,6287.7,1631.0,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17496.0,5208.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2060.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.83,56.83,33.255,33.255,23.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.389,4.118,0.786,7.399,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.261,0.309,1.281,1.395,0.0,1.879,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.575,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.078,13.414,7.337,0.615,0.0,0.0,0.0,0.0,2054.2,3221.7,23.224,17.602,0.0,3.535,3.63,0.511,7.415,0.628,-2.106,0.0,0.0,8.183,-0.061,4.803,0.0,0.727,0.0,5.089,-10.602,0.0,-0.025,-0.441,-0.049,2.77,-0.02,9.887,0.0,0.0,-6.261,-0.057,-1.151,-2.989,-0.162,0.0,3.008,9.085,1147.2,817.3,8843.7,2197.3,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17730.0,5212.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2290.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.118,60.118,38.531,38.531,21.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.356,4.433,0.863,10.889,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.376,0.421,1.744,1.661,0.0,2.35,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.215,14.569,11.089,0.613,0.0,0.0,0.0,0.0,2192.2,3454.2,22.629,18.187,0.0,3.558,3.64,0.512,7.447,0.629,-2.076,0.0,0.0,8.204,-0.059,4.805,0.0,0.73,0.0,4.692,-12.208,0.0,-0.063,-0.471,-0.053,2.677,-0.029,9.795,0.0,0.0,-6.408,-0.055,-1.185,-3.156,-0.167,0.0,3.184,10.68,1562.4,1177.9,13955.5,2960.3,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,18198.0,5219.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2750.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,61.744,61.744,41.136,41.136,20.608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.34,4.598,0.903,12.592,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.434,0.477,1.976,1.794,0.0,2.585,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.608,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.298,15.167,12.918,0.613,0.0,0.0,0.0,0.0,2536.3,3777.6,22.332,18.512,0.0,3.569,3.645,0.513,7.464,0.63,-2.044,0.0,0.0,8.22,-0.064,4.81,0.0,0.731,0.0,4.495,-13.016,0.0,-0.082,-0.486,-0.055,2.631,-0.033,9.767,0.0,0.0,-6.476,-0.06,-1.199,-3.237,-0.169,0.0,3.273,11.473,1770.0,1358.2,16511.4,3258.4,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,18442.0,5234.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2980.0,175.0,0.0,-1025.0,1200.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.833,58.833,34.586,34.586,24.247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4,2.98,0.522,9.266,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.247,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,8.712,9.234,0.724,0.0,0.0,0.0,0.0,2135.2,2485.8,17.961,10.733,0.0,3.525,3.783,0.502,5.781,0.613,1.964,0.0,0.0,6.474,-0.041,5.37,0.0,0.0,0.0,3.809,-9.273,0.0,0.11,-0.275,-0.035,2.457,0.001,6.648,0.0,0.0,-5.651,-0.038,-1.218,-2.077,0.0,0.0,1.266,7.682,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,29872.0,8041.0,5506.0,0.0,575.0,6537.0,0.0,0.0,2446.0,2171.0,4597.0,15062.0,3154.0,6028.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.904,59.904,35.909,35.909,23.995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.396,4.255,0.818,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.995,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.471,13.886,9.234,0.615,0.0,0.0,0.0,0.0,2112.0,3382.3,23.664,18.091,0.0,3.534,3.633,0.511,7.425,0.628,-2.093,0.0,0.0,8.196,-0.061,5.885,0.0,0.727,0.0,5.171,-11.413,0.0,-0.038,-0.449,-0.05,2.751,-0.022,9.87,0.0,0.0,-6.292,-0.057,-1.432,-3.026,-0.163,0.0,3.094,9.875,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.123,66.123,35.925,35.925,30.197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.498,4.186,0.799,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.197,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.281,13.535,9.234,0.616,0.0,0.0,0.0,0.0,2132.4,3415.0,27.943,18.938,0.0,3.491,3.631,0.511,7.418,0.629,-2.101,0.0,0.0,8.23,-0.061,10.538,0.0,0.725,0.0,6.401,-11.445,0.0,-0.003,-0.414,-0.045,2.856,-0.012,9.975,0.0,0.0,-6.111,-0.058,-2.415,-2.873,-0.157,0.0,3.083,9.845,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,37365.0,8715.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,9542.0,18641.0,5227.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1285.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.71,58.71,35.885,35.885,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.377,4.251,0.818,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.825,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.376,13.891,9.234,0.614,0.0,0.0,0.0,0.0,2110.0,3285.2,22.939,17.823,0.0,3.54,3.63,0.511,7.42,0.862,-2.093,0.0,0.0,8.178,-0.062,4.802,0.0,0.728,0.0,4.935,-11.406,0.0,-0.042,-0.454,-0.051,2.729,-0.154,9.858,0.0,0.0,-6.325,-0.058,-1.165,-3.058,-0.165,0.0,3.074,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.801,58.801,35.769,35.769,23.031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38,4.154,0.795,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.031,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.569,13.489,9.234,0.615,0.0,0.0,0.0,0.0,2131.9,3351.7,22.929,17.703,0.0,3.538,3.631,0.511,7.415,0.627,-1.684,0.0,0.0,8.171,-0.06,4.802,0.0,0.728,0.0,4.971,-11.412,0.0,-0.027,-0.445,-0.049,2.751,-0.022,9.271,0.0,0.0,-6.29,-0.056,-1.161,-3.024,-0.163,0.0,2.995,9.876,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,18020.0,5216.0,7182.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.412,58.412,35.748,35.748,22.664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.374,4.141,0.793,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.664,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.224,13.441,9.234,0.614,0.0,0.0,0.0,0.0,2110.0,3163.7,22.753,16.831,0.0,3.658,3.633,0.511,7.423,0.628,-2.096,0.0,0.0,8.184,-0.059,4.803,0.0,0.728,0.0,4.893,-11.408,0.0,-0.295,-0.451,-0.05,2.736,-0.024,9.856,0.0,0.0,-6.315,-0.056,-1.165,-3.054,-0.164,0.0,2.747,9.88,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,60.97,60.97,37.0,37.0,23.97,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.395,5.138,1.028,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.447,17.524,9.234,0.613,0.0,0.0,0.0,0.0,2115.3,3639.8,24.645,21.303,0.0,3.541,3.65,0.514,7.481,0.632,-1.991,0.538,0.0,8.339,-0.066,4.813,0.0,0.73,0.0,5.197,-11.383,0.0,-0.136,-0.51,-0.059,2.611,-0.038,9.693,3.684,0.0,-6.622,-0.062,-1.186,-3.225,-0.17,0.0,3.899,9.904,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,34658.0,8659.0,7508.0,2294.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,22841.0,5299.0,7127.0,4794.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.734,58.734,36.748,36.748,21.986,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.363,4.96,0.987,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,20.588,16.826,9.234,0.612,0.0,0.0,0.0,0.0,2109.6,3598.0,23.428,20.663,0.0,3.562,3.656,0.515,7.492,0.633,-1.982,-0.875,0.0,8.333,-0.065,4.814,0.0,0.73,0.0,4.791,-11.379,0.0,-0.13,-0.513,-0.059,2.594,-0.039,9.685,3.196,0.0,-6.629,-0.061,-1.199,-3.257,-0.171,0.0,3.701,9.907,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32946.0,8615.0,7508.0,626.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,18743.0,5228.0,7127.0,766.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.981,58.981,36.658,36.658,22.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.368,4.883,0.969,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.322,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.904,16.497,9.234,0.613,0.0,0.0,0.0,0.0,2133.4,3594.8,23.511,20.574,0.0,3.556,3.652,0.514,7.48,0.632,-2.001,-0.553,0.0,8.309,-0.065,4.813,0.0,0.73,0.0,4.856,-11.385,0.0,-0.119,-0.504,-0.058,2.614,-0.036,9.708,2.793,0.0,-6.583,-0.061,-1.192,-3.228,-0.17,0.0,3.638,9.901,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,33018.0,8617.0,7508.0,696.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,20957.0,5253.0,7127.0,2955.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.73,58.73,36.757,36.757,21.972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.968,0.989,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.972,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.576,16.859,9.234,0.612,0.0,0.0,0.0,0.0,2109.6,3598.0,23.427,20.671,0.0,3.562,3.656,0.515,7.493,0.633,-1.981,-0.889,0.0,8.334,-0.065,4.814,0.0,0.73,0.0,4.788,-11.379,0.0,-0.131,-0.513,-0.059,2.592,-0.039,9.683,3.234,0.0,-6.632,-0.061,-1.199,-3.259,-0.171,0.0,3.708,9.907,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32946.0,8615.0,7508.0,626.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,21201.0,5257.0,7127.0,3195.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.726,40.726,29.418,29.418,11.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.187,3.818,0.719,9.565,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.308,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.582,11.956,9.458,0.607,0.0,0.0,0.0,0.0,1709.7,2429.5,13.185,12.044,0.0,3.938,3.832,0.0,0.0,0.682,-1.698,0.0,0.0,8.03,-0.118,2.648,0.0,0.774,0.0,0.304,-8.296,0.0,-0.075,-0.587,0.0,0.0,-0.025,10.734,0.0,0.0,-1.546,-0.115,-0.592,-2.999,-0.166,0.0,0.077,7.541,1354.8,997.6,11399.6,3013.0,36000.0,24000.0,0.0,6.8,91.76,29033.0,1685.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2664.0,12455.0,0.0,7127.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,359.0,2520.0,205.0,0.0,-595.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-surfaces.xml,58.723,58.723,36.777,36.777,21.946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.984,0.993,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.946,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.551,16.928,9.234,0.612,0.0,0.0,0.0,0.0,2109.6,3598.0,23.428,20.686,0.0,3.563,3.657,0.513,7.493,0.627,-1.979,-0.907,0.0,8.335,-0.066,4.814,0.0,0.731,0.0,4.783,-11.379,0.0,-0.132,-0.515,-0.059,2.588,-0.039,9.679,3.299,0.0,-6.636,-0.062,-1.2,-3.252,-0.171,0.0,3.721,9.907,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32951.0,8615.0,7508.0,638.0,569.0,6407.0,0.0,0.0,2446.0,2171.0,4597.0,21264.0,5259.0,7127.0,3259.0,205.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-surfaces2.xml,61.852,61.852,36.883,36.883,24.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.412,5.029,1.002,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.385,17.079,9.234,0.613,0.0,0.0,0.0,0.0,2115.6,3664.4,24.707,20.939,0.0,3.384,3.625,0.509,7.467,0.618,0.349,-0.742,0.0,8.303,-0.062,4.804,0.0,0.728,0.0,5.36,-11.385,0.0,-0.033,-0.496,-0.056,2.622,-0.036,9.505,3.223,0.0,-6.595,-0.058,-1.176,-3.162,-0.168,0.0,3.836,9.902,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,36564.0,8696.0,8620.0,733.0,563.0,6389.0,0.0,0.0,4797.0,2168.0,4597.0,20423.0,5244.0,6806.0,2760.0,203.0,264.0,0.0,0.0,0.0,2008.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.336,58.336,35.866,35.866,22.47,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.371,4.239,0.817,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.043,13.869,9.234,0.614,0.0,0.0,0.0,0.0,2131.8,3340.5,22.815,17.552,0.0,3.546,3.633,0.511,7.418,0.627,-2.072,0.0,0.0,8.169,-0.095,4.799,0.0,0.727,0.0,4.853,-11.406,0.0,-0.038,-0.452,-0.05,2.732,-0.024,9.823,0.0,0.0,-6.32,-0.09,-1.171,-3.106,-0.165,0.0,3.034,9.882,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,74.72,74.72,34.751,34.751,39.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.659,3.091,0.553,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.419,9.19,9.234,0.621,0.0,0.0,0.0,0.0,2129.3,2972.5,25.707,12.733,0.0,3.338,16.908,0.471,7.063,0.833,-0.384,0.0,0.0,7.301,-0.038,4.821,0.0,0.73,0.0,7.749,-11.693,0.0,0.273,-0.7,-0.011,3.409,-0.089,1.503,0.0,0.0,-4.959,-0.033,-0.979,-0.38,-0.126,0.0,1.804,9.602,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,35314.0,8666.0,918.0,0.0,575.0,15942.0,0.0,0.0,2446.0,2171.0,4597.0,12750.0,5054.0,875.0,0.0,207.0,1464.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,57.58,57.58,34.931,34.931,22.648,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.374,3.491,0.625,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.21,10.478,9.234,0.617,0.0,0.0,0.0,0.0,2131.8,3247.6,22.926,17.491,0.0,3.544,3.633,0.511,7.436,0.628,-2.084,0.0,0.0,8.237,-0.06,4.804,0.0,0.728,0.0,4.905,-11.406,0.0,0.022,-0.405,-0.043,2.897,-0.012,10.01,0.0,0.0,-6.085,-0.056,-1.108,-6.92,-0.156,0.0,2.655,9.884,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.698,58.698,33.993,33.993,24.706,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.408,2.677,0.464,9.169,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,23.128,7.544,9.234,0.619,0.0,0.0,0.0,0.0,2115.7,2533.8,17.171,8.377,0.0,3.469,5.155,0.5,7.156,0.6,0.0,0.0,0.0,7.427,-0.044,4.781,0.0,0.723,0.0,4.848,-11.559,0.0,0.205,-0.377,-0.023,3.207,0.013,0.0,0.0,0.0,-5.213,-0.041,-1.104,0.0,-0.145,0.0,1.315,9.733,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,25541.0,8355.0,0.0,0.0,575.0,7398.0,0.0,0.0,2446.0,2171.0,4597.0,10692.0,4967.0,0.0,0.0,207.0,369.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.242,66.242,36.026,36.026,30.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.498,4.27,0.816,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.216,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.299,13.823,9.234,0.616,0.0,0.0,0.0,0.0,2129.4,3597.9,27.633,20.655,0.0,3.482,3.624,0.51,7.387,0.628,3.269,0.0,0.0,8.281,-0.072,4.824,0.0,0.731,0.0,6.424,-11.477,0.0,0.023,-0.385,-0.041,2.869,-0.005,8.863,0.0,0.0,-6.152,-0.066,-1.08,-2.822,-0.154,0.0,3.201,9.812,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,38729.0,8744.0,13788.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,21102.0,5256.0,10225.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.962,58.962,33.574,33.574,25.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.419,2.34,0.368,9.171,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,0.0,23.777,6.129,9.234,0.622,0.0,0.0,0.0,0.0,2109.7,2535.8,22.973,11.187,0.0,3.548,3.66,0.514,7.436,0.632,0.017,0.0,0.0,8.375,-0.042,4.86,0.0,0.738,0.0,5.397,-11.695,0.0,0.35,-0.114,-0.002,3.579,0.055,-0.72,0.0,0.0,-4.607,-0.038,-0.917,-2.173,-0.119,0.0,1.411,9.6,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,13759.0,5104.0,3034.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.439,59.439,35.336,35.336,24.104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.398,3.788,0.708,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.104,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.574,11.992,9.234,0.616,0.0,0.0,0.0,0.0,2131.7,3065.6,22.39,15.895,0.0,3.505,3.6,0.506,7.33,0.621,-0.378,0.0,0.0,7.934,-0.059,4.792,0.0,0.725,0.0,5.145,-11.433,0.0,0.027,-0.403,-0.043,2.859,-0.011,7.49,0.0,0.0,-6.044,-0.055,-1.137,-2.882,-0.159,0.0,2.67,9.856,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,31450.0,8573.0,6680.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,16707.0,5174.0,5912.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,47.513,47.513,30.276,30.276,17.237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.284,4.61,0.898,9.353,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.237,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.147,15.206,9.342,0.606,0.0,0.0,0.0,2.0,1739.3,3397.3,20.36,21.102,0.0,3.835,3.82,0.0,0.0,0.743,-0.631,0.0,9.918,0.0,-0.403,2.064,0.0,0.788,0.0,3.878,-8.221,0.0,-0.044,-0.503,0.0,0.0,0.04,11.695,0.0,-3.613,0.0,-0.397,-0.407,-2.432,-0.157,0.0,3.599,7.616,1354.8,997.6,11399.6,2808.9,36000.0,24000.0,0.0,6.8,91.76,27750.0,8437.0,7508.0,0.0,575.0,2198.0,0.0,4563.0,0.0,2171.0,2299.0,18129.0,5236.0,7127.0,0.0,207.0,232.0,0.0,488.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,52.661,52.661,32.634,32.634,20.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33,4.297,0.828,9.402,0.0,0.0,3.406,0.142,0.277,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.028,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.755,14.046,9.365,0.613,0.0,0.0,0.0,0.0,1892.1,3252.9,21.311,18.501,0.0,3.646,4.699,0.512,5.434,0.696,-2.286,0.0,0.815,6.049,-0.038,3.246,0.0,0.734,0.0,4.494,-9.585,0.0,-0.032,-0.631,-0.056,1.94,-0.042,10.006,0.0,-0.117,-4.606,-0.034,-0.789,-2.992,-0.167,0.0,3.267,8.476,1354.8,997.6,11399.6,2849.6,36000.0,24000.0,0.0,6.8,91.76,31515.0,8575.0,7508.0,0.0,620.0,7098.0,0.0,511.0,1797.0,2171.0,3235.0,18231.0,5225.0,7127.0,0.0,223.0,509.0,0.0,181.0,0.0,2010.0,436.0,2520.0,79.0,0.0,-721.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,65.426,65.426,36.929,36.929,28.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.47,5.014,1.005,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.689,17.128,9.234,0.614,0.0,0.0,0.0,0.0,2144.8,3597.8,26.339,20.734,0.0,3.474,3.602,0.507,10.852,0.62,-2.234,0.0,0.0,9.357,-0.056,4.805,0.0,0.727,0.0,6.057,-11.412,0.0,-0.085,-0.472,-0.053,3.692,-0.029,9.831,0.0,0.0,-4.57,-0.051,-1.15,-3.164,-0.163,0.0,3.64,9.876,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,34257.0,8649.0,7508.0,0.0,575.0,7168.0,0.0,0.0,3589.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.367,57.367,36.115,36.115,21.252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.351,4.457,0.868,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.252,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.901,14.758,9.234,0.613,0.0,0.0,0.0,0.0,2106.2,3390.0,22.652,18.717,0.0,3.571,3.653,0.514,7.734,0.632,-2.023,0.0,0.0,6.757,-0.06,4.811,0.0,0.729,0.0,4.637,-11.389,0.0,-0.071,-0.477,-0.054,2.527,-0.03,9.797,0.0,0.0,-5.343,-0.055,-1.18,-3.151,-0.167,0.0,3.234,9.898,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.08,56.08,35.361,35.361,20.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.342,3.859,0.721,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.402,12.193,9.234,0.614,0.0,0.0,0.0,0.0,2127.1,3204.7,22.433,17.162,0.0,3.585,3.664,0.516,5.126,0.635,-2.012,0.0,0.0,8.909,-0.062,4.821,0.0,0.732,0.0,4.542,-11.401,0.0,0.004,-0.421,-0.046,0.989,-0.017,9.936,0.0,0.0,-6.52,-0.057,-1.148,-2.901,-0.162,0.0,2.831,9.886,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,33075.0,8618.0,7508.0,0.0,575.0,7160.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.296,47.296,28.913,28.913,18.383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.303,3.477,0.64,9.362,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.383,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.203,10.691,9.342,0.615,0.0,0.0,0.0,0.0,1731.8,2628.7,15.843,10.853,0.0,3.697,3.592,0.505,5.089,0.619,-2.383,0.0,0.0,9.952,-0.04,3.486,0.0,0.73,0.0,0.0,-8.362,0.0,0.028,-0.47,-0.053,1.787,-0.028,9.996,0.0,0.0,-3.858,-0.036,-0.834,-2.93,-0.163,0.0,0.0,7.484,1354.8,997.6,11399.5,2808.9,36000.0,24000.0,0.0,6.8,91.76,21924.0,0.0,7508.0,0.0,575.0,4819.0,0.0,0.0,3403.0,2171.0,3448.0,12594.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,464.0,2520.0,31.0,0.0,-769.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.707,42.707,29.675,29.675,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.215,4.193,0.806,9.33,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.032,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.199,13.442,9.285,0.693,0.0,0.0,0.0,0.0,1720.9,2656.1,15.205,14.147,0.0,4.001,3.886,0.0,0.0,0.77,-0.388,0.0,5.324,0.0,-0.323,2.58,0.0,0.0,0.0,2.036,-6.065,0.0,-0.098,-0.674,0.0,0.0,-0.018,11.518,0.0,-0.625,0.0,-0.319,-0.562,-2.611,0.0,0.0,1.648,5.447,1354.8,997.6,11399.5,2706.9,36000.0,24000.0,0.0,6.8,91.76,23122.0,4833.0,7508.0,0.0,575.0,2198.0,0.0,3538.0,0.0,2171.0,2299.0,13488.0,145.0,7127.0,0.0,207.0,232.0,0.0,938.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,39.927,39.927,29.271,29.271,10.656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.176,3.878,0.734,9.353,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.656,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.972,12.217,9.342,0.606,0.0,0.0,0.0,0.0,1712.9,2442.6,12.704,12.011,0.0,3.925,3.798,0.0,0.0,0.682,-1.657,0.0,0.0,8.035,-0.12,2.006,0.0,0.775,0.0,0.286,-8.264,0.0,-0.063,-0.572,0.0,0.0,-0.03,10.711,0.0,0.0,-1.604,-0.117,-0.465,-2.846,-0.17,0.0,0.079,7.573,1354.8,997.6,11399.6,2808.9,36000.0,24000.0,0.0,6.8,91.76,28666.0,1683.0,7508.0,0.0,575.0,2198.0,0.0,0.0,12232.0,2171.0,2299.0,12405.0,0.0,7127.0,0.0,207.0,232.0,0.0,0.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.907,43.907,29.819,29.819,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.232,4.281,0.826,9.348,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.088,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.189,13.831,9.285,0.712,0.0,0.0,0.0,0.0,1727.8,2758.5,16.464,15.101,0.0,4.001,3.883,0.0,0.0,0.77,-0.369,0.0,5.939,0.0,-0.341,2.585,0.0,0.0,0.0,2.461,-6.089,0.0,-0.081,-0.658,0.0,0.0,-0.013,11.49,0.0,-0.505,0.0,-0.336,-0.55,-2.6,0.0,0.0,1.927,5.424,1354.8,997.6,11399.5,2706.9,36000.0,24000.0,0.0,6.8,91.76,23083.0,4828.0,7508.0,0.0,575.0,2198.0,0.0,3504.0,0.0,2171.0,2299.0,13483.0,149.0,7127.0,0.0,207.0,232.0,0.0,929.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.166,41.166,29.213,29.213,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.197,3.823,0.716,9.346,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.953,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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,11.865,9.285,0.71,0.0,0.0,0.0,0.0,1718.9,2538.1,14.652,12.883,0.0,3.994,3.856,0.0,0.0,0.759,-0.27,0.0,4.456,0.0,-0.343,2.583,0.0,0.0,0.0,1.82,-6.035,0.0,-0.074,-0.626,0.0,0.0,0.009,11.654,0.0,-2.012,0.0,-0.339,-0.564,-2.512,0.0,0.0,1.122,5.478,1354.8,997.6,11399.6,2706.9,36000.0,24000.0,0.0,6.8,91.76,20580.0,4443.0,7508.0,0.0,575.0,2198.0,0.0,1386.0,0.0,2171.0,2299.0,13230.0,457.0,7127.0,0.0,207.0,232.0,0.0,368.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,48.922,48.922,28.926,28.926,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33,3.537,0.647,9.28,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.715,10.743,9.285,0.64,0.0,0.0,0.0,0.0,1729.5,2469.6,16.597,11.56,0.0,3.723,3.619,0.0,0.0,0.633,-2.639,0.0,14.374,0.0,-0.047,2.46,0.0,0.0,0.0,2.599,-6.259,0.0,0.063,-0.441,0.0,0.0,-0.015,10.518,0.0,-2.768,0.0,-0.045,-0.521,-2.405,0.0,0.0,1.301,5.253,1354.8,997.6,11399.6,2706.9,36000.0,24000.0,0.0,6.8,91.76,23845.0,1648.0,7508.0,0.0,575.0,2198.0,0.0,7447.0,0.0,2171.0,2299.0,14480.0,100.0,7127.0,0.0,207.0,232.0,0.0,1975.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.785,42.785,29.704,29.704,13.081,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.216,4.208,0.809,9.34,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.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,12.245,13.511,9.285,0.703,0.0,0.0,0.0,0.0,1723.7,2674.7,15.45,14.319,0.0,3.994,3.853,0.0,0.0,0.749,-0.43,0.0,5.381,0.0,-0.325,2.58,0.0,0.0,0.0,2.14,-6.063,0.0,-0.077,-0.629,0.0,0.0,-0.0,11.494,0.0,-0.672,0.0,-0.32,-0.562,-2.632,0.0,0.0,1.722,5.45,1354.8,997.6,11399.6,2706.9,36000.0,24000.0,0.0,6.8,91.76,23128.0,4833.0,7508.0,0.0,575.0,2198.0,0.0,3545.0,0.0,2171.0,2299.0,13490.0,145.0,7127.0,0.0,207.0,232.0,0.0,940.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,40.591,40.591,29.8,29.8,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.178,4.225,0.816,9.45,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.103,13.591,9.342,0.708,0.0,0.0,0.0,0.0,1707.3,2944.0,14.33,13.655,0.0,3.97,3.827,0.0,0.0,0.771,0.151,0.0,4.569,0.0,-0.405,2.046,0.0,0.776,0.0,1.645,-7.628,0.0,-0.196,-0.756,0.0,0.0,-0.002,11.776,0.0,-2.016,0.0,-0.401,-0.482,-2.713,-0.192,0.0,1.27,7.603,1354.8,997.6,11399.6,2808.9,36000.0,24000.0,0.0,6.8,91.76,20341.0,4163.0,7508.0,0.0,575.0,2198.0,0.0,1427.0,0.0,2171.0,2299.0,13315.0,531.0,7127.0,0.0,207.0,232.0,0.0,379.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,42.539,42.539,29.748,29.748,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.211,4.099,0.783,9.523,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.975,12.966,9.342,0.786,0.0,0.0,0.0,0.0,1723.5,2655.0,15.483,14.113,0.0,3.988,3.844,0.0,0.0,0.754,-0.322,0.0,6.778,0.0,-0.354,1.847,0.0,0.785,0.0,2.063,-7.801,0.0,-0.068,-0.628,0.0,0.0,0.007,11.623,0.0,-2.916,0.0,-0.349,-0.385,-2.579,-0.173,0.0,1.298,7.43,1354.8,997.6,11399.6,2808.9,36000.0,24000.0,0.0,6.8,91.76,23883.0,6886.0,7508.0,0.0,575.0,2198.0,0.0,2246.0,0.0,2171.0,2299.0,14616.0,1615.0,7127.0,0.0,207.0,232.0,0.0,596.0,0.0,2010.0,310.0,2520.0,288.0,0.0,-512.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,61.522,61.522,36.298,36.298,25.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.416,4.552,0.889,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.622,15.098,9.234,0.614,0.0,0.0,0.0,0.0,2141.7,3490.2,25.105,19.615,0.0,3.555,3.687,0.512,4.633,0.63,-1.592,0.0,0.0,10.509,-0.063,6.636,0.0,0.729,0.0,5.447,-11.405,0.0,-0.122,-0.526,-0.053,1.621,-0.028,9.958,0.0,0.0,-3.533,-0.059,-1.574,-3.433,-0.165,0.0,3.31,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,33114.0,8619.0,7925.0,0.0,575.0,4704.0,0.0,0.0,3178.0,2171.0,5942.0,18338.0,5222.0,7312.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,803.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-backup-lockout-temperature.xml,45.515,45.515,45.515,45.515,0.0,0.0,0.0,0.0,0.0,0.0,9.249,0.585,0.931,3.303,1.008,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.914,12.58,9.234,0.613,0.0,0.0,145.0,0.0,10089.3,3135.0,37.461,15.129,0.0,3.61,3.669,0.515,7.689,0.622,-2.271,0.0,0.0,8.986,0.065,4.748,0.0,0.762,0.0,4.539,-11.407,0.0,0.014,-0.443,-0.05,2.793,-0.034,9.616,0.0,0.0,-6.37,0.055,-1.188,-3.298,-0.162,0.0,1.956,9.88,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.776,34.776,34.776,34.776,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.288,1.003,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.523,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3242.9,0.0,14.995,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.013,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.191,-2.984,-0.166,0.0,1.946,10.044,1354.8,997.6,11399.6,2615.9,0.0,36000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,41.462,41.462,41.462,41.462,0.0,0.0,0.0,0.0,0.0,0.0,9.081,0.232,1.731,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.283,0.0,9.234,0.59,0.0,0.0,0.0,0.0,6170.7,0.0,25.169,0.0,0.0,3.495,3.637,0.512,7.414,0.629,-2.071,0.0,0.0,8.028,-0.067,4.806,0.0,0.728,0.0,6.225,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,45.74,45.74,45.74,45.74,0.0,0.0,0.0,0.0,0.0,0.0,9.677,0.222,1.0,3.368,1.033,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.654,12.906,9.234,0.614,0.0,0.0,0.0,0.0,5856.4,3144.6,24.12,15.265,0.0,3.523,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.805,0.0,0.728,0.0,5.415,-11.406,0.0,0.001,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,1.996,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,45.681,45.681,45.681,45.681,0.0,0.0,0.0,0.0,0.0,0.0,9.602,0.222,1.0,3.383,1.033,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.654,12.906,9.234,0.614,0.0,0.0,0.0,0.0,5838.7,3151.3,24.12,15.265,0.0,3.523,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.805,0.0,0.728,0.0,5.415,-11.406,0.0,0.001,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,1.996,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.431,41.431,41.431,41.431,0.0,0.0,0.0,0.0,0.0,0.0,7.062,0.219,0.592,2.444,0.674,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.717,13.246,9.234,0.614,0.0,0.0,0.0,0.0,5173.5,2729.1,24.111,16.233,0.0,3.481,3.635,0.511,7.43,0.629,-2.08,0.0,0.0,8.195,-0.063,4.805,0.0,0.728,0.0,6.51,-11.406,0.0,-0.013,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,2.34,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,53.534,53.534,38.708,38.708,14.826,0.0,0.0,0.0,0.0,0.0,4.634,0.0,0.569,2.543,0.521,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.826,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.744,15.918,9.234,0.615,0.0,0.0,0.0,34.0,3367.3,2869.9,23.258,16.461,0.0,3.293,3.636,0.512,7.433,0.629,-2.101,0.0,0.0,8.214,-0.059,5.886,0.0,0.727,0.0,11.622,-11.419,0.0,-0.133,-0.447,-0.05,2.752,-0.022,9.855,0.0,0.0,-6.286,-0.055,-1.432,-3.037,-0.163,0.0,5.213,9.869,1354.8,997.6,11399.6,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,45.798,45.798,42.2,42.2,3.598,0.0,0.0,0.0,0.0,0.0,7.636,0.0,1.06,2.543,0.521,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.598,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.927,15.917,9.234,0.615,0.0,0.0,0.0,34.0,3401.4,2869.9,24.382,16.461,0.0,3.242,3.637,0.512,7.435,0.629,-2.1,0.0,0.0,8.217,-0.059,5.887,0.0,0.727,0.0,12.844,-11.419,0.0,-0.133,-0.447,-0.05,2.752,-0.022,9.855,0.0,0.0,-6.286,-0.055,-1.432,-3.037,-0.163,0.0,5.212,9.869,1354.8,997.6,11399.6,2615.8,18000.0,18000.0,60000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,45.837,45.837,42.293,42.293,3.544,0.0,0.0,0.0,0.0,0.0,7.636,0.0,1.153,2.543,0.521,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.544,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.314,15.918,9.234,0.615,0.0,0.0,0.0,34.0,3411.3,2869.9,27.084,16.461,0.0,3.226,3.637,0.512,7.435,0.629,-2.1,0.0,0.0,8.218,-0.059,5.887,0.0,0.727,0.0,13.243,-11.419,0.0,-0.133,-0.447,-0.05,2.752,-0.022,9.855,0.0,0.0,-6.286,-0.055,-1.432,-3.037,-0.163,0.0,5.213,9.869,1354.8,997.6,11399.6,2615.8,18000.0,18000.0,60000.0,6.8,91.76,39811.0,16105.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,23179.0,10431.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,40.976,40.976,40.976,40.976,0.0,0.0,0.0,0.0,0.0,0.0,7.106,0.104,0.776,2.335,0.216,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.289,14.489,9.234,0.614,0.0,0.0,0.0,0.0,5180.2,2604.8,24.465,17.315,0.0,3.381,3.635,0.512,7.434,0.629,-2.078,0.0,0.0,8.2,-0.063,4.805,0.0,0.728,0.0,9.156,-11.406,0.0,-0.067,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.337,-0.059,-1.168,-3.072,-0.165,0.0,3.627,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-air-to-air-heat-pump-1-speed-cooling-only.xml,35.362,35.362,35.362,35.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.72,1.156,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.554,9.234,0.663,0.0,0.0,0.0,9.0,0.0,3452.9,0.0,17.182,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.102,-0.463,-0.051,2.705,-0.03,9.926,0.0,0.0,-6.914,-0.064,-1.191,-2.988,-0.166,0.0,4.017,10.044,1354.8,997.6,11399.6,2615.8,0.0,18773.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-air-to-air-heat-pump-1-speed-heating-only.xml,41.931,41.931,41.931,41.931,0.0,0.0,0.0,0.0,0.0,0.0,9.316,0.393,1.804,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.328,0.0,9.234,0.59,0.0,0.0,0.0,0.0,6382.7,0.0,25.456,0.0,0.0,3.456,3.638,0.512,7.415,0.629,-2.071,0.0,0.0,8.03,-0.067,4.806,0.0,0.728,0.0,7.297,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.9,31214.0,0.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,47.982,47.982,47.982,47.982,0.0,0.0,0.0,0.0,0.0,0.0,9.672,1.952,1.068,3.705,1.146,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.192,14.403,9.234,0.614,0.0,0.0,0.0,0.0,6930.5,3469.0,25.173,18.407,0.0,3.386,3.635,0.512,7.433,0.629,-2.078,0.0,0.0,8.199,-0.063,4.805,0.0,0.728,0.0,9.052,-11.406,0.0,-0.063,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.338,-0.059,-1.168,-3.073,-0.165,0.0,3.519,9.882,1354.8,997.6,11399.6,2615.9,21589.0,21589.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,46.077,46.077,46.077,46.077,0.0,0.0,0.0,0.0,0.0,0.0,9.78,0.283,1.093,3.432,1.049,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.432,13.128,9.234,0.614,0.0,0.0,0.0,0.0,5917.8,3211.0,24.274,15.803,0.0,3.493,3.635,0.511,7.43,0.629,-2.08,0.0,0.0,8.194,-0.063,4.805,0.0,0.728,0.0,6.215,-11.406,0.0,-0.009,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.071,-0.165,0.0,2.223,9.882,1354.8,997.6,11399.6,2615.9,32619.0,32619.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-air-to-air-heat-pump-1-speed-sizing-methodology-maxload-miami-fl.xml,49.428,49.428,49.428,49.428,0.0,0.0,0.0,0.0,0.0,0.0,0.005,0.0,0.0,17.836,5.462,4.848,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66.662,4.659,0.55,0.0,0.0,0.0,0.0,0.0,3523.8,0.0,21.456,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.82,0.735,0.136,9.723,0.337,23.998,0.0,0.0,3.137,-0.01,-0.524,-2.899,-0.006,0.0,10.092,21.224,1354.8,997.6,8625.1,1979.2,24446.0,24446.0,11215.0,51.62,90.68,11215.0,4367.0,2184.0,0.0,167.0,1864.0,0.0,0.0,711.0,631.0,1291.0,20738.0,7582.0,6532.0,0.0,279.0,580.0,0.0,0.0,0.0,2554.0,690.0,2520.0,2991.0,842.0,1349.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,44.682,44.682,44.682,44.682,0.0,0.0,0.0,0.0,0.0,0.0,9.154,0.0,0.915,3.202,0.972,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.451,12.094,9.234,0.614,0.0,0.0,0.0,0.0,4985.2,2937.3,22.468,13.378,0.0,3.603,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.188,-0.063,4.805,0.0,0.728,0.0,3.149,-11.406,0.0,0.031,-0.458,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.342,-0.059,-1.168,-3.068,-0.165,0.0,1.169,9.882,1354.8,997.6,11399.6,2615.9,59238.0,59238.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-air-to-air-heat-pump-2-speed-sizing-methodology-acca.xml,43.405,43.405,43.405,43.405,0.0,0.0,0.0,0.0,0.0,0.0,6.87,1.952,0.749,2.645,0.75,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.106,14.756,9.234,0.614,0.0,0.0,0.0,0.0,6559.9,3080.0,25.033,18.874,0.0,3.349,3.636,0.512,7.435,0.629,-2.077,0.0,0.0,8.201,-0.063,4.805,0.0,0.728,0.0,9.997,-11.406,0.0,-0.077,-0.457,-0.051,2.722,-0.024,9.851,0.0,0.0,-6.337,-0.059,-1.168,-3.073,-0.165,0.0,3.874,9.882,1354.8,997.6,11399.6,2615.9,22720.0,22720.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-air-to-air-heat-pump-2-speed-sizing-methodology-hers.xml,41.857,41.857,41.857,41.857,0.0,0.0,0.0,0.0,0.0,0.0,7.103,0.432,0.721,2.476,0.686,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.891,13.486,9.234,0.614,0.0,0.0,0.0,0.0,5525.2,2778.2,24.251,16.866,0.0,3.436,3.635,0.512,7.432,0.629,-2.079,0.0,0.0,8.197,-0.063,4.805,0.0,0.728,0.0,7.718,-11.406,0.0,-0.023,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.07,-0.165,0.0,2.584,9.882,1354.8,997.6,11399.6,2615.9,32897.0,32897.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-air-to-air-heat-pump-2-speed-sizing-methodology-maxload.xml,40.852,40.852,40.852,40.852,0.0,0.0,0.0,0.0,0.0,0.0,6.872,0.0,0.629,2.29,0.621,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.297,12.139,9.234,0.614,0.0,0.0,0.0,0.0,4412.1,2518.1,23.304,13.535,0.0,3.571,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.805,0.0,0.728,0.0,4.022,-11.406,0.0,0.03,-0.458,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.067,-0.165,0.0,1.213,9.882,1354.8,997.6,11399.6,2615.9,66229.0,66229.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-air-to-air-heat-pump-var-speed-backup-boiler.xml,41.504,41.504,41.341,41.341,0.163,0.0,0.0,0.0,0.0,0.0,7.495,0.0,0.858,2.327,0.221,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.163,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.225,14.549,9.234,0.615,0.0,0.0,0.0,0.0,4479.4,2705.3,24.702,17.74,0.0,3.348,3.635,0.512,7.432,0.629,-2.094,0.0,0.0,8.21,-0.06,5.886,0.0,0.727,0.0,10.066,-11.417,0.0,-0.064,-0.447,-0.05,2.753,-0.022,9.865,0.0,0.0,-6.286,-0.056,-1.431,-3.027,-0.163,0.0,3.789,9.871,1354.8,997.6,11399.6,2615.9,32827.0,32827.0,23705.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-air-to-air-heat-pump-var-speed-backup-furnace.xml,41.539,41.539,41.347,41.347,0.192,0.0,0.0,0.0,0.0,0.0,7.496,0.0,0.863,2.327,0.221,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.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,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.263,14.548,9.234,0.615,0.0,0.0,0.0,0.0,4483.6,2705.4,27.146,17.742,0.0,3.346,3.635,0.511,7.432,0.629,-2.095,0.0,0.0,8.21,-0.06,5.886,0.0,0.727,0.0,10.107,-11.415,0.0,-0.065,-0.448,-0.05,2.753,-0.022,9.865,0.0,0.0,-6.287,-0.056,-1.432,-3.027,-0.163,0.0,3.788,9.873,1354.8,997.6,11399.6,2615.9,32827.0,32827.0,32302.0,6.8,91.76,39811.0,16105.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,23179.0,10431.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-air-to-air-heat-pump-var-speed-sizing-methodology-acca.xml,42.082,42.082,42.082,42.082,0.0,0.0,0.0,0.0,0.0,0.0,7.414,0.615,0.905,2.401,0.308,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.273,15.297,9.234,0.614,0.0,0.0,0.0,0.0,6052.4,2887.0,25.147,18.56,0.0,3.305,3.637,0.512,7.436,0.629,-2.083,0.0,0.0,8.205,-0.062,4.805,0.0,0.728,0.0,11.199,-11.408,0.0,-0.106,-0.456,-0.051,2.724,-0.024,9.845,0.0,0.0,-6.333,-0.058,-1.167,-3.076,-0.165,0.0,4.459,9.88,1354.8,997.6,11399.6,2615.9,24560.0,24560.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-air-to-air-heat-pump-var-speed-sizing-methodology-hers.xml,41.085,41.085,41.085,41.085,0.0,0.0,0.0,0.0,0.0,0.0,7.175,0.101,0.815,2.334,0.221,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.89,14.652,9.234,0.614,0.0,0.0,0.0,0.0,5130.7,2640.4,24.601,17.576,0.0,3.359,3.636,0.512,7.435,0.629,-2.083,0.0,0.0,8.204,-0.062,4.805,0.0,0.728,0.0,9.775,-11.408,0.0,-0.073,-0.456,-0.051,2.723,-0.024,9.845,0.0,0.0,-6.334,-0.058,-1.167,-3.073,-0.165,0.0,3.794,9.88,1354.8,997.6,11399.6,2615.9,32827.0,32827.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-air-to-air-heat-pump-var-speed-sizing-methodology-maxload.xml,40.714,40.714,40.714,40.714,0.0,0.0,0.0,0.0,0.0,0.0,7.007,0.0,0.733,2.337,0.196,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.942,13.648,9.234,0.614,0.0,0.0,0.0,0.0,4175.3,2563.1,23.752,16.302,0.0,3.433,3.635,0.512,7.432,0.629,-2.079,0.0,0.0,8.198,-0.063,4.805,0.0,0.728,0.0,7.771,-11.406,0.0,-0.029,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.07,-0.165,0.0,2.765,9.882,1354.8,997.6,11399.6,2615.9,50891.0,50891.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-boiler-elec-only.xml,48.012,48.012,48.012,48.012,0.0,0.0,0.0,0.0,0.0,0.0,17.407,0.0,0.188,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,5872.6,0.0,16.351,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.9,23705.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-boiler-gas-central-ac-1-speed.xml,55.151,55.151,36.448,36.448,18.703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.223,4.552,1.233,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.703,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.414,15.027,9.234,0.614,0.0,0.0,0.0,11.0,2094.0,3362.3,16.351,17.185,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,-0.094,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.34,-0.059,-1.168,-3.075,-0.165,0.0,4.16,9.882,1354.8,997.6,11399.6,2615.9,23705.0,18773.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-boiler-gas-only.xml,49.151,49.151,30.638,30.638,18.513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.221,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.513,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2057.4,0.0,16.351,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.9,23705.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-central-ac-only-1-speed.xml,36.135,36.135,36.135,36.135,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.451,1.199,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.599,9.234,0.663,0.0,0.0,0.0,9.0,0.0,3452.9,0.0,17.174,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.105,-0.463,-0.051,2.705,-0.03,9.925,0.0,0.0,-6.914,-0.064,-1.191,-2.989,-0.166,0.0,4.065,10.044,1354.8,997.6,11399.6,2615.8,0.0,18773.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-central-ac-only-2-speed.xml,34.704,34.704,34.704,34.704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.432,0.787,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.028,9.234,0.663,0.0,0.0,0.0,4.0,0.0,3143.8,0.0,17.669,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.123,-0.463,-0.051,2.707,-0.03,9.927,0.0,0.0,-6.912,-0.064,-1.191,-2.988,-0.166,0.0,4.497,10.044,1354.8,997.6,11399.6,2615.8,0.0,18933.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-central-ac-only-var-speed.xml,33.89,33.89,33.89,33.89,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.939,0.466,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.506,9.234,0.663,0.0,0.0,0.0,9.0,0.0,2828.8,0.0,17.099,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.152,-0.463,-0.051,2.706,-0.03,9.926,0.0,0.0,-6.913,-0.064,-1.191,-2.993,-0.166,0.0,5.019,10.044,1354.8,997.6,11399.6,2615.8,0.0,18892.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-central-ac-plus-air-to-air-heat-pump-heating.xml,47.848,47.848,47.848,47.848,0.0,0.0,0.0,0.0,0.0,0.0,9.406,0.395,1.822,4.552,1.233,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.56,15.028,9.234,0.614,0.0,0.0,0.0,11.0,6432.7,3362.3,25.456,17.185,0.0,3.45,3.635,0.511,7.431,0.629,-2.08,0.0,0.0,8.196,-0.063,4.805,0.0,0.728,0.0,7.364,-11.406,0.0,-0.093,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.075,-0.165,0.0,4.16,9.882,1354.8,997.6,11399.6,2615.9,31214.0,18773.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-acca.xml,53.869,53.869,42.273,42.273,11.596,0.0,0.0,0.0,0.0,0.0,5.844,0.0,1.137,3.705,1.146,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,11.596,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.527,14.403,9.234,0.614,0.0,0.0,8.0,0.0,3648.4,3469.0,25.176,18.407,0.0,3.369,3.635,0.512,7.433,0.629,-2.079,0.0,0.0,8.198,-0.063,4.804,0.0,0.728,0.0,9.41,-11.406,0.0,-0.063,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.338,-0.059,-1.168,-3.073,-0.165,0.0,3.519,9.882,1354.8,997.6,11399.6,2615.9,21589.0,21589.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-hers.xml,52.638,52.638,41.795,41.795,10.843,0.0,0.0,0.0,0.0,0.0,5.474,0.0,1.4,3.432,1.049,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.559,13.128,9.234,0.614,0.0,0.0,0.0,0.0,3630.6,3211.0,24.267,15.803,0.0,3.442,3.635,0.512,7.432,0.629,-2.079,0.0,0.0,8.196,-0.063,4.805,0.0,0.728,0.0,7.383,-11.406,0.0,-0.009,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.071,-0.165,0.0,2.223,9.882,1354.8,997.6,11399.6,2615.9,32619.0,32619.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-dual-fuel-air-to-air-heat-pump-1-speed-sizing-methodology-maxload.xml,52.638,52.638,41.795,41.795,10.843,0.0,0.0,0.0,0.0,0.0,5.474,0.0,1.4,3.432,1.049,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.843,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.559,13.128,9.234,0.614,0.0,0.0,0.0,0.0,3630.6,3211.0,24.267,15.803,0.0,3.442,3.635,0.512,7.432,0.629,-2.079,0.0,0.0,8.196,-0.063,4.805,0.0,0.728,0.0,7.383,-11.406,0.0,-0.009,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.071,-0.165,0.0,2.223,9.882,1354.8,997.6,11399.6,2615.9,32619.0,32619.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-dual-fuel-mini-split-heat-pump-ducted.xml,44.475,44.475,35.86,35.86,8.615,0.0,0.0,0.0,0.0,0.0,2.696,0.0,0.523,2.12,0.081,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.615,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.826,12.207,9.234,0.614,0.0,0.0,0.0,0.0,2789.4,2186.1,19.333,13.314,0.0,3.592,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.189,-0.063,4.805,0.0,0.728,0.0,3.538,-11.406,0.0,0.028,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.069,-0.165,0.0,1.295,9.882,1354.8,997.6,11399.6,2615.9,26064.0,26064.0,26247.0,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-elec-resistance-only.xml,46.676,46.676,46.676,46.676,0.0,0.0,0.0,0.0,0.0,0.0,16.259,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,5891.9,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.9,23705.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-evap-cooler-furnace-gas.xml,56.047,56.047,32.051,32.051,23.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,0.0,0.988,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,10.933,9.234,0.614,0.0,0.0,0.0,0.0,2115.0,1920.4,24.945,11.042,0.0,3.488,3.634,0.511,7.43,0.629,-2.081,0.0,0.0,8.193,-0.063,4.804,0.0,0.728,0.0,6.485,-11.406,0.0,0.044,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.167,-3.062,-0.165,0.0,-0.001,9.882,1354.8,997.6,11399.6,2615.9,32302.0,12748.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-floor-furnace-propane-only.xml,52.06,52.06,30.418,30.418,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2021.1,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.9,23705.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-furnace-elec-only.xml,53.335,53.335,53.335,53.335,0.0,0.0,0.0,0.0,0.0,0.0,22.3,0.0,0.617,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.473,0.0,9.234,0.59,0.0,0.0,0.0,0.0,8554.1,0.0,24.945,0.0,0.0,3.493,3.637,0.512,7.414,0.629,-2.072,0.0,0.0,8.027,-0.067,4.806,0.0,0.728,0.0,6.423,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.9,32302.0,0.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-furnace-gas-central-ac-2-speed.xml,58.916,58.916,35.259,35.259,23.657,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.505,3.506,0.809,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,0.0,0.0,22.271,15.452,9.234,0.614,0.0,0.0,0.0,6.0,2138.1,2998.5,24.407,17.69,0.0,3.504,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,6.049,-11.406,0.0,-0.111,-0.457,-0.051,2.723,-0.024,9.851,0.0,0.0,-6.337,-0.059,-1.168,-3.075,-0.165,0.0,4.59,9.882,1354.8,997.6,11399.6,2615.9,32302.0,18933.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-furnace-gas-central-ac-var-speed.xml,58.084,58.084,34.423,34.423,23.661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.506,2.994,0.483,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.661,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.276,15.921,9.234,0.614,0.0,0.0,0.0,10.0,2138.4,2777.5,24.414,17.126,0.0,3.503,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,6.054,-11.406,0.0,-0.14,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.338,-0.059,-1.168,-3.08,-0.165,0.0,5.104,9.882,1354.8,997.6,11399.6,2615.9,32302.0,18892.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-furnace-gas-only.xml,54.789,54.789,31.035,31.035,23.754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.617,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.473,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2121.4,0.0,24.945,0.0,0.0,3.493,3.637,0.512,7.414,0.629,-2.072,0.0,0.0,8.027,-0.067,4.806,0.0,0.728,0.0,6.423,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.9,32302.0,0.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-furnace-gas-room-ac.xml,60.065,60.065,36.069,36.069,23.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.624,5.006,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.701,10.932,9.234,0.614,0.0,0.0,0.0,0.0,2115.0,2940.3,24.945,10.57,0.0,3.488,3.634,0.511,7.43,0.629,-2.081,0.0,0.0,8.193,-0.063,4.804,0.0,0.728,0.0,6.485,-11.406,0.0,0.044,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,-0.001,9.882,1354.8,997.6,11399.6,2615.9,32302.0,13323.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-ground-to-air-heat-pump-cooling-only.xml,34.302,34.302,34.302,34.302,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.984,0.833,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.068,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3045.2,0.0,18.266,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.081,-0.463,-0.051,2.706,-0.03,9.926,0.0,0.0,-6.913,-0.064,-1.191,-2.988,-0.166,0.0,3.524,10.044,1354.8,997.6,11399.6,2615.9,0.0,22883.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-ground-to-air-heat-pump-heating-only.xml,36.623,36.623,36.623,36.623,0.0,0.0,0.0,0.0,0.0,0.0,5.422,0.0,0.784,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.817,0.0,9.234,0.59,0.0,0.0,0.0,0.0,3394.5,0.0,23.38,0.0,0.0,3.554,3.637,0.512,7.412,0.629,-2.073,0.0,0.0,8.024,-0.067,4.806,0.0,0.728,0.0,4.718,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.9,31214.0,0.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-ground-to-air-heat-pump-sizing-methodology-acca.xml,39.818,39.818,39.818,39.818,0.0,0.0,0.0,0.0,0.0,0.0,5.416,0.0,0.67,2.534,0.758,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.733,13.374,9.234,0.614,0.0,0.0,0.0,0.0,3349.9,2536.9,22.974,15.784,0.0,3.56,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.466,-11.406,0.0,-0.02,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.072,-0.165,0.0,2.48,9.882,1354.8,997.6,11399.6,2615.9,31214.0,31214.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-ground-to-air-heat-pump-sizing-methodology-hers.xml,39.643,39.643,39.643,39.643,0.0,0.0,0.0,0.0,0.0,0.0,5.278,0.0,0.439,2.479,1.008,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.03,12.885,9.234,0.614,0.0,0.0,0.0,0.0,3237.5,2586.9,21.613,15.092,0.0,3.584,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.189,-0.063,4.804,0.0,0.728,0.0,3.746,-11.406,0.0,0.003,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.168,-3.069,-0.165,0.0,1.969,9.882,1354.8,997.6,11399.6,2615.9,33024.0,33024.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-ground-to-air-heat-pump-sizing-methodology-maxload.xml,39.643,39.643,39.643,39.643,0.0,0.0,0.0,0.0,0.0,0.0,5.278,0.0,0.439,2.479,1.008,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.03,12.885,9.234,0.614,0.0,0.0,0.0,0.0,3237.5,2586.9,21.613,15.092,0.0,3.584,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.189,-0.063,4.804,0.0,0.728,0.0,3.746,-11.406,0.0,0.003,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.168,-3.069,-0.165,0.0,1.969,9.882,1354.8,997.6,11399.6,2615.9,33024.0,33024.0,31214.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-mini-split-air-conditioner-only-ducted.xml,33.021,33.021,33.021,33.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.422,0.114,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.55,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2838.4,0.0,13.544,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.017,-0.463,-0.051,2.704,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.191,-2.986,-0.166,0.0,1.999,10.044,1354.8,997.6,11399.6,2615.9,0.0,14473.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-mini-split-heat-pump-ducted-cooling-only.xml,33.021,33.021,33.021,33.021,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.422,0.114,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.55,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2838.4,0.0,13.544,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.017,-0.463,-0.051,2.704,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.191,-2.986,-0.166,0.0,1.999,10.044,1354.8,997.6,11399.6,2615.9,0.0,14473.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-mini-split-heat-pump-ducted-heating-only.xml,36.27,36.27,36.27,36.27,0.0,0.0,0.0,0.0,0.0,0.0,5.263,0.241,0.349,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.609,0.0,9.234,0.59,0.0,0.0,0.0,0.0,4591.8,0.0,19.395,0.0,0.0,3.597,3.637,0.512,7.411,0.629,-2.074,0.0,0.0,8.022,-0.067,4.806,0.0,0.728,0.0,3.482,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.9,26247.0,0.0,26247.0,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-mini-split-heat-pump-ducted-sizing-methodology-acca.xml,39.431,39.431,39.431,39.431,0.0,0.0,0.0,0.0,0.0,0.0,5.537,0.828,0.347,2.188,0.092,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.355,12.628,9.234,0.614,0.0,0.0,0.0,0.0,5261.0,2297.8,19.593,13.538,0.0,3.575,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.081,-11.406,0.0,0.011,-0.458,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.168,-3.071,-0.165,0.0,1.73,9.882,1354.8,997.6,11399.6,2615.9,18814.0,18814.0,26247.0,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-mini-split-heat-pump-ducted-sizing-methodology-hers.xml,38.515,38.515,38.515,38.515,0.0,0.0,0.0,0.0,0.0,0.0,5.313,0.249,0.312,2.12,0.081,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.754,12.207,9.234,0.614,0.0,0.0,0.0,0.0,4586.5,2186.1,19.334,13.314,0.0,3.595,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.189,-0.063,4.805,0.0,0.728,0.0,3.463,-11.406,0.0,0.028,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.069,-0.165,0.0,1.295,9.882,1354.8,997.6,11399.6,2615.9,26064.0,26064.0,26247.0,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-mini-split-heat-pump-ducted-sizing-methodology-maxload.xml,37.997,37.997,37.997,37.997,0.0,0.0,0.0,0.0,0.0,0.0,4.997,0.0,0.293,2.191,0.077,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.74,11.555,9.234,0.614,0.0,0.0,0.0,0.0,3551.4,2217.3,18.951,12.193,0.0,3.628,3.634,0.511,7.426,0.628,-2.083,0.0,0.0,8.187,-0.063,4.805,0.0,0.728,0.0,2.422,-11.406,0.0,0.043,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.342,-0.059,-1.167,-3.066,-0.165,0.0,0.628,9.882,1354.8,997.6,11399.6,2615.9,52054.0,52054.0,26247.0,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-mini-split-heat-pump-ductless-backup-stove.xml,37.852,37.852,37.499,37.499,0.0,0.353,0.0,0.0,0.0,0.0,4.899,0.0,0.114,2.018,0.028,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.353,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.468,10.835,9.234,0.615,0.0,0.0,0.0,0.0,3293.5,2166.0,16.914,11.202,0.0,3.733,3.631,0.511,7.42,0.628,-2.098,0.0,0.0,8.187,-0.061,5.885,0.0,0.727,0.0,0.0,-11.413,0.0,0.051,-0.449,-0.05,2.75,-0.022,9.869,0.0,0.0,-6.294,-0.057,-1.432,-3.016,-0.163,0.0,0.0,9.875,1354.8,997.6,11399.6,2615.9,23540.0,23540.0,23705.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-ptac-with-heating.xml,50.843,50.843,50.843,50.843,0.0,0.0,0.0,0.0,0.0,0.0,16.426,0.0,0.0,3.977,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.413,10.931,9.234,0.614,0.0,0.0,0.0,0.0,5891.9,2658.6,16.358,10.57,0.0,3.733,3.631,0.511,7.422,0.628,-2.08,0.0,0.0,8.179,-0.064,4.804,0.0,0.728,0.0,0.0,-11.404,0.0,0.041,-0.458,-0.051,2.719,-0.025,9.856,0.0,0.0,-6.344,-0.061,-1.168,-3.062,-0.165,0.0,0.0,9.884,1354.8,997.6,11399.6,2615.9,23705.0,13323.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-ptac.xml,34.357,34.357,34.357,34.357,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.872,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.595,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2836.5,0.0,10.548,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.9,0.0,13323.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-pthp-sizing-methodology-acca.xml,41.472,41.472,41.472,41.472,0.0,0.0,0.0,0.0,0.0,0.0,6.237,0.991,0.0,3.804,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.414,10.933,9.234,0.614,0.0,0.0,0.0,0.0,4747.5,2618.2,16.358,11.04,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,0.042,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,0.0,9.882,1354.8,997.6,11399.6,2615.9,15321.0,15321.0,23705.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-pthp-sizing-methodology-hers.xml,41.573,41.573,41.573,41.573,0.0,0.0,0.0,0.0,0.0,0.0,7.013,0.122,0.0,3.998,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.414,10.933,9.234,0.614,0.0,0.0,0.0,0.0,4041.3,2700.3,16.358,11.04,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,0.042,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,0.0,9.882,1354.8,997.6,11399.6,2615.9,24773.0,24773.0,23705.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-pthp-sizing-methodology-maxload.xml,42.088,42.088,42.088,42.088,0.0,0.0,0.0,0.0,0.0,0.0,7.494,0.0,0.0,4.154,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.414,10.933,9.234,0.614,0.0,0.0,0.0,0.0,4007.8,2796.7,16.358,11.04,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,0.042,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,0.0,9.882,1354.8,997.6,11399.6,2615.9,44989.0,44989.0,23705.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-room-ac-only.xml,35.359,35.359,35.359,35.359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.874,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.595,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3160.1,0.0,10.548,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.9,0.0,13323.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-stove-oil-only.xml,52.035,52.035,30.517,30.517,0.0,21.518,0.0,0.0,0.0,0.0,0.0,0.0,0.099,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.518,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2037.2,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.9,23705.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-wall-furnace-elec-only.xml,47.008,47.008,47.008,47.008,0.0,0.0,0.0,0.0,0.0,0.0,16.59,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,5985.7,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.015,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.9,23705.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.981,59.981,36.299,36.299,23.682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.513,4.469,0.877,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.682,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.302,14.946,9.234,0.614,0.0,0.0,0.0,7.0,2140.0,3227.7,24.447,17.376,0.0,3.503,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,6.081,-11.406,0.0,-0.089,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.338,-0.059,-1.168,-3.075,-0.165,0.0,4.077,9.882,1354.8,997.6,11399.6,2615.9,32302.0,18773.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,49.865,49.865,30.657,30.657,0.0,0.0,0.0,0.0,0.0,19.208,0.0,0.0,0.24,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2060.4,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,48.676,48.676,48.676,48.676,0.0,0.0,0.0,0.0,0.0,0.0,18.134,0.0,0.124,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,6009.4,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,55.614,55.614,36.119,36.119,19.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.148,4.359,1.172,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.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,16.414,14.073,9.234,0.614,0.0,0.0,0.0,0.0,2084.4,3471.5,16.366,18.051,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,-0.051,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.183,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,49.86,49.86,30.563,30.563,19.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.146,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2045.1,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,49.865,49.865,30.657,30.657,0.0,19.208,0.0,0.0,0.0,0.0,0.0,0.0,0.24,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.208,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2060.4,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,49.859,49.859,30.542,30.542,0.0,0.0,19.317,0.0,0.0,0.0,0.0,0.0,0.124,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2041.5,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,49.859,49.859,30.542,30.542,0.0,0.0,0.0,19.317,0.0,0.0,0.0,0.0,0.124,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2041.5,0.0,16.366,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.868,35.868,35.868,35.868,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.245,1.139,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.662,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3481.2,0.0,17.736,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.062,-0.463,-0.051,2.705,-0.03,9.926,0.0,0.0,-6.914,-0.064,-1.191,-2.986,-0.166,0.0,3.107,10.044,1354.8,997.6,11399.6,2615.9,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.884,35.884,35.884,35.884,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.26,1.139,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.662,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3487.7,0.0,17.736,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.062,-0.463,-0.051,2.705,-0.03,9.926,0.0,0.0,-6.914,-0.064,-1.191,-2.986,-0.166,0.0,3.107,10.044,1354.8,997.6,11399.6,2615.9,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,34.51,34.51,34.51,34.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.272,0.754,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.19,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3008.8,0.0,18.498,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.084,-0.463,-0.051,2.706,-0.03,9.926,0.0,0.0,-6.913,-0.064,-1.19,-2.986,-0.166,0.0,3.641,10.044,1354.8,997.6,11399.6,2615.9,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.631,33.631,33.631,33.631,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.836,0.31,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.949,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2786.6,0.0,18.401,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.124,-0.463,-0.051,2.707,-0.03,9.927,0.0,0.0,-6.912,-0.064,-1.191,-2.989,-0.166,0.0,4.446,10.044,1354.8,997.6,11399.6,2615.9,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.122,47.122,47.122,47.122,0.0,0.0,0.0,0.0,0.0,0.0,9.17,0.233,1.748,4.36,1.172,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.506,14.073,9.234,0.614,0.0,0.0,0.0,0.0,6220.7,3471.5,25.169,18.052,0.0,3.49,3.635,0.511,7.43,0.629,-2.08,0.0,0.0,8.194,-0.063,4.805,0.0,0.728,0.0,6.282,-11.406,0.0,-0.049,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.073,-0.165,0.0,3.183,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.712,58.712,36.787,36.787,21.925,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,5.051,0.934,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,16.413,10.933,9.234,0.614,0.0,0.0,0.0,0.0,2102.4,2602.0,16.358,11.04,0.0,3.733,3.631,0.511,7.422,0.628,-2.08,0.0,0.0,8.179,-0.064,4.804,0.0,0.728,0.0,0.0,-11.404,0.0,0.041,-0.458,-0.051,2.72,-0.025,9.856,0.0,0.0,-6.344,-0.061,-1.168,-3.062,-0.165,0.0,0.0,9.884,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-electric.xml,51.762,51.762,51.762,51.762,0.0,0.0,0.0,0.0,0.0,0.0,5.359,10.129,1.418,3.383,1.033,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.054,12.907,9.234,0.614,0.0,0.0,0.0,0.0,8215.5,3151.3,24.108,15.265,0.0,3.461,3.635,0.511,7.431,0.629,-2.08,0.0,0.0,8.196,-0.063,4.805,0.0,0.728,0.0,6.863,-11.406,0.0,0.001,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,1.996,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,52.295,52.295,41.633,41.633,10.662,0.0,0.0,0.0,0.0,0.0,5.359,0.0,1.418,3.383,1.033,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.662,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.054,12.907,9.234,0.614,0.0,0.0,0.0,0.0,3608.4,3151.3,24.108,15.265,0.0,3.461,3.635,0.511,7.431,0.629,-2.08,0.0,0.0,8.196,-0.063,4.805,0.0,0.728,0.0,6.863,-11.406,0.0,0.001,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,1.996,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,49.34,49.34,38.393,38.393,10.947,0.0,0.0,0.0,0.0,0.0,3.866,0.0,0.969,2.444,0.674,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.585,13.246,9.234,0.614,0.0,0.0,0.0,0.0,3011.3,2729.1,24.107,16.233,0.0,3.441,3.635,0.512,7.432,0.629,-2.079,0.0,0.0,8.197,-0.063,4.805,0.0,0.728,0.0,7.411,-11.406,0.0,-0.013,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,2.34,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,49.123,49.123,38.369,38.369,10.754,0.0,0.0,0.0,0.0,0.0,3.856,0.0,1.522,2.336,0.216,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.754,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.72,14.49,9.234,0.614,0.0,0.0,0.0,0.0,3001.4,2604.8,24.46,17.315,0.0,3.362,3.636,0.512,7.435,0.629,-2.077,0.0,0.0,8.201,-0.063,4.805,0.0,0.728,0.0,9.602,-11.406,0.0,-0.067,-0.457,-0.051,2.722,-0.025,9.85,0.0,0.0,-6.337,-0.059,-1.168,-3.072,-0.165,0.0,3.629,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,44.469,44.469,36.096,36.096,8.373,0.0,0.0,0.0,0.0,0.0,2.735,0.0,0.684,2.158,0.079,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.373,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.483,11.843,9.234,0.614,0.0,0.0,0.0,0.0,2659.9,2203.3,19.151,12.77,0.0,3.603,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.188,-0.063,4.805,0.0,0.728,0.0,3.187,-11.406,0.0,0.038,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.067,-0.165,0.0,0.922,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,93.311,93.311,46.514,46.514,46.797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.61,7.833,1.643,9.005,0.0,0.0,6.372,0.0,0.43,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,12.562,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,46.797,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.682,28.472,9.146,0.612,0.0,0.0,5.0,44.0,2577.6,5002.0,48.978,34.996,0.0,3.195,7.86,1.068,7.829,0.664,-3.777,0.0,0.0,8.936,-0.117,11.128,0.0,0.745,0.0,20.087,-14.504,0.0,-0.363,-1.017,-0.098,2.689,-0.02,20.274,0.0,0.0,-6.437,-0.105,-2.467,-6.252,-0.161,0.0,10.597,12.224,1354.8,997.6,11399.6,2460.1,48000.0,36000.0,0.0,6.8,91.76,71332.0,33176.0,15016.0,0.0,575.0,9035.0,0.0,0.0,2446.0,2171.0,8913.0,82948.0,62211.0,14254.0,0.0,207.0,542.0,0.0,0.0,0.0,2010.0,1204.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,57.712,57.712,35.783,35.783,21.928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.362,4.181,0.801,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.928,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.541,13.657,9.234,0.614,0.0,0.0,0.0,0.0,2108.4,3225.2,22.252,17.336,0.0,3.567,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.268,-11.406,0.0,-0.031,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.071,-0.165,0.0,2.755,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,30853.0,7148.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17515.0,4767.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,57.91,57.91,35.799,35.799,22.111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.365,4.191,0.803,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.111,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.721,13.798,9.234,0.614,0.0,0.0,0.0,0.0,2108.7,3270.0,22.339,17.768,0.0,3.556,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.191,-0.063,4.805,0.0,0.728,0.0,4.474,-11.406,0.0,-0.035,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.071,-0.165,0.0,2.953,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,34564.0,10858.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,19299.0,6551.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.711,59.711,36.106,36.106,23.605,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.389,4.42,0.857,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.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,22.112,14.632,9.234,0.614,0.0,0.0,0.0,0.0,2111.8,3467.9,24.142,19.48,0.0,3.509,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.891,-11.406,0.0,-0.074,-0.457,-0.051,2.722,-0.025,9.851,0.0,0.0,-6.338,-0.059,-1.168,-3.074,-0.165,0.0,3.765,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32737.0,9032.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,19502.0,6754.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,46.676,46.676,46.676,46.676,0.0,0.0,0.0,0.0,0.0,0.0,16.259,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,5891.9,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.016,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,55.042,55.042,31.858,31.858,23.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.603,0.0,0.815,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.932,10.933,9.234,0.614,0.0,0.0,0.0,0.0,2110.3,1858.6,23.937,11.049,0.0,3.517,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.695,-11.406,0.0,0.044,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.167,-3.062,-0.165,0.0,-0.001,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,31.362,31.362,31.362,31.362,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.876,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.52,9.234,0.663,0.0,0.0,0.0,0.0,0.0,1963.0,0.0,14.956,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.815,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.022,-0.464,-0.051,2.703,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.19,-2.98,-0.166,0.0,0.911,10.044,1354.8,997.6,11399.6,2615.9,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14991.0,2242.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,31.278,31.278,31.278,31.278,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.793,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,1891.1,0.0,10.847,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.9,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,52.06,52.06,30.418,30.418,0.0,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2021.1,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-fixed-heater-gas-only.xml,46.676,46.676,30.417,30.417,16.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2021.1,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.015,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,52.06,52.06,30.418,30.418,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.642,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2021.1,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,53.964,53.964,31.014,31.014,0.0,0.0,0.0,0.0,0.0,22.951,0.0,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2118.3,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.68,56.68,56.68,56.68,0.0,0.0,0.0,0.0,0.0,0.0,20.771,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,7868.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,52.559,52.559,52.559,52.559,0.0,0.0,0.0,0.0,0.0,0.0,21.545,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,8252.1,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,57.453,57.453,34.876,34.876,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,3.326,0.738,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,14.546,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3038.5,22.926,18.736,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.069,-0.457,-0.051,2.722,-0.024,9.851,0.0,0.0,-6.338,-0.059,-1.168,-3.072,-0.165,0.0,3.661,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.598,56.598,34.022,34.022,22.576,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,2.888,0.321,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.143,15.355,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,2776.5,22.926,18.649,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.111,-0.457,-0.051,2.723,-0.024,9.851,0.0,0.0,-6.337,-0.059,-1.168,-3.076,-0.165,0.0,4.519,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,34.885,34.885,30.564,30.564,4.321,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.112,0.0,0.0,9.176,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.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,4.079,0.0,9.234,0.627,0.0,0.0,0.0,0.0,2067.9,0.0,16.734,0.0,0.0,2.942,2.865,0.402,4.919,0.433,-4.314,0.0,0.0,2.716,-0.177,3.564,0.0,0.584,0.0,1.089,-11.277,0.0,-0.408,-0.928,-0.118,1.472,-0.149,8.489,0.0,0.0,-8.011,-0.056,-1.549,-7.65,-0.26,0.0,0.0,10.023,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.964,53.964,31.014,31.014,22.951,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2118.3,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.574,59.574,36.39,36.39,23.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.603,5.348,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.184,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.932,10.934,9.234,0.614,0.0,0.0,0.0,0.0,2110.3,3192.3,23.937,11.04,0.0,3.517,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.695,-11.406,0.0,0.044,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.167,-3.062,-0.165,0.0,-0.001,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,53.964,53.964,31.014,31.014,0.0,22.951,0.0,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2118.3,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,53.964,53.964,31.014,31.014,0.0,0.0,22.951,0.0,0.0,0.0,0.0,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2118.3,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,53.964,53.964,31.014,31.014,0.0,0.0,0.0,22.951,0.0,0.0,0.0,0.0,0.597,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.711,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2118.3,0.0,23.937,0.0,0.0,3.521,3.637,0.512,7.413,0.629,-2.072,0.0,0.0,8.025,-0.067,4.806,0.0,0.728,0.0,5.639,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.709,58.709,36.817,36.817,21.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.392,5.051,0.934,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.413,10.933,9.234,0.614,0.0,0.0,0.0,0.0,2105.4,2602.0,16.358,11.04,0.0,3.733,3.631,0.511,7.422,0.628,-2.08,0.0,0.0,8.179,-0.064,4.804,0.0,0.728,0.0,0.0,-11.404,0.0,0.041,-0.458,-0.051,2.72,-0.025,9.856,0.0,0.0,-6.344,-0.061,-1.168,-3.062,-0.165,0.0,0.0,9.884,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,33.791,33.791,33.791,33.791,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.578,0.727,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.647,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2653.6,0.0,14.847,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.02,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.915,-0.064,-1.191,-2.985,-0.166,0.0,2.078,10.044,1354.8,997.6,11399.6,2615.9,0.0,36000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,36.506,36.506,36.506,36.506,0.0,0.0,0.0,0.0,0.0,0.0,5.335,0.0,0.754,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.11,0.0,9.234,0.59,0.0,0.0,0.0,0.0,3347.0,0.0,22.147,0.0,0.0,3.579,3.637,0.512,7.412,0.629,-2.073,0.0,0.0,8.023,-0.067,4.806,0.0,0.728,0.0,3.992,-11.406,0.0,-0.466,-1.001,-0.129,1.134,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,39.618,39.618,39.618,39.618,0.0,0.0,0.0,0.0,0.0,0.0,5.271,0.0,0.437,2.476,0.994,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.721,12.71,9.234,0.614,0.0,0.0,0.0,0.0,3227.0,2570.9,21.085,14.694,0.0,3.595,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.189,-0.063,4.804,0.0,0.728,0.0,3.429,-11.406,0.0,0.009,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.168,-3.069,-0.165,0.0,1.791,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,48.798,48.798,48.798,48.798,0.0,0.0,0.0,0.0,0.0,0.0,12.317,0.522,0.7,4.126,0.693,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.1,13.44,9.234,0.614,0.0,0.0,0.0,0.0,6598.8,3396.2,24.63,16.348,0.0,3.468,3.635,0.511,7.431,0.629,-2.08,0.0,0.0,8.195,-0.063,4.805,0.0,0.728,0.0,6.901,-11.406,0.0,-0.023,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.072,-0.165,0.0,2.545,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,43.933,43.933,43.933,43.933,0.0,0.0,0.0,0.0,0.0,0.0,8.849,0.478,0.582,2.979,0.605,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.387,13.863,9.234,0.614,0.0,0.0,0.0,0.0,5871.9,3044.3,24.626,17.672,0.0,3.417,3.635,0.512,7.433,0.629,-2.079,0.0,0.0,8.198,-0.063,4.805,0.0,0.728,0.0,8.228,-11.406,0.0,-0.038,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,2.972,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,43.265,43.265,43.265,43.265,0.0,0.0,0.0,0.0,0.0,0.0,8.753,0.276,0.734,2.842,0.221,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.508,15.053,9.234,0.614,0.0,0.0,0.0,0.0,5843.0,2905.6,24.947,18.005,0.0,3.335,3.637,0.512,7.436,0.629,-2.083,0.0,0.0,8.204,-0.062,4.805,0.0,0.728,0.0,10.411,-11.408,0.0,-0.094,-0.456,-0.051,2.723,-0.024,9.845,0.0,0.0,-6.333,-0.058,-1.167,-3.075,-0.165,0.0,4.213,9.88,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,60.459,60.459,36.691,36.691,23.768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.285,5.202,0.764,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.768,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.15,14.884,9.234,0.614,0.0,0.0,0.0,2.0,2098.7,3477.3,23.965,18.153,0.0,3.509,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.928,-11.406,0.0,-0.087,-0.457,-0.051,2.722,-0.025,9.851,0.0,0.0,-6.338,-0.059,-1.168,-3.075,-0.165,0.0,4.017,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.157,59.157,35.384,35.384,23.773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.286,3.978,0.68,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.155,15.423,9.234,0.614,0.0,0.0,0.0,2.0,2098.8,3160.0,23.971,18.409,0.0,3.509,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.934,-11.406,0.0,-0.11,-0.457,-0.051,2.723,-0.024,9.851,0.0,0.0,-6.337,-0.059,-1.168,-3.075,-0.165,0.0,4.563,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.357,58.357,34.584,34.584,23.773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.286,3.455,0.403,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.773,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.155,16.03,9.234,0.614,0.0,0.0,0.0,5.0,2098.8,2960.2,23.971,17.791,0.0,3.509,3.634,0.511,7.429,0.629,-2.081,0.0,0.0,8.192,-0.063,4.804,0.0,0.728,0.0,5.934,-11.406,0.0,-0.145,-0.457,-0.051,2.723,-0.024,9.851,0.0,0.0,-6.336,-0.059,-1.168,-3.08,-0.165,0.0,5.217,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,55.34,55.34,30.881,30.881,24.459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.464,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.459,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.963,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2096.2,0.0,25.245,0.0,0.0,3.475,3.637,0.512,7.414,0.629,-2.072,0.0,0.0,8.028,-0.067,4.806,0.0,0.728,0.0,6.93,-11.406,0.0,-0.465,-1.001,-0.129,1.134,-0.162,8.178,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.001,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,41.46,41.46,41.46,41.46,0.0,0.0,0.0,0.0,0.0,0.0,6.71,0.0,0.445,2.934,0.931,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.67,13.182,9.234,0.614,0.0,0.0,0.0,0.0,3457.2,2720.4,22.045,15.716,0.0,3.562,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.189,-0.063,4.804,0.0,0.728,0.0,4.405,-11.406,0.0,-0.011,-0.457,-0.051,2.721,-0.025,9.849,0.0,0.0,-6.34,-0.059,-1.168,-3.07,-0.165,0.0,2.275,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,31214.0,7508.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,33.235,33.235,33.235,33.235,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.585,0.165,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.286,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2599.0,0.0,13.362,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,-0.004,-0.463,-0.051,2.704,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.191,-2.985,-0.166,0.0,1.724,10.044,1354.8,997.6,11399.6,2615.9,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,40.252,40.252,40.252,40.252,0.0,0.0,0.0,0.0,0.0,0.0,6.511,0.029,0.506,2.614,0.152,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.581,12.116,9.234,0.614,0.0,0.0,0.0,0.0,4280.5,2331.3,19.311,13.289,0.0,3.6,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.188,-0.063,4.805,0.0,0.728,0.0,3.286,-11.406,0.0,0.03,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.069,-0.165,0.0,1.203,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-air-conditioner-only-ducted.xml,32.622,32.622,32.622,32.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.057,0.08,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.947,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2279.6,0.0,13.15,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.009,-0.464,-0.051,2.703,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.191,-2.983,-0.166,0.0,1.373,10.044,1354.8,997.6,11399.6,2615.9,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-air-conditioner-only-ductless.xml,32.497,32.497,32.497,32.497,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.984,0.027,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2155.7,0.0,10.838,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.9,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-mini-split-heat-pump-ducted-cooling-only.xml,32.66,32.66,32.66,32.66,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.098,0.076,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.485,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2252.5,0.0,12.537,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.023,-0.464,-0.051,2.703,-0.03,9.924,0.0,0.0,-6.916,-0.064,-1.19,-2.981,-0.166,0.0,0.898,10.044,1354.8,997.6,11399.6,2615.9,0.0,36000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,35.84,35.84,35.84,35.84,0.0,0.0,0.0,0.0,0.0,0.0,5.119,0.008,0.296,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.984,0.0,9.234,0.59,0.0,0.0,0.0,0.0,3748.9,0.0,19.215,0.0,0.0,3.618,3.636,0.512,7.411,0.629,-2.074,0.0,0.0,8.022,-0.067,4.806,0.0,0.728,0.0,2.84,-11.406,0.0,-0.466,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,-0.0,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,36000.0,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,38.178,38.178,38.178,38.178,0.0,0.0,0.0,0.0,0.0,0.0,5.202,0.009,0.291,2.158,0.079,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.346,11.843,9.234,0.614,0.0,0.0,0.0,0.0,3731.2,2203.3,19.153,12.77,0.0,3.608,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.188,-0.063,4.805,0.0,0.728,0.0,3.044,-11.406,0.0,0.038,-0.458,-0.051,2.72,-0.025,9.848,0.0,0.0,-6.342,-0.059,-1.168,-3.067,-0.165,0.0,0.922,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,26247.0,2542.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,14574.0,1826.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,38.35,38.35,37.641,37.641,0.0,0.709,0.0,0.0,0.0,0.0,5.087,0.0,0.114,1.972,0.029,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.709,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.468,10.835,9.234,0.615,0.0,0.0,0.0,0.0,3135.3,2250.3,16.914,11.203,0.0,3.733,3.631,0.511,7.42,0.628,-2.098,0.0,0.0,8.187,-0.061,5.885,0.0,0.727,0.0,0.0,-11.413,0.0,0.051,-0.449,-0.05,2.75,-0.022,9.869,0.0,0.0,-6.294,-0.057,-1.432,-3.016,-0.163,0.0,0.0,9.875,1354.8,997.6,11399.6,2615.9,18000.0,18000.0,60000.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,37.334,37.334,37.334,37.334,0.0,0.0,0.0,0.0,0.0,0.0,4.621,0.0,0.096,2.148,0.028,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.415,10.933,9.234,0.614,0.0,0.0,0.0,0.0,3441.7,2165.1,16.357,11.04,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,0.042,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,0.0,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,64.759,64.759,50.456,50.456,7.091,3.566,3.645,0.0,0.0,0.0,12.806,0.191,0.86,5.615,0.544,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.091,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.566,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.645,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.394,19.142,9.234,0.615,0.0,0.0,0.0,4.0,6399.6,4121.3,37.654,22.678,0.0,3.42,3.635,0.511,7.429,0.629,-2.104,0.0,0.0,8.207,-0.059,5.886,0.0,0.727,0.0,15.179,-11.419,0.0,-0.127,-0.447,-0.05,2.753,-0.022,9.857,0.0,0.0,-6.285,-0.055,-1.432,-3.056,-0.163,0.0,8.416,9.869,1354.8,997.6,11399.6,2615.9,59200.0,36799.2,10236.0,6.8,91.76,36780.0,13075.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,22621.0,9872.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,19.737,19.737,19.737,19.737,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.607,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.572,0.327,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.484,-4.279,0.0,0.0,-0.959,11.061,0.0,0.0,-8.682,-0.056,-2.251,-4.738,-1.085,0.0,0.0,15.558,1354.8,997.6,8540.7,2104.4,0.0,0.0,0.0,63.32,89.06,2825.0,0.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,12202.0,0.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,2520.0,1164.0,0.0,364.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +base-hvac-portable-heater-gas-only.xml,46.676,46.676,30.417,30.417,16.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.259,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2021.1,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.015,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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.xml,51.114,51.114,51.114,51.114,0.0,0.0,0.0,0.0,0.0,0.0,16.426,0.0,0.0,4.248,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.413,10.933,9.234,0.614,0.0,0.0,0.0,0.0,5891.9,2789.4,16.358,11.04,0.0,3.733,3.631,0.511,7.422,0.628,-2.08,0.0,0.0,8.179,-0.064,4.804,0.0,0.728,0.0,0.0,-11.404,0.0,0.041,-0.458,-0.051,2.72,-0.025,9.856,0.0,0.0,-6.344,-0.061,-1.168,-3.062,-0.165,0.0,0.0,9.884,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,34.618,34.618,34.618,34.618,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.133,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2959.7,0.0,10.838,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.9,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,41.904,41.904,41.904,41.904,0.0,0.0,0.0,0.0,0.0,0.0,7.359,0.001,0.0,4.105,0.0,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.414,10.933,9.234,0.614,0.0,0.0,0.0,0.0,3931.4,2765.9,16.358,11.04,0.0,3.734,3.633,0.511,7.423,0.628,-2.086,0.0,0.0,8.182,-0.063,4.804,0.0,0.728,0.0,0.0,-11.406,0.0,0.042,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.167,-3.062,-0.165,0.0,0.0,9.882,1354.8,997.6,11399.6,2615.9,36000.0,36000.0,36000.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,32.297,32.297,32.297,32.297,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.812,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,2193.9,0.0,10.838,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.9,0.0,8000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,35.698,35.698,35.698,35.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.213,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3318.5,0.0,10.838,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.9,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,34.453,34.453,34.453,34.453,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.975,0.0,9.202,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.824,9.234,0.655,0.0,0.0,0.0,0.0,0.0,3002.0,0.0,9.795,0.0,2.657,2.516,0.351,4.215,0.345,-5.376,0.0,0.0,2.771,-0.138,3.071,0.0,0.521,0.0,0.0,-11.292,0.0,-0.136,-0.639,-0.076,2.224,-0.074,9.392,0.0,0.0,-7.648,-0.066,-1.333,-3.356,-0.199,0.0,0.0,10.036,1354.8,997.6,11399.5,2615.8,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,35.688,35.688,35.688,35.688,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.203,0.0,9.209,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.596,9.234,0.663,0.0,0.0,0.0,0.0,0.0,3315.2,0.0,10.838,0.0,2.652,2.51,0.351,4.211,0.344,-5.395,0.0,0.0,2.816,-0.136,3.063,0.0,0.52,0.0,0.0,-11.292,0.0,0.028,-0.463,-0.051,2.704,-0.03,9.925,0.0,0.0,-6.916,-0.064,-1.19,-2.976,-0.166,0.0,0.0,10.044,1354.8,997.6,11399.6,2615.9,0.0,24000.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.275,58.275,35.866,35.866,22.41,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.37,4.241,0.815,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,20.987,13.839,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3364.9,22.926,17.854,0.0,3.504,3.596,0.506,7.43,0.614,-2.146,0.0,0.0,8.12,-0.033,4.751,0.0,0.721,0.0,4.858,-11.267,0.0,-0.086,-0.493,-0.056,2.729,-0.038,9.793,0.0,0.0,-6.401,-0.03,-1.218,-3.085,-0.172,0.0,3.067,10.021,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,57.278,57.278,35.302,35.302,21.976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.363,3.777,0.722,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.976,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.203,11.997,9.234,0.615,0.0,0.0,103.0,51.0,2147.7,3586.5,34.942,20.092,0.0,3.505,3.568,0.501,7.424,0.605,-2.357,0.0,0.0,8.552,0.008,4.647,0.0,0.726,0.0,4.547,-11.357,0.0,-0.062,-0.493,-0.056,2.658,-0.041,9.671,0.0,0.0,-6.651,-0.001,-1.219,-3.37,-0.173,0.0,2.387,9.932,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.678,56.678,35.454,35.454,21.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.35,3.913,0.75,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.786,12.612,9.234,0.616,0.0,0.0,0.0,8.0,2114.7,3597.9,25.225,20.656,0.0,3.496,3.55,0.499,7.26,0.602,-2.442,0.0,0.0,8.073,-0.022,4.635,0.0,0.723,0.0,4.44,-11.385,0.0,-0.046,-0.489,-0.056,2.612,-0.038,9.647,0.0,0.0,-6.632,-0.023,-1.201,-3.32,-0.176,0.0,2.533,9.905,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,41.483,41.483,34.09,34.09,7.393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.122,2.987,0.511,9.194,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.918,8.766,9.234,0.646,0.0,0.0,0.0,0.0,2091.3,3151.2,17.325,15.092,0.0,2.829,2.763,0.386,5.247,0.406,-4.647,0.0,0.0,5.334,-0.06,3.457,0.0,0.568,0.0,1.58,-11.281,0.0,-0.112,-0.563,-0.066,2.409,-0.056,9.616,0.0,0.0,-7.562,-0.06,-1.257,-5.076,-0.187,0.0,2.03,10.039,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,52.044,52.044,30.484,30.484,0.0,21.56,0.0,0.0,0.0,0.0,0.0,0.0,0.065,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2031.7,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,52.044,52.044,30.484,30.484,0.0,0.0,0.0,0.0,21.56,0.0,0.0,0.0,0.065,0.0,0.0,9.142,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.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,17.3,0.0,9.234,0.59,0.0,0.0,0.0,0.0,2031.7,0.0,16.915,0.0,0.0,3.734,3.632,0.511,7.402,0.628,-2.083,0.0,0.0,8.02,-0.066,5.886,0.0,0.727,0.0,0.0,-11.411,0.0,-0.452,-0.984,-0.127,1.193,-0.158,8.233,0.0,0.0,-8.482,-0.062,-1.979,-6.1,-0.27,0.0,0.0,9.853,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-allow-increased-fixed-capacities.xml,55.953,55.953,35.565,35.565,20.388,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.414,3.954,0.757,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.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,0.0,19.169,12.825,9.234,0.614,0.0,0.0,0.0,0.0,2117.5,2940.2,20.336,15.047,0.0,3.612,3.634,0.511,7.427,0.628,-2.083,0.0,0.0,8.188,-0.063,4.804,0.0,0.728,0.0,2.868,-11.406,0.0,0.006,-0.457,-0.051,2.72,-0.025,9.849,0.0,0.0,-6.341,-0.059,-1.168,-3.068,-0.165,0.0,1.933,9.882,1354.8,997.6,11399.6,2615.9,28964.0,17412.0,0.0,6.8,91.76,28964.0,5259.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,16662.0,3914.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,48.65,48.65,33.141,33.141,15.509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.25,2.08,0.355,9.179,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.509,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.522,6.322,9.234,0.63,0.0,0.0,3728.0,2596.0,2090.1,1934.4,3.827,2.687,0.0,2.674,2.903,0.406,5.274,0.445,-4.418,0.0,0.0,4.612,-0.122,3.599,0.0,0.597,0.0,9.659,-11.529,0.0,-0.362,-0.8,-0.1,1.647,-0.113,8.68,0.0,0.0,-8.056,-0.065,-1.417,-5.004,-0.234,0.0,2.665,9.775,1354.8,997.6,11399.6,2615.9,3600.0,2400.0,0.0,6.8,91.76,28964.0,5259.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,16662.0,3914.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,47.008,47.008,47.008,47.008,0.0,0.0,0.0,0.0,0.0,0.0,16.59,0.0,0.0,0.0,0.0,9.141,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.246,0.0,9.234,0.59,0.0,0.0,0.0,0.0,5985.7,0.0,16.358,0.0,0.0,3.737,3.635,0.512,7.407,0.629,-2.077,0.0,0.0,8.015,-0.067,4.806,0.0,0.729,0.0,0.0,-11.406,0.0,-0.467,-1.001,-0.129,1.135,-0.162,8.179,0.0,0.0,-8.562,-0.063,-1.611,-6.194,-0.273,0.0,0.0,9.857,1354.8,997.6,11399.6,2615.9,36000.0,0.0,0.0,6.8,91.76,23705.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,12748.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.856,58.856,36.3,36.3,22.556,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.168,0.797,9.162,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.525,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.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,21.124,13.606,9.234,0.612,0.0,0.0,0.0,0.0,2109.3,3329.5,22.926,17.652,0.0,3.545,3.634,0.511,7.427,0.629,-2.081,0.0,0.0,8.176,-0.064,4.805,0.0,0.728,0.0,4.885,-11.406,0.0,-0.085,-0.504,-0.058,2.595,-0.036,9.707,0.0,0.0,-6.535,-0.06,-1.203,-3.236,-0.173,0.0,2.98,10.404,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.685,58.685,36.109,36.109,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.533,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2397.0,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.089,56.089,30.714,30.714,25.375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.419,3.953,0.745,9.166,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.375,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.765,12.614,9.234,0.616,0.0,0.0,0.0,0.0,1751.5,3063.3,23.302,17.127,0.0,3.501,3.606,0.507,7.343,0.623,-2.183,0.0,0.0,8.084,-0.058,4.798,0.0,0.727,0.0,5.425,-8.931,0.0,0.013,-0.407,-0.044,2.862,-0.012,9.988,0.0,0.0,-6.1,-0.054,-1.128,-2.875,-0.158,0.0,2.863,7.849,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,67.091,67.091,34.85,34.85,32.241,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.524,2.916,0.487,9.58,0.0,0.0,4.524,0.0,0.335,0.0,0.0,0.0,0.0,2.225,0.0,0.0,0.32,0.366,1.517,1.533,0.0,2.121,8.403,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.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,30.189,8.534,9.676,0.619,0.0,0.0,0.0,0.0,2146.2,2730.0,23.365,14.839,0.0,4.249,4.367,0.62,9.729,0.801,-0.861,0.0,0.0,10.857,-0.074,5.179,0.0,0.772,0.0,7.122,-13.027,0.0,-0.015,-0.352,-0.043,1.643,-0.049,8.043,0.0,0.0,-7.443,-0.065,-0.895,-2.447,-0.098,0.0,2.075,8.329,1358.5,1000.6,11587.9,2659.1,36000.0,24000.0,0.0,10.22,91.4,30730.0,8345.0,7102.0,0.0,543.0,6062.0,0.0,0.0,2314.0,2054.0,4311.0,17718.0,5043.0,7109.0,0.0,204.0,251.0,0.0,0.0,0.0,1985.0,606.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,39.241,39.241,29.871,29.871,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.039,5.013,1.028,8.661,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.371,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.656,16.732,8.551,0.66,0.0,0.0,0.0,0.0,1685.2,2497.1,13.734,13.552,0.0,3.506,3.362,0.0,0.0,0.715,0.644,0.0,3.309,0.0,-0.292,2.06,0.0,0.807,0.0,1.522,-7.221,0.0,-0.093,-0.582,0.0,0.0,-0.007,11.358,0.0,-0.89,0.0,-0.285,-0.427,-1.52,-0.203,0.0,1.557,8.01,1354.8,997.6,11036.0,2719.3,24000.0,24000.0,0.0,17.24,91.22,18314.0,4508.0,6268.0,0.0,480.0,1835.0,0.0,1192.0,0.0,1812.0,2219.0,14335.0,1180.0,6959.0,0.0,247.0,387.0,0.0,366.0,0.0,2317.0,359.0,2520.0,1671.0,482.0,389.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,27.702,27.702,27.5,27.5,0.202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,3.827,0.913,7.629,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.202,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.187,14.577,7.422,0.693,0.0,0.0,0.0,0.0,1232.5,2220.9,4.635,11.44,0.0,1.698,1.431,0.0,0.0,0.571,-1.372,0.0,2.773,0.0,-0.881,0.769,0.0,0.34,0.0,0.03,-5.343,0.0,-0.685,-1.438,0.0,0.0,-0.436,14.386,0.0,-3.963,0.0,-0.88,-0.584,-1.952,-0.385,0.0,0.923,9.888,1354.8,997.6,10580.5,2607.1,24000.0,24000.0,0.0,41.0,84.38,13255.0,5428.0,3445.0,0.0,264.0,1009.0,0.0,1031.0,0.0,996.0,1083.0,13033.0,1990.0,5825.0,0.0,185.0,149.0,0.0,333.0,0.0,1847.0,183.0,2520.0,739.0,0.0,-61.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,34.297,34.297,32.531,32.531,1.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.008,8.722,1.857,6.815,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,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,1.629,30.194,6.675,0.573,0.0,0.0,0.0,0.0,1662.1,2763.3,9.704,14.234,0.0,1.739,1.617,0.0,0.0,0.364,-0.299,0.0,0.0,1.268,-0.306,1.001,0.0,0.387,0.0,0.044,-4.416,0.0,0.559,0.0,0.0,0.0,0.189,18.747,0.0,0.0,1.906,-0.3,-0.357,-1.927,-0.093,0.0,0.344,11.388,1354.8,997.6,9989.1,2461.3,24000.0,24000.0,0.0,25.88,98.42,20378.0,1385.0,5241.0,0.0,401.0,1535.0,0.0,0.0,8539.0,1516.0,1760.0,14675.0,163.0,7662.0,0.0,313.0,637.0,0.0,0.0,0.0,2811.0,568.0,2520.0,1416.0,325.0,291.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,70.947,70.947,29.773,29.773,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.438,2.254,0.326,11.624,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,41.174,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.316,5.224,11.597,0.833,0.0,0.0,0.0,0.0,1752.2,2394.7,26.507,11.148,0.0,7.047,7.051,0.0,0.0,1.588,6.72,0.0,10.017,0.0,-0.32,6.399,0.0,0.0,0.0,7.62,-8.223,0.0,-0.435,-0.782,0.0,0.0,-0.099,6.493,0.0,-1.555,0.0,-0.319,-0.516,-1.024,0.0,0.0,0.335,3.29,1354.8,997.6,12167.9,2889.4,36000.0,24000.0,0.0,-13.72,81.14,31260.0,6260.0,9946.0,0.0,761.0,2912.0,0.0,4696.0,0.0,2876.0,3808.0,11163.0,185.0,6163.0,0.0,156.0,64.0,0.0,344.0,0.0,1624.0,107.0,2520.0,1022.0,133.0,89.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,77.807,77.807,35.297,35.297,42.51,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.042,2.297,0.35,10.333,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.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,40.151,5.896,10.479,0.625,0.0,0.0,0.0,0.0,2237.1,2944.6,30.202,14.109,0.0,5.353,5.46,0.773,11.386,1.047,0.435,0.0,0.0,13.753,-0.184,7.808,0.0,1.207,0.0,8.247,-15.573,0.0,0.013,-0.249,-0.027,1.322,0.009,7.312,0.0,0.0,-6.005,-0.178,-0.675,-2.363,-0.121,0.0,1.246,5.726,1354.8,997.6,11852.0,2719.7,48000.0,24000.0,0.0,-8.14,89.24,40049.0,10037.0,9283.0,0.0,710.0,7923.0,0.0,0.0,3024.0,2684.0,6386.0,17384.0,4998.0,7145.0,0.0,184.0,165.0,0.0,0.0,0.0,1837.0,535.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,36.112,36.112,36.112,36.112,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.148,3.017,4.815,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.46,4.572,0.55,0.0,0.0,0.0,0.0,0.0,2301.6,0.0,13.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,1.228,0.744,0.0,0.0,0.3,26.44,0.0,0.0,6.019,-0.004,-0.045,-1.684,0.062,0.0,0.753,15.781,1354.8,997.6,8540.5,2104.4,12000.0,24000.0,0.0,63.32,89.06,3417.0,592.0,794.0,0.0,61.0,232.0,0.0,0.0,1293.0,229.0,216.0,12324.0,122.0,6223.0,0.0,264.0,451.0,0.0,0.0,0.0,2443.0,301.0,2520.0,1631.0,467.0,364.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,35.272,35.272,35.272,35.272,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.381,2.813,4.948,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.971,4.712,0.551,0.0,0.0,0.0,0.0,0.0,2503.2,0.0,13.564,0.0,0.0,0.0,0.0,0.0,0.0,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.006,0.575,0.0,0.0,0.304,24.828,0.0,0.0,5.533,-0.004,-0.214,-2.358,-0.005,0.0,0.695,15.782,1354.8,997.6,8625.3,2125.3,12000.0,24000.0,0.0,51.62,90.68,8608.0,784.0,2184.0,0.0,167.0,639.0,0.0,0.0,3557.0,631.0,646.0,12608.0,-129.0,6532.0,0.0,279.0,507.0,0.0,0.0,0.0,2554.0,345.0,2520.0,2317.0,842.0,675.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,38.372,38.372,38.371,38.371,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.98,3.08,5.181,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.001,51.764,4.955,0.556,0.0,0.0,0.0,0.0,1117.5,3312.6,0.594,17.637,0.0,0.71,0.522,0.0,0.0,0.205,0.389,0.0,0.0,-0.063,-0.459,0.366,0.0,0.124,0.0,-0.0,-1.908,0.0,1.784,1.422,0.0,0.0,0.805,29.748,0.0,0.0,7.027,-0.471,0.013,-3.122,0.118,0.0,0.884,13.879,1354.8,997.6,8429.2,2077.0,24000.0,24000.0,0.0,41.36,108.14,13271.0,1050.0,3402.0,0.0,260.0,996.0,0.0,0.0,5543.0,984.0,1035.0,17760.0,667.0,8833.0,0.0,401.0,975.0,0.0,0.0,0.0,3479.0,885.0,2520.0,400.0,0.0,-400.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,37.21,37.21,27.593,27.593,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.04,2.812,0.53,9.081,0.0,0.0,2.647,0.0,0.238,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,4.187,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,9.616,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.884,8.569,8.879,0.78,0.0,0.0,0.0,0.0,1686.5,2608.8,8.464,13.423,0.0,3.447,3.289,0.0,0.0,0.744,0.651,0.0,6.241,0.0,-0.412,1.469,0.0,0.813,0.0,1.647,-9.196,0.0,-0.3,-0.767,0.0,0.0,-0.009,9.028,0.0,-2.904,0.0,-0.409,-0.361,-1.829,-0.252,0.0,0.543,6.035,1354.8,997.6,11239.5,2769.4,24000.0,24000.0,0.0,28.58,87.08,17550.0,6260.0,4921.0,0.0,377.0,1441.0,0.0,1472.0,0.0,1423.0,1658.0,14354.0,2050.0,6621.0,0.0,210.0,243.0,0.0,429.0,0.0,2032.0,250.0,2520.0,700.0,0.0,-100.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,79.907,79.907,37.754,37.754,42.153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.695,4.06,0.759,9.17,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.153,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.48,12.824,9.234,0.62,0.0,0.0,0.0,0.0,2216.0,3658.0,32.281,20.83,0.0,3.499,3.712,0.522,7.357,0.653,-1.953,0.0,0.0,8.047,-0.112,5.502,0.0,15.078,0.0,8.631,-11.75,0.0,0.161,-0.248,-0.021,3.037,0.034,10.388,0.0,0.0,-5.944,-0.108,-1.012,-2.523,-3.525,0.0,3.118,9.543,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,38747.0,8745.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,10894.0,19647.0,5228.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,2289.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,60.27,60.27,36.002,36.002,24.268,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4,4.236,0.813,9.164,0.0,0.0,4.51,0.0,0.334,0.112,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.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,22.726,13.798,9.234,0.615,0.0,0.0,0.0,0.0,2162.6,3503.0,24.803,19.466,0.0,3.537,3.633,0.511,7.427,0.628,-2.099,0.0,0.0,8.204,-0.058,4.319,0.0,2.471,0.0,5.225,-11.412,0.0,-0.031,-0.444,-0.049,2.764,-0.021,9.878,0.0,0.0,-6.264,-0.054,-1.043,-3.004,-0.684,0.0,3.077,9.876,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,73.243,73.243,37.657,37.657,35.586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.587,4.149,0.784,9.167,0.0,0.0,4.51,0.0,0.334,1.693,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.586,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.33,13.259,9.234,0.618,0.0,0.0,0.0,0.0,2173.8,3591.3,29.284,20.518,0.0,3.476,3.651,0.514,7.409,0.635,-2.072,0.0,0.0,8.222,-0.07,1.506,0.0,13.864,0.0,7.421,-11.525,0.0,0.048,-0.359,-0.037,2.953,0.003,10.117,0.0,0.0,-5.969,-0.066,-0.255,-2.72,-3.256,0.0,3.143,9.766,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,73.349,73.349,38.597,38.597,34.752,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.573,4.855,0.875,9.167,0.0,0.0,4.51,0.0,0.334,1.85,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.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,26.018,10.195,9.234,0.618,0.0,0.0,0.0,0.0,2173.0,2701.0,21.16,12.567,0.0,3.75,3.646,0.513,7.401,0.634,-2.067,0.0,0.0,8.206,-0.073,1.506,0.0,13.738,0.0,0.0,-11.521,0.0,0.135,-0.361,-0.037,2.951,0.003,10.127,0.0,0.0,-5.973,-0.069,-0.255,-2.711,-3.224,0.0,0.0,9.771,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,26905.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,13910.0,0.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,34.15,34.15,34.15,34.15,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.887,9.233,0.0,0.0,4.51,0.0,0.334,2.754,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.04,9.234,0.688,0.0,0.0,0.0,0.0,0.0,1981.3,0.0,17.21,0.0,2.133,2.057,0.285,2.751,0.229,-6.785,0.0,0.0,0.639,-0.161,0.676,0.0,7.483,0.0,1.841,-11.313,0.0,0.155,-0.351,-0.035,3.023,-0.002,10.273,0.0,0.0,-6.571,-0.058,-0.256,-2.55,-3.076,0.0,0.63,10.049,1354.8,997.6,11399.6,2615.8,0.0,24000.0,0.0,6.8,91.76,26905.0,0.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,16170.0,2259.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,70.417,70.417,36.31,36.31,34.108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.563,4.059,0.763,9.169,0.0,0.0,4.51,0.0,0.334,0.479,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.108,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.944,12.9,9.234,0.619,0.0,0.0,0.0,0.0,2138.5,3872.8,29.286,20.457,0.0,3.509,3.672,0.517,7.389,0.641,-2.032,0.0,0.0,8.16,-0.083,1.927,0.0,12.428,0.0,7.139,-11.617,0.0,0.102,-0.305,-0.029,3.021,0.017,10.256,0.0,0.0,-5.905,-0.079,-0.253,-2.587,-3.991,0.0,3.065,9.675,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,72.582,72.582,36.337,36.337,36.245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.598,4.067,0.764,9.168,0.0,0.0,4.51,0.0,0.334,0.465,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.245,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.947,12.904,9.234,0.619,0.0,0.0,0.0,0.0,2161.9,3586.3,29.285,20.473,0.0,3.484,3.661,0.515,7.398,0.638,-2.054,0.0,0.0,8.191,-0.077,1.509,0.0,14.418,0.0,7.534,-11.568,0.0,0.079,-0.329,-0.033,2.993,0.011,10.195,0.0,0.0,-5.923,-0.073,-0.245,-2.629,-3.863,0.0,3.09,9.725,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,74.428,74.428,37.591,37.591,36.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.608,4.097,0.77,9.169,0.0,0.0,4.51,0.0,0.334,1.671,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.837,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.502,13.016,9.234,0.619,0.0,0.0,0.0,0.0,2170.8,3582.9,29.283,20.443,0.0,3.486,3.698,0.52,7.38,0.65,-1.946,0.0,0.0,8.108,-0.113,1.521,0.0,14.061,0.0,8.521,-11.658,0.0,0.156,-0.294,-0.028,2.971,0.022,10.297,0.0,0.0,-6.003,-0.109,-0.233,-2.637,-3.021,0.0,2.402,9.634,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,65.33,65.33,37.777,37.777,27.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.455,4.269,0.819,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.804,13.875,9.234,0.616,0.0,0.0,0.0,0.0,2205.2,3608.0,25.243,19.125,0.0,3.509,3.63,0.511,7.422,0.628,-2.109,0.0,0.0,8.229,-0.06,5.397,0.0,3.902,0.0,5.868,-11.436,0.0,-0.019,-0.426,-0.047,2.83,-0.016,9.933,0.0,0.0,-6.158,-0.056,-1.253,-2.921,-0.848,0.0,3.153,9.853,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,33661.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5920.0,18320.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,65.334,65.334,37.777,37.777,27.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.455,4.268,0.819,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.557,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.808,13.874,9.234,0.616,0.0,0.0,0.0,0.0,2205.2,3608.3,25.245,19.126,0.0,3.509,3.63,0.511,7.422,0.628,-2.109,0.0,0.0,8.229,-0.06,5.397,0.0,3.905,0.0,5.869,-11.436,0.0,-0.019,-0.426,-0.047,2.83,-0.016,9.933,0.0,0.0,-6.158,-0.056,-1.253,-2.921,-0.849,0.0,3.153,9.853,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,33663.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5921.0,18321.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,74.129,74.129,36.748,36.748,37.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.617,4.034,0.755,9.169,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.011,12.756,9.234,0.619,0.0,0.0,0.0,0.0,2171.4,3922.0,29.335,20.61,0.0,3.491,3.674,0.517,7.39,0.642,-2.045,0.0,0.0,8.163,-0.079,1.463,0.0,15.39,0.0,7.732,-11.622,0.0,0.105,-0.303,-0.029,3.024,0.018,10.243,0.0,0.0,-5.9,-0.075,-0.231,-2.578,-4.177,0.0,3.076,9.671,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,74.129,74.129,36.748,36.748,37.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.617,4.034,0.755,9.169,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.381,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.011,12.756,9.234,0.619,0.0,0.0,0.0,0.0,2171.4,3922.0,29.335,20.61,0.0,3.491,3.674,0.517,7.39,0.642,-2.045,0.0,0.0,8.163,-0.079,1.463,0.0,15.39,0.0,7.732,-11.622,0.0,0.105,-0.303,-0.029,3.024,0.018,10.243,0.0,0.0,-5.9,-0.075,-0.231,-2.578,-4.177,0.0,3.076,9.671,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,65.33,65.33,37.78,37.78,27.55,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.454,4.271,0.819,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.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,25.802,13.876,9.234,0.616,0.0,0.0,0.0,0.0,2205.1,3609.6,25.242,19.128,0.0,3.509,3.63,0.511,7.422,0.628,-2.109,0.0,0.0,8.229,-0.06,5.397,0.0,3.9,0.0,5.868,-11.436,0.0,-0.019,-0.426,-0.047,2.829,-0.016,9.932,0.0,0.0,-6.158,-0.056,-1.253,-2.921,-0.847,0.0,3.154,9.853,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,33661.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5920.0,18320.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,65.334,65.334,37.78,37.78,27.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.455,4.271,0.819,9.165,0.0,0.0,4.51,0.0,0.334,1.793,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.554,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.805,13.876,9.234,0.616,0.0,0.0,0.0,0.0,2205.2,3610.0,25.244,19.129,0.0,3.509,3.63,0.511,7.422,0.628,-2.109,0.0,0.0,8.229,-0.06,5.397,0.0,3.903,0.0,5.869,-11.436,0.0,-0.019,-0.426,-0.047,2.83,-0.016,9.933,0.0,0.0,-6.158,-0.056,-1.253,-2.921,-0.848,0.0,3.154,9.853,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,33663.0,8634.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,5921.0,18321.0,5221.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,970.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,80.388,80.388,37.515,37.515,42.873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.705,3.719,0.667,9.172,0.0,0.0,4.51,0.0,0.334,1.574,0.0,0.0,0.402,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,42.873,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.156,11.264,9.234,0.622,0.0,0.0,0.0,16.0,2221.7,3782.1,35.787,22.623,0.0,3.173,3.702,0.521,7.392,0.651,-1.936,0.0,0.0,8.166,-0.112,3.863,0.0,9.543,0.0,16.52,-11.648,0.0,0.066,-0.205,-0.015,3.226,0.044,10.564,0.0,0.0,-5.619,-0.107,-0.607,0.0,-2.134,-8.05,4.582,9.648,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,42830.0,16258.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7464.0,23590.0,10050.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1411.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,72.707,72.707,36.819,36.819,35.888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.592,4.111,0.774,9.168,0.0,0.0,4.51,0.0,0.334,0.897,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.888,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,33.612,13.087,9.234,0.619,0.0,0.0,0.0,0.0,2191.2,3628.1,29.15,20.593,0.0,3.486,3.661,0.515,7.398,0.638,-2.053,0.0,0.0,8.191,-0.077,1.509,0.0,14.148,0.0,7.467,-11.568,0.0,0.078,-0.33,-0.033,2.991,0.011,10.194,0.0,0.0,-5.927,-0.073,-0.245,-2.633,-3.702,0.0,3.127,9.725,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,35577.0,8672.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7797.0,19127.0,5217.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1781.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,57.049,57.049,34.29,34.29,22.758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.375,2.432,0.376,9.172,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.659,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.758,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.313,6.234,9.234,0.622,0.0,0.0,0.0,0.0,2132.0,2962.3,22.926,14.965,0.0,3.542,3.632,0.511,7.445,0.628,-2.088,0.0,0.0,8.312,-0.057,4.803,0.0,0.728,0.0,4.928,-11.406,0.0,0.096,-0.26,-0.023,3.297,0.023,10.437,0.0,0.0,-5.409,-0.053,-0.99,0.0,-0.134,-11.518,1.713,9.89,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-none.xml,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.486,1.223,35.909,-21.354,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-57.264,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,66.542,47.231,31.66,12.348,34.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.707,2.145,0.442,2.598,0.0,0.312,4.51,0.0,0.334,1.118,0.0,0.0,1.073,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.745,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-19.311,0.0,34.882,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.272,5.328,10.574,1.4,0.0,9.377,0.0,0.0,2463.7,2840.6,26.064,14.414,0.0,3.485,3.68,0.517,7.375,1.118,-1.974,0.0,0.0,8.151,-0.095,2.105,0.0,15.07,0.0,2.799,-12.229,0.0,0.697,-0.089,0.002,3.464,-0.193,10.812,0.0,0.0,-5.234,-0.091,-0.283,0.0,-3.403,-10.767,0.438,10.895,1610.3,1574.0,10914.3,3846.4,36000.0,24000.0,0.0,6.8,91.76,31061.0,4629.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,7324.0,14665.0,902.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,1634.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.486,31.913,35.909,9.336,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.573,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,5022.53,1696.97,65.68,708.51,135.3,1590.65,790.52,60.7,392.41,55.6,62.16,257.77,261.29,375.64,1467.15,-4526.42,3325.56,3325.56,4466.97,1141.41,43.23,405.63,75.88,943.89,474.09,37.41,232.37,33.15,36.24,150.75,155.82,224.9,888.52,-2560.47,3325.56,3325.56,5693.89,2368.33,94.47,1084.07,208.91,2324.46,1143.92,84.66,563.04,80.8,92.67,383.71,387.61,536.3,2124.29,-6740.57,3325.56,3325.56,1.06,1.05,0.04,0.48,0.09,1.03,0.51,0.04,0.25,0.04,0.04,0.17,0.17,0.24,0.94,-2.99,0.01,0.01,3.91,1.83,0.07,0.84,0.16,1.8,0.89,0.07,0.44,0.06,0.07,0.3,0.3,0.42,1.64,-5.22,2.08,2.08 +base-misc-generators.xml,75.486,72.074,35.909,32.497,31.077,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,-3.412,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.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,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,56.176,56.176,35.831,35.831,20.345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.336,4.241,0.815,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,20.345,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.052,13.836,9.234,0.613,0.0,0.0,0.0,0.0,2105.3,3299.4,22.044,17.914,0.0,3.581,3.656,0.515,7.215,0.633,-2.001,0.0,0.0,6.57,-0.062,4.81,0.0,0.729,0.0,4.457,-11.387,0.0,-0.054,-0.467,-0.052,2.423,-0.028,9.838,0.0,0.0,-6.132,-0.058,-1.178,-3.087,-0.167,0.0,3.08,9.9,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,31497.0,8574.0,7508.0,0.0,575.0,6098.0,0.0,0.0,1975.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,146.336,146.336,68.356,68.356,69.985,0.0,2.499,5.496,0.0,0.0,0.0,0.0,0.284,5.259,1.069,9.16,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,4.437,3.415,0.0,0.0,17.22,0.0,0.0,0.0,0.0,0.0,49.967,0.0,0.0,2.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,2.499,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.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,16.125,18.25,9.234,0.61,0.0,0.0,0.0,0.0,3243.4,5123.7,21.843,20.061,0.0,3.623,3.68,0.518,7.612,0.637,-1.881,0.0,0.0,8.411,-0.066,4.826,0.0,0.732,0.0,3.827,-16.165,0.0,-0.189,-0.572,-0.067,2.439,-0.055,9.573,0.0,0.0,-6.792,-0.063,-1.268,-3.548,-0.181,0.0,3.763,15.377,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,92.82,92.82,64.806,64.806,20.019,2.499,0.0,0.0,5.496,0.0,0.0,0.0,0.284,5.259,1.069,9.16,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,7.342,2.39,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,5.118,1.62,0.0,9.207,0.887,3.415,0.0,0.0,17.22,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.798,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.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,5.496,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.125,18.25,9.234,0.61,0.0,0.0,0.0,0.0,3183.7,4721.2,21.843,20.061,0.0,3.623,3.68,0.518,7.612,0.637,-1.881,0.0,0.0,8.411,-0.066,4.826,0.0,0.732,0.0,3.827,-16.165,0.0,-0.189,-0.572,-0.067,2.439,-0.055,9.573,0.0,0.0,-6.792,-0.063,-1.268,-3.548,-0.181,0.0,3.763,15.377,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,53.277,53.277,24.676,24.676,28.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.472,3.592,0.657,9.168,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,28.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,26.787,11.118,9.234,0.618,0.0,0.0,0.0,0.0,1524.2,2936.5,24.16,16.09,0.0,3.467,3.592,0.505,7.307,0.62,-2.252,0.0,0.0,8.059,-0.05,4.795,0.0,0.726,0.0,6.032,-6.317,0.0,0.071,-0.358,-0.037,3.016,0.001,10.096,0.0,0.0,-5.856,-0.045,-1.08,-2.666,-0.15,0.0,2.599,5.7,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,61.342,61.342,35.583,35.583,25.759,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.425,3.966,0.75,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.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,24.124,12.705,9.234,0.616,0.0,0.0,0.0,0.0,2116.4,3190.8,23.172,17.026,0.0,3.509,3.809,0.561,7.326,0.827,0.3,0.0,0.0,7.961,-0.06,4.794,0.0,0.725,0.0,5.484,-11.431,0.0,-0.005,-0.536,-0.07,2.82,-0.082,8.518,0.0,0.0,-6.16,-0.056,-1.14,-2.934,-0.16,0.0,2.833,9.858,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.141,58.141,36.049,36.049,22.092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.364,4.392,0.853,9.163,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.092,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.689,14.514,9.234,0.613,0.0,0.0,0.0,0.0,2131.5,3288.0,22.906,17.823,0.0,3.55,3.636,0.512,7.432,0.629,-2.074,0.0,0.0,8.187,-0.065,4.423,0.0,0.729,0.0,4.797,-11.406,0.0,-0.059,-0.469,-0.053,2.685,-0.027,9.815,0.0,0.0,-6.396,-0.061,-1.061,-2.583,-0.167,0.0,3.166,9.881,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,31456.0,8573.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,3775.0,17855.0,5214.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,512.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,126.305,126.305,50.733,50.733,68.377,0.0,2.249,4.947,0.0,0.0,0.0,0.0,0.345,4.543,0.89,8.303,0.0,0.0,4.059,0.0,0.3,0.0,0.0,0.0,0.0,1.998,2.151,0.0,0.287,0.329,1.361,1.375,0.0,1.903,7.537,0.0,0.0,0.0,8.286,3.993,3.073,0.0,0.0,20.888,0.0,0.0,0.0,0.0,0.0,44.97,0.0,0.0,2.518,0.0,0.0,0.0,0.0,0.0,0.0,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.249,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.947,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.561,15.127,8.31,0.613,0.0,0.0,0.0,0.0,2739.2,4277.6,22.627,18.484,0.0,3.569,3.647,0.513,7.473,0.631,-2.028,0.0,0.0,8.236,-0.065,4.86,0.0,0.657,0.0,4.558,-12.834,0.0,-0.085,-0.489,-0.056,2.631,-0.033,9.771,0.0,0.0,-6.482,-0.062,-1.208,-3.219,-0.153,0.0,3.275,11.416,1219.3,897.9,10259.7,2354.3,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.486,31.913,35.909,9.336,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.573,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.865,32.338,34.588,8.061,24.277,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.4,2.98,0.522,9.268,0.0,0.0,4.51,0.142,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.527,0.0,24.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,22.729,8.71,9.234,0.726,0.0,0.0,0.0,0.0,2135.4,2485.0,17.963,10.726,0.0,3.532,3.792,0.502,5.781,0.613,1.964,0.0,0.0,6.474,-0.041,5.37,0.0,0.0,0.0,3.82,-9.273,0.0,0.108,-0.277,-0.035,2.457,0.001,6.648,0.0,0.0,-5.65,-0.038,-1.218,-2.076,0.0,0.0,1.263,7.682,1354.8,997.6,11399.5,2615.8,36000.0,24000.0,0.0,6.8,91.76,29872.0,8041.0,5506.0,0.0,575.0,6537.0,0.0,0.0,2446.0,2171.0,4597.0,15062.0,3154.0,6028.0,0.0,207.0,523.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-lifetime-model.xml,58.486,31.966,35.909,9.389,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.52,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.486,31.913,35.909,9.336,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.573,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.486,31.6,35.909,9.023,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,-26.886,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,57.597,57.597,36.259,36.259,21.338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.352,4.565,0.888,9.168,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.338,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.981,15.03,9.21,0.638,0.0,0.0,0.333,1.0,9357.0,10868.4,37.3,21.892,0.0,3.628,3.674,0.518,7.2,0.644,-1.857,0.0,0.0,6.642,-0.115,5.309,0.0,0.775,0.0,4.691,-11.428,0.0,-0.185,-0.496,-0.057,2.785,-0.035,9.799,0.0,0.0,-5.852,-0.057,-1.288,-3.02,-0.179,0.0,3.402,10.355,1354.7,998.0,11489.6,2636.5,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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-smooth.xml,58.495,58.495,35.921,35.921,22.574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.275,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.14,13.992,9.234,0.614,0.0,0.0,0.0,0.0,2134.8,3282.7,22.933,17.829,0.0,3.545,3.634,0.511,7.429,0.629,-2.082,0.0,0.0,8.191,-0.063,4.804,0.0,0.728,0.0,4.889,-11.41,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.07,-0.165,0.0,3.098,9.885,1354.7,998.0,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.342,59.342,36.088,36.088,23.254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.384,4.381,0.849,9.086,0.0,0.0,4.482,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.323,0.356,1.504,1.664,0.0,2.116,8.391,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.254,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.774,14.396,9.148,0.616,0.0,0.0,0.0,0.0,9193.5,7394.4,31.482,20.749,0.0,3.546,3.638,0.512,7.434,0.63,-2.07,0.0,0.0,8.199,-0.063,5.32,0.0,0.763,0.0,5.011,-11.459,0.0,-0.043,-0.452,-0.05,2.729,-0.023,9.866,0.0,0.0,-6.322,-0.059,-1.28,-3.051,-0.188,0.0,3.17,10.372,1002.6,945.2,11591.5,2659.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,57.991,57.991,30.823,30.823,27.169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.448,4.37,0.847,7.488,0.0,0.0,3.622,0.0,0.263,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.267,0.304,1.259,1.256,0.0,1.705,6.775,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.169,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,25.443,14.356,7.433,0.615,0.0,0.0,0.0,0.0,5308.9,5555.4,30.918,19.271,0.0,3.494,3.612,0.508,7.356,0.623,-2.145,0.0,0.0,8.033,-0.063,5.303,0.0,0.513,0.0,5.765,-7.872,0.0,-0.048,-0.456,-0.051,2.723,-0.024,9.853,0.0,0.0,-6.34,-0.058,-1.271,-3.06,-0.185,0.0,3.16,10.328,1141.2,883.5,9305.3,2135.3,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.275,59.275,36.046,36.046,23.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.383,4.37,0.847,9.16,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.228,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.751,14.359,9.229,0.615,0.0,0.0,0.0,0.0,5308.8,5555.7,30.793,19.273,0.0,3.542,3.635,0.511,7.431,0.629,-2.08,0.0,0.0,8.188,-0.062,5.262,0.0,0.776,0.0,5.01,-11.421,0.0,-0.048,-0.457,-0.051,2.723,-0.024,9.853,0.0,0.0,-6.337,-0.058,-1.271,-3.06,-0.185,0.0,3.16,10.328,1354.7,998.0,11396.7,2615.2,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,54.115,54.115,35.417,35.417,18.699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.308,3.913,0.755,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.699,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.182,12.566,9.234,0.614,0.0,0.0,95.0,52.0,2137.8,3586.5,34.216,20.184,0.0,3.558,3.601,0.507,7.028,0.615,-2.228,0.0,0.0,6.344,-0.071,4.674,0.0,0.729,0.0,3.915,-11.35,0.0,-0.089,-0.517,-0.06,2.708,-0.046,9.615,0.0,0.0,-5.983,-0.007,-1.237,-3.459,-0.176,0.0,2.486,9.938,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,53.872,53.872,35.554,35.554,18.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.302,4.032,0.779,9.165,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.318,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.072,13.122,9.234,0.615,0.0,0.0,0.0,9.0,2110.4,3597.8,24.379,20.734,0.0,3.531,3.57,0.502,6.897,0.608,-2.355,0.0,0.0,6.19,-0.088,4.643,0.0,0.724,0.0,3.872,-11.368,0.0,-0.07,-0.51,-0.059,2.656,-0.044,9.601,0.0,0.0,-6.075,-0.025,-1.217,-3.394,-0.179,0.0,2.615,9.921,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,38.465,38.465,34.241,34.241,4.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.07,3.154,0.551,9.19,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.224,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.949,9.456,9.234,0.642,0.0,0.0,0.0,0.0,2077.9,3367.6,16.021,15.639,0.0,2.943,2.86,0.401,4.917,0.432,-4.329,0.0,0.0,2.777,-0.176,3.559,0.0,0.583,0.0,0.937,-11.278,0.0,-0.153,-0.599,-0.071,2.468,-0.065,9.508,0.0,0.0,-6.682,-0.056,-1.283,-5.24,-0.192,0.0,2.159,10.038,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.66,58.66,35.945,35.945,22.715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.375,4.302,0.83,9.164,0.0,0.0,4.508,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.715,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.272,14.104,9.234,0.614,0.0,0.0,0.0,0.0,2010.6,3313.3,22.96,17.938,0.0,3.543,3.632,0.511,7.423,0.628,-2.087,0.0,0.0,8.181,-0.063,4.804,0.0,0.728,0.0,4.916,-11.275,0.0,-0.049,-0.459,-0.051,2.716,-0.025,9.844,0.0,0.0,-6.346,-0.059,-1.168,-3.08,-0.165,0.0,3.117,10.011,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.465,58.465,35.881,35.881,22.584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.373,4.25,0.818,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.584,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.149,13.891,9.234,0.614,0.0,0.0,0.0,0.0,2131.7,3333.9,22.926,17.908,0.0,3.545,3.634,0.511,7.429,0.629,-2.082,0.0,0.0,8.194,-0.063,4.804,0.0,0.728,0.0,4.891,-11.406,0.0,-0.04,-0.453,-0.05,2.743,-0.023,9.864,0.0,0.0,-6.317,-0.059,-1.162,-3.215,-0.164,0.0,3.061,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.487,58.487,35.909,35.909,22.578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.578,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.144,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.429,0.629,-2.082,0.0,0.0,8.191,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.457,58.457,35.894,35.894,22.563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.26,0.821,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.563,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.13,13.929,9.234,0.614,0.0,0.0,0.0,0.0,2131.7,3204.2,22.926,17.481,0.0,3.544,3.633,0.511,7.43,0.628,-2.093,0.0,0.0,8.188,-0.059,4.802,0.0,0.725,0.0,4.886,-11.399,0.0,-0.045,-0.458,-0.051,2.721,-0.025,9.841,0.0,0.0,-6.337,-0.055,-1.172,-3.098,-0.163,0.0,3.072,9.889,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,9.6018,9.6018,3.1992,3.1992,6.4026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.1056,0.1119,0.0,0.9158,0.0,0.0,0.4474,0.0,0.0354,0.0,0.0,0.0,0.0,0.1577,0.0,0.0,0.0297,0.0314,0.1285,0.1424,0.0,0.2049,0.8885,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.4026,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.9894,0.0,0.9282,0.0566,0.0,0.0,0.0,0.0,2109.17,0.0,20.563,0.0,0.0,0.7031,0.6916,0.0981,1.9171,0.106,-0.1994,0.0,0.0,2.202,-0.001,0.9325,0.0,0.1372,0.0,1.3794,-2.0328,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.32,92.97,1019.66,233.98,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.379,58.379,35.805,35.805,22.574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.189,0.804,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.574,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.14,13.643,9.234,0.614,0.0,0.0,0.0,0.0,2109.4,3373.7,22.867,17.765,0.0,3.613,3.631,0.511,7.426,0.626,-2.114,0.0,0.0,8.169,-0.053,4.801,0.0,0.727,0.0,4.883,-11.396,0.0,-0.213,-0.454,-0.051,2.728,-0.025,9.834,0.0,0.0,-6.334,-0.05,-1.175,-3.142,-0.164,0.0,2.942,9.892,1354.8,997.6,11399.6,2615.8,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.931,59.931,36.169,36.169,23.762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.392,4.461,0.863,9.167,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.762,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.251,14.588,9.232,0.617,0.0,0.0,0.333,1.0,9432.3,8358.5,37.386,21.878,0.0,3.594,3.658,0.515,7.494,0.64,-1.919,0.0,0.0,8.207,-0.062,5.304,0.0,0.776,0.0,5.177,-11.434,0.0,-0.166,-0.481,-0.055,2.745,-0.03,9.844,0.0,0.0,-6.312,-0.058,-1.274,-2.961,-0.176,0.0,3.327,10.329,1354.7,998.0,11410.5,2618.4,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.852,59.852,36.16,36.16,23.692,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.391,4.46,0.862,9.161,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.218,0.0,0.0,0.319,0.365,1.513,1.529,0.0,2.116,8.384,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,22.186,14.582,9.229,0.614,0.0,0.0,0.0,0.167,6213.5,7477.9,35.248,21.263,0.0,3.595,3.658,0.515,7.492,0.64,-1.925,0.0,0.0,8.204,-0.061,5.251,0.0,0.77,0.0,5.166,-11.422,0.0,-0.166,-0.481,-0.055,2.744,-0.031,9.838,0.0,0.0,-6.315,-0.056,-1.26,-2.963,-0.185,0.0,3.325,10.326,1354.7,998.0,11396.7,2615.2,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.081,59.081,36.022,36.022,23.059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.38,4.361,0.839,9.166,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.593,14.205,9.234,0.614,0.0,0.0,0.0,0.0,3548.1,4934.4,23.213,17.88,0.0,3.6,3.659,0.515,7.492,0.64,-1.93,0.0,0.0,8.209,-0.059,4.789,0.0,0.734,0.0,5.049,-11.406,0.0,-0.162,-0.48,-0.055,2.747,-0.03,9.835,0.0,0.0,-6.307,-0.055,-1.152,-2.969,-0.171,0.0,3.26,9.881,1354.8,997.6,11399.7,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.486,58.486,35.909,35.909,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.372,4.274,0.824,9.164,0.0,0.0,4.51,0.0,0.334,0.0,0.0,0.0,0.0,2.22,0.0,0.0,0.319,0.365,1.513,1.528,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.577,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,21.143,13.985,9.234,0.614,0.0,0.0,0.0,0.0,2109.3,3293.1,22.926,17.86,0.0,3.545,3.634,0.511,7.428,0.629,-2.082,0.0,0.0,8.19,-0.063,4.804,0.0,0.728,0.0,4.89,-11.406,0.0,-0.046,-0.457,-0.051,2.721,-0.025,9.85,0.0,0.0,-6.339,-0.059,-1.168,-3.072,-0.165,0.0,3.096,9.882,1354.8,997.6,11399.6,2615.9,36000.0,24000.0,0.0,6.8,91.76,32302.0,8597.0,7508.0,0.0,575.0,6409.0,0.0,0.0,2446.0,2171.0,4597.0,17964.0,5216.0,7127.0,0.0,207.0,265.0,0.0,0.0,0.0,2010.0,619.0,2520.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,87.655,87.655,47.054,47.054,40.601,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.265,15.761,4.415,0.0,0.0,0.0,7.38,0.315,0.652,0.448,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,3.284,1.794,0.0,2.585,6.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.565,0.0,17.036,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.109,50.172,10.416,2.673,0.0,0.0,0.0,0.0,1857.1,6429.7,40.431,40.682,0.489,1.963,7.184,0.418,0.0,0.959,2.625,0.0,0.436,1.218,-0.267,5.165,0.0,5.156,0.0,3.357,-9.733,0.579,2.038,3.842,0.309,0.0,0.263,11.904,0.0,0.575,6.824,-0.253,-0.453,-1.389,-0.722,0.0,10.829,15.998,2104.5,2144.0,14468.8,4385.1,90000.0,60000.0,0.0,25.88,98.42,62092.0,24399.0,7740.0,0.0,942.0,7599.0,453.0,609.0,9636.0,2236.0,8478.0,99887.0,72262.0,9995.0,0.0,781.0,5722.0,299.0,576.0,0.0,4148.0,3124.0,2980.0,5399.0,2597.0,1602.0,1200.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,67.981,67.981,39.858,39.858,28.124,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.164,13.753,3.414,0.0,0.0,0.0,6.381,0.315,0.594,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,5.487,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,14.642,0.0,13.481,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.871,39.441,7.526,2.888,0.0,0.0,0.0,0.0,1556.6,4944.7,25.364,28.55,0.0,2.516,5.041,0.0,0.0,0.847,1.932,0.0,0.0,1.731,-0.146,2.166,0.0,3.786,0.0,1.436,-7.591,0.0,3.121,2.799,0.0,0.0,0.406,8.133,0.0,0.0,8.491,-0.14,-0.234,-1.035,-0.619,0.0,5.901,12.792,1610.9,1574.7,9989.5,3520.4,90000.0,60000.0,0.0,25.88,98.42,47924.0,15311.0,6070.0,0.0,752.0,4731.0,0.0,0.0,12952.0,3120.0,4987.0,34810.0,14856.0,7099.0,0.0,748.0,3138.0,0.0,0.0,0.0,4572.0,1877.0,2520.0,3061.0,1299.0,962.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,69.561,69.561,40.145,40.145,29.416,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.182,12.795,3.557,0.0,0.0,0.0,6.875,0.315,0.623,0.448,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.048,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.178,0.0,13.238,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.116,40.969,7.526,2.686,0.0,0.0,0.0,0.0,1635.5,5175.2,28.303,31.648,0.645,2.766,4.648,0.0,0.0,0.979,2.732,0.0,0.0,1.039,-0.168,2.708,0.0,3.936,0.0,1.7,-8.021,0.813,3.105,2.639,0.0,0.0,0.645,9.662,0.0,0.0,6.546,-0.161,-0.273,-1.076,-0.609,0.0,6.519,13.336,1610.9,1574.7,9989.4,3520.4,90000.0,60000.0,0.0,25.88,98.42,48411.0,15944.0,6644.0,0.0,892.0,4431.0,610.0,0.0,11450.0,2908.0,5532.0,42968.0,18995.0,9541.0,0.0,930.0,3135.0,403.0,0.0,0.0,5394.0,2049.0,2520.0,3149.0,1299.0,1051.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,139.222,139.222,75.872,75.872,63.35,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.419,29.4,9.578,0.0,0.0,0.0,11.562,0.315,0.893,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,1.633,2.35,11.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.21,0.0,16.141,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.176,107.87,8.985,3.505,0.0,0.0,0.0,139.0,2440.4,7373.0,58.904,50.183,0.128,5.532,11.447,0.0,0.0,1.26,8.001,0.0,0.0,3.191,-0.724,6.625,0.0,6.327,0.0,7.461,-11.388,0.203,6.842,11.784,0.0,0.0,0.534,22.891,0.0,0.0,18.901,-0.711,1.532,0.0,1.911,0.0,21.709,22.531,1857.7,1859.3,12229.1,3983.9,80000.0,60000.0,0.0,25.88,98.42,76554.0,20975.0,11324.0,0.0,882.0,8959.0,101.0,0.0,19021.0,5929.0,9362.0,54634.0,19418.0,12979.0,0.0,688.0,7055.0,65.0,0.0,0.0,8310.0,3369.0,2750.0,3680.0,952.0,1727.0,1000.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,96.573,96.573,53.429,53.429,43.144,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.314,18.378,5.178,0.0,0.0,0.0,9.155,0.315,0.754,0.448,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,8.638,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,27.951,0.0,15.193,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,22.667,59.898,8.985,2.724,0.0,0.0,0.0,0.0,2080.4,7521.3,49.166,51.179,0.0,2.996,8.095,0.266,0.0,1.337,3.365,0.0,0.369,1.211,-0.334,6.048,0.0,5.084,0.0,4.583,-10.548,0.0,3.064,4.412,0.216,0.0,0.306,15.748,0.0,0.449,7.545,-0.317,-0.524,-1.738,-0.699,0.0,14.646,16.992,1857.7,1859.4,12229.0,3983.9,90000.0,60000.0,0.0,25.88,98.42,71539.0,26959.0,10216.0,0.0,1260.0,8257.0,0.0,480.0,11638.0,3312.0,9418.0,67465.0,32792.0,14422.0,0.0,1034.0,6463.0,0.0,454.0,0.0,6143.0,3406.0,2750.0,5343.0,2597.0,1746.0,1000.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,141.931,141.931,31.872,31.872,110.059,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.932,2.982,0.346,0.0,0.0,0.0,8.687,0.29,0.705,3.138,0.0,0.0,0.0,1.707,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.114,8.883,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.212,0.0,20.136,2.642,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.073,8.004,13.085,3.278,0.0,0.0,0.0,0.0,1992.7,2444.3,41.243,14.855,0.0,4.246,22.224,1.986,37.024,1.862,8.433,0.0,0.0,11.927,-0.318,9.522,0.0,4.368,0.0,0.0,-21.017,0.0,0.177,-0.798,-0.045,2.683,-0.086,3.391,0.0,0.0,-3.57,-0.318,-0.515,-0.62,-0.075,0.0,0.0,7.886,1610.9,1574.7,12168.2,4288.2,80000.0,30000.0,0.0,-13.72,81.14,39295.0,0.0,8907.0,0.0,750.0,19692.0,0.0,0.0,2813.0,1874.0,5257.0,9402.0,0.0,4578.0,0.0,186.0,888.0,0.0,0.0,0.0,1059.0,171.0,2520.0,1215.0,0.0,415.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,141.369,141.369,34.029,34.029,107.34,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.685,2.589,0.408,0.0,0.0,0.0,10.299,0.315,0.82,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.938,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.674,0.0,23.28,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.135,6.014,15.632,3.268,0.0,0.0,0.0,0.0,2196.8,2569.2,40.428,13.43,0.0,4.694,23.596,4.394,10.052,1.495,9.576,0.0,0.076,14.159,-0.347,6.117,0.0,20.824,0.0,2.956,-24.981,0.0,0.202,-0.72,-0.043,0.525,-0.048,4.006,0.0,-0.009,-3.734,-0.342,-0.193,-0.596,-1.902,0.0,0.107,8.858,1857.7,1859.4,14896.4,4852.9,90000.0,42000.0,0.0,-13.72,81.14,43883.0,5469.0,9095.0,0.0,587.0,14942.0,0.0,27.0,2642.0,2001.0,9120.0,11972.0,1069.0,5464.0,0.0,151.0,923.0,0.0,0.0,0.0,1130.0,484.0,2750.0,1620.0,219.0,401.0,1000.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,185.445,185.445,39.257,39.257,146.189,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.532,3.619,0.543,0.0,0.0,0.0,11.006,0.315,0.861,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.741,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.752,0.0,26.376,3.452,3.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,106.243,10.35,18.129,3.214,0.0,0.0,0.0,0.0,2477.3,3293.3,55.348,19.539,0.0,7.201,27.357,4.679,24.256,1.177,14.499,0.0,1.222,19.564,-0.367,18.319,0.0,6.384,0.0,7.941,-26.834,0.0,0.305,-1.142,-0.066,1.602,-0.088,3.989,0.0,-0.105,-2.376,-0.367,-0.993,-0.692,-0.286,0.0,0.546,10.125,2104.5,2144.0,17624.7,5341.6,90000.0,36000.0,0.0,-13.72,81.14,60317.0,10599.0,10314.0,0.0,587.0,20172.0,0.0,891.0,4910.0,3226.0,9618.0,18248.0,2426.0,9152.0,0.0,112.0,1287.0,0.0,153.0,0.0,1822.0,316.0,2980.0,1893.0,85.0,608.0,1200.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,153.687,153.687,33.974,33.974,119.713,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.022,2.379,0.287,0.0,0.0,0.0,10.271,0.315,0.819,1.943,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,9.907,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.037,0.0,23.29,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.839,5.257,15.632,3.276,0.0,0.0,0.0,0.0,2225.7,2598.6,43.986,13.891,0.0,5.085,28.326,4.268,12.943,2.25,11.316,0.0,0.265,15.408,-0.347,8.73,0.0,21.435,0.0,0.0,-25.365,0.0,0.243,-0.7,-0.019,0.751,-0.076,3.767,0.0,-0.029,-4.092,-0.344,-0.26,-0.524,-1.805,0.0,0.0,8.427,1857.7,1859.4,14896.4,4852.9,90000.0,36000.0,0.0,-13.72,81.14,45251.0,0.0,8913.0,0.0,885.0,18118.0,0.0,95.0,4218.0,2204.0,10820.0,12202.0,0.0,6524.0,0.0,212.0,951.0,0.0,1.0,0.0,1244.0,518.0,2750.0,1429.0,0.0,429.0,1000.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,156.031,156.031,37.654,37.654,118.377,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.908,2.946,0.281,0.0,0.0,0.0,10.986,0.315,0.86,3.138,0.0,0.0,0.0,2.483,0.0,0.0,0.609,0.442,0.26,0.123,0.0,2.585,10.719,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.94,0.0,26.376,3.452,3.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,80.04,7.561,18.129,3.213,0.0,0.0,0.0,0.0,2413.3,2814.0,45.912,15.508,0.871,4.909,25.347,4.844,9.697,1.246,14.18,0.0,0.892,13.745,-0.363,19.56,0.0,6.4,0.0,4.978,-26.874,0.025,0.219,-0.756,-0.078,0.507,-0.073,3.72,0.0,-0.048,-3.894,-0.36,-1.029,-0.688,-0.272,0.0,0.347,10.046,2104.5,2144.0,17624.7,5341.6,90000.0,30000.0,0.0,-13.72,81.14,52115.0,8291.0,10714.0,0.0,587.0,16310.0,359.0,532.0,2642.0,2165.0,10515.0,13819.0,1817.0,5798.0,0.0,112.0,1426.0,37.0,87.0,0.0,1222.0,340.0,2980.0,1969.0,141.0,628.0,1200.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,44.589,44.589,44.589,44.589,0.0,0.0,0.0,0.0,0.0,0.0,7.047,0.096,0.624,7.873,2.314,10.452,0.0,0.0,4.905,0.0,0.509,0.003,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.0,0.0,1.661,0.0,2.35,3.809,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.706,25.69,9.325,1.124,0.0,0.0,0.0,308.0,4893.3,3171.6,18.278,15.57,0.0,2.7,5.407,0.0,0.0,1.638,0.352,0.0,1.883,0.0,-0.367,1.846,0.0,5.42,0.0,3.962,-8.145,0.0,1.654,1.147,0.0,0.0,0.155,5.602,0.0,0.754,0.0,-0.366,-0.197,-0.181,-1.003,0.0,6.609,11.642,0.0,1859.4,12951.4,4219.3,24000.0,18000.0,34120.0,24.62,91.58,20649.0,6686.0,2440.0,0.0,1007.0,3251.0,0.0,546.0,0.0,1795.0,4923.0,20439.0,7796.0,3938.0,0.0,612.0,1210.0,0.0,199.0,0.0,2697.0,1236.0,2750.0,2661.0,372.0,1289.0,1000.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,35.531,35.531,35.531,35.531,0.0,0.0,0.0,0.0,0.0,0.0,4.801,0.0,0.245,5.511,1.513,8.943,0.0,0.0,4.378,0.0,0.478,0.003,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.0,0.0,1.528,0.0,2.114,3.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,10.065,16.196,7.782,1.158,0.0,0.0,0.0,0.0,3031.5,2478.0,11.058,10.81,0.0,2.364,4.744,0.0,0.0,0.628,0.992,0.0,2.047,0.0,-0.23,1.646,0.0,4.367,0.0,0.321,-6.815,0.0,1.715,1.082,0.0,0.0,-0.034,3.739,0.0,1.585,0.0,-0.23,-0.16,-0.164,-0.732,0.0,0.273,9.187,0.0,1574.7,10579.5,3728.4,23400.0,23200.0,0.0,24.62,91.58,13914.0,1327.0,1906.0,0.0,333.0,2909.0,0.0,1767.0,0.0,1513.0,4159.0,11073.0,622.0,2703.0,0.0,202.0,1083.0,0.0,646.0,0.0,2273.0,1024.0,2520.0,2166.0,298.0,1068.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,30.663,30.663,30.663,30.663,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.0,0.166,3.873,1.308,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.124,15.099,6.85,0.853,0.0,0.0,0.0,0.0,2660.8,2099.5,9.741,9.286,0.0,1.636,2.868,0.0,0.0,0.655,0.531,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-5.215,0.0,1.081,0.381,0.0,0.0,-0.092,4.01,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.465,8.791,1364.1,1290.1,8207.3,3131.8,18000.0,18000.0,17060.0,24.62,91.58,12482.0,3021.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9124.0,1054.0,2271.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,2290.0,1419.0,251.0,568.0,600.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,31.578,31.578,31.578,31.578,0.0,0.0,0.0,0.0,0.0,0.0,3.4,0.004,0.201,4.182,1.411,7.451,0.0,0.0,4.053,0.0,0.46,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.841,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,7.534,16.389,6.85,0.597,0.0,0.0,0.0,0.0,2729.4,2185.8,10.982,10.107,0.0,1.705,3.7,0.0,0.0,0.584,0.615,0.0,2.211,0.0,-0.229,1.727,0.0,1.119,0.0,1.494,-5.427,0.0,1.141,0.558,0.0,0.0,-0.068,5.038,0.0,0.623,0.0,-0.229,-0.248,-0.225,-0.258,0.0,1.653,8.495,1364.1,1290.1,8207.3,3131.8,18000.0,18000.0,17060.0,24.62,91.58,13648.0,3089.0,2335.0,0.0,320.0,2332.0,0.0,1632.0,0.0,1080.0,2860.0,10173.0,1044.0,3060.0,0.0,194.0,773.0,0.0,596.0,0.0,1622.0,594.0,2290.0,1471.0,251.0,620.0,600.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,30.663,30.663,30.663,30.663,0.0,0.0,0.0,0.0,0.0,0.0,2.873,0.0,0.166,3.873,1.308,7.706,0.0,0.0,3.966,0.0,0.455,0.001,0.0,0.0,0.0,1.52,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,2.742,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.124,15.099,6.85,0.853,0.0,0.0,0.0,0.0,2660.8,2099.5,9.741,9.286,0.0,1.636,2.868,0.0,0.0,0.655,0.531,0.0,2.099,0.0,-0.263,1.522,0.0,1.064,0.0,1.2,-5.215,0.0,1.081,0.381,0.0,0.0,-0.092,4.01,0.0,0.54,0.0,-0.262,-0.252,-0.199,-0.278,0.0,1.465,8.791,1364.1,1290.1,8207.3,3131.8,18000.0,18000.0,17060.0,24.62,91.58,12482.0,3021.0,2049.0,0.0,363.0,1822.0,0.0,1575.0,0.0,1042.0,2610.0,9124.0,1054.0,2271.0,0.0,221.0,604.0,0.0,576.0,0.0,1565.0,545.0,2290.0,1419.0,251.0,568.0,600.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,59.145,59.145,39.312,39.312,0.0,0.0,19.833,0.0,0.0,0.0,7.582,0.17,0.551,3.034,1.026,0.0,0.0,0.0,8.606,0.0,0.723,0.215,0.0,0.0,0.0,2.448,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.015,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.24,0.0,13.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.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,24.405,11.971,9.378,0.0,0.0,0.0,1.0,14.0,7420.3,3510.1,42.959,18.987,0.0,4.421,10.842,0.619,5.709,0.298,-0.631,0.0,0.0,6.771,-0.02,5.733,0.0,3.859,0.0,0.0,-13.316,0.0,-0.347,-0.872,-0.023,2.902,-0.047,11.772,0.0,0.0,-8.864,-0.022,-1.374,-1.186,-1.026,0.0,0.0,11.541,1610.9,1574.7,11979.5,4221.7,136000.0,36000.0,36000.0,19.22,86.72,27038.0,0.0,5399.0,0.0,171.0,10377.0,0.0,0.0,3117.0,2689.0,5286.0,18485.0,0.0,9792.0,0.0,90.0,3334.0,0.0,0.0,0.0,2156.0,593.0,2520.0,1784.0,0.0,984.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,92.266,92.266,28.297,28.297,63.969,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.262,4.495,0.757,0.0,0.0,0.0,4.67,0.187,0.387,0.033,0.0,0.0,0.0,2.086,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,6.591,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.116,0.0,18.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,41.333,10.411,11.749,3.414,0.0,0.0,152.0,105.0,1744.9,3534.0,60.224,19.219,0.0,5.431,14.635,0.652,10.599,0.362,-2.318,0.0,0.705,4.292,0.008,19.797,0.0,1.221,0.0,0.0,-14.269,0.0,-0.179,-1.073,-0.025,4.581,-0.062,6.946,0.0,-0.003,-4.877,0.009,-2.804,-0.738,-0.261,0.0,0.0,8.943,1857.7,1859.4,14839.1,4834.2,60000.0,24000.0,0.0,16.16,89.24,35600.0,0.0,4833.0,0.0,181.0,13937.0,0.0,354.0,1635.0,3048.0,11612.0,17539.0,0.0,7766.0,0.0,85.0,2970.0,0.0,176.0,0.0,2221.0,1571.0,2750.0,3084.0,0.0,2084.0,1000.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,39.16,39.16,39.16,39.16,0.0,0.0,0.0,0.0,0.0,0.0,4.527,0.0,0.202,2.676,0.823,9.93,0.0,0.0,4.761,0.0,0.461,0.112,0.0,0.0,0.0,4.21,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,4.516,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.421,9.881,9.377,0.551,0.0,0.0,0.0,0.0,4902.2,2760.9,19.878,11.088,0.0,4.59,4.65,0.0,0.0,0.277,-0.085,0.0,2.192,0.0,-0.019,2.626,0.0,2.085,0.0,1.792,-9.794,0.0,-0.554,-0.842,0.0,0.0,-0.097,3.36,0.0,-0.039,0.0,-0.015,-0.785,-0.654,-0.76,0.0,1.313,9.185,1610.9,1574.7,11983.2,4223.1,36000.0,36000.0,36000.0,19.22,86.72,18300.0,4909.0,2514.0,0.0,150.0,3004.0,0.0,1816.0,0.0,2749.0,3160.0,9257.0,725.0,2260.0,0.0,79.0,696.0,0.0,419.0,0.0,2204.0,354.0,2520.0,2144.0,756.0,588.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,132.583,132.583,54.994,54.994,77.589,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.112,11.28,3.784,11.933,0.0,0.0,8.923,0.0,0.741,0.054,0.0,0.0,0.0,2.005,1.27,0.0,0.447,0.338,2.514,0.105,0.0,2.114,8.374,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.521,0.0,0.0,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.523,44.646,10.1,1.826,0.0,0.0,191.0,277.0,2884.1,6701.3,84.407,46.029,0.0,11.385,44.783,0.65,4.858,1.918,1.545,0.0,0.0,5.756,-0.035,8.869,0.0,1.864,0.0,0.0,-15.578,0.0,2.952,9.967,0.146,2.793,0.263,19.809,0.0,0.0,-4.378,-0.022,-0.178,-0.155,0.018,0.0,0.0,12.125,1610.9,1574.7,10370.6,3654.8,100000.0,60000.0,0.0,16.16,89.24,50337.0,0.0,9523.0,0.0,1028.0,26480.0,0.0,0.0,2084.0,5769.0,5453.0,31793.0,0.0,13774.0,0.0,482.0,10075.0,0.0,0.0,0.0,4204.0,738.0,2520.0,1779.0,0.0,979.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,114.55,114.55,56.28,56.28,0.0,0.0,58.27,0.0,0.0,0.0,0.0,0.0,0.806,13.14,2.894,0.0,0.0,0.0,12.75,0.0,0.892,0.026,0.0,0.0,0.0,3.976,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,16.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,37.71,0.0,17.491,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.736,34.408,9.377,4.22,0.0,0.0,0.0,0.0,2671.3,6550.3,30.871,32.37,0.908,11.004,10.574,1.133,9.701,0.632,-0.826,0.0,0.0,7.33,-0.033,15.231,0.0,0.836,0.0,0.0,-22.108,0.243,0.142,0.17,0.052,6.394,0.012,19.767,0.0,0.0,-6.764,-0.024,-2.717,-1.678,-0.199,0.0,0.0,19.174,1610.9,1574.7,11983.6,4223.2,120000.0,60000.0,0.0,19.22,86.72,45228.0,0.0,10325.0,0.0,395.0,12858.0,598.0,0.0,3897.0,6812.0,10343.0,24478.0,0.0,11826.0,0.0,208.0,3049.0,253.0,0.0,0.0,5463.0,1160.0,2520.0,2725.0,0.0,1925.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,156.634,156.634,48.275,48.275,108.359,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.977,7.824,1.571,0.0,0.0,0.0,10.64,0.244,0.771,0.071,0.0,0.0,0.0,2.448,1.472,0.0,0.528,0.39,2.899,1.661,0.0,2.35,13.43,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.34,0.0,20.019,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.639,19.037,11.749,3.813,0.0,0.0,0.0,0.0,2766.4,4763.6,80.95,23.809,0.0,8.268,27.054,2.421,9.098,0.859,0.711,0.0,1.083,9.313,-0.321,26.611,0.0,2.489,0.0,6.015,-21.564,0.0,0.01,-0.877,0.004,2.203,-0.094,13.966,0.0,0.044,-6.113,-0.298,-2.444,-0.873,-0.391,0.0,1.32,12.735,1857.7,1859.4,14839.2,4834.2,130000.0,60000.0,0.0,16.16,89.24,52812.0,8050.0,10175.0,0.0,318.0,15504.0,0.0,396.0,2243.0,3431.0,12694.0,26586.0,5715.0,9853.0,0.0,149.0,3704.0,0.0,196.0,0.0,2501.0,1718.0,2750.0,4182.0,904.0,2279.0,1000.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,135.955,135.955,47.23,47.23,0.0,88.725,0.0,0.0,0.0,0.0,0.0,0.0,2.206,8.637,1.167,11.316,0.0,0.0,6.69,0.0,0.61,0.034,0.0,0.0,0.0,2.086,1.649,0.0,0.447,0.338,2.514,1.528,0.0,2.114,5.893,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.725,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,72.829,19.615,9.834,1.479,0.0,0.0,184.0,124.0,2873.0,5409.9,90.662,27.688,3.696,3.766,20.667,0.0,0.0,1.489,2.808,0.0,14.722,0.0,-0.288,37.698,0.0,1.154,0.0,0.0,-13.712,1.096,0.154,0.527,0.0,0.0,-0.127,11.106,0.0,1.911,0.0,-0.279,-2.739,-0.639,-0.074,0.0,0.0,8.533,1610.9,1574.7,12121.0,4271.6,100000.0,36000.0,0.0,16.16,89.24,53604.0,0.0,10741.0,0.0,737.0,11570.0,2029.0,5140.0,0.0,2115.0,21272.0,23289.0,0.0,8957.0,0.0,345.0,4498.0,1190.0,1360.0,0.0,1542.0,2878.0,2520.0,4618.0,0.0,3818.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,133.503,133.503,58.834,58.834,0.0,74.67,0.0,0.0,0.0,0.0,0.0,0.0,1.88,5.651,0.804,17.103,0.0,0.0,9.219,0.0,0.692,0.045,0.0,0.0,0.0,4.21,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,11.402,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.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,62.339,16.51,14.227,2.769,0.0,0.0,0.0,0.0,3862.1,4300.0,62.309,20.625,0.0,10.214,21.497,1.201,16.384,0.85,1.705,0.0,0.0,6.074,-0.031,23.712,0.0,1.639,0.0,0.0,-21.262,0.0,-0.207,-1.054,-0.016,5.953,-0.115,8.605,0.0,0.0,-6.04,-0.008,-2.694,-0.77,-0.316,0.0,0.0,13.264,1857.7,1859.4,6346.2,2067.4,125000.0,42000.0,0.0,16.16,89.24,44344.0,0.0,5067.0,0.0,362.0,17083.0,0.0,0.0,1842.0,4899.0,15091.0,21470.0,0.0,9506.0,0.0,170.0,3445.0,0.0,0.0,0.0,3570.0,2029.0,2750.0,3692.0,0.0,2692.0,1000.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,132.128,132.128,37.948,37.948,0.0,94.18,0.0,0.0,0.0,0.0,0.0,0.0,2.342,5.264,0.964,12.284,0.0,0.0,3.916,0.0,0.396,0.058,0.0,0.0,0.0,2.005,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,3.778,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.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,77.644,15.695,10.188,2.088,0.0,0.0,0.0,0.0,2575.6,3429.7,78.782,17.849,0.0,7.199,30.093,0.0,0.0,0.683,-1.018,0.0,4.814,0.0,-0.118,32.036,0.0,1.838,0.0,12.666,-10.836,0.0,0.603,1.278,0.0,0.0,-0.038,6.294,0.0,0.601,0.0,-0.111,-1.717,-0.321,-0.188,0.0,2.734,6.621,1610.9,1574.7,9900.4,3489.0,85000.0,30000.0,0.0,16.16,89.24,60409.0,12599.0,4381.0,0.0,318.0,17712.0,0.0,4475.0,0.0,4266.0,16658.0,20929.0,1250.0,4060.0,0.0,149.0,6404.0,0.0,1183.0,0.0,3109.0,2254.0,2520.0,6044.0,2254.0,2990.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,109.166,109.166,73.066,73.066,36.1,0.0,0.0,0.0,0.0,0.0,6.343,0.0,1.09,18.685,3.345,14.465,0.0,0.0,9.263,0.0,0.783,0.0,0.0,0.0,0.0,4.105,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.046,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.946,48.554,10.555,3.831,0.0,0.0,0.0,0.0,4521.2,7088.7,37.506,33.352,0.0,3.38,17.589,0.0,0.0,2.172,1.414,0.0,6.822,0.0,-1.331,15.157,0.0,0.411,0.0,5.062,-12.791,0.0,1.081,5.659,0.0,0.0,0.438,15.28,0.0,5.576,0.0,-1.329,-0.818,-0.163,-0.004,0.0,6.233,16.882,1610.9,1574.7,4628.0,1631.0,158000.0,81000.0,33000.0,24.62,91.58,54382.0,20089.0,4722.0,0.0,1238.0,9584.0,0.0,6119.0,0.0,1863.0,10768.0,30864.0,8850.0,8255.0,0.0,752.0,4348.0,0.0,2236.0,0.0,1707.0,2197.0,2520.0,7891.0,4800.0,2291.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.005,58.005,24.86,24.86,33.146,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.048,0.0,0.0,0.0,0.0,0.0,6.534,0.251,0.548,0.299,0.0,0.0,0.0,1.987,0.0,0.0,0.447,0.338,2.514,1.528,0.934,2.114,7.317,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.007,0.0,14.138,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.58,0.0,8.606,2.072,0.0,0.0,0.0,0.0,1554.5,0.0,18.08,0.0,0.0,1.764,6.788,0.231,0.0,0.196,1.944,0.0,7.417,0.0,-0.062,2.889,0.0,3.124,0.0,0.0,-9.806,0.0,-0.165,-4.528,-0.155,0.0,-0.157,2.02,0.0,-2.521,0.0,-0.059,-1.937,-2.336,-2.829,0.0,0.0,12.856,1347.4,1334.1,8863.2,3123.5,84000.0,0.0,0.0,24.62,91.58,22421.0,0.0,3869.0,0.0,128.0,5749.0,0.0,5824.0,0.0,1459.0,5391.0,16444.0,0.0,5841.0,0.0,78.0,2390.0,0.0,2232.0,0.0,2192.0,1191.0,2520.0,2042.0,0.0,1242.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,72.906,72.906,32.001,32.001,40.905,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.435,7.647,1.513,0.0,0.0,0.0,5.947,0.218,0.485,0.927,0.0,0.0,0.0,1.724,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,7.587,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,19.956,0.0,17.88,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,18.796,23.277,8.564,5.231,0.0,0.0,0.0,0.0,1579.0,3750.0,24.003,23.255,0.717,1.779,7.835,0.433,0.0,0.588,1.189,0.0,0.371,3.347,-0.138,1.744,0.0,10.422,0.0,2.032,-11.629,0.486,1.112,0.735,0.091,0.0,-0.107,5.336,0.0,0.112,3.831,-0.138,-0.366,-0.973,-3.484,0.0,2.721,13.836,1610.9,1574.7,10579.6,3728.4,75000.0,36000.0,0.0,24.62,91.58,33085.0,7576.0,4494.0,0.0,375.0,6506.0,550.0,250.0,4088.0,1516.0,7731.0,18431.0,3513.0,4326.0,0.0,228.0,2868.0,270.0,163.0,0.0,2277.0,2267.0,2520.0,4578.0,1414.0,2364.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,67.708,67.708,29.644,29.644,38.064,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.257,7.079,1.508,0.0,0.0,0.0,6.138,0.226,0.503,0.618,0.0,0.0,0.0,2.104,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,7.602,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.558,0.0,18.12,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,12.732,22.831,10.226,3.619,0.0,0.0,0.0,0.0,1516.9,3307.5,19.979,21.233,0.767,1.659,7.019,0.34,0.0,0.428,1.687,0.0,0.233,2.471,-0.05,4.04,0.0,4.465,0.0,1.534,-11.981,0.614,1.245,-0.523,0.118,0.0,0.074,5.679,0.0,0.073,1.831,-0.051,-1.083,-1.206,-1.646,0.0,2.917,14.763,1857.7,1859.4,12951.7,4219.4,75000.0,36000.0,0.0,24.62,91.58,31420.0,8676.0,4365.0,0.0,315.0,5287.0,616.0,180.0,3569.0,1488.0,6925.0,19287.0,3836.0,6007.0,0.0,203.0,2207.0,374.0,113.0,0.0,2235.0,1562.0,2750.0,4257.0,1628.0,1629.0,1000.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,78.091,78.091,30.073,30.073,48.018,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.647,6.206,0.924,0.0,0.0,0.0,6.543,0.274,0.569,0.76,0.0,0.0,0.0,1.981,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,6.653,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.353,0.0,12.596,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.015,14.034,9.614,0.0,0.0,0.0,0.0,0.0,1605.9,3008.5,28.665,14.172,0.0,3.353,14.661,0.392,0.0,0.306,0.217,0.0,7.295,0.0,-0.082,7.286,0.0,7.296,0.0,3.208,-12.076,0.0,1.121,-0.886,0.008,0.0,0.054,6.07,0.0,-0.004,0.0,-0.077,-0.819,-1.09,-1.55,0.0,1.28,10.011,1610.9,1574.7,11033.1,3888.2,77000.0,36000.0,0.0,17.24,91.22,29358.0,2294.0,4924.0,0.0,157.0,7940.0,0.0,2973.0,0.0,2105.0,8965.0,15965.0,-59.0,5307.0,0.0,131.0,2819.0,0.0,914.0,0.0,2691.0,1642.0,2520.0,3313.0,732.0,1781.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,58.61,58.61,17.191,17.191,0.0,0.0,41.419,0.0,0.0,0.0,0.0,0.0,0.056,0.0,0.0,0.0,0.0,0.0,5.324,0.272,0.497,0.57,0.0,0.0,0.0,1.834,0.0,0.0,0.366,0.286,0.168,0.096,0.701,1.879,5.143,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,23.104,0.0,13.278,2.238,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17.439,0.0,7.713,2.194,0.0,0.0,0.0,0.0,1133.9,0.0,16.227,0.0,0.0,1.661,10.169,0.487,1.098,1.042,0.949,0.0,0.0,4.255,-0.04,2.74,0.0,5.69,0.0,0.0,-10.762,0.0,-0.016,-3.301,-0.142,0.152,-0.345,1.805,0.0,0.0,-2.199,-0.036,-0.793,-2.023,-2.833,0.0,0.0,9.887,1141.1,1062.6,7141.6,2725.1,87000.0,0.0,0.0,17.24,91.22,18525.0,0.0,3366.0,0.0,474.0,6809.0,0.0,0.0,3152.0,1036.0,3688.0,9617.0,0.0,2691.0,0.0,278.0,2202.0,0.0,0.0,0.0,1324.0,832.0,2290.0,1503.0,0.0,903.0,600.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,229.031,229.031,49.316,49.316,179.714,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.009,12.38,3.635,0.0,0.0,0.0,10.36,0.246,0.758,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.689,0.493,0.29,0.132,0.0,2.82,12.897,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,145.22,0.0,26.758,3.857,3.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,119.055,40.646,16.074,5.233,0.0,0.0,48.0,119.0,2872.0,7720.0,125.226,49.517,0.0,14.462,41.994,1.048,6.569,1.392,2.516,0.0,1.901,5.964,-0.823,56.847,0.0,0.653,0.0,9.703,-23.336,0.0,2.167,4.987,0.171,2.806,0.11,18.613,0.0,0.264,-3.676,-0.791,-2.004,-0.396,-0.012,0.0,3.131,14.835,2351.3,2428.6,16182.3,4593.4,200000.0,96000.0,0.0,16.16,89.24,83057.0,13664.0,10261.0,0.0,650.0,23266.0,0.0,869.0,1754.0,7333.0,25259.0,44083.0,9876.0,13739.0,0.0,305.0,7760.0,0.0,431.0,0.0,5345.0,3418.0,3210.0,7447.0,1513.0,4534.0,1400.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,107.909,107.909,16.377,16.377,91.531,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.484,0.0,0.0,0.0,0.0,0.0,5.094,0.0,0.518,0.0,0.0,0.0,0.0,1.605,0.0,0.0,0.528,0.39,0.229,0.114,0.0,2.35,4.066,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,63.633,0.0,21.513,3.047,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,48.937,0.0,12.214,4.917,0.0,0.0,152.0,0.0,1414.3,0.0,50.151,0.0,0.0,10.437,8.786,1.927,20.457,1.415,-1.413,0.0,0.0,4.453,0.02,14.989,0.0,0.626,0.0,0.0,-12.699,0.0,-1.803,-2.197,-0.45,0.473,-0.441,6.678,0.0,0.0,-4.798,0.026,-3.329,-1.472,-0.191,0.0,0.0,7.637,1857.7,1859.4,11844.0,3858.5,75000.0,0.0,0.0,16.16,89.24,30739.0,0.0,5132.0,0.0,690.0,10940.0,0.0,0.0,1537.0,5647.0,6794.0,16466.0,0.0,6284.0,0.0,324.0,2076.0,0.0,0.0,0.0,4115.0,917.0,2750.0,2217.0,0.0,1217.0,1000.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,125.38,125.38,17.732,17.732,0.0,107.648,0.0,0.0,0.0,0.0,0.0,0.0,0.311,0.0,0.0,0.0,0.0,0.0,4.888,0.0,0.528,0.0,0.0,0.0,0.0,1.294,0.0,0.0,0.0,0.39,2.899,1.661,0.0,2.35,3.412,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.788,0.0,23.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,63.121,0.0,10.968,0.0,0.0,0.0,0.0,0.0,1204.0,0.0,48.454,0.0,0.0,19.167,14.584,0.0,0.0,1.001,3.214,0.0,14.741,0.0,-0.358,18.581,0.0,0.793,0.0,0.0,-8.897,0.0,-0.744,-1.507,0.0,0.0,-0.17,3.799,0.0,-2.733,0.0,-0.349,-2.097,-0.58,-0.158,0.0,0.0,4.555,1857.7,0.0,12693.2,4135.1,109000.0,0.0,0.0,16.16,89.24,32325.0,0.0,5273.0,0.0,362.0,6028.0,0.0,4559.0,0.0,8461.0,7643.0,18211.0,0.0,4574.0,0.0,170.0,2314.0,0.0,1206.0,0.0,6166.0,1032.0,2750.0,2369.0,0.0,1369.0,1000.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,153.577,153.577,43.566,43.566,0.0,0.0,110.011,0.0,0.0,0.0,0.0,0.0,0.08,0.0,0.0,0.0,0.0,0.0,16.498,0.341,1.204,0.0,0.0,0.0,0.0,1.909,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,15.707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.7,0.0,22.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,62.009,0.0,12.369,5.394,0.0,0.0,0.0,0.0,2971.8,0.0,85.849,0.0,0.0,8.911,27.066,0.0,2.86,1.906,-0.813,0.0,10.824,2.681,0.075,34.844,0.0,0.572,0.0,0.0,-26.762,0.0,-2.177,-8.151,0.0,-0.189,-0.537,17.503,0.0,-2.923,-3.966,0.111,-9.702,-5.569,-0.208,0.0,0.0,15.856,1857.7,1859.4,11100.4,3616.2,210000.0,0.0,0.0,16.16,89.24,61172.0,0.0,15758.0,0.0,1028.0,15579.0,0.0,4773.0,1343.0,4622.0,18068.0,37136.0,0.0,21864.0,0.0,482.0,4382.0,0.0,1842.0,0.0,3369.0,2447.0,2750.0,4246.0,0.0,3246.0,1000.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,73.573,73.573,18.701,18.701,54.872,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.796,1.796,0.125,0.0,0.0,0.0,5.438,0.0,0.533,0.0,0.0,0.0,0.0,2.257,0.0,0.0,0.447,0.338,0.199,0.105,0.0,2.114,4.553,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,32.019,0.0,17.142,2.642,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,26.292,2.838,9.967,3.817,0.0,0.0,101.0,0.0,1416.4,1983.7,38.931,10.019,0.369,6.176,10.914,0.0,0.0,0.54,-1.551,0.0,7.868,0.0,0.004,13.643,0.0,0.492,0.0,0.0,-11.963,0.058,-0.607,-1.642,0.0,0.0,-0.085,6.075,0.0,-4.526,0.0,0.009,-2.775,-0.748,-0.13,0.0,0.0,7.33,1610.9,1574.7,11176.8,3938.8,80000.0,24000.0,0.0,16.16,89.24,27631.0,0.0,4397.0,0.0,318.0,7248.0,249.0,1468.0,0.0,4065.0,9886.0,15754.0,0.0,6100.0,0.0,149.0,2208.0,88.0,388.0,0.0,2962.0,1338.0,2520.0,2575.0,0.0,1775.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,82.585,82.585,26.121,26.121,56.465,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.964,5.937,1.044,0.0,0.0,0.0,5.449,0.0,0.536,0.0,0.0,0.0,0.0,1.617,0.0,0.0,0.366,0.286,2.129,1.395,0.0,1.879,4.519,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.758,0.0,17.707,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,31.857,15.012,8.412,5.837,0.0,0.0,102.0,126.0,1466.7,3222.0,31.784,17.347,5.544,2.267,3.994,0.0,0.0,1.83,-1.182,0.0,21.292,0.0,-0.001,7.412,0.0,0.555,0.0,0.0,-9.871,1.567,0.12,-0.032,0.0,0.0,-0.224,6.117,0.0,2.213,0.0,-0.0,-0.749,-0.417,-0.061,0.0,0.0,6.381,1364.1,1290.1,6619.3,2525.8,60000.0,24000.0,0.0,16.16,89.24,25212.0,0.0,4435.0,0.0,1019.0,2375.0,3328.0,7811.0,0.0,1320.0,4925.0,12355.0,0.0,4257.0,0.0,478.0,403.0,1235.0,2066.0,0.0,962.0,665.0,2290.0,1482.0,0.0,882.0,600.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,93.269,93.269,22.744,22.744,0.0,70.525,0.0,0.0,0.0,0.0,0.0,0.0,0.179,0.0,0.0,0.0,0.0,0.0,6.807,0.0,0.61,0.0,0.0,0.0,0.0,2.004,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.203,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,49.842,0.0,20.683,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,36.973,0.0,9.51,0.0,0.0,0.0,0.0,0.0,1517.4,0.0,29.464,0.0,0.0,16.73,11.335,0.0,0.0,1.564,-3.204,0.0,6.597,0.0,-0.31,14.699,0.0,0.461,0.0,0.0,-10.835,0.0,-3.313,-3.336,0.0,0.0,-0.652,11.351,0.0,-4.638,0.0,-0.308,-4.583,-2.603,-0.204,0.0,0.0,8.875,1610.9,1574.7,11016.6,3882.4,110000.0,0.0,0.0,19.22,86.72,40440.0,0.0,6057.0,0.0,969.0,7752.0,0.0,1095.0,0.0,13572.0,10994.0,25198.0,0.0,7073.0,0.0,510.0,2730.0,0.0,253.0,0.0,10883.0,1229.0,2520.0,2840.0,0.0,2040.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,127.846,127.846,52.511,52.511,75.334,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.899,13.879,2.898,0.0,0.0,0.0,6.908,0.315,0.625,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.689,0.493,3.669,1.927,0.0,2.82,6.085,0.0,0.0,0.0,9.699,0.0,0.0,0.0,0.0,49.614,0.0,25.721,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,39.57,31.877,16.074,4.6,0.0,0.0,0.0,235.0,2508.5,5703.9,48.164,27.523,0.0,3.655,14.882,0.651,4.433,0.808,1.548,0.0,1.803,2.326,-0.044,22.416,0.0,0.593,0.0,0.0,-14.006,0.0,0.83,2.529,0.137,2.211,0.013,14.612,0.0,0.363,-0.617,-0.032,-0.641,-0.146,0.002,0.0,0.0,11.878,2351.3,2428.6,16182.3,4593.4,71000.0,36000.0,0.0,16.16,89.24,30786.0,0.0,6993.0,0.0,362.0,9341.0,0.0,865.0,750.0,1706.0,10769.0,18374.0,0.0,9560.0,0.0,170.0,2306.0,0.0,429.0,0.0,1243.0,1457.0,3210.0,3333.0,0.0,1933.0,1400.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,98.532,98.532,20.911,20.911,77.622,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.151,0.0,0.0,3.759,0.0,0.0,4.411,0.239,0.418,0.0,0.0,0.0,0.0,1.763,0.0,0.0,0.447,0.338,2.514,0.105,0.0,2.114,4.652,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.553,0.0,0.0,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,47.589,0.0,9.905,1.135,0.0,0.0,0.0,0.0,1574.6,0.0,52.848,0.0,0.0,14.291,5.41,0.0,0.0,2.519,1.891,0.0,13.819,0.0,-0.045,16.976,0.0,0.558,0.0,0.0,-8.23,0.0,-2.215,-1.275,0.0,0.0,-0.771,7.734,0.0,-3.79,0.0,-0.033,-3.649,-1.432,-0.173,0.0,0.0,5.892,1610.9,1574.7,11659.6,4109.0,87000.0,0.0,0.0,16.16,89.24,42559.0,0.0,11110.0,0.0,1456.0,3312.0,0.0,6991.0,0.0,8806.0,10883.0,24051.0,0.0,9921.0,0.0,683.0,526.0,0.0,2514.0,0.0,6418.0,1470.0,2520.0,2750.0,0.0,1950.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,104.643,104.643,24.47,24.47,80.173,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.288,0.0,0.0,0.0,0.0,0.0,7.373,0.0,0.651,0.0,0.0,0.0,0.0,1.603,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,6.613,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,59.966,0.0,20.207,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,56.493,0.0,10.233,5.494,0.0,0.0,0.0,0.0,1809.6,0.0,62.175,0.0,11.279,5.63,22.313,0.0,4.286,2.097,-0.22,0.0,2.046,3.365,-0.078,19.734,0.0,0.613,0.0,0.0,-14.999,0.116,-0.785,-5.18,0.0,-0.043,-0.605,8.061,0.0,-0.046,-3.808,-0.055,-4.228,-1.981,-0.185,0.0,0.0,8.838,1610.9,1574.7,9674.8,3409.5,75000.0,0.0,0.0,16.16,89.24,44215.0,0.0,7249.0,0.0,1028.0,13423.0,5873.0,795.0,1188.0,3065.0,11594.0,23164.0,0.0,8221.0,0.0,482.0,4483.0,3446.0,210.0,0.0,2234.0,1569.0,2520.0,2881.0,0.0,2081.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,263.105,263.105,47.299,47.299,215.806,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.251,2.644,0.266,0.0,0.0,0.0,13.943,0.315,1.031,0.05,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.473,2.35,14.078,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,189.256,0.0,26.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,178.33,4.919,15.632,5.037,0.0,0.0,135.0,0.0,3249.4,4568.2,77.766,23.812,0.0,11.226,44.587,3.435,34.913,3.015,18.258,0.0,4.27,22.006,-0.485,64.012,0.0,2.762,0.0,0.0,-31.257,0.0,0.081,-2.242,-0.119,1.5,-0.212,7.03,0.0,-0.319,-4.876,-0.483,-3.531,-1.056,-0.261,0.0,0.0,9.532,1857.7,1859.4,14896.5,4852.9,75000.0,30000.0,0.0,-13.72,81.14,98322.0,0.0,18666.0,0.0,1544.0,30313.0,0.0,2471.0,9011.0,5077.0,31239.0,28288.0,0.0,18014.0,0.0,293.0,3145.0,0.0,394.0,0.0,2867.0,825.0,2750.0,1684.0,0.0,684.0,1000.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,233.404,233.404,40.19,40.19,193.215,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.955,1.845,0.077,0.0,0.0,0.0,9.539,0.213,0.678,0.093,0.0,0.0,0.0,2.421,0.0,0.0,0.528,0.39,2.899,1.661,0.0,2.35,13.542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,168.779,0.0,24.436,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,165.948,3.165,15.632,3.225,0.0,0.0,0.0,0.0,2766.5,3100.9,89.307,19.845,0.0,9.18,39.862,3.99,43.775,2.66,12.414,0.0,2.424,18.904,-0.372,56.22,0.0,1.75,0.0,0.0,-26.736,0.0,0.183,-1.616,-0.065,2.509,-0.161,3.914,0.0,-0.272,-4.674,-0.368,-2.883,-0.665,-0.146,0.0,0.0,7.51,1857.7,1859.4,14896.4,4852.9,90000.0,24000.0,0.0,-13.72,81.14,86413.0,0.0,17465.0,0.0,1066.0,30498.0,0.0,927.0,4709.0,4248.0,27501.0,15616.0,0.0,6423.0,0.0,249.0,3057.0,0.0,13.0,0.0,2399.0,726.0,2750.0,1601.0,0.0,601.0,1000.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,160.384,160.384,30.132,30.132,130.253,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.505,2.056,0.122,0.0,0.0,0.0,6.562,0.213,0.514,0.093,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.765,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.353,0.0,19.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,105.112,3.155,13.085,2.206,0.0,0.0,0.0,0.0,1993.2,2795.9,55.29,13.945,0.0,3.165,23.17,2.278,33.802,5.586,11.948,0.0,0.547,12.498,-0.274,28.923,0.0,1.576,0.0,0.0,-19.498,0.0,0.028,-0.934,-0.095,1.433,-0.381,3.425,0.0,-0.071,-3.427,-0.274,-1.633,-0.55,-0.148,0.0,0.0,5.886,1610.9,1574.7,12168.1,4288.2,90000.0,30000.0,0.0,-13.72,81.14,55143.0,0.0,11581.0,0.0,2417.0,20151.0,0.0,202.0,3040.0,1519.0,16233.0,14843.0,0.0,8011.0,0.0,572.0,2451.0,0.0,3.0,0.0,858.0,429.0,2520.0,1155.0,0.0,355.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,228.458,228.458,43.631,43.631,184.827,0.0,0.0,0.0,0.0,0.0,0.0,0.0,4.752,2.136,0.205,0.0,0.0,0.0,12.955,0.315,0.974,0.037,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,12.956,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,162.262,0.0,22.565,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,150.758,3.937,13.085,4.45,0.0,0.0,0.0,0.0,3099.8,3551.6,81.667,19.114,4.361,6.886,36.341,9.094,19.186,2.732,5.604,0.0,12.682,18.166,-0.464,61.873,0.0,1.434,0.0,0.0,-28.254,0.233,0.434,-1.49,-0.105,1.079,-0.123,5.569,0.0,-1.165,-4.601,-0.461,-2.772,-0.503,-0.103,0.0,0.0,8.025,1610.9,1574.7,12168.2,4288.2,110000.0,36000.0,0.0,-13.72,81.14,80986.0,0.0,8527.0,0.0,1403.0,26527.0,1911.0,5425.0,4343.0,3592.0,29257.0,20452.0,0.0,11261.0,0.0,269.0,3025.0,368.0,208.0,0.0,2028.0,772.0,2520.0,1440.0,0.0,640.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,152.166,152.166,35.221,35.221,116.945,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.767,2.395,0.299,0.0,0.0,0.0,9.065,0.315,0.749,1.793,0.0,0.0,0.0,2.36,0.0,0.0,0.447,0.338,2.514,1.528,0.0,2.114,8.536,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.494,0.0,22.451,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.793,4.082,13.085,4.362,0.0,0.0,0.0,0.0,2316.1,2997.7,47.111,12.915,3.563,3.071,15.121,2.27,32.708,1.138,6.202,0.636,0.086,12.52,-0.186,20.634,0.0,10.931,0.0,0.0,-21.685,-0.013,0.005,-1.097,-0.117,0.88,-0.089,5.076,0.328,-0.013,-4.089,-0.185,-1.188,-0.92,-1.263,0.0,0.0,6.867,1610.9,1574.7,12168.2,4288.2,70000.0,30000.0,0.0,-13.72,81.14,45770.0,0.0,8927.0,496.0,442.0,17005.0,1494.0,31.0,2796.0,1367.0,13211.0,15016.0,0.0,9495.0,885.0,110.0,629.0,197.0,0.0,0.0,772.0,407.0,2520.0,1137.0,0.0,337.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,24.966,24.966,24.966,24.966,0.0,0.0,0.0,0.0,0.0,0.0,5.409,0.272,0.38,3.589,1.142,4.924,0.0,0.0,1.03,0.0,0.082,0.0,0.0,0.0,0.0,1.793,0.0,0.0,0.256,0.005,0.482,1.262,0.0,1.644,2.698,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,13.979,12.719,4.305,0.617,0.0,0.0,0.0,0.0,3780.1,2265.4,16.064,12.964,0.0,2.52,3.83,0.0,0.0,0.327,0.647,0.0,-0.138,0.0,-0.274,7.96,0.0,0.378,0.0,2.827,-4.067,0.0,1.287,2.524,0.0,0.0,0.024,3.101,0.0,-0.137,0.0,-0.272,-0.46,-0.142,0.019,0.0,1.684,5.134,596.8,442.2,5543.5,2208.6,18000.0,18000.0,17065.0,24.62,91.58,19009.0,4026.0,1800.0,0.0,182.0,2847.0,0.0,0.0,0.0,1604.0,8550.0,14319.0,3821.0,3366.0,0.0,110.0,1427.0,0.0,0.0,0.0,1823.0,1711.0,2060.0,2573.0,388.0,1784.0,400.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,20.753,20.753,14.467,14.467,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.139,0.587,0.005,4.487,0.0,0.0,0.921,0.0,0.463,0.182,0.0,0.0,0.0,1.444,0.0,0.0,0.256,0.111,0.738,1.262,0.0,1.644,2.227,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.286,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.111,1.539,4.203,0.0,0.0,0.0,0.0,0.0,873.3,966.0,4.758,2.532,0.0,-0.001,0.775,0.127,0.0,0.0,1.175,0.0,0.0,1.373,-0.01,1.573,0.0,4.97,0.0,0.206,-4.101,0.0,-0.0,0.101,0.032,0.0,0.0,0.705,0.0,0.0,-1.121,-0.01,-0.229,-0.243,-1.378,0.0,-0.0,3.685,251.7,442.2,5772.6,1524.2,20000.0,18000.0,0.0,19.22,86.72,7389.0,1053.0,1216.0,0.0,0.0,630.0,0.0,0.0,705.0,0.0,3785.0,3312.0,0.0,477.0,0.0,0.0,177.0,0.0,0.0,0.0,0.0,597.0,2060.0,1391.0,0.0,991.0,400.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,94.857,94.857,41.464,41.464,53.393,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.343,14.217,4.289,0.0,0.0,0.0,3.691,0.085,0.498,2.892,0.0,0.0,0.0,2.421,0.0,0.0,0.474,1.108,0.67,0.114,0.0,2.35,8.312,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,37.438,0.0,12.616,0.0,3.339,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.285,52.236,7.253,2.672,0.0,0.0,0.0,0.0,1520.6,5080.6,46.206,33.552,1.017,2.619,11.977,0.0,0.0,0.813,2.388,0.0,0.058,2.019,-0.532,8.103,0.0,4.231,0.0,6.496,-9.004,1.353,1.065,9.369,0.0,0.0,0.563,7.068,0.0,0.074,10.115,-0.52,0.771,-0.441,1.851,0.0,7.487,13.678,130.3,817.7,11617.7,3495.1,63000.0,46500.0,0.0,25.88,98.42,51008.0,12331.0,4499.0,0.0,585.0,9704.0,828.0,45.0,11275.0,2249.0,9492.0,29992.0,8413.0,4654.0,0.0,589.0,7601.0,547.0,57.0,0.0,1959.0,3421.0,2750.0,3589.0,835.0,1754.0,1000.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,32.052,32.052,28.556,28.556,3.497,0.0,0.0,0.0,0.0,0.0,5.849,0.0,0.035,5.861,0.158,2.621,0.249,0.0,1.474,0.057,0.099,2.092,0.0,0.0,0.0,3.073,0.0,0.0,0.329,0.006,0.053,0.096,0.0,1.879,4.625,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.698,2.799,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,5.203,34.04,4.262,1.305,0.0,0.0,0.0,107.0,4425.3,2165.2,12.334,17.679,0.0,1.365,4.439,0.0,0.0,0.0,-3.667,0.0,0.0,1.448,-0.076,2.578,0.0,1.806,0.0,0.0,-2.872,0.0,1.568,6.672,0.0,0.0,0.0,18.287,0.0,0.0,2.969,-0.076,-0.317,-3.562,0.51,0.0,0.0,8.569,728.6,567.4,7485.0,928.3,39000.0,16000.0,0.0,33.26,106.16,18656.0,0.0,5635.0,0.0,0.0,5120.0,0.0,0.0,2100.0,1357.0,4445.0,20462.0,0.0,6837.0,0.0,0.0,6369.0,0.0,0.0,0.0,2075.0,2891.0,2290.0,0.0,0.0,0.0,0.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,51.808,51.808,21.832,21.832,29.977,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.275,1.887,0.33,0.0,0.0,0.0,1.782,0.057,0.111,2.23,0.0,0.0,0.0,2.36,0.0,0.0,0.471,0.497,3.653,0.105,0.0,2.114,5.961,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16.061,0.0,10.847,0.0,3.069,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,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.688,5.135,8.573,0.0,0.0,0.0,0.0,0.0,1156.7,2577.1,11.113,15.357,0.0,4.131,6.506,0.0,0.0,2.03,1.424,0.0,4.907,0.0,-0.124,2.665,0.0,3.668,0.0,1.92,-11.514,0.0,-0.284,-0.31,0.0,0.0,-0.39,3.474,0.0,-0.955,0.0,-0.123,-0.557,-1.22,-0.76,0.0,0.565,5.804,1689.0,437.0,10675.0,2994.2,58000.0,29000.0,0.0,28.58,87.08,21920.0,7753.0,3277.0,0.0,856.0,3061.0,0.0,2043.0,0.0,1771.0,3159.0,18368.0,5020.0,6268.0,0.0,572.0,1190.0,0.0,596.0,0.0,1585.0,616.0,2520.0,307.0,0.0,-493.0,800.0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 From 0e9507816dab527f76b51ce47c881122a09074bf Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Tue, 11 Oct 2022 16:25:37 -0600 Subject: [PATCH 26/27] Adds error-checking around HoursInOperation specified for a CFIS supplemental fan. --- HPXMLtoOpenStudio/measure.xml | 18 +++++++++--------- HPXMLtoOpenStudio/resources/hpxml.rb | 3 +++ HPXMLtoOpenStudio/tests/test_validation.rb | 5 +++++ 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/HPXMLtoOpenStudio/measure.xml b/HPXMLtoOpenStudio/measure.xml index e7bfb40e35..7435c1ebcf 100644 --- a/HPXMLtoOpenStudio/measure.xml +++ b/HPXMLtoOpenStudio/measure.xml @@ -3,8 +3,8 @@ 3.0 hpxm_lto_openstudio b1543b30-9465-45ff-ba04-1d1f85e763bc - f183d1b8-449b-456f-9f44-55849ea85b72 - 20221011T212703Z + e2eebf1e-46b9-4960-af1f-75ff9df120ad + 20221011T222505Z D8922A73 HPXMLtoOpenStudio HPXML to OpenStudio Translator @@ -505,12 +505,6 @@ test E26F31D2 - - test_validation.rb - rb - test - B5247CD8 - test_airflow.rb rb @@ -588,11 +582,17 @@ resource 547D4876 + + test_validation.rb + rb + test + A673B23D + hpxml.rb rb resource - B3C2898E + AD09E7FF diff --git a/HPXMLtoOpenStudio/resources/hpxml.rb b/HPXMLtoOpenStudio/resources/hpxml.rb index 39bcef16f6..6f224a226d 100644 --- a/HPXMLtoOpenStudio/resources/hpxml.rb +++ b/HPXMLtoOpenStudio/resources/hpxml.rb @@ -4555,6 +4555,9 @@ def cfis_supplemental_fan if ventilation_fan.is_shared_system fail "CFIS supplemental fan '#{ventilation_fan.id}' cannot be a shared system." end + if not ventilation_fan.hours_in_operation.nil? + fail "CFIS supplemental fan '#{ventilation_fan.id}' cannot have HoursInOperation specified." + end return ventilation_fan end diff --git a/HPXMLtoOpenStudio/tests/test_validation.rb b/HPXMLtoOpenStudio/tests/test_validation.rb index 5bf96c2b6c..d4dbb0d099 100644 --- a/HPXMLtoOpenStudio/tests/test_validation.rb +++ b/HPXMLtoOpenStudio/tests/test_validation.rb @@ -693,6 +693,7 @@ def test_ruby_error_messages 'cfis-invalid-supplemental-fan' => ["CFIS supplemental fan 'VentilationFan2' must be of type 'supply only' or 'exhaust only'."], 'cfis-invalid-supplemental-fan2' => ["CFIS supplemental fan 'VentilationFan2' must be set as used for whole building ventilation."], 'cfis-invalid-supplemental-fan3' => ["CFIS supplemental fan 'VentilationFan2' cannot be a shared system."], + 'cfis-invalid-supplemental-fan4' => ["CFIS supplemental fan 'VentilationFan2' cannot have HoursInOperation specified."], 'dehumidifier-setpoints' => ['All dehumidifiers must have the same setpoint but multiple setpoints were specified.'], 'duplicate-id' => ["Duplicate SystemIdentifier IDs detected for 'Window1'."], 'emissions-duplicate-names' => ['Found multiple Emissions Scenarios with the Scenario Name='], @@ -782,6 +783,10 @@ def test_ruby_error_messages suppl_fan.is_shared_system = true suppl_fan.fraction_recirculation = 0.0 suppl_fan.in_unit_flow_rate = suppl_fan.tested_flow_rate / 2.0 + elsif ['cfis-invalid-supplemental-fan4'].include? error_case + hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-mechvent-cfis-supplemental-fan-exhaust.xml')) + suppl_fan = hpxml.ventilation_fans.select { |f| f.is_cfis_supplemental_fan? }[0] + suppl_fan.hours_in_operation = 12.0 elsif ['dehumidifier-setpoints'].include? error_case hpxml = HPXML.new(hpxml_path: File.join(@sample_files_path, 'base-appliances-dehumidifier-multiple.xml')) hpxml.dehumidifiers[-1].rh_setpoint = 0.55 From 9071be55a2b3ead5b2f1bc331297f6e27082f5f6 Mon Sep 17 00:00:00 2001 From: Scott Horowitz Date: Tue, 11 Oct 2022 16:26:50 -0600 Subject: [PATCH 27/27] Update docs --- docs/source/workflow_inputs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/workflow_inputs.rst b/docs/source/workflow_inputs.rst index d04a2609d1..07b5f1c71f 100644 --- a/docs/source/workflow_inputs.rst +++ b/docs/source/workflow_inputs.rst @@ -1968,7 +1968,7 @@ If not entered, the simulation will not include mechanical ventilation. .. [#] FanType choices are "energy recovery ventilator", "heat recovery ventilator", "exhaust only", "supply only", "balanced", or "central fan integrated supply". .. [#] If flow rate not provided, defaults to the required mechanical ventilation rate per `ASHRAE 62.2-2019 `_, including adjustments for A) infiltration credit, B) balanced vs imbalanced systems, and C) adiabatic surfaces for SFA/MF buildings. .. [#] For a central fan integrated supply system, the flow rate should equal the amount of outdoor air provided to the distribution system. - .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a CFIS system, in which case it is not used as an input. + .. [#] HoursInOperation is optional unless the VentilationFan refers to the supplemental fan of a CFIS system, in which case it is not allowed. .. [#] If HoursInOperation not provided, defaults to 24 (i.e., running continuously) for all system types other than central fan integrated supply (CFIS), and 8.0 (i.e., running intermittently) for CFIS systems. For a CFIS system, the HoursInOperation and the flow rate are combined to form the hourly target ventilation rate (e.g., inputs of 90 cfm and 8 hrs/day produce an hourly target ventilation rate of 30 cfm). For a CFIS system with a supplemental fan, the supplemental fan's runtime is automatically calculated for each hour (based on the air handler runtime) to maintain the hourly target ventilation rate.